/* ================================================
   CENTRALIS BUSINESS GROUP — style.css
   ================================================ */

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

:root {
  --blue:    #1A1ACC;
  --blue2:   #2525D8;
  --blue3:   #0F0FAA;
  --blueL:   #EEF0FF;
  --white:   #FFFFFF;
  --dark:    #111827;
  --gray:    #6B7280;
  --bg:      #F7F8FF;
  --border:  rgba(26,26,204,0.12);
  --font-s:  'Space Grotesk', sans-serif;
  --font:    'Inter', sans-serif;
  --tr:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:  0 4px 30px rgba(26,26,204,0.1);
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: var(--font); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-eyebrow--white { color: rgba(255,255,255,0.7); }
.serif-title {
  font-family: var(--font-s);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.serif-title em { font-style: italic; color: var(--blue); }
.serif-title--white { color: var(--white); }
.serif-title--white em { color: rgba(255,255,255,0.75); }
.section-sub { font-size: 0.95rem; color: var(--gray); max-width: 600px; margin-top: 0.75rem; }
.section-hd { margin-bottom: 3.5rem; }

.blue-bar { width: 60px; height: 3px; background: var(--blue); margin: 1.5rem 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--tr);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,204,0.35); }
/* keep .btn-gold alias */
.btn-gold { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: white; padding: 0.85rem 2rem; border-radius: 4px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; transition: var(--tr); border: none; cursor: pointer; }
.btn-gold:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,204,0.35); }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: var(--tr);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-nav-cta {
  background: var(--blue);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--blue2); }
.btn-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 1rem; }

/* ── INTRO OVERLAY ── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#intro-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.intro-logo {
  width: 240px;
  height: auto;
  opacity: 0;
  animation: introLogoIn 1s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
@keyframes introLogoIn { to { opacity: 1; } }
.intro-logo-fb { opacity: 0; animation: introLogoIn 1s ease 0.3s forwards; }
@keyframes introText { to { opacity: 1; } }
.intro-progress-wrap {
  width: 300px;
  height: 2px;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  animation: introText 0.4s ease 1.1s forwards;
  position: relative;
  overflow: hidden;
}
.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 0.05s linear;
}
.intro-percent {
  opacity: 0;
  color: var(--gray);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  animation: introText 0.4s ease 1.5s forwards;
}

/* ── VAGUES ENTRE SECTIONS ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin: -2px 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(17,24,39,0.08);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo-img { height: 80px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: 4px;
  transition: var(--tr);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: white; }
#navbar.scrolled .nav-links a { color: var(--dark); }
#navbar.scrolled .nav-links a:hover { color: var(--blue); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--tr); }
#navbar.scrolled .burger span { background: var(--dark); }
@media (max-width: 900px) {
  .nav-links, .btn-nav-cta { display: none !important; }
  .burger { display: flex; }

  /* Tiroir latéral — pages secondaires */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 75vw;
    max-width: 300px;
    background: #ffffff !important;
    padding: 5rem 2rem 2rem;
    z-index: 1001;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    gap: 0.25rem;
    visibility: hidden;
  }
  .nav-links.open {
    transform: translateX(0) !important;
    visibility: visible;
  }
  .nav-links a { color: #0a0a1a !important; padding: 0.9rem 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(17,24,39,0.06); display: block; }
  .nav-links a:last-child { border-bottom: none; }
}

/* ── NAVBAR CENTERED ── */
.navbar-centered {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(17,24,39,0.08);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.navbar-centered.scrolled {
  box-shadow: 0 2px 28px rgba(17,24,39,0.13);
}
.nav-centered-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 80px;
  padding: 0 3rem;
  position: relative;
}
.nav-links-left,
.nav-links-right {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links-left a,
.nav-links-right a {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 4px;
  transition: var(--tr);
  letter-spacing: 0.02em;
}
.nav-links-left a:hover,
.nav-links-right a:hover { color: var(--blue); }
.navbar-centered .nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.navbar-centered .nav-logo-img { height: 84px; width: auto; object-fit: contain; }
.navbar-centered .burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 1.5rem;
}
.navbar-centered .burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--tr); }
@media (max-width: 900px) {
  .nav-links-left, .nav-links-right { display: none !important; }
  .navbar-centered .burger { display: flex; }

  /* Tiroir latéral — page d'accueil */
  .nav-links-right {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 75vw;
    max-width: 300px;
    background: #ffffff !important;
    padding: 5rem 2rem 2rem;
    z-index: 1001;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    gap: 0.25rem;
    visibility: hidden;
  }
  .nav-links-right.open {
    transform: translateX(0) !important;
    visibility: visible;
  }
  .nav-links-right a { color: #0a0a1a !important; padding: 0.9rem 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(17,24,39,0.06); display: block; }
  .nav-links-right a:last-child { border-bottom: none; }
}

/* ── HERO FULL ── */
.hero-full {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-full-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  pointer-events: none;
}
.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,20,0.22);
  z-index: 1;
}
.hero-full-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding-top: 80px;
}
.hero-split-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}
.hero-full-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(50px);
  animation: heroIn 1s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}
.typewriter-cursor {
  display: inline-block;
  color: rgba(255,255,255,0.8);
  animation: blink 0.75s step-end infinite;
  font-style: normal;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-full-title em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.hero-full-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 580px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1s cubic-bezier(0.16,1,0.3,1) 0.55s forwards;
}
.hero-split-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-split-btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--tr);
}
.hero-split-btn--primary {
  background: white;
  color: var(--dark);
}
.hero-split-btn--primary:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,26,204,0.4);
}
.hero-split-btn--ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.hero-split-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* ── À PROPOS ── */
.about {
  background: var(--white);
  overflow: hidden;
  margin-top: 5rem;
  border-top: 1px solid rgba(26,26,204,0.08);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── Photos mosaïque ── */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 480px;
}
.about-photo {
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.about-photo.in-view { opacity: 1; transform: translateY(0); }
.about-photo--main { grid-row: span 2; transition-delay: 0s; }
.about-photo--sm1  { transition-delay: 0.18s; height: 238px; }
.about-photo--sm2  { transition-delay: 0.34s; height: 238px; }
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  transition: transform 0.5s ease;
}
.about-photo:hover img { transform: scale(1.05); }

/* ── Contenu droite ── */
.about-content {
  padding: 3.5rem 5rem 3.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Eyebrow : ligne bleue qui s'étend */
.about-content .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-content .section-eyebrow::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.8s cubic-bezier(0.77,0,0.18,1) 0.1s;
}
.about-content.in-view .section-eyebrow::before { width: 36px; }

/* Titre */
.about-title {
  font-family: var(--font-s);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease 0.3s, transform 0.75s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.about-content.in-view .about-title { opacity: 1; transform: translateY(0); }

/* Description */
.about-desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 0.9rem;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.48s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.48s;
}
.about-desc:last-of-type { margin-bottom: 1.8rem; }
.about-content.in-view .about-desc { opacity: 1; transform: translateY(0); }

/* Pilliers */
.about-pillars { display: flex; flex-direction: column; }
.about-pillar {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26,26,204,0.08);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.about-pillar:first-child { border-top: 1px solid rgba(26,26,204,0.08); }
.about-pillar:nth-child(1) { transition-delay: 0.58s; }
.about-pillar:nth-child(2) { transition-delay: 0.72s; }
.about-pillar:nth-child(3) { transition-delay: 0.86s; }
.about-content.in-view .about-pillar { opacity: 1; transform: translateX(0); }

/* Icône SVG */
.about-pillar-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--blueL);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.about-pillar:hover .about-pillar-icon {
  background: var(--blue);
  color: white;
  transform: scale(1.1) rotate(-4deg);
}
.about-pillar-icon svg { transition: stroke 0.3s ease; }
.about-pillar:hover .about-pillar-icon svg { stroke: white; }

.about-pillar h4 { font-family: var(--font-s); font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.about-pillar p { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

/* CTA bouton */
.about-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.75rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-s);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 1s, transform 0.6s ease 1s, background 0.3s ease;
}
.about-content.in-view .about-cta { opacity: 1; transform: translateY(0); }
.about-cta:hover { background: var(--blue3); }

/* ── Bande stats ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e7eb;
  background: #fff;
  margin-bottom: 4rem;
}
.about-stat {
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.about-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 32px; height: 2px;
  background: var(--dark);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  transition-delay: inherit;
}
.about-stat.in-view::before { transform: translateX(-50%) scaleX(1); }
.about-stat:last-child { border-right: none; }
.about-stat.in-view { opacity: 1; transform: translateY(0); }
.about-stat:nth-child(1) { transition-delay: 0s; }
.about-stat:nth-child(2) { transition-delay: 0.15s; }
.about-stat:nth-child(3) { transition-delay: 0.3s; }
.about-stat:nth-child(4) { transition-delay: 0.45s; }
.about-stat-num {
  display: inline;
  font-family: var(--font-s);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.about-stat-suffix {
  font-family: var(--font-s);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  vertical-align: super;
}
.about-stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  /* Sur mobile : une seule grande image + les 2 petites côte à côte en dessous */
  .about-photos {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
    padding: 0 1rem;
  }
  .about-photo--main {
    grid-column: span 2;
    grid-row: span 1;
    height: 260px;
  }
  .about-photo--sm1,
  .about-photo--sm2 {
    height: 180px;
  }
  .about-content { padding: 2.5rem 1.5rem; }
  .about-desc { text-align: justify; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
}
@media (max-width: 500px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ── PÔLES — image cards sur fond blanc ── */
.poles {
  padding: 8rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.poles .section-hd { margin-bottom: 4rem; }
.poles .serif-title em { color: var(--blue); }
.poles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .poles-grid { grid-template-columns: 1fr; } }
.pole-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26,26,204,0.07);
  border: 1px solid rgba(26,26,204,0.08);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
  position: relative;
}
.pole-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(26,26,204,0.18); }
.pole-card--featured { border-color: rgba(26,26,204,0.2); }
.pole-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.pole-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.pole-card:hover .pole-card-img img { transform: scale(1.06); }
.pole-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,30,0.55) 100%);
}
.pole-num-img {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: white;
  background: var(--blue);
  padding: 3px 10px;
  border-radius: 50px;
}
.pole-card-body {
  padding: 1.75rem;
}
.pole-card-body h3 { font-family: var(--font-s); font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.2; }
.pole-card-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
.pole-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.5rem; }
.pole-tags span {
  background: var(--blueL);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pole-card--featured .pole-tags span { background: var(--blue); color: white; }
.pole-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.25s;
}
.pole-link:hover { gap: 12px; }
.pole-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.pole-card:hover .pole-bar { transform: scaleX(1); }

/* ── CHIFFRES ── */
.chiffres { padding: 5rem 0; background: var(--white); }
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 640px) { .chiffres-grid { grid-template-columns: repeat(2,1fr); } }
.chiffre-n {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  font-family: var(--font-s);
  margin-bottom: 0.5rem;
}
.chiffre-sfx { font-size: 1.5rem; font-weight: 700; color: var(--blue); }
.chiffre p { font-size: 0.82rem; color: var(--gray); font-weight: 500; }

/* ── ESPACES ── */
.espaces { background: #fff; margin-top: 4rem; padding-bottom: 6rem; }

/* Hero espaces */
.espaces-hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin: 0 2rem;
  border-radius: 24px;
}
.espaces-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.espaces-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6) 100%);
}
.espaces-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 2.5rem;
  width: 100%;
  text-align: center;
}
.espaces-hero-eyebrow {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.espaces-hero-title {
  font-family: var(--font-s);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.espaces-hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.8);
}
.espaces-hero-sub {
  font-family: var(--font);
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}
.espaces-nav {
  background: #fff;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: -80px 4rem 3rem;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}
.espaces-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  background: #F4F4F2;
  color: var(--dark);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}
.espaces-nav-btn:hover { background: var(--dark); color: #fff; }

@media (max-width: 768px) {
  .espaces-hero { height: 70vh; margin: 0 1rem; }
  .espaces-hero-content { padding: 0 1.5rem 2rem; }
  .espaces-nav {
    padding: 1.2rem 1rem;
    margin: -50px 1rem 2rem;
    border-radius: 20px 20px 0 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .espaces-nav::-webkit-scrollbar { display: none; }
  .espaces-nav-btn { flex-shrink: 0; white-space: nowrap; font-size: 0.8rem; padding: 0.55rem 1.1rem; }
}
.re-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.re-filter-btn {
  background: white;
  border: 1px solid #E5E5E0;
  color: var(--gray);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
}
.re-filter-btn:hover, .re-filter-btn--active { background: var(--dark); color: white; border-color: var(--dark); }
.re-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 1024px) { .re-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .re-grid { grid-template-columns: 1fr; } }
.re-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #EFEFED;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.re-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,0,0,0.12); }
.re-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0f0ee;
}
.re-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.re-card:hover .re-card-img-wrap img { transform: scale(1.05); }
.re-avail {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: #16a34a;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.re-type {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(17,24,39,0.75);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.re-type--premium { background: rgba(26,26,204,0.8); }
.re-price-banner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.4rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.re-price-banner .re-price-amount {
  font-family: var(--font-s);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.re-price-banner .re-price-unit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.re-body { padding: 1.4rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.re-header { margin-bottom: 0.5rem; }
.re-header h3 { font-size: 1.1rem; font-weight: 600; color: var(--dark); font-family: var(--font-s); letter-spacing: -0.02em; }
.re-price { display: none; }
.re-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #F0F0EE;
}
.re-specs span { display: flex; align-items: center; gap: 0.3rem; }
.re-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.re-amenities { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.2rem; }
.re-amenities span { background: #F5F5F3; color: #444; font-size: 0.68rem; font-weight: 500; padding: 4px 10px; border-radius: 50px; }
.re-actions { display: flex; gap: 0.6rem; margin-top: auto; }
.re-btn-outline {
  flex: 1;
  text-align: center;
  padding: 0.7rem;
  border: 1.5px solid #E5E5E3;
  border-radius: 10px;
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--tr);
}
.re-btn-outline:hover { border-color: var(--dark); background: var(--dark); color: white; }
.re-btn-solid {
  flex: 1;
  text-align: center;
  padding: 0.7rem;
  background: var(--dark);
  border-radius: 10px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--tr);
}
.re-btn-solid:hover { background: var(--blue); }
.re-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blueL);
  border: 1px solid rgba(26,26,204,0.12);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.re-cta p { font-size: 1rem; font-weight: 600; color: var(--dark); }
.re-arrow { display: none; }

/* ── STUDIO ── */
.studio {
  padding: 8rem 0;
  background: #0C0C0C;
  position: relative;
  overflow: hidden;
}
.studio::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,26,204,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.studio-hd { text-align: center; max-width: 720px; margin: 0 auto 4rem; position: relative; }
.studio-desc { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-top: 1.25rem; }
.studios-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; position: relative; }
@media (max-width: 768px) { .studios-duo { grid-template-columns: 1fr; } }

/* Animation d'entrée cartes studio */
.studio-card {
  background: #181818;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.studio-card.studio-in {
  opacity: 1;
  transform: translateY(0);
}
.studio-card:nth-child(2) { transition-delay: 0.15s; }
.studio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.18);
}
.studio-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.studio-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.studio-card-img img[src*="studio-jaune"] { transform: scale(1.3); }
.studio-card:hover .studio-card-img img { transform: scale(1.05); }
.studio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.studio-card-overlay span { color: white; font-weight: 700; font-size: 1.1rem; font-family: var(--font-s); }
.studio-card-body { padding: 1.5rem; }
.studio-card-body h3 { font-family: var(--font-s); font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.studio-card-body p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1rem; }
.studio-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.studio-card:hover .studio-card-link { color: #fff; }
.studio-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.studio-specs span { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65); padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.studio-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); position: relative; }
.studio-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.studio-features li { font-size: 0.85rem; color: rgba(255,255,255,0.55); padding-left: 1.1rem; position: relative; }
.studio-features li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.studio-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FORMATIONS ── */
.formations { padding: 8rem 0; background: var(--bg); margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-arrows-row { display: none; }
@media (max-width: 640px) {
  .form-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .form-grid::-webkit-scrollbar { display: none; }
  .form-grid .form-card {
    flex: 0 0 80vw;
    min-width: 280px;
    scroll-snap-align: start;
  }
  .form-arrows-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  .form-arrow {
    display: flex;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E8E8E6;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    transition: background 0.2s, color 0.2s;
  }
  .form-arrow:active { background: var(--blue); color: #fff; }
}
.form-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.form-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,26,204,0.15); }
.form-card--gold { background: white; border: 1px solid rgba(26,26,204,0.15); }
.form-card--special { background: white; border: 1px solid rgba(26,26,204,0.12); }
.form-img { aspect-ratio: 16/9; overflow: hidden; }
.form-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.form-card:hover .form-img img { transform: scale(1.04); }
.form-card > *:not(.form-img):not(.form-footer) { padding: 0 1.4rem; }
.form-badges { display: flex; gap: 6px; margin-top: 1.25rem; }
.badge-bts {
  background: var(--blueL);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.badge-bts--gold { background: var(--blueL); color: var(--blue); }
.badge-bts--alt { background: var(--blueL); color: var(--blue); }
.badge-bts--ia { background: rgba(99,102,241,0.12); color: #4338CA; }
.badge-bts--lang { background: rgba(20,184,166,0.1); color: #0F766E; }
.badge-alt { background: #DCFCE7; color: #15803D; padding: 3px 10px; border-radius: 4px; font-size: 0.68rem; font-weight: 700; }
.badge-alt--melio { background: rgba(99,102,241,0.1); color: #4338CA; }
.form-sigle { font-family: var(--font-s); font-size: 2rem; font-weight: 700; color: var(--dark); margin-top: 0.75rem; }
.form-name { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.75rem; line-height: 1.4; }
.form-desc { font-size: 0.82rem; color: #374151; line-height: 1.65; margin-bottom: 1rem; }
.form-points { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.form-points li { font-size: 0.78rem; color: var(--gray); padding-left: 14px; position: relative; }
.form-points li::before { content: '—'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem 1.4rem;
  border-top: 1px solid rgba(26,26,204,0.07);
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
}
.btn-form {
  background: var(--blue);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--tr);
}
.btn-form:hover { background: var(--blue2); }
.btn-form--gold { background: var(--blue); color: white; }
.btn-form--gold:hover { background: var(--blue2); }

/* ── BLOG ── */
.blog { padding: 8rem 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.35s ease; }
.blog-card:hover { transform: translateY(-6px); }
.blog-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: white;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.blog-body { padding: 1.5rem; background: white; }
.blog-date { font-size: 0.72rem; color: var(--gray); margin-bottom: 0.5rem; }
.blog-body h3 { font-family: var(--font-s); font-size: 1.1rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 0.75rem; }
.blog-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.blog-link { font-size: 0.8rem; font-weight: 700; color: var(--blue); }
.blog-link:hover { color: var(--blue2); }

/* ── CONTACT ── */
/* ── CONTACT ── */
.contact { padding: 8rem 0; background: #fff; }
.ct-header { margin-bottom: 3rem; }
.ct-header .section-eyebrow { margin-bottom: 0.75rem; }

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 900px) { .ct-grid { grid-template-columns: 1fr; } }

/* Colonne gauche */
.ct-left-col { display: flex; flex-direction: column; gap: 1.5rem; }

.ct-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ct-info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.ct-info-icon {
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid #EFEFED;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
}
.ct-info-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.ct-info-item p { font-size: 0.82rem; color: var(--gray); }

.ct-left-col { flex: 1; }
.ct-form-wrap {
  background: #F8F8F6;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border: 1px solid #E8E8E6;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#contact-form { width: 100%; flex: 1; display: flex; flex-direction: column; }
#contact-form .cf-group:last-of-type { flex: 1; display: flex; flex-direction: column; }
#contact-form .cf-group:last-of-type textarea { flex: 1; min-height: 120px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .cf-row { grid-template-columns: 1fr; } }
.cf-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.cf-group label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--dark); letter-spacing: 0.05em; text-transform: uppercase;
}
.cf-group input, .cf-group select, .cf-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #E8E8E6;
  border-radius: 10px;
  font-family: var(--font); font-size: 0.88rem;
  color: var(--dark); background: #FAFAF8;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical; appearance: none; -webkit-appearance: none;
}
.cf-group input::placeholder, .cf-group textarea::placeholder { color: #B5B5B0; }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.cf-select--mobile { display: none; }
.cf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cf-pill {
  display: inline-flex;
  cursor: pointer;
}
.cf-pill input[type="radio"] { display: none; }
.cf-pill span {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1.5px solid #E8E8E6;
  border-radius: 999px;
  font-size: 0.82rem;
  font-family: var(--font);
  color: var(--gray);
  background: #FAFAF8;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}
.cf-pill input[type="radio"]:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.cf-pill:hover span {
  border-color: var(--blue);
  color: var(--blue);
}
.cf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer;
}
.ct-submit {
  width: 100%; padding: 0.95rem;
  background: var(--dark); color: #fff;
  border: none; border-radius: 10px;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.ct-submit:hover { background: var(--blue); transform: translateY(-1px); }

/* Colonne droite — visite */
.ct-right-col { display: flex; flex-direction: column; }
.ct-visite-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #EFEFED;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ct-visite-hero {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.ct-visite-hero video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ct-visite-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.65));
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
}
.ct-visite-overlay span {
  font-family: var(--font-s); font-size: 1.3rem; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
}
.ct-visite-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; }
.ct-cal { flex: 1; min-height: 420px; }
.ct-cal #my-cal-inline-visite-centralis { min-height: 420px; height: 100%; }

/* ── PARTENAIRES ── */
.partenaires {
  padding: 3rem 0;
  background: linear-gradient(160deg, #f8faff 0%, #f5f7ff 100%);
}
.part-header { text-align: center; margin-bottom: 1.5rem; }
.part-heading {
  font-family: var(--font-s);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #0a0a1a;
  margin: 0.4rem 0 0;
}
.part-heading em { font-style: italic; color: #1d4ed8; }
.part-desc {
  font-size: 0.95rem;
  color: rgba(10,10,26,0.55);
  line-height: 1.75;
  margin: 1rem auto 0;
  max-width: 100%;
}
@media (max-width: 768px) {
  .part-desc { font-size: 0.85rem; text-align: center; max-width: 320px; margin: 0 auto; }
  .part-desc-more { display: none; }
  .part-badges { flex-direction: row; justify-content: center; align-items: center; flex-wrap: nowrap; gap: 0.5rem; margin: 0.75rem auto 1rem; }
  .part-badge { white-space: nowrap; font-size: 0.72rem; padding: 0.28rem 0.7rem; }
}

/* Animation d'entrée */
.part-header.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.part-header.reveal.visible { opacity: 1; transform: translateY(0); }
.part-marquee-outer {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}
.part-marquee-outer.visible { opacity: 1; transform: translateY(0); }

/* Marquee */
.part-marquee-outer {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}
.part-fade-left,
.part-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.part-fade-left  { left: 0;  background: linear-gradient(to right, #f8faff, transparent); }
.part-fade-right { right: 0; background: linear-gradient(to left,  #f5f7ff, transparent); }

.part-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: part-scroll 35s linear infinite;
  will-change: transform;
}
.part-marquee-outer:hover .part-track { animation-play-state: paused; }

@keyframes part-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.part-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.09);
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  flex-shrink: 0;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.part-logo-card:hover {
  box-shadow: 0 12px 40px rgba(17,24,39,0.1);
  transform: translateY(-4px);
}
.part-logo-card img {
  height: 75px;
  max-width: 170px;
  object-fit: contain;
  display: block;
}
.part-logo-card img[alt="Quiet Force Studio"] {
  height: 75px;
  max-width: 170px;
}
.part-logo-card p {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(17,24,39,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

/* Formations dans section partenaires */
.part-formations-block {
  max-width: 1100px;
  margin: 3rem auto 3rem;
  padding: 0 1.5rem;
  text-align: center;
}
.part-formations-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17,24,39,0.4);
  margin-bottom: 0.5rem;
}
.part-formations-sub {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin-top: 0.4rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .part-formations-sub {
    font-size: 0.62rem;
    letter-spacing: 0;
  }
}
.part-formations-title {
  font-family: var(--font-s);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.part-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}
.part-form-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,0.08);
  box-shadow: 0 4px 24px rgba(17,24,39,0.07);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.part-form-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(17,24,39,0.13); }
.part-form-card--gold { border-top: 3px solid #d4a017; }
.part-form-img { height: 160px; overflow: hidden; }
.part-form-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.part-form-card:hover .part-form-img img { transform: scale(1.05); }
.part-form-body { padding: 1.25rem 1.5rem 1.5rem; }
.part-form-sigle {
  font-family: var(--font-s);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.5rem 0 0.2rem;
}
.part-form-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(17,24,39,0.6);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.part-form-desc {
  font-size: 0.8rem;
  color: rgba(17,24,39,0.5);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.part-form-btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.part-form-btn--gold { color: #b8860b; }
@media (max-width: 900px) {
  .part-form-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1rem 1rem;
    margin: 0 -1.5rem;
  }
  .part-form-grid::-webkit-scrollbar { display: none; }
  .part-form-card {
    flex: 0 0 78vw;
    min-width: 260px;
  }
}
.part-form-wrap { position: relative; }
.part-form-arrow {
  display: none;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(17,24,39,0.12);
  z-index: 2;
  padding: 0;
}
.part-form-arrow--prev { left: -6px; }
.part-form-arrow--next { right: -6px; }
@media (max-width: 900px) {
  .part-form-arrow { display: flex; }
}

.part-cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a1a;
  background: #fff;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.part-cta:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.part-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0 1.25rem;
}
.part-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(29,78,216,0.15);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s, color 0.3s;
}
.part-badge svg { opacity: 0.7; }
.part-badge:hover { background: rgba(255,255,255,0.8); color: #1e3a8a; }
.part-header.visible .part-badge:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.part-header.visible .part-badge:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.part-header.visible .part-badge:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.part-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0.75rem 0 0.75rem;
}
.part-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.part-meta-num {
  font-family: var(--font-s);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0a1a;
  line-height: 1;
}
.part-meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,10,26,0.45);
}
.part-meta-sep {
  width: 1px;
  height: 2rem;
  background: rgba(10,10,26,0.12);
}

@media (max-width: 640px) {
  .part-logo-card { padding: 1.5rem 2rem; height: 130px; justify-content: center; overflow: hidden; }
  .part-logo-card p { display: none; }
  .part-logo-card img { height: 90px; max-width: 190px; }
  .part-logo-card img[alt="Quiet Force Studio"] { height: 90px; max-width: 190px; }
}


/* ── STATS ── */
.stats {
  background: #fff;
  border-top: 1px solid rgba(17,24,39,0.08);
  border-bottom: 1px solid rgba(17,24,39,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 3rem 1.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.stat-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.stats-grid .stat-item:nth-child(1) { transition-delay: 0s; }
.stats-grid .stat-item:nth-child(2) { transition-delay: 0.12s; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 0.24s; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 0.36s; }
.stat-item + .stat-item {
  border-left: 1px solid rgba(17,24,39,0.1);
}
.stat-number {
  font-family: var(--font-s);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #0a0a1a;
  line-height: 1;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.08em;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(17,24,39,0.45);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.stat-divider {
  width: 1.8rem;
  height: 2px;
  background: #0a0a1a;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; border-top: 1px solid rgba(17,24,39,0.1); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(17,24,39,0.1); }
}

/* ── COMMUNAUTÉ ── */
.community {
  padding: 6rem 0;
  background: #ffffff;
  overflow: hidden;
}
.comm-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.comm-title {
  font-family: var(--font-s);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}
.comm-title em { font-style: italic; font-weight: 300; color: #1a1acc; }

.comm-bento {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Cards */
.comm-col { display: flex; flex-direction: column; gap: 1.25rem; justify-content: space-between; }

.comm-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.comm-card:hover { transform: translateY(-6px); }
.comm-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
}
.comm-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}
.comm-card:hover .comm-card-glow { opacity: 1; }

/* Couleurs par carte */
.comm-card--1 {
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1acc 100%);
  box-shadow: 0 12px 40px rgba(26,26,204,0.25);
}
.comm-card--1 .comm-card-glow { background: radial-gradient(circle at top right, rgba(100,120,255,0.3), transparent 60%); }
.comm-card--1:hover { box-shadow: 0 20px 60px rgba(26,26,204,0.4); }

.comm-card--2 {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  box-shadow: 0 12px 40px rgba(37,99,235,0.25);
}
.comm-card--2 .comm-card-glow { background: radial-gradient(circle at bottom left, rgba(147,197,253,0.2), transparent 60%); }
.comm-card--2:hover { box-shadow: 0 20px 60px rgba(37,99,235,0.4); }

.comm-card--3 {
  background: linear-gradient(135deg, #1d4ed8 0%, #60a5fa 100%);
  box-shadow: 0 12px 40px rgba(29,78,216,0.25);
}
.comm-card--3 .comm-card-glow { background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 60%); }
.comm-card--3:hover { box-shadow: 0 20px 60px rgba(29,78,216,0.4); }

.comm-card--4 {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  box-shadow: 0 12px 40px rgba(15,23,42,0.3);
}
.comm-card--4 .comm-card-glow { background: radial-gradient(circle at bottom right, rgba(96,165,250,0.2), transparent 60%); }
.comm-card--4:hover { box-shadow: 0 20px 60px rgba(30,64,175,0.5); }

/* Contenu des cartes */
.comm-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.85rem;
}
.comm-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1rem;
  transition: background 0.3s, transform 0.3s;
}
.comm-card:hover .comm-icon { background: rgba(255,255,255,0.2); transform: scale(1.08); }
.comm-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.comm-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.comm-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
}

/* Centre */
.comm-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 400px;
  text-align: center;
}
.comm-center-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  z-index: 3;
  margin: auto;
}
.comm-center-dot {
  width: 8px; height: 8px;
  background: #1a1acc;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 3;
}
.comm-center-ring {
  display: none;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(26,26,204,0.15);
  animation: ringPulse 3s ease-in-out infinite;
}
.comm-center-ring--1 { width: 120px; height: 120px; animation-delay: 0s; }
.comm-center-ring--2 { width: 220px; height: 220px; animation-delay: 0.8s; border-color: rgba(26,26,204,0.08); }
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.6; }
}
.comm-center-text {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1rem;
}
.comm-center-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,204,0.5);
  margin-bottom: 0.6rem;
}
.comm-center-heading {
  font-family: var(--font-s);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  color: #0a0a1a;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.comm-center-heading em { font-style: italic; font-weight: 300; color: #1a1acc; }
.comm-center-sub {
  font-size: 0.8rem;
  color: rgba(17,24,39,0.5);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* Animations reveal */
.comm-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.comm-reveal-left--delay { transition-delay: 0.2s; }
.comm-reveal-left.visible { opacity: 1; transform: translateX(0); }

.comm-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.comm-reveal-right--delay { transition-delay: 0.2s; }
.comm-reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Mobile */
@media (max-width: 900px) {
  .comm-bento {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .comm-col--left { order: 1; }
  .comm-center    { order: 2; }
  .comm-col--right { order: 3; }
  .comm-col { flex-direction: column !important; gap: 1rem !important; justify-content: flex-start !important; }
  .comm-col .comm-card { width: 100%; }
  .comm-center {
    min-height: 0 !important;
    height: auto !important;
    padding: 1.5rem 1.5rem;
  }
  .comm-center-inner {
    width: 100%;
  }
  .comm-reveal-left, .comm-reveal-left--delay,
  .comm-reveal-right, .comm-reveal-right--delay {
    opacity: 1 !important;
    transform: none !important;
  }
  .comm-center-dot { margin: 0 auto 0.5rem; }
  .comm-header { margin-bottom: 1.25rem; }
  .comm-center-text { padding: 0; }
  .comm-center-heading { font-size: 1.3rem; }
}
@media (max-width: 640px) {
  .community { padding: 4rem 0; }
  .comm-col { flex-direction: column !important; justify-content: flex-start !important; }
  .comm-card-inner { padding: 1.35rem; }
}
.comm-mobile-phrase { display: none; }

/* ── CONTACT HERO ── */
.contact-hero {
  background: #06060f;
  padding: 9rem 2rem 5rem;
  text-align: center;
}
.contact-hero-inner { max-width: 700px; margin: 0 auto; }
.contact-hero-title {
  font-family: var(--font-s);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.05;
  margin: 0.5rem 0 1.2rem;
}
.contact-hero-title em { font-style: italic; color: #6b9fff; }
.contact-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer { background: #080818; padding: 5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > *:nth-child(3),
  .footer-grid > *:nth-child(5) { display: none; }
  .footer-brand p { display: none; }
}
.footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: brightness(10); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-links h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-contact p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ── INDIVIDUAL SALLE PAGES ── */
.salle-hero { padding-top: 72px; background: var(--bg); }
.salle-breadcrumb { padding: 1.25rem 0; font-size: 0.8rem; color: var(--gray); }
.salle-breadcrumb a { color: var(--blue); font-weight: 600; }
.salle-breadcrumb a:hover { text-decoration: underline; }
.salle-breadcrumb span { margin: 0 0.5rem; }
.salle-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; padding: 2rem 0 6rem; align-items: start; }
@media (max-width: 960px) { .salle-layout { grid-template-columns: 1fr; } }
.salle-gallery-main { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: var(--bg); margin-bottom: 0.75rem; }
.salle-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.salle-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 2rem; }
.salle-gallery-thumbs img { aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; cursor: pointer; transition: opacity 0.2s; }
.salle-gallery-thumbs img:hover { opacity: 0.75; }
.salle-info-block { margin-bottom: 2rem; }
.salle-info-block h2 { font-size: 2rem; font-weight: 700; font-family: var(--font-s); color: var(--dark); margin-bottom: 0.75rem; }
.salle-info-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.salle-info-tags span { background: var(--bg); color: var(--blue); padding: 4px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.salle-info-tags .tag-green { background: #DCFCE7; color: #15803D; }
.salle-description { font-size: 0.95rem; color: #374151; line-height: 1.8; margin-bottom: 2rem; }
.salle-specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 640px) { .salle-specs-grid { grid-template-columns: repeat(2, 1fr); } }
.salle-spec-item { background: white; border: 1px solid rgba(26,26,204,0.1); border-radius: 12px; padding: 1rem; text-align: center; }
.salle-spec-icon { font-size: 1.5rem; margin-bottom: 0.35rem; }
.salle-spec-val { font-size: 1.1rem; font-weight: 800; color: var(--blue); }
.salle-spec-lbl { font-size: 0.7rem; color: var(--gray); font-weight: 500; }
.salle-equip h3, .salle-pricing h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.salle-equip-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-bottom: 2rem; }
.salle-equip-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #374151; }
.salle-equip-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.pricing-table { border: 1px solid rgba(26,26,204,0.1); border-radius: 12px; overflow: hidden; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.25rem; border-bottom: 1px solid rgba(26,26,204,0.07); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row:nth-child(even) { background: var(--bg); }
.pricing-label { font-size: 0.85rem; color: #374151; font-weight: 500; }
.pricing-val { font-size: 1rem; font-weight: 800; color: var(--blue); }
.salle-sidebar { position: sticky; top: 100px; }
.salle-book-card { background: white; border: 1.5px solid rgba(26,26,204,0.15); border-radius: 20px; padding: 1.75rem; box-shadow: 0 4px 30px rgba(26,26,204,0.1); }
.salle-book-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.salle-book-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 1.25rem; }
.salle-book-price strong { font-size: 2rem; font-weight: 900; color: var(--blue); }
.salle-book-price span { font-size: 0.85rem; color: var(--gray); }
.btn-book-main { display: block; width: 100%; text-align: center; background: var(--blue); color: white; padding: 1rem; border-radius: 10px; font-weight: 700; font-size: 0.9rem; transition: background 0.25s; margin-bottom: 0.75rem; }
.btn-book-main:hover { background: var(--blue2); color: white; }
.btn-book-contact { display: block; width: 100%; text-align: center; border: 1.5px solid var(--blue); color: var(--blue); padding: 0.85rem; border-radius: 10px; font-weight: 700; font-size: 0.88rem; transition: var(--tr); }
.btn-book-contact:hover { background: var(--bg); }
.salle-book-info { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(26,26,204,0.1); list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.salle-book-info li { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.salle-book-info li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22C55E; flex-shrink: 0; }
.salle-related { padding: 5rem 0; background: var(--bg); }
.salle-related h2 { font-family: var(--font-s); font-size: 1.75rem; margin-bottom: 2rem; color: var(--dark); }
.salle-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .salle-related-grid { grid-template-columns: 1fr; } }

/* ── ANIMATIONS AVANCÉES ── */
/* Ligne de révélation de texte */
.clip-reveal { overflow: hidden; }
.clip-reveal span { display: block; transform: translateY(100%); transition: transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.clip-reveal.visible span { transform: translateY(0); }

/* Fade in depuis la gauche */
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Fade in depuis la droite */
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── STYLES PAGES SALLES ── */
.salle-page-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.salle-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.salle-page-hero.loaded img { transform: scale(1); }
.salle-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,30,0.85) 0%, rgba(10,10,30,0.2) 60%, transparent 100%);
}
.salle-page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 0 2.5rem;
}
.salle-page-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.salle-hero-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.salle-hero-badge {
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.salle-hero-badge--avail { background: #22C55E; color: white; }
.salle-hero-badge--type { background: rgba(255,255,255,0.15); color: white; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); }
.salle-hero-badge--price { background: #1A1ACC; color: white; }

/* Stats rapides sous le hero */
.salle-quick-stats {
  background: white;
  border-bottom: 1px solid rgba(26,26,204,0.08);
  padding: 0;
}
.salle-quick-stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.sqs-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(26,26,204,0.08);
  gap: 2px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sqs-item:last-child { border-right: none; }
.sqs-item.visible { opacity: 1; transform: translateY(0); }
.sqs-item strong { font-size: 1.4rem; font-weight: 900; color: #1A1ACC; line-height: 1; }
.sqs-item span { font-size: 0.72rem; color: #6B7280; letter-spacing: 0.05em; text-align: center; }

/* Use-cases / Idéal pour */
.ideal-pour {
  padding: 4rem 0;
  background: #F7F8FF;
}
.ideal-pour h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #111827; margin-bottom: 1.5rem; }
.ideal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 768px) { .ideal-grid { grid-template-columns: 1fr 1fr; } }
.ideal-item {
  background: white;
  border: 1px solid rgba(26,26,204,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ideal-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,26,204,0.1); }
.ideal-dot { width: 8px; height: 8px; border-radius: 50%; background: #1A1ACC; flex-shrink: 0; margin-top: 6px; }
.ideal-item p { font-size: 0.85rem; color: #374151; font-weight: 600; line-height: 1.4; }

/* Section ambiance */
.salle-ambiance {
  padding: 5rem 0;
  background: white;
}
.ambiance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .ambiance-grid { grid-template-columns: 1fr; gap: 2rem; } }
.ambiance-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.ambiance-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.ambiance-img img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.ambiance-img:hover img { transform: scale(1.05); }
.ambiance-img--tall { grid-row: span 2; }
.ambiance-img--tall img { height: 100%; min-height: 375px; }
.ambiance-text h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; font-weight: 700; color: #111827; line-height: 1.2; margin-bottom: 1rem; }
.ambiance-text p { font-size: 0.92rem; color: #374151; line-height: 1.8; margin-bottom: 1.25rem; }
.ambiance-feature { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.65rem; font-size: 0.85rem; color: #111827; font-weight: 500; }
.ambiance-feature::before { content: ''; width: 20px; height: 2px; background: #1A1ACC; flex-shrink: 0; }

/* Footer salle — identique au footer principal */
.salle-footer {
  background: #080818;
  padding: 2.5rem 0;
  text-align: center;
}
.salle-footer p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.salle-footer a { color: #1A1ACC; font-weight: 600; }

/* ── ACTIVITÉS ── */
.activites {
  background: #ffffff;
  padding: 5rem 0 6rem;
  position: relative;
}
.activites::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 75% 15%, rgba(100,180,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.activites-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.activites-header::before {
  content: '';
}
.activites-label {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.1rem;
}
.activites-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.activites-title {
  font-family: var(--font-s);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: rgba(17,24,39,0.18);
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  user-select: none;
  pointer-events: none;
}
.activites-title em {
  font-style: italic;
  color: rgba(17,24,39,0.18);
}
.activites-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
/* ── Carrousel activités ── */
.act-carousel-wrap { position: relative; }
.act-arrow { display: none; }
.act-carousel {
  overflow: hidden;
  padding: 0.5rem 1.5rem 2rem;
}
.act-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.act-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
}
.act-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #D1D5DB;
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.act-dot.active {
  background: var(--blue);
  width: 24px;
}
.act-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 24px rgba(17,24,39,0.09);
  opacity: 0;
  transform: translateY(80px) scale(0.94);
  transition: box-shadow 0.35s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease, opacity 0.8s cubic-bezier(0.16,1,0.3,1);
}
.act-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.act-track .act-card:nth-child(1) { transition-delay: 0s; }
.act-track .act-card:nth-child(2) { transition-delay: 0.18s; }
.act-track .act-card:nth-child(3) { transition-delay: 0.36s; }
.act-track .act-card:nth-child(4) { transition-delay: 0.54s; }
.act-track .act-card:nth-child(5) { transition-delay: 0.72s; }
.act-track .act-card:nth-child(6) { transition-delay: 0.9s; }
.act-card:hover {
  box-shadow: 0 16px 48px rgba(17,24,39,0.16);
  transform: translateY(-5px);
  border-color: transparent;
}
.act-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.act-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.act-img img[src*="studio-jaune"] { object-position: center 55%; transform: scale(1.08); }
.act-img img[src*="studio-bleu"] { object-position: center 55%; transform: scale(1.08); }
.act-card:hover .act-img img { transform: scale(1.12); }
.act-tags {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.act-tags span {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(4px);
  color: var(--dark);
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  line-height: 1;
}
.act-body {
  padding: 1.3rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.act-num {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.act-body h3 {
  font-family: var(--font-s);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.act-body p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}
.act-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.3s ease;
}
.act-card:hover .act-link { gap: 0.7rem; }

@media (max-width: 768px) {
  .act-carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0.5rem 1rem 1.5rem; }
  .act-carousel::-webkit-scrollbar { display: none; }
  .act-track { display: flex; gap: 1rem; width: max-content; animation: none; }
  .act-card { flex: 0 0 80vw; width: 80vw; }
  .act-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(26,26,204,0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    cursor: pointer;
    color: var(--blue);
  }
  .act-arrow--prev { left: -4px; }
  .act-arrow--next { right: -4px; }
}
.salle-footer a:hover { color: white; }

@media (max-width: 768px) {
  /* 1. Hero bannière d'accueil */
  .hero-full {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-full-content {
    width: 100%;
    padding: 0 1.5rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-full-title,
  .hero-full-sub {
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-full-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 1rem;
  }
  .hero-full-sub {
    font-size: 0.88rem;
    text-align: center;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto 1.5rem;
  }
  .hero-split-ctas {
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
  }
  .hero-split-btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1.2rem;
    font-size: 0.7rem;
    white-space: nowrap;
    border-radius: 6px;
  }
  .hero-split-btn--primary {
    background: white;
    color: var(--dark);
  }
  .hero-split-btn--ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.6);
  }

  /* 2. Bannière espaces/location de salle */
  .espaces-hero {
    margin: 0 0.75rem;
    border-radius: 18px;
    height: 65vh;
  }
  .espaces-hero-content {
    padding: 0 1.5rem 2rem;
    text-align: center;
  }
  .espaces-hero-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.12;
  }
  .espaces-hero-sub {
    font-size: 0.88rem;
    margin: 0 auto;
  }

  /* 3. Sujet formulaire — liste déroulante sur mobile */
  .cf-pills--desktop { display: none; }
  .cf-select--mobile {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #E8E8E6;
    border-radius: 10px;
    font-family: var(--font); font-size: 0.88rem;
    color: var(--dark); background: #FAFAF8;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.5rem;
  }
  .cf-select--mobile:focus { outline: none; border-color: var(--blue); background-color: #fff; }


  /* 4. Cartes salles — carousel mobile */
  .re-card, .re-card:hover {
    transform: none !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
    transition: none !important;
  }
  .re-card img { transition: none !important; }

  .re-carousel-wrap {
    position: relative;
  }
  .re-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1rem 1rem;
  }
  .re-grid::-webkit-scrollbar { display: none; }
  .re-grid .re-card {
    flex: 0 0 78vw;
    min-width: 260px;
  }
  .re-arrow {
    display: flex;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E8E8E6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
  }
  .re-arrow--prev { left: -10px; }
  .re-arrow--next { right: -10px; }
  .re-arrow:active { background: var(--blue); color: #fff; }

  /* 5. Cartes formations — carousel mobile */
  .form-card, .form-card:hover {
    transform: none !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
    transition: none !important;
  }
  .form-card img { transition: none !important; }

  .form-carousel-wrap {
    position: relative;
  }
  .form-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding: 0 1rem 1rem;
  }
  .form-grid::-webkit-scrollbar { display: none; }
  .form-grid .form-card {
    flex: 0 0 78vw;
    min-width: 260px;
  }
  .form-arrow {
    display: flex;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E8E8E6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
  }
  .form-arrow--prev { left: -10px; }
  .form-arrow--next { right: -10px; }
  .form-arrow:active { background: var(--blue); color: #fff; }
}

/* ── FORMATIONS MOBILE EXTRA ── */
.form-mobile-extra { display: none; }
@media (max-width: 640px) {
  .form-mobile-extra {
    display: block;
    padding: 2rem 1.25rem 0;
  }
  .form-why {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(17,24,39,0.08);
    overflow: hidden;
    margin-bottom: 1.5rem;
  }
  .form-why-title {
    font-size: 1rem;
    font-weight: 700;
    padding: 1.25rem 1.25rem 0.75rem;
    color: var(--dark);
    margin-bottom: 0;
    border-bottom: 1px solid rgba(17,24,39,0.07);
  }
  .form-accordion-item {
    border-top: 1px solid rgba(17,24,39,0.07);
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  .form-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    cursor: pointer;
    gap: 0.75rem;
  }
  .form-accordion-btn span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
  }
  .form-accordion-icon {
    flex-shrink: 0;
    color: var(--blue);
    transition: transform 0.25s ease;
  }
  .form-accordion-btn[aria-expanded="true"] .form-accordion-icon {
    transform: rotate(180deg);
  }
  .form-accordion-body {
    display: none;
    padding: 0 1.25rem 1rem;
  }
  .form-accordion-body.open { display: block; }
  .form-accordion-body p {
    font-size: 0.8rem;
    color: rgba(17,24,39,0.6);
    line-height: 1.6;
    margin: 0;
  }
  .form-mobile-cta {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark);
    border-radius: 16px;
    margin-bottom: 2rem;
  }
  .form-mobile-cta p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
  .form-mobile-cta .btn-form { background: white; color: var(--dark); }
}