/* ===================================
   MON ASSISTANT NUMÉRIQUE – MANTES
   Feuille de style principale
   Palette : Gris (#5a5a5a), Jaune (#F5C518), Blanc (#fff)
   =================================== */

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

:root {
  --yellow: #F5C518;
  --yellow-dark: #d4a800;
  --yellow-light: #fff8e1;
  --gray: #5a5a5a;
  --gray-dark: #2d2d2d;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font-head: 'Nunito', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section-padding { padding: 80px 0; }
.bg-light { background: var(--gray-light); }
.bg-dark { background: var(--gray-dark); color: var(--white); }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

.accent { color: var(--yellow); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-header.light h2 { color: var(--white); }

.section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.bg-dark .section-tag {
  background: rgba(245,197,24,0.15);
  color: var(--yellow);
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--yellow);
  color: var(--gray-dark);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--gray-dark);
  border-color: var(--gray-dark);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-outline-dark:hover {
  background: var(--gray-dark);
  color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ----- NAVBAR ----- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gray-dark); background: var(--gray-light); }
.btn-nav {
  background: var(--yellow) !important;
  color: var(--gray-dark) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
}
.btn-nav:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,197,24,0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,45,45,0.88) 0%, rgba(45,45,45,0.65) 60%, rgba(45,45,45,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.2);
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-text h1 { margin-bottom: 18px; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-phones {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.phone-link svg { width: 18px; height: 18px; }
.phone-link:hover { color: var(--white); }

.hero-portrait {
  position: relative;
  flex-shrink: 0;
}
.hero-portrait img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--yellow);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-card {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 20px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  white-space: nowrap;
}
.hero-card .stars { color: var(--yellow); font-size: 1.1rem; }
.hero-card strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--gray-dark); }
.hero-card span { font-size: 0.8rem; color: var(--text-light); }

/* ----- TRUST BAR ----- */
.trust-bar {
  background: var(--yellow);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ----- ABOUT ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius-lg);
  max-width: 380px;
  margin: 0 auto;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-missions h3 { margin: 24px 0 12px; color: var(--gray-dark); }
.about-missions ul { display: flex; flex-direction: column; gap: 8px; }
.about-missions li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.about-missions li::before {
  content: "✓";
  color: var(--yellow-dark);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-zones {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 16px;
  background: var(--yellow-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
}
.about-zones svg { width: 20px; height: 20px; color: var(--yellow-dark); flex-shrink: 0; margin-top: 2px; }

.about-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.about-map img {
  width: 100%;
  display: block;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}
.map-caption {
  background: var(--yellow-light);
  color: var(--text-light);
  font-size: 0.8rem;
  font-style: italic;
  padding: 8px 14px;
  margin: 0;
  border-top: 1px solid var(--border);
}

/* ----- SERVICES ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--yellow);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--yellow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--yellow-dark); }
.service-card h3 { margin-bottom: 10px; color: var(--gray-dark); }
.service-card p { color: var(--text-light); font-size: 0.93rem; }

/* ----- PARTICULIERS ----- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 28px; }
.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
/* Emoji aligné avec le sous-titre (line-height du h3/strong) */
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.3;
  margin-top: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 1px;
}
/* Réduire l'espace entre le sous-titre et sa description */
.feature-list strong { display: block; color: var(--gray-dark); margin-bottom: 5px; font-size: 1rem; }
.feature-list p, .feature-list div { color: var(--text-light); font-size: 0.93rem; line-height: 1.5; }

.avantage-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px;
}
.avantage-icon { font-size: 2rem; flex-shrink: 0; }
.avantage-box strong { display: block; color: var(--gray-dark); margin-bottom: 6px; font-family: var(--font-head); }
.avantage-box p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

.col-image img { border-radius: var(--radius-lg); max-width: 340px; margin: 0 auto; }

/* ----- PROFESSIONNELS ----- */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pro-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.pro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pro-icon { font-size: 2rem; margin-bottom: 14px; }
.pro-card h3 { margin-bottom: 10px; color: var(--gray-dark); font-size: 1.05rem; }
.pro-card p { color: var(--text-light); font-size: 0.9rem; }
.pro-cta { text-align: center; }
.pro-cta p { color: var(--text-light); margin-bottom: 16px; }

/* ----- FORMATIONS ----- */
.formations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.formation-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.formation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.formation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.formation-icon { font-size: 1.8rem; }
.formation-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-family: var(--font-head);
}
.formation-badge.cpf { background: #e8f5e9; color: #2e7d32; }
.formation-card h3 { margin-bottom: 10px; color: var(--gray-dark); font-size: 1.05rem; }
.formation-card p { color: var(--text-light); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }
.formation-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.level, .duration {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-head);
}
.level.debutant { background: #e3f2fd; color: #1565c0; }
.level.intermediaire { background: #fff3e0; color: #e65100; }
.level.tous { background: #f3e5f5; color: #6a1b9a; }
.duration { background: var(--gray-light); color: var(--text-light); }
.formation-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--yellow-dark);
  margin-top: auto;
}

.financement-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--yellow-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(245,197,24,0.3);
}
.financement-icon { font-size: 2.5rem; flex-shrink: 0; }
.financement-content h3 { margin-bottom: 10px; color: var(--gray-dark); }
.financement-content p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 14px; }
.financement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.financement-tags span {
  background: var(--white);
  border: 1px solid var(--yellow);
  color: var(--yellow-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-head);
}
.financement-note { font-style: italic; color: var(--text-light); font-size: 0.88rem; margin: 0; }

/* ----- TARIFS ----- */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.tarif-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.tarif-featured {
  border-color: var(--yellow);
  background: var(--yellow-light);
}
.tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--gray-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  font-family: var(--font-head);
}
.tarif-icon { font-size: 2rem; margin-bottom: 12px; }
.tarif-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 8px;
}
.tarif-desc { color: var(--text-light); font-size: 0.85rem; margin-bottom: 20px; min-height: 40px; }
.tarif-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--gray-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.tarif-price span { font-size: 1.4rem; }
.tarif-price small { font-size: 1rem; font-weight: 600; color: var(--text-light); }
.tarif-detail { font-size: 0.82rem; color: var(--text-light); }
.tarif-detail strong { color: var(--yellow-dark); }

.tarifs-pro-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  font-size: 0.93rem;
}
.tarifs-pro-note svg { width: 22px; height: 22px; color: var(--yellow-dark); flex-shrink: 0; margin-top: 2px; }
.tarifs-pro-note a { color: var(--yellow-dark); font-weight: 700; }

.credit-impot-box {
  background: var(--gray-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.credit-impot-box h3 { margin-bottom: 12px; font-size: 1.1rem; }
.credit-impot-box p { color: rgba(255,255,255,0.8); font-size: 0.93rem; }
.credit-impot-box strong { color: var(--yellow); }

/* ----- AVIS ----- */
.avis-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.avis-note { text-align: center; }
.note-chiffre {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  color: var(--gray-dark);
  line-height: 1;
}
.note-stars { color: var(--yellow); font-size: 1.4rem; margin: 4px 0; }
.note-count { font-size: 0.85rem; color: var(--text-light); }

.avis-carousel {
  overflow: hidden;
  margin-bottom: 28px;
  width: 100%;
}
.avis-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.avis-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  /* Largeur = 1/3 du conteneur moins les 2 gaps internes */
  width: calc((100% - 48px) / 3);
  min-width: 260px;
  flex-shrink: 0;
  border-top: 4px solid var(--yellow);
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.avis-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.avis-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avis-info { flex: 1; }
.avis-info strong { display: block; color: var(--gray-dark); font-size: 0.95rem; }
.avis-info span { font-size: 0.8rem; color: var(--text-light); }
.avis-stars { color: var(--yellow); font-size: 1rem; }
.avis-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.avis-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.avis-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
}
.avis-btn:hover { background: var(--yellow); border-color: var(--yellow); }
.avis-dots { display: flex; gap: 8px; }
.avis-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.avis-dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }

/* ----- CONTACT ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--yellow); }
.contact-item strong { display: block; color: var(--white); font-family: var(--font-head); margin-bottom: 4px; }
.contact-item a, .contact-item span { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.contact-item a:hover { color: var(--yellow); }

.contact-google { margin-top: 8px; }

.h-captcha {
  margin: 12px 0;
}
.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--gray-dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.google-review-link:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-hover);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-group textarea { resize: vertical; }
.form-rgpd {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.83rem;
  color: var(--text-light);
}
.form-rgpd input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--yellow); }
.form-success {
  margin-top: 16px;
  padding: 14px;
  background: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  font-weight: 600;
  text-align: center;
}

/* ----- FOOTER ----- */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 60px 24px 40px;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-family: var(--font-head);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 6px; }
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(245,197,24,0.2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom p { margin-bottom: 4px; }

/* ----- MENTORING ----- */
/* .mentoring : fond géré par bg-light dans le HTML */
.mentoring-layout { margin-top: 48px; }
.mentoring-content { display: flex; flex-direction: column; gap: 48px; }

.mentoring-xp {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  padding: 32px;
}
.mentoring-xp .section-tag { margin-bottom: 12px; display: inline-block; }
.mentoring-xp p { color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

.mentoring-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mentoring-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.mentoring-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.mentoring-icon { font-size: 2rem; margin-bottom: 12px; }
.mentoring-card h3 { font-size: 1.05rem; color: var(--gray-dark); margin-bottom: 8px; }
.mentoring-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.6; }

.mentoring-cta {
  margin-top: 48px;
}
.mentoring-cta-inner {
  background: var(--gray-dark);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mentoring-cta-inner .btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.mentoring-cta-text h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.mentoring-cta-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* Bouton LinkedIn */
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0077B5;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-linkedin:hover { background: #005f8e; transform: translateY(-1px); }

/* Petit lien LinkedIn inline (section à propos) */
.btn-linkedin-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0077B5;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 8px;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.btn-linkedin-small:hover { color: #005f8e; text-decoration: underline; }

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .formations-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
  .pro-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  /* Portrait visible sur mobile mais plus petit et centré */
  .hero-portrait {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .hero-portrait img {
    width: 160px;
    height: 160px;
  }
  .hero-card {
    bottom: -60px;
    font-size: 0.85rem;
    padding: 10px 16px;
  }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .col-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mentoring-cards { grid-template-columns: 1fr 1fr; }
  .mentoring-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .formations-grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .pro-grid { grid-template-columns: 1fr; }

  .avis-card {
    /* Sur mobile : 1 carte = toute la largeur du carousel */
    width: calc(100vw - 80px);
    min-width: calc(100vw - 80px);
  }

  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .trust-items { justify-content: center; gap: 12px; }
  .trust-item { font-size: 0.82rem; }

  .financement-box { flex-direction: column; }
  .mentoring-cards { grid-template-columns: 1fr; }
  .mentoring-xp { padding: 24px; }
}

@media (max-width: 480px) {
  .tarifs-grid { grid-template-columns: 1fr; }
  .hero-phones { flex-direction: column; gap: 10px; }
}

/* ----- LOGO SAP ----- */
.sap-logo {
  display: block;
  max-width: 220px;
  height: auto;
  margin-top: 16px;
  border-radius: 8px;
}
.credit-impot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.credit-impot-text { flex: 1; min-width: 200px; }
.sap-logo-dark {
  max-width: 200px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .credit-impot-inner { flex-direction: column; }
  .sap-logo-dark { max-width: 160px; }
  .sap-logo { max-width: 180px; }
}

/* ----- FAQ ----- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-dark);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--yellow-dark); }
.faq-question[aria-expanded="true"] { color: var(--yellow-dark); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--yellow-dark);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-answer strong { color: var(--gray-dark); }

/* ----- SCROLL ANIMATIONS ----- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
