/* =============================================
   GOFORMIA — Feuille de style globale
   ============================================= */

/* VARIABLES */
:root {
  --purple: #7349F0;
  --primary: #7349F0; /* alias pour compatibilité */
  --purple-light: #9D7AF3;
  --purple-dark: #5A34CC;
  --purple-glow: rgba(115,73,240,0.25);
  --bg: #07070E;
  --bg2: #0F0F1A;
  --card: #111120;
  --card2: #17172A;
  --border: rgba(115,73,240,0.18);
  --border-light: rgba(255,255,255,0.06);
  --text: #F0EDFF;
  --muted: #8884A0;
  --muted2: #5C5A72;
  --green: #22C55E;
  --gold: #F59E0B;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.8px; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--muted); line-height: 1.75; }

.highlight {
  background: linear-gradient(135deg, #9D7AF3, #7349F0, #5A34CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-gold {
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* LAYOUT */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 24px var(--purple-glow);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(115,73,240,0.4); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--border); }
.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(115,73,240,0.1); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7,7,14,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo img { border-radius: 8px; }
.footer-brand .nav-logo img { border-radius: 6px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: all 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem !important;
  border-radius: 8px;
  font-size: 0.88rem !important;
}
.dropdown-menu a span { display: block; font-size: 0.75rem; color: var(--muted2); font-weight: 400; margin-top: 0.1rem; }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 0.4rem; }

/* HERO */
.hero {
  padding: 7rem 0 6rem;
  background: radial-gradient(ellipse 90% 60% at 50% -5%, rgba(115,73,240,0.2) 0%, transparent 65%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237349F0' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(115,73,240,0.12);
  border: 1px solid rgba(115,73,240,0.3);
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(0.8)} }
.hero h1 { margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 620px; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 3.5rem; }
.hero-trust p { font-size: 0.78rem; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.trust-logos { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-logo {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.trust-logo:hover { border-color: var(--border); color: var(--text); }

/* STATS BAND */
.stats-band {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--purple-light); letter-spacing: -1px; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(115,73,240,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover { border-color: rgba(115,73,240,0.35); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(115,73,240,0.1); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(115,73,240,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.6rem; color: var(--text); }
.card p { font-size: 0.9rem; }

/* FORMATION CARDS (on home) */
.formation-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.formation-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.formation-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.25s;
}
.formation-card:hover { border-color: rgba(115,73,240,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(115,73,240,0.12); }
.formation-card:hover::after { opacity: 1; }
.formation-level {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.2rem;
}
.level-1 { background: rgba(34,197,94,0.15); color: #22C55E; }
.level-2 { background: rgba(115,73,240,0.15); color: var(--purple-light); }
.level-3 { background: rgba(245,158,11,0.15); color: var(--gold); }
.formation-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.7rem; color: var(--text); }
.formation-card p { font-size: 0.88rem; margin-bottom: 1.5rem; flex: 1; }
.formation-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
}
.formation-card-footer .duration { font-size: 0.82rem; color: var(--muted2); }
.formation-card-footer .arrow { color: var(--purple-light); font-size: 1.1rem; }

/* STEPS / PROGRAMME */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; padding-bottom: 2.5rem; }
.step:last-child { padding-bottom: 0; }
.step-num-col { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--purple-glow);
}
.step-line { flex: 1; width: 1px; background: var(--border); margin-top: 0.5rem; }
.step:last-child .step-line { display: none; }
.step-content { padding-top: 0.65rem; }
.step-time { font-size: 0.72rem; color: var(--purple-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.step-content p { font-size: 0.88rem; }
.step-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }
.step-tag { font-size: 0.72rem; background: rgba(115,73,240,0.1); border: 1px solid var(--border); color: var(--purple-light); padding: 0.2rem 0.6rem; border-radius: 100px; font-weight: 600; }

/* CHECK LIST */
.check-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.92rem; color: var(--text); }
.check-item .check { color: var(--green); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start; }
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

/* PHOTO FORMATEUR */
.about-photo-col { display: flex; flex-direction: column; gap: 0; }
.about-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  background: var(--card2);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.about-photo-wrap:hover .about-photo { transform: scale(1.03); }
.about-identity {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.about-name { font-size: 1rem; font-weight: 800; color: var(--text); }
.about-role { font-size: 0.78rem; color: var(--purple-light); font-weight: 600; margin-top: 0.2rem; }

.avatar-block { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: white; flex-shrink: 0;
}
.avatar-info .name { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.15rem; }
.avatar-info .role { font-size: 0.8rem; color: var(--purple-light); font-weight: 600; }
.about-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.about-quote { border-left: 3px solid var(--purple); padding-left: 1.2rem; margin: 1.5rem 0; font-style: italic; color: var(--text); font-size: 0.92rem; line-height: 1.6; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; font-size: 0.95rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tag { background: rgba(115,73,240,0.1); border: 1px solid var(--border); color: var(--purple-light); font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 100px; }

/* FOR WHO */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.audience-item {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  transition: border-color 0.2s;
}
.audience-item:hover { border-color: var(--border); }
.audience-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.audience-item strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 0.25rem; }
.audience-item span { font-size: 0.82rem; color: var(--muted); }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(115,73,240,0.15) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero .level-badge { margin-bottom: 1.5rem; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero p { font-size: 1.1rem; max-width: 620px; margin-bottom: 2rem; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.meta-item strong { color: var(--text); font-weight: 600; }

/* PRICING / CTA BOX */
.cta-box {
  background: linear-gradient(135deg, rgba(115,73,240,0.15), rgba(115,73,240,0.05));
  border: 1px solid rgba(115,73,240,0.3);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p { max-width: 500px; margin: 0 auto 2rem; font-size: 1rem; }

/* TESTIMONIAL */
.testimonial-block {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 1.5rem;
}
.testimonial-block p { font-size: 1rem; font-style: italic; color: var(--text); margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: var(--purple-light);
}
.testimonial-author .info strong { display: block; font-size: 0.88rem; color: var(--text); }
.testimonial-author .info span { font-size: 0.78rem; color: var(--muted); }

/* TOOLS */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 2rem; }
.tool-item {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}
.tool-item .tool-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.tool-item strong { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 0.25rem; }
.tool-item span { font-size: 0.78rem; color: var(--muted); }

/* BOTTOM CTA SECTION */
.section-cta {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.section-cta h2 { margin-bottom: 1rem; }
.section-cta p { max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item .c-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(115,73,240,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.82rem; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.contact-item a, .contact-item span { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--purple-light); }
.contact-form-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--card2); }

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted2); line-height: 1.7; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted2); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.88rem; color: var(--muted); padding: 0.25rem 0; transition: color 0.18s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border-light); font-size: 0.82rem; color: var(--muted2); gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--muted); transition: color 0.18s; }
.footer-bottom a:hover { color: var(--text); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { max-width: 280px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
/* supprimé — fusionné dans le bloc @media (max-width: 768px) ci-dessous */

/* MOBILE NAV */
.mobile-nav {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a { padding: 0.6rem 0.8rem; border-radius: 8px; font-size: 0.9rem; color: var(--muted); font-weight: 500; transition: all 0.18s; }
.mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

/* UTILITIES */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.flex-gap { display: flex; gap: 1rem; flex-wrap: wrap; }
.divider { height: 1px; background: var(--border-light); margin: 4rem 0; }

/* LAYOUT GRIDS RESPONSIVES — 2 colonnes → 1 colonne sur mobile */
.prog-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.intro-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.pair-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.small-pair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tools-grid-incard { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
.section-nav { padding: 3rem 0; }
.card-link   { text-decoration: none; }

/* SEO HIDDEN (accessible) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* SECTION FULL-WIDTH ALT BACKGROUND (remplace inline styles répétés) */
.section-full { background: var(--bg2); margin: 0; max-width: 100%; padding: 5rem 0; }
.section-nav-links { padding: 3rem 0; }
.label-center { justify-content: center; }

/* FAQ ITEMS (remplace les inline styles sur <details>) */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; cursor: pointer; }
.faq-item[open] { border-color: var(--purple); }
.faq-summary { font-weight: 700; font-size: 1rem; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--purple); font-size: 1.4rem; line-height: 1; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { margin-top: 1rem; font-size: 0.95rem; color: var(--muted); }

/* LINKEDIN BUTTON AVEC ICÔNE */
.btn-linkedin { display: inline-flex; align-items: center; gap: 0.5rem; }

/* EMAIL PROTÉGÉ (obfuscation) */
.email-link { cursor: pointer; }

/* INLINE STYLES EXTRAITS — index.html & contact.html */
.card-highlight { background: var(--card2); border-color: rgba(115,73,240,0.3); }
.card-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.card-cta { margin-top: 1.5rem; }
.btn-sm { font-size: 0.88rem; padding: 0.7rem 1.4rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.inline-cta { text-align: center; margin-top: 3rem; }
.section-hint { font-size: 0.88rem; color: var(--muted2); margin-bottom: 1rem; }
.section-intro { font-size: 0.95rem; max-width: 520px; margin: 0 auto 3rem; }
.section-subtitle { font-size: 1rem; color: var(--muted); max-width: 600px; margin-top: 1rem; }
.lead { max-width: 680px; font-size: 1.05rem; color: var(--muted); margin-top: 1rem; margin-bottom: 3rem; }
.check-item strong { color: var(--text); }
.about-text strong { color: var(--text); }
.faq-title { margin-bottom: 3rem; }
.about-btns { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.about-identity .linkedin-link { margin-top: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* contact.html */
.page-hero-sm { padding: 4rem 0 3rem; }
.hero-intro { max-width: 560px; margin: 1.2rem auto 0; font-size: 1.05rem; }
.maps-link { font-size: 0.82rem; color: var(--purple-light); margin-top: 0.3rem; display: inline-block; }
.about-card-alt { margin-top: 2.5rem; background: var(--card2); }
.avatar-photo { border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--purple); flex-shrink: 0; }
.about-card .linkedin-link { margin-top: 1rem; }
.mini-faq { margin-top: 2.5rem; }
.mini-faq-title { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.2rem; font-weight: 700; }
.mini-faq-list { display: flex; flex-direction: column; gap: 1rem; }
.mini-faq-item { border-left: 2px solid var(--border); padding-left: 1rem; }
.mini-faq-item strong { font-size: 0.88rem; color: var(--text); }
.mini-faq-item p { font-size: 0.82rem; margin-top: 0.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.req { color: var(--primary); }
.form-privacy { font-size: 0.75rem; color: var(--muted2); text-align: center; margin-top: 1rem; }
.map-section { padding: 0; margin: 0; }
.map-container { width: 100%; height: 320px; background: var(--card2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.map-frame { border: 0; filter: grayscale(30%) contrast(1.05); display: block; }
.section-full-sm { background: var(--bg2); margin: 0; max-width: 100%; padding: 4rem 0; }
.section-h2-mb { margin-bottom: 2rem; }
.form-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text); }
.form-subtitle { font-size: 0.88rem; margin-bottom: 2rem; }

/* 404.html */
.page-404 { padding: 8rem 0; text-align: center; }
.p404-robot { font-size: 5rem; margin-bottom: 1.5rem; line-height: 1; }
.p404-number { font-size: 7rem; font-weight: 900; color: var(--purple); line-height: 1; margin-bottom: 1rem; letter-spacing: -4px; }
.p404-title { font-size: 2rem; margin-bottom: 1rem; }
.p404-desc { max-width: 500px; margin: 0 auto 2.5rem; font-size: 1rem; }
.p404-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.p404-cards { margin-top: 4rem; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.p404-card { max-width: 280px; text-decoration: none; }
.card-desc-sm { font-size: 0.85rem; }

/* MOBILE — Responsive complet (≤768px) */
@media (max-width: 768px) {
  /* NAV */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

  /* FORMULAIRES — prévenir zoom iOS */
  input, select, textarea { font-size: 16px !important; }

  /* TOUCH TARGETS */
  .btn { min-height: 44px; }

  /* HERO */
  .hero { padding: 5rem 0 4rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }

  /* SECTIONS — padding réduit */
  section,
  .section-full,
  .section-full-sm,
  .section-cta { padding: 3rem 0; }
  .page-hero { padding: 3rem 0 2rem; }
  .page-hero-sm { padding: 3rem 0 2rem; }
  .page-404 { padding: 5rem 0; }
  .section-nav { padding: 2rem 0; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

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

  /* STEPS */
  .step { grid-template-columns: 44px 1fr; gap: 1rem; }
  .step-num { width: 40px; height: 40px; font-size: 0.85rem; }

  /* SATISFACTION BAND */
  .satisfaction-band { gap: 1.5rem; padding: 1.2rem 1.5rem; }
  .satisfaction-sep { width: 40px; height: 1px; }

  /* CLIENTS */
  .clients-logos-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .client-logo-card { padding: 2rem 1.2rem 1.5rem; }
  .client-logo-wrap { height: 120px; margin-bottom: 1rem; }
  .client-logo-wrap img { max-height: 110px; }

  /* CTA BUTTONS */
  .cta-buttons { flex-direction: column; align-items: center; }

  /* GRILLES 2 COLONNES → 1 COLONNE */
  .why-grid,
  .form-row,
  .prog-grid,
  .intro-grid,
  .split-grid,
  .pair-grid,
  .small-pair-grid,
  .tools-grid-incard { grid-template-columns: 1fr; gap: 2rem; }

  /* MISC */
  .about-btns { flex-direction: column; }
  .contact-form-box { padding: 1.5rem; }
  .cta-box { padding: 1.5rem; }
}

/* SOCIAL PROOF HERO */
.hero-social-proof { margin-top: 2rem; }
.social-proof-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}
.social-proof-stars span:first-child { color: #F59E0B; font-size: 0.95rem; letter-spacing: 2px; }
.social-proof-text { color: var(--muted); }
.social-proof-text strong { color: var(--text); }

/* SATISFACTION BAND */
.satisfaction-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem 2.5rem;
  margin: 0 auto 3rem;
  max-width: 600px;
}
.satisfaction-item { text-align: center; }
.satisfaction-num { font-size: 2rem; font-weight: 900; color: var(--text); letter-spacing: -1px; line-height: 1; }
.satisfaction-stars { color: #F59E0B; font-size: 1.3rem; letter-spacing: 3px; }
.satisfaction-label { font-size: 0.75rem; color: var(--muted2); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }
.satisfaction-sep { width: 1px; height: 40px; background: var(--border-light); }

/* CLIENTS LOGOS GRID */
.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.client-logo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.client-logo-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(115,73,240,0.12);
}
.client-logo-wrap {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.client-logo-wrap img {
  max-width: 85%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%) brightness(1.1);
  transition: filter 0.25s;
}
.client-logo-card:hover .client-logo-wrap img { filter: grayscale(0%) brightness(1); }
.client-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.3rem;
}
.client-label { font-size: 0.82rem; color: var(--muted2); text-align: center; }

/* TRUST LOGOS avec images */
.trust-logo img { display: block; filter: grayscale(30%) brightness(1.1) contrast(0.95); }

/* LINKEDIN LINK */
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0A66C2;
  background: rgba(10, 102, 194, 0.08);
  border: 1px solid rgba(10, 102, 194, 0.25);
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.linkedin-link:hover { background: rgba(10, 102, 194, 0.15); border-color: rgba(10, 102, 194, 0.5); color: #0A66C2; }

/* WHATSAPP FLOATING BUTTON */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.whatsapp-fab svg { display: block; }
