/* ==========================================================================
   1. VARIABLES & CONFIGURATION REPRODUCTIBLE (Theme Premium Or & Crème)
   ========================================================================== */

:root {
  --bg-cream: #F9F8F6;
  --bg-white: #FFFFFF;
  --text-dark: #0E0E12;
  --text-muted: #6A6358;
  --gold-primary: #B8922A;
  --gold-hover: #9E7D23;
  --gold-light: rgba(184, 146, 42, 0.1);
  --border-light: #E8E4DA;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESTRUCTURATION DES ESPACES ET LAYOUT GENERAL
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Suppression des gouffres blancs - Hauteurs de sections resserrées */

section {
  padding: 50px 0; 
}

.section-cream { background-color: var(--bg-cream); }

.section-white { background-color: var(--bg-white); }

.text-center { text-align: center; }

.mb-48 { margin-bottom: 20px; }

/* Rapprochement direct des listes */

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

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

/* ==========================================================================
   3. TYPOGRAPHIE ÉDITORIALE & TEXTES JUSTIFIÉS
   ========================================================================== */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  scroll-margin-top: 80px; 
}

.serif-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.italic-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.text-gold { color: var(--gold-primary); }

.white-text { color: #FFFFFF !important; }

/* Réduit pour coller au contenu */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px; 
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Alignement parfait des blocs de texte profonds */

.section-white p,
.section-cream p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.75;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1em;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold-light);
  color: var(--gold-primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.check-list { list-style: none; }

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.check-list.check li::before {
  content: "✓";
  color: #38A169;
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ==========================================================================
   4. HEADER STICKY & BURGER NAV 100% CSS
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  background: rgba(11, 11, 14, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1000;
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: #FFFFFF;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #A09A90;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active { 
  color: #FFFFFF; 
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: 2px;
}

.menu-toggle { display: none; }

.hamburger { display: none; }

/* ==========================================================================
   5. BOUTONS INTERACTIFS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-primary);
  color: #0E0E12;
  box-shadow: 0 4px 14px rgba(184, 146, 42, 0.2);
}

.btn-primary:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  background: var(--gold-light);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.full-width { width: 100%; }

/* ==========================================================================
   6. HERO NOIR VISUEL
   ========================================================================== */

.hero-premium-dark {
  padding: 140px 0 110px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.hero-premium-dark .font-large {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-premium-dark .hero-description {
  font-size: 1.15rem;
  color: #C4C0B9;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-premium-dark .hero-description strong {
  color: #FFFFFF;
  display: block;
  margin-top: 16px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
}

.hero-right-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-portrait-wrapper {
  position: relative;
  width: 290px;
  height: 380px;
  background: #141419;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero-portrait-badge {
  position: absolute;
  bottom: -15px;
  left: -25px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #1C1814; 
  color: #E2C792;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(184, 146, 42, 0.25);
}

/* ==========================================================================
   7. DUO MOCKUPS NETS (LIENS RESEAUX)
   ========================================================================== */

.tiktok-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.phones-container {
  display: flex;
  gap: 24px;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 0;
}

.phone-mockup {
  display: block;
  text-decoration: none;
  width: 215px; 
  height: 440px;
  background: var(--text-dark);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
}

.phone-linkedin { transform: translateY(-20px); }

.phone-tiktok { transform: translateY(20px); }

.phone-mockup:hover {
  transform: translateY(0) scale(1.04);
  z-index: 10;
  box-shadow: 0 32px 64px rgba(184, 146, 42, 0.15);
  border-color: var(--gold-primary);
}

.phone-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 12;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-screen-img { 
  width: 100%; 
  height: 100%; 
  border-radius: 28px; 
  object-fit: cover; 
}

.play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14, 14, 18, 0.15); 
  border-radius: 36px;
}

.play-btn {
  width: 48px; height: 48px; 
  background: var(--bg-white);
  color: var(--gold-primary); 
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; 
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.floating-card {
  position: absolute; 
  bottom: 10px; 
  left: -20px;
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 18px; 
  border-radius: var(--border-radius-md);
  display: flex; 
  align-items: center; 
  gap: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  z-index: 15;
  animation: float 6s ease-in-out infinite;
}

.floating-card strong { display: block; font-size: 0.85rem; color: var(--text-dark); }

.floating-card p { font-size: 0.75rem; color: var(--text-muted); }

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

/* ==========================================================================
   8. TIMELINE ET PARCOURS NARRATIF
   ========================================================================== */

.expertise-wrapper, .parcours-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.expertise-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline { position: relative; padding-left: 32px; }

.timeline::before {
  content: ''; position: absolute; left: 15px; top: 10px; bottom: 10px;
  width: 1px; background-color: var(--border-light);
}

.timeline-item { position: relative; margin-bottom: 40px; }

.timeline-item:last-child { margin-bottom: 0; }

.timeline-number {
  position: absolute; left: -47px; top: 0;
  width: 32px; height: 32px; background-color: var(--text-dark);
  color: #FFFFFF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600; z-index: 2;
}

.timeline-content h3 { font-size: 1.2rem; margin-bottom: 6px; }

.timeline-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }

.day-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  background-color: #FFFDF4; color: var(--gold-primary);
  border: 1px solid rgba(184, 146, 42, 0.2);
  padding: 2px 8px; border-radius: 20px;
}

.callout-quote-box {
  background: #FFFDF4; border-left: 3px solid var(--gold-primary);
  padding: 24px 32px; border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0; margin-bottom: 32px;
}

.callout-quote-box p { font-size: 1.4rem; color: var(--text-dark); line-height: 1.3; text-align: left; }

.quote-author { font-size: 0.75rem; font-weight: 700; color: var(--gold-primary); display: block; margin-top: 12px; letter-spacing: 0.05em; }

/* ==========================================================================
   9. CARD CARD PROFILES (BLOCS SOMBRES)
   ========================================================================== */

.section-dark { background-color: #0B0B0E; }

.section-grid-pattern {
  position: relative;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-premium-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.large-name { font-size: 3.8rem; margin-bottom: 8px; letter-spacing: -0.03em; }

.about-sub-label { font-size: 0.8rem; font-weight: 700; color: var(--gold-primary); letter-spacing: 0.05em; margin-bottom: 32px; }

.about-quote { font-size: 1.6rem; color: #FFFFFF; margin-bottom: 56px; font-weight: 400; }

.about-key-row {
  display: flex; gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 32px;
}

.key-item .key-title { font-size: 1.5rem; margin-bottom: 4px; }

.key-item .key-subtitle { font-size: 0.8rem; color: #6A6358; }

.profile-preview-card {
  background: #141419; border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px; padding: 40px; text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.profile-avatar-fallback {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 24px;
  border: 1px solid var(--gold-primary); background: transparent; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem;
}

.profile-card-name { font-family: 'Playfair Display', Georgia, serif; color: #FFFFFF; font-size: 1.4rem; font-weight: 500; margin-bottom: 6px; }

.profile-card-tagline { font-size: 0.72rem; font-weight: 700; color: var(--gold-primary); letter-spacing: 0.05em; margin-bottom: 20px; }

.profile-pills-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; }

.profile-pill { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); color: #C4C0B9; font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; }

.profile-card-divider { height: 1px; background: rgba(255, 255, 255, 0.06); margin-bottom: 20px; }

.exp-company { color: #FFFFFF; font-size: 0.9rem; font-weight: 600; }

.exp-role { color: #6A6358; font-size: 0.8rem; margin-top: 2px; }

/* ==========================================================================
   9B. RECOMMANDATIONS LINKEDIN
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md); padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(184, 146, 42, 0.04);
}

.testimonial-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }

.testimonial-stars { color: var(--gold-primary); font-size: 1.1rem; letter-spacing: 2px; }

.verified-badge { font-size: 0.72rem; font-weight: 600; color: #38A169; background: #EDFDF5; padding: 4px 10px; border-radius: 20px; }

.testimonial-text { font-size: 0.92rem; color: var(--text-dark); line-height: 1.65; font-style: italic; margin-bottom: 28px; }

.testimonial-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--border-light); padding-top: 20px; }

.author-avatar {
  width: 44px; height: 44px; background: var(--text-dark); color: #FFFFFF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 600;
  border: 1px solid var(--gold-primary); flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.95rem; color: var(--text-dark); }

.author-info span { display: block; font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================================================
   10. CORRECTION FAQ CONFINÉE (Fini l'effet géant étiré)
   ========================================================================== */

/* Centre et verrouille la largeur de la FAQ */

.faq-container, 
#faq .container {
  max-width: 760px; 
  margin: 0 auto;
}

/* Resserre la hauteur des blocs de questions */

.raison-card, [class*="faq-item"] {
  background: var(--bg-white); 
  border: 1px solid rgba(0,0,0,0.03); 
  border-radius: 12px; 
  padding: 16px 24px !important; 
  margin-bottom: 12px !important; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.highlighted-raison-card { border: 1px solid rgba(184, 146, 42, 0.3); }

.raison-icon-box {
  width: 40px; height: 40px; background: #FFFDF4; border: 1px solid rgba(184, 146, 42, 0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 24px;
}

.raison-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }

.raison-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ==========================================================================
   11. CORRECTION BLOC CTA NOIR COMPACT
   ========================================================================== */

/* Annule la grille large */

/* Aligne le CTA sur le format de la FAQ */

.conversion-wrapper { 
  display: block; 
  max-width: 760px; 
  margin: 0 auto; 
}

/* Intérieur affiné pour éviter le vide */

.conversion-card {
  background: #141419; 
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px; 
  padding: 32px; 
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* Bouton CTA centré et proportionnel */

.call-cta {
  background-color: #E2C792 !important;
  color: #0E0E12 !important;
  font-size: 0.95rem !important;
  padding: 12px 24px !important;
  width: auto !important;
  display: inline-flex !important;
}

.call-cta:hover { background-color: #FFFFFF !important; }

.card-divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 20px 0 24px; }

.premium-list { list-style: none; margin-bottom: 32px; }

.premium-list li { color: #C4C0B9; font-size: 0.95rem; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }

.gold-check { color: var(--gold-primary); }

/* ==========================================================================
   12. GRILLE DE RESSOURCES (4 Colonnes)
   ========================================================================== */

.resource-card { 
  background: var(--bg-white); border: 1px solid var(--border-light); 
  border-radius: var(--border-radius-md); padding: 32px 24px; 
  transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; height: 100%;
}

.resource-card:hover { 
  transform: translateY(-4px); border-color: var(--gold-primary); 
  box-shadow: 0 12px 30px rgba(184, 146, 42, 0.06);
}

.resource-card .icon { font-size: 1.8rem; margin-bottom: 12px; }

.resource-card h3 { margin-bottom: 8px; font-size: 1.25rem; }

.resource-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }

.resource-card-content { flex-grow: 1; }

/* ==========================================================================
   13. FOOTER SOMBRE PREMIUM
   ========================================================================== */

.footer { background: #0B0B0E; border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 80px 0 0 0; }

.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }

.footer-brand .logo { font-weight: 800; font-size: 1.25rem; text-decoration: none; color: #FFFFFF; }

.footer-brand p { color: #A09A90; font-size: 0.9rem; margin-top: 4px; }

.footer-links { display: flex; gap: 28px; }

.footer-links a { color: #A09A90; font-size: 0.95rem; text-decoration: none; transition: var(--transition); }

.footer-links a:hover { color: var(--gold-primary); }

.footer-bottom { padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, 0.04); color: #6A6358; font-size: 0.85rem; }

.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }

.legal-links { display: flex; align-items: center; gap: 12px; }

.legal-links a { text-decoration: none; color: #A09A90; }

.legal-links a:hover { color: var(--gold-primary); }

.separator { color: rgba(255, 255, 255, 0.08); }

/* Modals pure CSS (Mentions légales / CGU) */

.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14, 14, 18, 0.4); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 2000;
}

.modal-overlay:target { opacity: 1; pointer-events: auto; }

.modal-box {
  background: var(--bg-white); padding: 40px; border-radius: var(--border-radius-lg);
  max-width: 540px; width: 90%; position: relative; border: 1px solid var(--border-light);
}

.modal-close { position: absolute; top: 20px; right: 24px; font-size: 1.8rem; color: var(--text-muted); text-decoration: none; }

.modal-box h3 { font-size: 1.4rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }

.modal-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }

/* ==========================================================================
   14. CORRECTION FORMAT IMAGE EN AVANT (Format Bannière Éditoriale)
   ========================================================================== */

/* Évite l'étirement infini */

/* Proportion bandeau haut de gamme */

/* Centrage et espacement bas standard */

.featured-image-wrapper {
  width: 100%;
  max-width: 800px; 
  max-height: 280px; 
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin: 0 auto 24px; 
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   15. RESPONSIVITÉ SMARTPHONE & EFFET BURGER MULTI-PAGES
   ========================================================================== */

@media (max-width: 992px) {
  .serif-title { font-size: 2.2rem; }
  .large-name { font-size: 2.8rem; }
  .hero-premium-dark .font-large { font-size: 2.8rem; }
  .about-premium-wrapper, .parcours-wrapper, .expertise-wrapper, .conversion-wrapper, .hero-grid { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Rapproche les sections sur mobile */

/* Configuration de la structure Hamburger */

/* Rideau Mobile complet */

/* Activation pure CSS au clic */

/* Transformation en Croix (X) */

/* Alignements et bascules de grilles */

/* Reset des décalages mockups sur mobile pour faciliter le scroll */

/* mobile */

@media (max-width: 768px) {
  section { padding: 40px 0; } 
  
  
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1010;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: var(--transition);
  }

  
  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: -100%; 
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 14, 0.98); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 32px;
    padding: 24px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-links a { font-size: 1.25rem; }

  
  .menu-toggle:checked ~ .nav-links { left: 0; }

  
  .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-cta { display: none; }
  
  
  .grid-2, .grid-4, .tiktok-wrapper, .about-premium-wrapper, .parcours-wrapper, .expertise-wrapper, .conversion-wrapper, .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  
  .hero-right-visual { justify-content: center; }
  .hero-portrait-wrapper { width: 260px; height: 340px; }
  .hero-premium-dark .font-large { font-size: 2.2rem; }
  .hero-cta-group, .conversion-buttons, .about-key-row { flex-direction: column; gap: 16px; }
  .text-center-mobile { text-align: center; }
  .raison-icon-box { margin: 0 auto 20px auto; }
  .timeline { padding-left: 24px; }
  
  
  .phones-container { flex-direction: row; gap: 14px; padding: 20px 0; }
  .phone-mockup { width: 155px; height: 315px; border-radius: 26px; padding: 6px; }
  .phone-screen-img { border-radius: 20px; }
  .phone-linkedin, .phone-tiktok { transform: none !important; }
  .floating-card { display: none; } 
  
  .footer-content { flex-direction: column; text-align: center; gap: 32px; }
  .footer-links { flex-direction: column; gap: 16px; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
  .legal-links { justify-content: center; }
}

.section-white p {
  margin-bottom: 16px;
  line-height: 1.75;
}

/* ==========================================================================
   CORRECTIONS PREMIUM — Accueil
   ========================================================================== */

/* Fix 1 — Floating card : ne bloque plus les CTA hero */

/* Ne bloque plus les clics */

.floating-card .icon-small { font-size: 1.1rem; flex-shrink: 0; }

/* Fix 2 — Témoignages : grille 2 col, cartes moins hautes */

/* Fix 3 — Section 3 raisons : vraie grille 3 colonnes */

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

.raison-card {
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,0.05) !important;
  border-radius: 12px !important;
  padding: 28px !important;
  margin-bottom: 0 !important;
  transition: var(--transition);
}

.raison-card:hover {
  border-color: var(--gold-primary) !important;
  box-shadow: 0 12px 32px rgba(184,146,42,0.06) !important;
  transform: translateY(-2px);
}

/* Fix 4 — Section offres : layout 2 colonnes premium */

.conversion-left h2 { color: #FFFFFF; font-size: 2.2rem; margin-bottom: 20px; }

.conversion-p { color: #A09A90 !important; font-size: 0.98rem; line-height: 1.75; margin-bottom: 28px; text-align: left !important; }

.conversion-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Fix 5 — Titre conversion-card visible */

.conversion-card h4 {
  color: #E2C792 !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem !important;
  margin-bottom: 0;
}

/* Fix 6 — CTA bouton pleine largeur dans card */

.card-subtext {
  font-size: 0.78rem;
  color: #6A6358;
  text-align: center;
  margin-top: 12px;
}

/* Fix 7 — Responsive fixes */

/* ==========================================================================
   RESPONSIVE FIXES — Nouvelles sections index.html (Juin 2026)
   ========================================================================== */

/* ── HERO — Tags thématiques ─────────────────────────────────────────────── */

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #888;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── NEWSLETTER — Formulaire responsive ─────────────────────────────────── */

.nl-form-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nl-form-row input {
  flex: 1;
  min-width: 180px;
}

/* ── APERÇU EMAIL — Ne déborde pas sur mobile ────────────────────────────── */

.email-preview-wrap {
  margin-top: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.email-preview-box {
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.email-preview-bar {
  background: #E8E4DA;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-preview-dots { display: flex; gap: 5px; }

.email-preview-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}

.email-preview-title {
  font-size: 0.68rem;
  color: #888;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.email-preview-body { padding: 18px 20px; }

/* ── TIKTOK EMBED — Contenu responsive ──────────────────────────────────── */

.tiktok-embed-wrap {
  width: 100%;
  max-width: 325px;
  overflow: hidden;
  border-radius: 20px;
}

/* ── FAQ HOME — 2 colonnes desktop, 1 sur mobile ────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.faq-item-home {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item-home:hover { border-color: var(--gold-primary); }

.faq-item-home summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item-home summary::-webkit-details-marker { display: none; }

.faq-item-home summary::after {
  content: '+';
  color: var(--gold-primary);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item-home[open] summary::after { transform: rotate(45deg); }

.faq-item-home p {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  text-align: left !important;
}

/* ── CTA FINAL ───────────────────────────────────────────────────────────── */

.cta-final {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-final p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 32px;
  text-align: center !important;
}

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

.btn-cta-gold {
  background: var(--gold-primary);
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-gold:hover { background: #E2C792; transform: translateY(-2px); }

.btn-cta-ghost {
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-ghost:hover { border-color: var(--gold-primary); color: var(--gold-primary); }

/* ── PROOF BAR ───────────────────────────────────────────────────────────── */

.proof-bar {
  background: #0D0D0D;
  border-bottom: 1px solid rgba(197,160,89,0.12);
  padding: 14px 0;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #888;
  white-space: nowrap;
}

.proof-item strong { color: #C5A059; font-weight: 700; }

.proof-sep { color: rgba(197,160,89,0.25); font-size: 1.2rem; }

/* ── SUCCESS STORIES ─────────────────────────────────────────────────────── */

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

.success-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold-primary);
  border-radius: 10px;
  padding: 22px;
  transition: all 0.25s;
}

.success-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184,146,42,0.07);
}

.success-result {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.success-desc {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.success-profile {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── BACK TO TOP ─────────────────────────────────────────────────────────── */

#back-to-top {
  position: fixed;
  bottom: 88px; right: 24px;
  width: 40px; height: 40px;
  background: #0D0D0D;
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #C5A059; font-size: 1.1rem;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 990;
  text-decoration: none;
}

#back-to-top.visible { opacity: 1; pointer-events: auto; }

#back-to-top:hover { transform: translateY(-3px); background: #1A1A1A; }

/* ── HOME NEWSLETTER DARK ────────────────────────────────────────────────── */

.home-newsletter {
  background: #0D0D0D;
  border-radius: 14px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(197,160,89,0.15);
}

.home-newsletter-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #F5F5F3;
  margin-bottom: 10px;
  line-height: 1.3;
}

.home-newsletter-left p {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.65;
  text-align: left !important;
  margin: 0;
}

.home-nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 260px;
}

.home-nl-input {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.05);
  color: #FFF;
  outline: none;
  width: 100%;
}

.home-nl-input::placeholder { color: #555; }

.home-nl-input:focus { border-color: #C5A059; }

.home-nl-btn {
  background: #C5A059;
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.home-nl-btn:hover { background: #E2C792; }

.home-nl-sub {
  font-size: 0.72rem;
  color: #555;
  text-align: center;
  margin: 0;
}

/* ── EXIT INTENT MODAL ───────────────────────────────────────────────────── */

#exit-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.exit-modal-box {
  background: #0D0D0D;
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
}

.exit-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  color: #555; font-size: 1.4rem;
  cursor: pointer; background: none; border: none; line-height: 1;
}

.exit-modal-close:hover { color: #FFF; }

.exit-modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #F5F5F3;
  margin-bottom: 10px; line-height: 1.3;
}

.exit-modal-box p {
  color: #888; font-size: 0.88rem;
  line-height: 1.6; margin-bottom: 24px;
  text-align: center !important;
}

.exit-modal-form { display: flex; gap: 10px; flex-direction: column; }

.exit-modal-input {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; font-size: 0.88rem;
  background: rgba(255,255,255,0.05);
  color: #FFF; outline: none; width: 100%;
}

.exit-modal-input::placeholder { color: #555; }

.exit-modal-input:focus { border-color: #C5A059; }

.exit-modal-btn {
  background: #C5A059; color: #0D0D0D;
  font-weight: 700; font-size: 0.9rem;
  padding: 12px; border-radius: 6px;
  border: none; cursor: pointer; transition: background 0.2s;
}

.exit-modal-btn:hover { background: #E2C792; }

.exit-skip {
  display: block; margin-top: 12px;
  font-size: 0.78rem; color: #555;
  cursor: pointer; text-decoration: underline;
}

.exit-skip:hover { color: #888; }

/* ── RESPONSIVE GLOBAL MOBILE ────────────────────────────────────────────── */

/* Proof bar */

/* Newsletter section sombre */

/* Newsletter hero inline */

/* Success grid */

/* FAQ grid */

/* CTA final */

/* Aperçu email */

/* Back to top */

/* Exit modal */

/* Raisons grid */

/* Tags hero */

/* TikTok embed */

@media (max-width: 480px) {
  .proof-item { font-size: 0.74rem; }
  .cta-final h2 { font-size: 1.4rem; }
  .home-newsletter-left h3 { font-size: 1.2rem; }
}

/* ========================================================================
   INDEX.HTML
   ======================================================================== */

/* ══════════════════════════════════════════════════════
       UX PREMIUM — TOUTES LES AMÉLIORATIONS
    ══════════════════════════════════════════════════════ */

/* 1. BARRE DE PROGRESSION SCROLL */

#scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, #B8922A, #E2C792);
      z-index: 9999;
      transition: width 0.1s linear;
      border-radius: 0 2px 2px 0;
    }

/* 2. STICKY CTA MOBILE */

.sticky-cta-mobile {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: #0D0D0D;
      border-top: 1px solid rgba(197,160,89,0.2);
      padding: 12px 20px;
      z-index: 998;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
    }

.sticky-cta-mobile p { font-size: 0.82rem; color: #888; margin: 0; }

.sticky-cta-mobile p strong { color: #FFF; display: block; font-size: 0.88rem; }

.sticky-cta-mobile a {
      background: #C5A059;
      color: #0D0D0D;
      font-weight: 700;
      font-size: 0.82rem;
      padding: 10px 18px;
      border-radius: 8px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }

/* 3. FLOATING CARD */

/* 4. HERO CTA */

/* 5. TÉMOIGNAGES */

/* 6. 3 RAISONS */

/* 7. SECTION OFFRES */

.conversion-left { display: flex; flex-direction: column; }

/* 8. DERNIERS ARTICLES */

.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }

.article-preview-card {
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: all 0.25s ease;
    }

.article-preview-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); border-color: var(--gold-primary); }

.article-preview-img { height: 160px; background: linear-gradient(135deg, #0D1B2A, #1A3050); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; overflow: hidden; }

.article-preview-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }

.article-preview-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }

.article-cat { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-primary); margin-bottom: 8px; }

.article-preview-body h3 { font-family: 'Playfair Display',serif; font-size: 1rem; color: var(--text-dark); line-height: 1.35; margin-bottom: 10px; }

.article-preview-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; flex-grow: 1; margin-bottom: 14px; }

.article-read { font-size: 0.8rem; font-weight: 600; color: var(--gold-primary); }

/* 9. FAQ */

/* 10. CTA FINAL */

.cta-final h2 em { font-style: italic; color: #C5A059; }

/* RESPONSIVE */

/* ── PREUVE SOCIALE HERO ─────────────────────────────────── */

/* ── SUCCESS STORIES ─────────────────────────────────────── */

/* ── NEWSLETTER HOME ─────────────────────────────────────── */

#home-nl-msg {
      display: none;
      font-size: 0.8rem;
      padding: 8px 12px;
      border-radius: 6px;
      margin-top: 4px;
    }

/* ── BOUTON RETOUR EN HAUT ───────────────────────────────── */

/* Exit intent supprimé */

#exit-nl-msg {
      display: none; font-size: 0.8rem;
      padding: 8px 12px; border-radius: 6px; margin-top: 8px;
    }

/* ========================================================================
   ALTERNANCE — INDEX.HTML
   ======================================================================== */

/* ── UX PREMIUM ─────────────────────────────────────────── */

/* ── STATS BLOCK ─────────────────────────────────────────── */

.alternance-stats {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; margin: 32px 0;
    }

.alternance-stat {
      background: var(--bg-cream); border: 1px solid var(--border-light);
      border-radius: 12px; padding: 20px; text-align: center;
    }

.alternance-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; color: var(--gold-primary);
      font-weight: 700; display: block; line-height: 1;
    }

.alternance-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; }

/* ── CALLOUT BOX ─────────────────────────────────────────── */

.callout-box {
      background: var(--bg-cream);
      border-left: 3px solid var(--gold-primary);
      border-radius: 0 10px 10px 0;
      padding: 16px 20px;
      margin: 24px 0;
      font-size: 0.95rem;
      color: var(--text-dark);
      line-height: 1.7;
    }

.callout-box p { margin: 0; text-align: left !important; }

/* ── FAQ PILIER ──────────────────────────────────────────── */

.faq-pilier { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

.faq-pilier details {
      background: var(--bg-white); border: 1px solid var(--border-light);
      border-radius: 10px; overflow: hidden; transition: border-color 0.2s;
    }

.faq-pilier details:hover { border-color: var(--gold-primary); }

.faq-pilier summary {
      padding: 16px 20px; font-weight: 600; font-size: 0.95rem;
      color: var(--text-dark); cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      list-style: none;
    }

.faq-pilier summary::-webkit-details-marker { display: none; }

.faq-pilier summary::after {
      content: '+'; color: var(--gold-primary);
      font-size: 1.3rem; font-weight: 300; flex-shrink: 0; margin-left: 12px;
      transition: transform 0.2s;
    }

.faq-pilier details[open] summary::after { transform: rotate(45deg); }

.faq-pilier details p {
      padding: 0 20px 16px; font-size: 0.88rem;
      color: var(--text-muted); line-height: 1.65; margin: 0;
      text-align: left !important;
    }

/* ========================================================================
   CV-CANDIDATURE — INDEX.HTML
   ======================================================================== */

.cv-stats {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; margin: 32px 0;
    }

.cv-stat {
      background: var(--bg-cream); border: 1px solid var(--border-light);
      border-radius: 12px; padding: 20px; text-align: center;
    }

.cv-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; color: var(--gold-primary);
      font-weight: 700; display: block; line-height: 1;
    }

.cv-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; }

/* ========================================================================
   LINKEDIN — INDEX.HTML
   ======================================================================== */

/* ── UX PREMIUM ─────────────────────────────────────────── */

/* ── STATS BLOCK ─────────────────────────────────────────── */

.linkedin-stats {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; margin: 32px 0;
    }

.linkedin-stat {
      background: var(--bg-cream); border: 1px solid var(--border-light);
      border-radius: 12px; padding: 20px; text-align: center;
    }

.linkedin-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; color: var(--gold-primary);
      font-weight: 700; display: block; line-height: 1;
    }

.linkedin-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; }

/* ── CALLOUT BOX ─────────────────────────────────────────── */

/* ── FAQ PILIER ──────────────────────────────────────────── */

/* ========================================================================
   LINKEDIN — COMMENT-ECRIRE-TITRE-LINKEDIN.HTML
   ======================================================================== */

.code-block {
      background: #F5F5F5;
      padding: 16px;
      border-radius: 8px;
      margin: 16px 0;
      overflow-x: auto;
      font-size: 0.88rem;
      color: #0E0E12;
      border-left: 3px solid #B8922A;
      font-family: monospace;
    }

.sources-block {
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid var(--border-light);
      font-size: 0.82rem;
      color: var(--text-muted);
    }

.sources-block p { margin-bottom: 4px; text-align: left !important; }

.sources-block a { color: var(--gold-primary); text-decoration: underline; }

/* Tableau domaines */

.domaines-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.88rem; }

.domaines-table th {
      background: #0E0E12; color: #FFF;
      padding: 10px 12px; border: 1px solid #E8E4DA;
      text-align: left; font-weight: 600;
    }

.domaines-table td {
      padding: 10px 12px; border: 1px solid #E8E4DA;
      color: #333; vertical-align: top; line-height: 1.5;
    }

.domaines-table tr:nth-child(even) td { background: #FAFAF8; }

/* ========================================================================
   LINKEDIN — COMMENT-OPTIMISER-LINKEDIN.HTML
   ======================================================================== */

/* ── UX PREMIUM ─────────────────────────────────────────── */

/* ── CALLOUT BOX ─────────────────────────────────────────── */

/* ── SOURCES ─────────────────────────────────────────────── */

/* ── FAQ ─────────────────────────────────────────────────── */

/* ========================================================================
   LINKEDIN — PHOTO-LINKEDIN-ETUDIANT-ETRANGER.HTML
   ======================================================================== */

/* ── UX PREMIUM ─────────────────────────────────────────── */

/* ── CALLOUT BOX ─────────────────────────────────────────── */

/* ── SOURCES ─────────────────────────────────────────────── */

/* ── FAQ ─────────────────────────────────────────────────── */

/* ========================================================================
   ALTERNANCE — COMMENT-CONTACTER-RECRUTEUR-LINKEDIN.HTML
   ======================================================================== */

.callout-box + .callout-box { margin-top: 0; }

/* ========================================================================
   ALTERNANCE — COMMENT-POSTULER-ALTERNANCE-FRANCE.HTML
   ======================================================================== */

.suivi-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.82rem; }

.suivi-table th {
      background: #0E0E12; color: #FFF;
      padding: 10px 12px; border: 1px solid #E8E4DA;
      text-align: left; font-weight: 600;
    }

.suivi-table td {
      padding: 10px 12px; border: 1px solid #E8E4DA;
      color: #333; vertical-align: top; line-height: 1.5;
    }

/* ========================================================================
   ALTERNANCE — COMMENT-TROUVER-ALTERNANCE-ETUDIANT-ETRANGER-FRANCE.HTML
   ======================================================================== */

/* ========================================================================
   ALTERNANCE — SITES-TROUVER-ALTERNANCE-FRANCE.HTML
   ======================================================================== */

.sites-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.82rem; }

.sites-table th {
      background: #0E0E12; color: #FFF;
      padding: 10px 12px; border: 1px solid #E8E4DA;
      text-align: left; font-weight: 600;
    }

.sites-table td {
      padding: 10px 12px; border: 1px solid #E8E4DA;
      color: #333; vertical-align: top; line-height: 1.5;
    }

.sites-table tr:nth-child(even) td { background: #FAFAF8; }

/* ========================================================================
   CV & CANDIDATURE — COMMENT-FAIRE-CV-FRANCAIS-ETUDIANT-ETRANGER.HTML
   ======================================================================== */

/* ========================================================================
   CV & CANDIDATURE — COMMENT-FAIRE-LETTRE-MOTIVATION-ALTERNANCE.HTML
   ======================================================================== */

/* ========================================================================
   BLOG
   ======================================================================== */

/* ── SCROLL PROGRESS ───────────────────────────────────────────── */

/* ── HERO BLOG ─────────────────────────────────────────────────── */

.blog-hero {
      background: #0D0D0D;
      padding: 100px 0 70px;
      position: relative;
      overflow: hidden;
    }

.blog-hero::before {
      content: '';
      position: absolute; top: -120px; right: -120px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(197,160,89,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

.blog-hero::after {
      content: '';
      position: absolute; bottom: -80px; left: -80px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(197,160,89,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

.blog-hero .container { position: relative; z-index: 1; max-width: 1050px; margin: 0 auto; padding: 0 24px; }

.blog-hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(197,160,89,0.12);
      border: 1px solid rgba(197,160,89,0.3);
      color: #C5A059;
      font-size: 0.75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.12em;
      padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
    }

.blog-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; color: #F5F5F3;
      line-height: 1.2; margin-bottom: 20px; max-width: 640px;
    }

.blog-hero h1 em { font-style: italic; color: #C5A059; }

.blog-hero-sub {
      color: #888; font-size: 1rem; line-height: 1.7;
      max-width: 520px; margin-bottom: 36px;
    }

.blog-hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }

.blog-stat { display: flex; flex-direction: column; gap: 2px; }

.blog-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem; font-weight: 700; color: #C5A059; line-height: 1;
    }

.blog-stat-label {
      font-size: 0.74rem; color: #666;
      text-transform: uppercase; letter-spacing: 0.08em;
    }

/* ── BREADCRUMB ────────────────────────────────────────────────── */

.breadcrumb {
      padding: 10px 0;
      font-size: 0.78rem; color: #888;
      border-bottom: 1px solid #E8E4DA;
      background: #FAFAF8;
    }

.breadcrumb a { color: #888; text-decoration: none; }

.breadcrumb a:hover { color: #C5A059; }

.breadcrumb span { margin: 0 6px; }

/* ── FILTRES CATÉGORIES ────────────────────────────────────────── */

.blog-filters {
      background: #F9F8F6;
      border-bottom: 1px solid #E8E4DA;
      padding: 0; position: sticky; top: 60px; z-index: 100;
    }

.blog-filters-inner {
      display: flex; gap: 0;
      overflow-x: auto; scrollbar-width: none;
    }

.blog-filters-inner::-webkit-scrollbar { display: none; }

.filter-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 16px 24px;
      font-size: 0.85rem; font-weight: 600; color: #888;
      background: transparent; border: none;
      border-bottom: 2px solid transparent;
      cursor: pointer; white-space: nowrap;
      transition: all 0.2s; text-decoration: none;
    }

.filter-btn:hover { color: #0D0D0D; }

.filter-btn.active { color: #0D0D0D; border-bottom-color: #C5A059; }

.filter-count {
      background: #E8E4DA; color: #888;
      font-size: 0.68rem; padding: 2px 7px; border-radius: 10px;
    }

/* ── SECTIONS ──────────────────────────────────────────────────── */

.blog-section { padding: 52px 0 0; }

.blog-section:last-of-type { padding-bottom: 64px; }

.blog-section-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 28px; padding-bottom: 16px;
      border-bottom: 1px solid #E8E4DA;
    }

.blog-section-icon {
      width: 36px; height: 36px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }

.icon-alt { background: rgba(13,27,42,0.08); }

.icon-li  { background: rgba(26,46,74,0.08); }

.icon-cv  { background: rgba(26,48,32,0.08); }

.blog-section-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem; font-weight: 700; color: #0E0E12; margin: 0 0 3px;
    }

.blog-section-info p { font-size: 0.84rem; color: #888; margin: 0; }

.blog-section-count {
      margin-left: auto; background: #F0EDE6; color: #888;
      font-size: 0.74rem; font-weight: 700;
      padding: 3px 10px; border-radius: 20px;
    }

/* ── FEATURED CARD ─────────────────────────────────────────────── */

.blog-featured {
      display: grid; grid-template-columns: 1.1fr 1fr;
      gap: 0; background: #0D0D0D; border-radius: 10px;
      overflow: hidden; margin-bottom: 20px;
      text-decoration: none; color: inherit;
      transition: transform 0.3s, box-shadow 0.3s;
      min-height: 280px;
    }

.blog-featured:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

.blog-featured-img { background: #1A1A1A; position: relative; overflow: hidden; }

.blog-featured-img img {
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.7; transition: opacity 0.4s;
    }

.blog-featured:hover .blog-featured-img img { opacity: 0.85; }

.blog-featured-img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem;
      background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
    }

.blog-featured-body {
      padding: 32px 36px;
      display: flex; flex-direction: column; justify-content: center;
    }

.article-tag-dark {
      font-size: 0.7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: #C5A059; margin-bottom: 12px;
    }

.blog-featured-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem; color: #F5F5F3;
      line-height: 1.3; margin-bottom: 12px;
    }

.blog-featured-body p {
      color: #888; font-size: 0.88rem;
      line-height: 1.6; margin-bottom: 22px;
    }

.read-more-btn {
      display: inline-flex; align-items: center; gap: 7px;
      background: #C5A059; color: #0D0D0D;
      font-weight: 700; font-size: 0.82rem;
      padding: 9px 18px; border-radius: 6px;
      text-decoration: none; transition: background 0.2s;
      width: fit-content;
    }

.read-more-btn:hover { background: #E2C792; }

/* ── ARTICLE CARDS ─────────────────────────────────────────────── */

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

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

.article-card {
      background: #FFF; border: 1px solid #E8E4DA;
      border-radius: 8px; overflow: hidden;
      display: flex; flex-direction: column;
      text-decoration: none; color: inherit;
      transition: all 0.22s;
    }

.article-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.07);
      border-color: #C5A059;
    }

/* Image réduite */

.article-card-img {
      height: 120px;
      background: #1A1A1A; overflow: hidden; position: relative;
    }

.article-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s;
    }

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

.article-card-img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
    }

/* Corps compact */

.article-card-body {
      padding: 14px 16px 16px;
      display: flex; flex-direction: column; flex-grow: 1;
    }

.article-card-meta {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 7px;
    }

.article-tag {
      font-size: 0.66rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.07em; color: #C5A059;
    }

.article-read-time {
      font-size: 0.66rem; color: #AAA; font-weight: 500;
    }

.article-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem; color: #0E0E12;
      line-height: 1.35; margin-bottom: 8px;
    }

.article-card-body p {
      color: #777; font-size: 0.78rem;
      line-height: 1.55; flex-grow: 1; margin-bottom: 12px;
    }

.article-read-more {
      font-size: 0.76rem; font-weight: 600; color: #A3875F;
      display: inline-flex; align-items: center; gap: 4px;
    }

/* Badge */

.article-badge {
      position: absolute; top: 8px; left: 8px;
      background: #C5A059; color: #0D0D0D;
      font-size: 0.6rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.08em;
      padding: 3px 8px; border-radius: 4px; z-index: 2;
    }

.article-badge.new { background: #2D7D46; color: #FFF; }

/* ── NEWSLETTER ────────────────────────────────────────────────── */

.blog-newsletter {
      margin: 52px 0 0;
      background: #F5F3EE;
      border: 1px solid #E8E4DA;
      border-radius: 12px;
      padding: 36px 40px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
    }

.blog-newsletter h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; color: #0E0E12; margin-bottom: 8px;
    }

.blog-newsletter p { font-size: 0.88rem; color: #666; line-height: 1.6; }

.newsletter-form {
      display: flex; gap: 10px; flex-shrink: 0;
    }

.newsletter-input {
      padding: 10px 16px; border: 1px solid #E8E4DA;
      border-radius: 6px; font-size: 0.88rem;
      background: #FFF; color: #0D0D0D;
      width: 220px; outline: none;
    }

.newsletter-input:focus { border-color: #C5A059; }

.newsletter-btn {
      background: #0D0D0D; color: #FFF;
      font-weight: 700; font-size: 0.85rem;
      padding: 10px 20px; border-radius: 6px;
      border: none; cursor: pointer; white-space: nowrap;
      transition: background 0.2s;
    }

.newsletter-btn:hover { background: #C5A059; color: #0D0D0D; }

/* ── CTA FINAL ─────────────────────────────────────────────────── */

.blog-cta {
      margin: 48px 0 72px;
      background: linear-gradient(135deg, #0D0D0D 0%, #1A1208 100%);
      border: 1px solid rgba(197,160,89,0.2);
      border-radius: 14px; padding: 48px 44px;
      display: grid; grid-template-columns: 1fr auto;
      gap: 36px; align-items: center;
    }

.blog-cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; color: #F5F5F3; margin-bottom: 10px;
    }

.blog-cta p { color: #888; font-size: 0.92rem; line-height: 1.65; max-width: 460px; }

.cta-btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: #C5A059; color: #0D0D0D;
      font-weight: 700; font-size: 0.92rem;
      padding: 13px 24px; border-radius: 8px;
      text-decoration: none; white-space: nowrap;
      transition: background 0.2s, transform 0.2s;
    }

.cta-btn-gold:hover { background: #E2C792; transform: translateY(-2px); }

/* ── RESPONSIVE ────────────────────────────────────────────────── */

@media (max-width: 900px) {
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }

/* ========================================================================
   GUIDE-LINKEDIN-GRATUIT
   ======================================================================== */

/* ── NAVBAR ──────────────────────────────────────────── */

.nav {
      background: rgba(13,13,13,0.97);
      border-bottom: 1px solid rgba(197,160,89,0.15);
      padding: 16px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }

.nav-logo { color: #FFF; font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; text-decoration: none; font-family: 'Playfair Display', serif; }

.nav-back { color: #666; font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }

.nav-back:hover { color: #C5A059; }

/* ── LAYOUT SPLIT ────────────────────────────────────── */

.hero {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 57px);
    }

/* ── CÔTÉ GAUCHE — PITCH ─────────────────────────────── */

.hero-left {
      background: #0D0D0D;
      padding: 48px 56px 48px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

.hero-left::before {
      content: '';
      position: absolute;
      top: -120px; left: -120px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(197,160,89,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

.hero-left::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -40px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(197,160,89,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

.hero-left > * { position: relative; z-index: 1; }

.eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(197,160,89,0.12);
      border: 1px solid rgba(197,160,89,0.3);
      color: #C5A059;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 28px;
      width: fit-content;
    }

.hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.2vw, 2.8rem);
      font-weight: 700;
      color: #F5F5F3;
      line-height: 1.18;
      margin-bottom: 20px;
    }

.hero-title em { font-style: italic; color: #C5A059; }

.hero-sub {
      color: #888;
      font-size: 0.98rem;
      line-height: 1.72;
      margin-bottom: 36px;
      max-width: 420px;
    }

/* BULLETS */

.bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }

.bullet { display: flex; align-items: flex-start; gap: 12px; }

.bullet-icon {
      width: 20px; height: 20px;
      background: rgba(197,160,89,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.62rem;
      color: #C5A059;
      flex-shrink: 0;
      margin-top: 2px;
      font-weight: 700;
    }

.bullet-text { color: #C4C0B9; font-size: 0.9rem; line-height: 1.55; }

.bullet-text strong { color: #F5F5F3; }

/* SOCIAL PROOF */

.social-proof {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: rgba(197,160,89,0.06);
      border: 1px solid rgba(197,160,89,0.15);
      border-radius: 10px;
      width: fit-content;
    }

.avatars { display: flex; }

.avatar {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1A2E4A, #2D4A6B);
      border: 2px solid #0D0D0D;
      margin-left: -8px;
      font-size: 0.6rem;
      display: flex; align-items: center; justify-content: center;
      color: #C5A059;
      font-weight: 700;
    }

.avatar:first-child { margin-left: 0; }

.social-text { font-size: 0.82rem; color: #888; }

.social-text strong { color: #C5A059; }

/* ── CÔTÉ DROIT — FORMULAIRE ─────────────────────────── */

.hero-right {
      background: #F9F8F6;
      padding: 48px 80px 48px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

/* PREVIEW GUIDE LINKEDIN */

.guide-preview {
      background: #FFF;
      border: 1px solid #E8E4DA;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.07);
      position: relative;
    }

.guide-badge {
      position: absolute;
      top: -11px; right: 16px;
      background: #C5A059;
      color: #0D0D0D;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 3px 10px;
      border-radius: 10px;
    }

.guide-cover {
      background: linear-gradient(135deg, #0D0D0D 0%, #1A2032 100%);
      border-radius: 8px;
      padding: 20px 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      overflow: hidden;
    }

.guide-cover::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 120px; height: 120px;
      background: radial-gradient(circle, rgba(197,160,89,0.2) 0%, transparent 70%);
    }

.guide-cover-eyebrow {
      font-size: 0.58rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #C5A059;
    }

.guide-cover-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: #F5F5F3;
      line-height: 1.3;
    }

.guide-cover-title em { color: #C5A059; font-style: italic; }

.guide-cover-author {
      font-size: 0.62rem;
      color: #666;
      margin-top: 4px;
    }

.guide-cover-author strong { color: #C5A059; }

.guide-chapters {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

.guide-chapter {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      color: #666;
    }

.guide-chapter-num {
      width: 16px; height: 16px;
      background: rgba(197,160,89,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.58rem;
      font-weight: 700;
      color: #C5A059;
      flex-shrink: 0;
    }

.guide-filename {
      font-size: 0.7rem;
      color: #AAA;
      text-align: center;
      margin-top: 10px;
      font-family: monospace;
    }

/* FORM */

.form-head { margin-bottom: 24px; }

.form-head h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      color: #0E0E12;
      margin-bottom: 8px;
    }

.form-head p { font-size: 0.88rem; color: #888; line-height: 1.55; }

/* RGPD */

.rgpd-error-msg {
      display: none;
      color: #B85C38;
      font-size: 0.78rem;
      font-weight: 600;
      margin-top: 6px;
      padding: 8px 12px;
      background: #FFF3EE;
      border: 1px solid #F5C6B0;
      border-radius: 6px;
    }

.rgpd-error-msg.visible { display: block; }

/* ── FOOTER ──────────────────────────────────────────── */

.page-footer {
      background: #0A0A0A;
      border-top: 1px solid rgba(197,160,89,0.08);
      padding: 16px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

.footer-text { font-size: 0.75rem; color: #444; }

.footer-link { font-size: 0.75rem; color: #444; text-decoration: none; transition: color 0.2s; }

.footer-link:hover { color: #C5A059; }

/* ── RESPONSIVE ──────────────────────────────────────── */

/* ── BREVO FORM OVERRIDES ────────────────────────────── */

.sib-form { background: transparent !important; padding: 0 !important; text-align: left !important; }

#sib-container { background: transparent !important; border: none !important; border-radius: 0 !important; max-width: 100% !important; padding: 0 !important; text-align: left !important; }

.sib-form-block p { display: none !important; }

.entry__label {
      display: block !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 0.72rem !important;
      font-weight: 700 !important;
      color: #555 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.07em !important;
      margin-bottom: 6px !important;
    }

.entry__specification { display: none !important; }

.entry__field .input,
    #sib-container input.input {
      width: 100% !important;
      padding: 12px 16px !important;
      border: 1.5px solid #E8E4DA !important;
      border-radius: 8px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 0.95rem !important;
      color: #0E0E12 !important;
      background: #FFF !important;
      outline: none !important;
      transition: border-color 0.2s !important;
      box-sizing: border-box !important;
    }

#sib-container input.input:focus { border-color: #C5A059 !important; box-shadow: 0 0 0 3px rgba(197,160,89,0.12) !important; }

#sib-container input.input::placeholder { color: #BBB !important; }

.form__entry { margin-bottom: 14px !important; }

.sib-checkbox-group .form__label-row > div {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 10px !important;
    }

.sib-checkbox-group .entry__choice { display: block !important; width: 100% !important; margin: 0 !important; }

.sib-checkbox-group .checkbox__label {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 6px !important;
      padding: 14px 8px !important;
      border: 1.5px solid #E8E4DA !important;
      border-radius: 8px !important;
      background: #FFF !important;
      cursor: pointer !important;
      transition: all 0.2s !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 0.78rem !important;
      font-weight: 600 !important;
      color: #555 !important;
      text-align: center !important;
      min-height: 64px !important;
      width: 100% !important;
    }

.sib-checkbox-group .checkbox__label:hover { border-color: #C5A059 !important; background: rgba(197,160,89,0.04) !important; }

.input_replaced { display: none !important; }

.sib-checkbox-group .checkbox { display: none !important; }

.sib-checkbox-group .checkbox__label:has(.input_replaced:checked) {
      border-color: #C5A059 !important;
      background: rgba(197,160,89,0.08) !important;
      color: #A3875F !important;
    }

.sib-optin { margin-top: 4px !important; }

.sib-optin .entry__label { display: none !important; }

.sib-optin .entry__choice { display: block !important; width: 100% !important; margin: 0 !important; }

.sib-optin .entry__choice > label {
      display: flex !important;
      align-items: flex-start !important;
      gap: 10px !important;
      padding: 14px 16px !important;
      border: 1.5px solid #E8E4DA !important;
      border-radius: 8px !important;
      background: #FFFDF4 !important;
      cursor: pointer !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 0.82rem !important;
      color: #555 !important;
      line-height: 1.55 !important;
      text-align: left !important;
      position: relative !important;
    }

.sib-optin .input_replaced {
      position: absolute !important;
      opacity: 0 !important;
      width: 18px !important;
      height: 18px !important;
      top: 14px !important;
      left: 16px !important;
      margin: 0 !important;
      cursor: pointer !important;
      z-index: 2 !important;
    }

.sib-optin .checkbox {
      display: inline-flex !important;
      flex-shrink: 0 !important;
      width: 18px !important;
      height: 18px !important;
      border: 1.5px solid #C5A059 !important;
      border-radius: 4px !important;
      background: #FFF !important;
      margin-top: 1px !important;
      position: relative !important;
      z-index: 1 !important;
      transition: background 0.15s, border-color 0.15s !important;
      align-items: center !important;
      justify-content: center !important;
    }

.sib-optin .entry__specification { display: none !important; }

.sib-optin .entry__error { display: none !important; }

.sib-form-block__button {
      width: 100% !important;
      padding: 15px !important;
      background: #C5A059 !important;
      color: #0D0D0D !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 1rem !important;
      font-weight: 700 !important;
      border: none !important;
      border-radius: 8px !important;
      cursor: pointer !important;
      transition: background 0.2s, transform 0.15s !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 8px !important;
    }

.sib-form-block__button:hover { background: #D4B06A !important; transform: translateY(-1px) !important; }

.sib-hide-loader-icon { display: none !important; }

#success-message {
      background: rgba(19,206,102,0.08) !important;
      border-color: #13ce66 !important;
      border-radius: 8px !important;
      color: #085229 !important;
      font-family: 'Inter', sans-serif !important;
    }

#error-message {
      background: rgba(255,73,73,0.08) !important;
      border-color: #ff4949 !important;
      border-radius: 8px !important;
      font-family: 'Inter', sans-serif !important;
    }

.form-note { font-size: 0.75rem; color: #AAA; text-align: center; margin-top: 12px; }

/* ========================================================================
   MERCI
   ======================================================================== */

/* NAVBAR */

.nav-link { color: #666; font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }

.nav-link:hover { color: #C5A059; }

/* MAIN */

.main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 24px;
      position: relative;
      overflow: hidden;
    }

.main::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

.card {
      background: #141414;
      border: 1px solid rgba(197,160,89,0.15);
      border-radius: 16px;
      padding: 56px 48px;
      max-width: 560px;
      width: 100%;
      text-align: center;
      position: relative;
      z-index: 1;
      box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    }

/* CHECKMARK ANIMÉ */

.check-wrap {
      width: 72px; height: 72px;
      background: rgba(197,160,89,0.1);
      border: 2px solid rgba(197,160,89,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 28px;
      animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

@keyframes popIn {
      0% { transform: scale(0); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

.check-icon { font-size: 2rem; animation: fadeIn 0.4s ease 0.3s both; }

@keyframes fadeIn {
      from { opacity: 0; transform: scale(0.5); }
      to { opacity: 1; transform: scale(1); }
    }

/* TEXTE */

.card h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; color: #F5F5F3;
      line-height: 1.25; margin-bottom: 16px;
    }

.card h1 em { font-style: italic; color: #C5A059; }

.card > p {
      color: #888; font-size: 0.95rem;
      line-height: 1.7; margin-bottom: 32px;
    }

/* ÉTAPES SUIVANTES */

.next-steps {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      padding: 24px; margin-bottom: 32px; text-align: left;
    }

.next-steps-title {
      font-size: 0.72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: #555; margin-bottom: 16px;
    }

.next-step { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }

.next-step:last-child { margin-bottom: 0; }

.step-dot { width: 8px; height: 8px; background: #C5A059; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

.step-dot.grey { background: #333; }

.step-text { font-size: 0.88rem; color: #888; line-height: 1.55; }

.step-text strong { color: #C4C0B9; }

.divider { height: 1px; background: rgba(255,255,255,0.06); margin: 28px 0; }

/* CTA */

.cta-title { font-size: 0.88rem; color: #666; margin-bottom: 16px; }

.cta-title strong { color: #888; }

.btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: #C5A059; color: #0D0D0D;
      font-weight: 700; font-size: 0.92rem;
      padding: 13px 28px; border-radius: 8px;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
      margin-bottom: 12px; width: 100%; justify-content: center;
    }

.btn-gold:hover { background: #D4B06A; transform: translateY(-1px); }

/* SOCIAL */

.social-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); }

.social-label { font-size: 0.75rem; color: #555; margin-bottom: 14px; }

.social-links { display: flex; gap: 12px; justify-content: center; }

.social-btn {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: #888; font-size: 0.8rem; font-weight: 600;
      padding: 8px 16px; border-radius: 6px;
      text-decoration: none; transition: all 0.2s;
    }

.social-btn:hover { border-color: rgba(197,160,89,0.3); color: #C5A059; }

/* FOOTER */

/* CONFETTI */

.confetti-wrap { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }

.confetti-piece { position: absolute; top: -10px; border-radius: 2px; animation: fall linear forwards; }

@keyframes fall {
      0% { transform: translateY(0) rotate(0deg); opacity: 1; }
      100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
    }

/* ── BLOC TÉLÉCHARGEMENT DIRECT ─────────────────────────── */

/* caché par défaut, affiché uniquement pour ?type=cv */

.download-block {
      display: none; 
      background: linear-gradient(135deg, #1A1208, #0D0D0D);
      border: 1px solid rgba(197,160,89,0.25);
      border-radius: 14px;
      padding: 28px;
      margin-bottom: 28px;
      text-align: center;
    }

.download-block.visible { display: block; }

.cv-preview {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      padding: 16px 20px;
      margin-bottom: 20px;
      text-align: left;
    }

.cv-preview-icon {
      width: 48px; height: 56px;
      background: linear-gradient(135deg, #C5A059, #A3875F);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(197,160,89,0.3);
    }

.cv-preview-info { flex: 1; }

.cv-preview-name {
      font-size: 0.88rem; font-weight: 700;
      color: #F5F5F3; margin-bottom: 4px;
    }

.cv-preview-meta {
      font-size: 0.74rem; color: #666;
      display: flex; align-items: center; gap: 10px;
    }

.cv-preview-badge {
      background: rgba(197,160,89,0.15);
      border: 1px solid rgba(197,160,89,0.3);
      color: #C5A059;
      font-size: 0.62rem; font-weight: 700;
      padding: 2px 8px; border-radius: 10px;
      text-transform: uppercase; letter-spacing: 0.08em;
    }

.btn-download {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, #C5A059, #A3875F);
      color: #0D0D0D;
      font-weight: 800; font-size: 0.95rem;
      padding: 14px 28px; border-radius: 8px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      width: 100%; justify-content: center;
      box-shadow: 0 4px 20px rgba(197,160,89,0.3);
      margin-bottom: 10px;
    }

.btn-download:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(197,160,89,0.4);
    }

.download-note {
      font-size: 0.72rem; color: #555;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }

@media (max-width: 600px) {
      .card { padding: 36px 24px; }
      .nav, .footer { padding: 14px 20px; }
      .footer { flex-direction: column; gap: 8px; text-align: center; }
      .social-links { flex-wrap: wrap; }
    }

/* ========================================================================
   MODELE-CV-GRATUIT
   ======================================================================== */

/* ── NAVBAR ──────────────────────────────────────────── */

/* ── LAYOUT SPLIT ────────────────────────────────────── */

/* ── CÔTÉ GAUCHE — PITCH ─────────────────────────────── */

/* BULLETS */

/* SOCIAL PROOF */

/* ── CÔTÉ DROIT — FORMULAIRE ─────────────────────────── */

/* PREVIEW CV MINIFIÉE */

.cv-badge {
      position: absolute;
      top: -11px; right: 16px;
      background: #C5A059;
      color: #0D0D0D;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 3px 10px;
      border-radius: 10px;
    }

.cv-inner {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 14px;
    }

.cv-sidebar {
      background: #0D0D0D;
      border-radius: 4px;
      padding: 10px 8px;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

.cvl { height: 3px; background: #333; border-radius: 2px; }

.cvl.g { background: #C5A059; width: 55%; }

.cvl.s { width: 65%; }

.cvl.xs { width: 45%; }

.cv-body { display: flex; flex-direction: column; gap: 7px; padding-top: 2px; }

.cvb { height: 3px; background: #E8E4DA; border-radius: 2px; }

.cvb.h { background: #0D0D0D; height: 5px; width: 70%; }

.cvb.m { width: 60%; }

.cvb.s { width: 45%; }

.cv-filename {
      font-size: 0.7rem;
      color: #AAA;
      text-align: center;
      margin-top: 10px;
      font-family: monospace;
    }

/* FORM */

.form-group { margin-bottom: 14px; }

.form-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      color: #555;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 6px;
    }

.form-input {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid #E8E4DA;
      border-radius: 8px;
      font-size: 0.95rem;
      color: #0E0E12;
      background: #FFF;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

.form-input:focus {
      border-color: #C5A059;
      box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
    }

.form-input::placeholder { color: #BBB; }

.form-btn {
      width: 100%;
      padding: 15px;
      background: #C5A059;
      color: #0D0D0D;
      border: none;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s, transform 0.15s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

.form-btn:hover { background: #D4B06A; transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────────────── */

/* ── RESPONSIVE ──────────────────────────────────────── */

/* SOURCE GRID */

.source-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 4px;
    }

.source-option { cursor: pointer; }

.source-option input[type="radio"] { display: none; }

.source-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 12px 8px;
      border: 1.5px solid #E8E4DA;
      border-radius: 8px;
      background: #FFF;
      transition: all 0.2s;
      text-align: center;
    }

.source-option input[type="radio"]:checked + .source-card {
      border-color: #C5A059;
      background: rgba(197,160,89,0.06);
      box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
    }

.source-card:hover {
      border-color: #C5A059;
      background: rgba(197,160,89,0.04);
    }

.source-icon { font-size: 1.3rem; }

.source-label { font-size: 0.72rem; font-weight: 600; color: #555; font-family: sans-serif; }

.source-option input[type="radio"]:checked + .source-card .source-label { color: #A3875F; }

/* ── BREVO FORM OVERRIDES — COMPLET ─────────────────── */

/* Labels */

/* Inputs texte */

/* SOURCE — grille 3 colonnes */

.sib-checkbox-group .input_replaced { display: none !important; }

/* RGPD */

/* Wrapper relatif pour superposer la vraie checkbox et le visuel */

/* Vraie checkbox — invisible mais cliquable par-dessus le visuel */

/* Case visuelle */

/* État coché — visuel doré avec coche */

.sib-optin .input_replaced:checked ~ * .checkbox,
    .sib-optin .input_replaced:checked + .checkbox {
      background: #C5A059 !important;
      border-color: #C5A059 !important;
    }

.sib-optin .input_replaced:checked + .checkbox::after {
      content: "✓" !important;
      color: #0D0D0D !important;
      font-size: 11px !important;
      font-weight: 900 !important;
      line-height: 1 !important;
    }

/* BOUTON */

/* Messages succès/erreur */

#success-message, #error-message { border-radius: 8px !important; font-family: 'Inter', sans-serif !important; font-size: 0.88rem !important; }

/* ── BREVO FORM OVERRIDES ─────────────────────────────── */

/* On écrase les styles Brevo pour respecter ta charte */

/* Cache titre "Newsletter" et description Brevo */

/* Cache les textes d'aide Brevo */

/* SOURCE — Grille de cartes avec icônes */

.sib-checkbox-group .entry__label {
      margin-bottom: 10px !important;
    }

.sib-checkbox-group .input_replaced:checked + .checkbox + span,
    .sib-checkbox-group .checkbox__label:has(.input_replaced:checked) {
      border-color: #C5A059 !important;
      background: rgba(197,160,89,0.08) !important;
      color: #A3875F !important;
    }

/* BOUTON */

/* Messages succès/erreur */

/* ========================================================================
   POLITIQUE-CONFIDENTIALITE
   ======================================================================== */

.legal-content p, .legal-content li {
      text-align: justify;
      text-justify: inter-word;
      color: #444;
      line-height: 1.7;
      font-size: 0.95rem;
    }

.legal-content h2 {
      color: #0D0D0D;
      margin-top: 36px;
      margin-bottom: 12px;
      font-size: 1.25rem;
      font-family: 'Playfair Display', Georgia, serif;
      padding-bottom: 8px;
      border-bottom: 1px solid #E8E4DA;
    }

.legal-content h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2.2rem;
      color: #0D0D0D;
      margin-top: 0;
      margin-bottom: 8px;
    }

.legal-content ul {
      padding-left: 20px;
      margin-bottom: 16px;
    }

.legal-content li { margin-bottom: 8px; }

.legal-content strong { color: #0D0D0D; }

.legal-date {
      font-size: 0.82rem;
      color: #999;
      margin-bottom: 36px;
      display: block;
    }

.legal-highlight {
      background: #FFFDF4;
      border-left: 3px solid #C5A059;
      border-radius: 0 8px 8px 0;
      padding: 14px 18px;
      margin: 16px 0;
      font-size: 0.9rem;
      color: #555;
      line-height: 1.65;
    }

.cnil-box {
      background: #F0F8FF;
      border: 1px solid #BEE3F8;
      border-radius: 8px;
      padding: 16px 20px;
      margin-top: 12px;
      font-size: 0.88rem;
      color: #2C5282;
      line-height: 1.65;
    }

.cnil-box a { color: #2B6CB0; }

/* ========================================================================
   404
   ======================================================================== */

.wrapper {
      text-align: center;
      max-width: 520px;
    }

.code {
      font-family: 'Playfair Display', serif;
      font-size: clamp(5rem, 15vw, 8rem);
      font-weight: 700;
      color: #C5A059;
      line-height: 1;
      margin-bottom: 8px;
      opacity: 0.9;
    }

.title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 4vw, 2rem);
      color: #F5F5F3;
      margin-bottom: 16px;
      line-height: 1.3;
    }

.title em { font-style: italic; color: #C5A059; }

.sub {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 40px;
    }

.links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 48px;
    }

.link-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      text-decoration: none;
      color: #C4C0B9;
      font-size: 0.9rem;
      transition: all 0.2s;
      text-align: left;
    }

.link-item:hover {
      background: rgba(197,160,89,0.08);
      border-color: rgba(197,160,89,0.25);
      color: #F5F5F3;
      transform: translateX(4px);
    }

.link-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
      width: 28px;
      text-align: center;
    }

.link-text strong {
      display: block;
      color: #F5F5F3;
      font-size: 0.88rem;
      margin-bottom: 2px;
    }

.link-text span {
      font-size: 0.78rem;
      color: #666;
    }

.btn-home {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #C5A059;
      color: #0D0D0D;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }

.btn-home:hover { background: #E2C792; transform: translateY(-2px); }

.logo-404 {
      position: fixed;
      top: 20px;
      left: 24px;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #FFF;
      text-decoration: none;
      opacity: 0.7;
    }

.logo-404:hover { opacity: 1; }

/* ========================================================================
   MENTIONS-LEGALES
   ======================================================================== */

/* ========================================================================
   MERCI-GUIDE_HTML
   ======================================================================== */

/* NAVBAR */

/* MAIN */

/* CARD */

/* CHECK ANIMÉ */

/* TEXTE */

/* BLOC TÉLÉCHARGEMENT */

.cv-preview-size { font-size: 0.72rem; color: #666; }

/* ÉTAPES */

/* DIVIDER */

/* BOUTONS */

/* SOCIAL */

/* FOOTER */

/* CONFETTI */


.toc {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.toc ol, .toc ul { padding-left: 1.2em; margin: 0; }
.toc li { margin-bottom: 8px; text-align: left !important; }
.toc a { color: var(--gold-primary); text-decoration: none; font-weight: 500; }
.toc a:hover { text-decoration: underline; }

/* Articles — typographie standard web */
.section-white li,
.section-cream li {
  text-align: left;
  line-height: 1.75;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5em;
}

.section-white ul,
.section-cream ul,
.section-white ol,
.section-cream ol {
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}

.section-white h2,
.section-cream h2 {
  font-size: 1.6rem;
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.25;
}

.section-white h3,
.section-cream h3 {
  font-size: 1.25rem;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

.section-white strong,
.section-cream strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Toc */
.toc {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 40px;
}
.toc ol, .toc ul { padding-left: 1.2em; margin: 0; }
.toc li { margin-bottom: 8px; text-align: left; line-height: 1.6; font-size: 0.95rem; }
.toc a { color: var(--gold-primary); text-decoration: none; font-weight: 500; }
.toc a:hover { text-decoration: underline; }

/* ==========================================================================
   RESPONSIVE MOBILE — Corrections globales
   ========================================================================== */

/* Fix global overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   RESPONSIVE 768px — Tablette/Mobile
   ========================================================================== */
@media (max-width: 768px) {

  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Grilles → 1 colonne */
  .hero-grid,
  .grid-2,
  .about-premium-wrapper,
  .parcours-wrapper,
  .expertise-wrapper,
  .conversion-wrapper,
  .tiktok-wrapper,
  .success-grid,
  .home-newsletter {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

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

  /* Hero accueil */
  .hero-premium-dark {
    padding: 80px 0 60px;
  }

  .font-large {
    font-size: 2.2rem !important;
    line-height: 1.2;
  }

  .serif-title {
    font-size: 1.8rem !important;
  }

  /* Proof bar */
  .proof-bar {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 16px;
  }

  .proof-bar .proof-item {
    flex: 0 0 calc(50% - 8px);
    justify-content: center;
  }

  /* Hero portrait */
  .hero-right-visual {
    justify-content: center;
  }

  .hero-portrait-wrapper {
    width: 240px !important;
    height: 300px !important;
  }

  /* Boutons CTA */
  .hero-cta-group,
  .conversion-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Newsletter section accueil */
  .home-nl-form {
    flex-direction: column;
    gap: 10px;
  }

  .home-nl-input,
  .home-nl-btn {
    width: 100% !important;
    min-width: unset !important;
  }

  /* Blog hero */
  .blog-hero h1 {
    font-size: 1.8rem !important;
  }

  .blog-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Article cards */
  .articles-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  /* Page guide-linkedin-gratuit split */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .hero-left {
    padding: 48px 24px !important;
    min-height: auto;
  }

  .hero-right {
    padding: 40px 24px !important;
  }

  /* Page modele-ldm split */
  .hero-left::before {
    display: none;
  }

  /* Piliers — cartes */
  .pilier-cards,
  .guide-cards {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer .container > div {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px;
  }

  /* Sticky CTA mobile */
  .sticky-cta-mobile {
    display: flex;
    padding: 12px 16px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  /* Timeline */
  .timeline {
    padding-left: 20px;
  }

  /* Conversion card */
  .conversion-card {
    padding: 32px 24px;
  }

  /* Sections */
  section {
    padding: 48px 0;
  }
}

/* ==========================================================================
   RESPONSIVE 480px — Mobile petit
   ========================================================================== */
@media (max-width: 480px) {

  .grid-4 {
    grid-template-columns: 1fr !important;
  }

  .font-large {
    font-size: 1.8rem !important;
  }

  .serif-title {
    font-size: 1.55rem !important;
  }

  .hero-portrait-wrapper {
    width: 200px !important;
    height: 260px !important;
  }

  /* Blog cards */
  .article-card {
    padding: 20px !important;
  }

  /* Footer */
  .footer .container > div {
    grid-template-columns: 1fr !important;
  }

  /* Proof bar */
  .proof-bar .proof-item {
    flex: 0 0 100%;
  }

  /* Navbar */
  .nav-container {
    padding: 0 16px !important;
  }

  /* Boutons */
  .btn-cta-group {
    flex-direction: column;
    gap: 10px;
  }

  section {
    padding: 40px 0;
  }

  /* Callout box */
  .callout-box {
    padding: 16px;
  }
}

/* ==========================================================================
   MOBILE-FIXES — Corrections responsive (fusionné dans style.css)
   ========================================================================== */

/* ==========================================================================
   FIX 1 — OVERFLOW GLOBAL
   ========================================================================== */

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* ==========================================================================
   FIX 2 — NAVBAR BURGER (corrige le sélecteur ~ dans .nav-container)
   ========================================================================== */

@media (max-width: 768px) {

  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1010;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-cta { display: none !important; }

  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 32px;
    padding: 80px 24px 24px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
  }

  .menu-toggle:checked ~ .nav-links { left: 0; }

  .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ==========================================================================
   FIX 3 — HERO PORTRAIT ET FLOATING CARD
   ========================================================================== */

@media (max-width: 768px) {

  .hero-premium-dark {
    padding: 60px 0 48px;
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .hero-left-text { text-align: center; }

  .hero-right-visual {
    justify-content: center;
    overflow: visible;
    padding: 0 20px;
  }

  .hero-portrait-wrapper {
    width: 220px !important;
    height: 285px !important;
    margin: 0 auto;
  }

  .floating-card { display: none !important; }

  .hero-portrait-badge {
    left: -10px !important;
    bottom: -10px !important;
    width: 56px !important;
    height: 56px !important;
    font-size: 1.4rem !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    padding: 12px 16px !important;
  }
}

@media (max-width: 480px) {
  .hero-portrait-wrapper {
    width: 180px !important;
    height: 235px !important;
  }

  .font-large {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }
}

/* ==========================================================================
   FIX 4 — PROOF BAR
   ========================================================================== */

@media (max-width: 768px) {
  .proof-bar-inner {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
    text-align: center;
    padding: 4px 0;
  }

  .proof-sep { display: none !important; }

  .proof-item {
    white-space: normal !important;
    justify-content: center;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   FIX 5 — MOCKUPS TIKTOK/LINKEDIN
   ========================================================================== */

@media (max-width: 768px) {

  .tiktok-wrapper {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .phones-container {
    flex-direction: row !important;
    gap: 12px !important;
    justify-content: center;
    overflow: hidden;
    padding: 16px 0 !important;
  }

  .phone-mockup {
    width: 140px !important;
    height: 285px !important;
    border-radius: 24px !important;
    padding: 6px !important;
    flex-shrink: 0;
  }

  .phone-screen-img { border-radius: 18px !important; }

  .phone-linkedin,
  .phone-tiktok { transform: none !important; }

  .phone-mockup:hover { transform: none !important; }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 120px !important;
    height: 245px !important;
  }
}

/* ==========================================================================
   FIX 6 — BLOG : FEATURED CARD ET GRILLE ARTICLES
   ========================================================================== */

@media (max-width: 768px) {

  .blog-featured {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .blog-featured-img { height: 200px !important; }

  .blog-featured-body { padding: 24px 20px !important; }

  .blog-grid,
  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .filter-btn {
    padding: 14px 16px !important;
    font-size: 0.8rem !important;
  }

  .blog-hero { padding: 60px 0 40px !important; }

  .blog-hero h1 { font-size: 1.6rem !important; }

  .blog-hero-stats { gap: 20px !important; }

  .blog-section-header { flex-wrap: wrap; gap: 10px; }

  .blog-section-count { margin-left: 0; }
}

/* ==========================================================================
   FIX 7 — MODALS ET POPUPS
   ========================================================================== */

body.modal-open { overflow: hidden !important; }

.modal-overlay,
#exit-modal {
  padding: 16px !important;
  align-items: flex-start !important;
  padding-top: 60px !important;
  overflow-y: auto !important;
}

@media (max-width: 768px) {
  .modal-box {
    padding: 24px 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }

  .exit-modal-box {
    padding: 28px 20px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }
}

/* ==========================================================================
   FIX 8 — TOUTES LES GRILLES MULTI-COLONNES
   ========================================================================== */

@media (max-width: 768px) {

  .grid-2,
  .raisons-grid,
  .testimonials-grid,
  .success-grid,
  .faq-grid,
  .about-premium-wrapper,
  .parcours-wrapper,
  .expertise-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .grid-4,
  .alternance-stats,
  .linkedin-stats,
  .cv-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .home-newsletter {
    grid-template-columns: 1fr !important;
    padding: 28px 20px !important;
    gap: 24px !important;
  }

  .about-key-row {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .conversion-buttons,
  .cta-final-btns {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .btn-cta-gold,
  .btn-cta-ghost {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .grid-4,
  .alternance-stats,
  .linkedin-stats,
  .cv-stats {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   FIX 9 — STICKY CTA MOBILE
   ========================================================================== */

@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: flex !important;
    padding: 10px 16px !important;
    gap: 10px;
  }

  .sticky-cta-mobile p { font-size: 0.78rem !important; line-height: 1.3; }

  body { padding-bottom: 64px !important; }
}

/* ==========================================================================
   FIX 10 — FOOTER
   ========================================================================== */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 24px !important;
  }

  .footer-links {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .footer-bottom-inner {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .legal-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .footer { padding: 48px 0 0 !important; }
}

/* ==========================================================================
   FIX 11 — TYPOGRAPHIE MOBILE
   ========================================================================== */

@media (max-width: 768px) {

  .serif-title { font-size: 1.8rem !important; line-height: 1.2 !important; }

  .large-name { font-size: 2.2rem !important; }

  .section-header h2 { font-size: 1.6rem !important; }

  .about-quote { font-size: 1.2rem !important; margin-bottom: 32px !important; }

  .cta-final { padding: 32px 20px !important; }

  .cta-final h2 { font-size: 1.5rem !important; }

  /* Texte justifié désactivé sur mobile pour meilleure lisibilité */
  .section-white p,
  .section-cream p { text-align: left !important; }

  .container {
    padding: 0 16px !important;
    max-width: 100% !important;
  }

  section { padding: 40px 0 !important; }

  .callout-box { padding: 14px 16px !important; font-size: 0.9rem !important; }

  .code-block { font-size: 0.8rem !important; padding: 12px !important; word-break: break-word; }

  .toc { padding: 16px !important; font-size: 0.88rem; }

  .blog-newsletter {
    grid-template-columns: 1fr !important;
    padding: 24px 20px !important;
    gap: 20px !important;
  }

  .newsletter-form { flex-direction: column !important; }

  .newsletter-input { width: 100% !important; }

  .blog-cta {
    grid-template-columns: 1fr !important;
    padding: 32px 24px !important;
    gap: 24px !important;
  }
}

@media (max-width: 480px) {
  .serif-title { font-size: 1.55rem !important; }
  .blog-stat-num { font-size: 1.4rem !important; }
}
