/* ── HERO ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 50%, #f0faf7 100%);
  padding: 48px 0 80px;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,181,.08) 0%, transparent 70%);
  right: -100px;
  top: -100px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 8px; }
h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}
h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}
.hero-def-box {
  background: var(--white);
  border-left: 4px solid var(--blue);
  padding: 16px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  box-shadow: 0 1px 8px rgba(26, 111, 181, 0.06);
}
.hero-def-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.35;
}
.hero-def-box strong { color: var(--dark); }
.hero-def-box p { margin: 0 0 10px; }
.hero-def-box p:last-child { margin-bottom: 0; }
.hero-updated {
  font-size: 13px;
  color: var(--gray);
  margin: 0 0 24px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
}
.hero-actions .btn {
  flex: 0 1 auto;
  padding: 12px 20px;
  font-size: 14px;
  white-space: nowrap;
}
.hero-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
}
.hero-note strong { color: var(--dark); }
.hero-articles-link {
  font-size: 14px;
  color: var(--gray);
  margin-top: 10px;
}
.hero-articles-link a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.hero-articles-link a:hover { text-decoration: underline; }

.hero-featured {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(26, 111, 181, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(26, 111, 181, 0.07);
}
.hero-featured-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 10px;
}
.hero-featured-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 50px;
}
.hero-featured-metier {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
}
.hero-featured-title {
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.hero-featured-title a {
  color: var(--dark);
  text-decoration: none;
}
.hero-featured-title a:hover { color: var(--blue); }
.hero-featured-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin: 0 0 12px;
}
.hero-featured-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  font-size: 14px;
}
.hero-featured-cta {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.hero-featured-cta:hover { text-decoration: underline; }
.hero-featured-sep { color: #cbd5e1; }
.hero-featured-all {
  color: var(--gray);
  font-weight: 500;
  text-decoration: none;
}
.hero-featured-all:hover {
  color: var(--blue);
  text-decoration: underline;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 40px;
  position: relative;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.hero-card .hero-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-card .hero-actions .btn {
  width: 100%;
  text-align: center;
  white-space: normal;
  padding: 13px 18px;
  font-size: 14px;
}
.hero-card .hero-featured {
  margin-top: 0;
  margin-bottom: 12px;
  box-shadow: none;
  border-color: rgba(26, 111, 181, 0.12);
}
.hero-card .hero-note {
  text-align: center;
  margin: 0 0 16px;
}
.stat {
  text-align: center;
  padding: 20px 16px;
  background: var(--gray-light);
  border-radius: var(--radius);
}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--gray); font-weight: 500; }
.hero-stats-disclaimer {
  font-size: 12px;
  line-height: 1.55;
  color: #64748b;
  text-align: center;
  margin: 0 0 20px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: var(--radius);
}
.hero-stats-disclaimer strong { color: var(--dark); }
.testi-disclaimer {
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray);
  text-align: center;
  max-width: 720px;
  margin: 28px auto 0;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: var(--radius);
}
.hero-quote {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}
.hero-quote strong { color: var(--blue); display: block; margin-top: 8px; font-size: 13px; }
.hero-quote.hero-quote--objectives strong {
  display: inline;
  font-size: inherit;
  color: var(--blue);
  font-weight: 700;
}
.hero-quote.hero-quote--objectives .hero-quote-attrib {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
}

/* Mascotte — même principe que la page Offres (sphère blanche + léger flottement) */
.hero .container {
  position: relative;
}
.mascotte-hero {
  position: absolute;
  right: max(12px, 1.5%);
  bottom: -52px;
  width: 116px;
  height: 116px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow:
    0 8px 32px rgba(26, 111, 181, 0.22),
    0 0 0 10px rgba(26, 111, 181, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: float-hero 4s ease-in-out infinite;
  z-index: 2;
}
.mascotte-hero img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}
@keyframes float-hero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Même oscillation verticale que .mascotte-hero, avec centrage du disque « à propos » */
@keyframes float-hero-centered {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

/* Bandelette type hero-badge, traversant la mascotte (derrière le disque blanc) */
@keyframes float-hero-sash {
  0%, 100% { transform: translate(-50%, -50%) rotate(-11deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-11deg) translateY(-8px); }
}
@media (max-width: 600px) {
  .mascotte-hero {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mascotte-hero {
    animation: none;
  }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { padding: 28px 24px; }
  .hero-stats { margin-bottom: 20px; }
}

/* ── LOGOS / SPECIALITÉS ───────────────────────────── */
.specialties {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.specialties-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px 32px;
  overflow: visible;
}
.specialties-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 6px;
  line-height: 1.35;
  white-space: nowrap;
}
.specialties-list {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 10px 12px;
  justify-items: center;
}
.specialty-pill {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.3;
  background: var(--white);
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
  width: 100%;
  max-width: 200px;
  min-height: 44px;
  white-space: normal;
  text-align: center;
  hyphens: auto;
}
.specialty-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(37, 99, 235, 0.04);
  box-shadow: 0 1px 0 rgba(37, 99, 235, 0.08);
}
.specialty-pill:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .specialties { padding: 24px 0; }
  .specialties-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .specialties-label {
    white-space: normal;
    padding-top: 0;
    font-size: 14px;
    color: var(--dark);
  }
  .specialties-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-items: stretch;
  }
  .specialty-pill {
    justify-content: center;
    text-align: center;
    min-height: 44px;
    white-space: normal;
    padding: 10px 12px;
    font-size: 12px;
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .specialties-list {
    grid-template-columns: 1fr;
  }
}

/* ── PROBLEM ───────────────────────────────────────── */
.problem { padding: 96px 0; background: var(--dark); }
.problem .section-title { color: var(--white); }
.problem .section-sub { color: #94a3b8; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: background .2s;
}
.problem-item:hover { background: rgba(255,255,255,.08); }
.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(239,68,68,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.problem-text { font-size: 15px; color: #cbd5e1; line-height: 1.6; }
.problem-text strong { color: var(--white); display: block; margin-bottom: 4px; }
.problem-conclusion {
  text-align: center;
  padding: 32px;
  background: rgba(26,111,181,.2);
  border: 1px solid rgba(26,111,181,.3);
  border-radius: var(--radius);
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
}
.problem-conclusion em { color: #60a5fa; font-style: normal; font-weight: 700; }

/* ── SOLUTION ──────────────────────────────────────── */
.solution { padding: 96px 0; background: var(--white); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.solution-card {
  display: block;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.solution-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.solution-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.solution-card:hover::before { transform: scaleX(1); }
.solution-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 16px;
}
.solution-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.solution-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 0; }
.solution-card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.solution-card:hover .solution-card-link { text-decoration: underline; }
.solution-note {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--green-light);
  border-radius: var(--radius);
  border: 1px solid rgba(23,165,137,.2);
}
.solution-note-icon { font-size: 28px; flex-shrink: 0; }
.solution-note p { font-size: 15px; color: var(--dark); line-height: 1.6; }
.solution-note strong { color: var(--green); }

/* ── ARTICLES (home) ─────────────────────────────────── */
.home-articles {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.home-articles .section-sub a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.home-articles .section-sub a:hover { text-decoration: underline; }
.home-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.home-article-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.home-article-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26, 111, 181, 0.08);
  transform: translateY(-2px);
}
.home-article-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  margin-bottom: 10px;
}
.home-article-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}
.home-article-card h3 a {
  color: var(--dark);
  text-decoration: none;
}
.home-article-card h3 a:hover { color: var(--blue); }
.home-article-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}
.home-articles-cta {
  margin-top: 40px;
  text-align: center;
}

/* ── HOW IT WORKS ──────────────────────────────────── */
.how { padding: 96px 0; background: var(--gray-light); }
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(26,111,181,.3);
}
.step-content { padding-top: 8px; }
.step-content h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 580px; }
.step-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials { padding: 96px 0; background: var(--white); }
.testi-carousel { margin-top: 8px; }
.testi-carousel-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}
.testi-track .testi-card {
  flex: 0 0 var(--testi-card-basis, 300px);
  width: var(--testi-card-basis, 300px);
  max-width: var(--testi-card-basis, 300px);
  min-width: 0;
}
.testi-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .2s, border-color .2s, color .2s, opacity .2s, transform .2s;
}
.testi-nav:hover:not(:disabled) {
  background: var(--blue-light);
  border-color: var(--blue);
  transform: translateY(-1px);
}
.testi-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.testi-nav--prev { order: -1; }
.testi-nav--prev.is-inactive {
  visibility: hidden;
  pointer-events: none;
}
.testi-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
  line-height: 0;
}
.testi-star-icon {
  flex-shrink: 0;
  display: block;
  color: #f59e0b;
}
.testi-star-half-slot {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.testi-star-half-slot .testi-star-icon--track {
  position: absolute;
  left: 0;
  top: 0;
}
.testi-star-icon--track {
  color: #e7e5e4;
}
.testi-star-half-clip {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.testi-star-half-clip .testi-star-icon {
  position: absolute;
  left: 0;
  top: 0;
}
.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #1a1f2e;
}
.testi-avatar--ml { background: #e8f4fc; }
.testi-avatar--tb { background: #e6f7f4; }
.testi-avatar--cr { background: #f5f0fc; }
.testi-avatar--sc { background: #eef4fc; }
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 13px; color: var(--gray); }
.testi-result {
  display: inline-block;
  margin-top: 16px;
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}

/* ── ABOUT ─────────────────────────────────────────── */
.about { padding: 96px 0; background: var(--blue); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

/* Visuel mascotte à propos : halo doux + bandelette + disque blanc */
.about-mascotte-visual {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto;
}

/* Halo extérieur — grande auréole très transparente et floutée */
.about-mascotte-visual::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 118%;
  height: 118%;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(186, 230, 253, 0.22) 28%,
    rgba(255, 255, 255, 0.08) 48%,
    transparent 68%
  );
  filter: blur(18px);
  opacity: 0.92;
}

/* Halo intérieur — resserre la lumière juste derrière le disque blanc */
.about-mascotte-visual::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 88%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(147, 197, 253, 0.28) 42%,
    rgba(255, 255, 255, 0.08) 62%,
    transparent 78%
  );
  filter: blur(10px);
  opacity: 0.88;
}

.about-mascotte-sash {
  position: absolute;
  left: 50%;
  top: 38%;
  z-index: 2;
  margin: 0;
  max-width: 112%;
  padding: 7px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  font-size: clamp(10px, 2.4vw, 12px);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--green);
  background: rgba(230, 247, 244, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  pointer-events: none;
  animation: float-hero-sash 4s ease-in-out infinite;
}

.about-mascotte-sash::before {
  content: '●';
  flex-shrink: 0;
  font-size: 7px;
  line-height: 1;
  opacity: 0.85;
}

.about-mascotte-sash-inner {
  display: block;
  hyphens: auto;
}

.about-sphere {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.2),
    0 14px 32px rgba(26, 111, 181, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.65),
    0 0 40px rgba(255, 255, 255, 0.35),
    0 0 72px 20px rgba(147, 197, 253, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.98);
  transform: translate(-50%, -50%);
  animation: float-hero-centered 4s ease-in-out infinite;
  z-index: 3;
}

.about-sphere img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(26, 111, 181, 0.12));
}

@media (prefers-reduced-motion: reduce) {
  .about-sphere {
    animation: none;
    transform: translate(-50%, -50%);
  }

  .about-mascotte-sash {
    animation: none;
    transform: translate(-50%, -50%) rotate(-11deg);
  }
}

.about-badge-float {
  position: absolute;
  bottom: 18px;
  right: -4px;
  z-index: 5;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 132px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.about-badge-float .number {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}

.about-badge-float .label {
  font-size: 12px;
  color: rgba(26, 111, 181, 0.82);
  font-weight: 600;
  margin-top: 2px;
}

.about-badge-float--pionniers {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue);
  text-align: left;
  min-width: 0;
  max-width: 240px;
}

.about .tag {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.about .section-title { color: var(--white); }
.about-speaker {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 28px;
}
.about-speaker-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}
.about-speaker-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 12px;
}
.about-speaker-text strong { color: var(--white); }
.about-speaker-points {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-speaker-points li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 18px;
  position: relative;
}
.about-speaker-points li::before {
  content: '·';
  position: absolute;
  left: 4px;
  font-weight: 700;
  color: #93c5fd;
}
.about-speaker-cta { margin: 0; }
.about-speaker-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: none;
}
.about-speaker-link:hover {
  color: var(--white);
  text-decoration: underline;
}
.about-text { color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
}
.about-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.about-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-spec {
  padding: 6px 16px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 340px; margin: 0 auto; }
}

/* ── FAQ ───────────────────────────────────────────── */
.faq { padding: 96px 0; background: var(--gray-light); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 16px;
  transition: background .2s;
}
.faq-q:hover { background: var(--gray-light); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 1200px; padding: 0 24px 20px; }
.faq-a p { font-size: 14px; color: var(--gray); line-height: 1.75; }
.faq-pricing-offers { margin-top: 12px; }
.faq-offer-block { margin: 0; padding: 14px 0; }
.faq-offer-block strong { color: var(--dark); }
.faq-offer-sep {
  border: none;
  height: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
.faq-pricing-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray);
}
.faq-pricing-footer a { color: var(--blue); font-weight: 600; text-decoration: none; }
.faq-pricing-footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .problem-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat {
    padding: 16px 12px;
  }
  .stat-number {
    font-size: clamp(22px, 6vw, 32px);
  }
  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* ── CTA FINAL ─────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #1a3a5c 100%);
  text-align: center;
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-sub { color: #94a3b8; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-guarantee {
  margin-top: 24px;
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 40px 0 56px; }
  .problem, .solution, .how, .testimonials, .about, .faq, .cta-section { padding: 64px 0; }
  .hero-actions {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
  .btn { width: 100%; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
