/* ============================================
   ALAM — Sub-pages v3.0
   ============================================ */

/* ============ FAQ ACCORDION ============ */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  gap: 14px;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--petrol); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--petrol);
  font-size: 0.6rem;
}
.faq-item.open .faq-icon {
  background: var(--petrol);
  border-color: var(--petrol);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
  padding: 0 0 10px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-answer p { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .faq-cols { grid-template-columns: 1fr; }
}

/* ============ FILTERS ============ */
.filters { padding: 20px 0 10px; }
.filters-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  box-shadow: var(--card-shadow);
}
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  margin-right: 3px;
}
.filter-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--petrol); color: var(--petrol); }
.filter-btn.active {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol);
}

/* ============ FORMATIONS LIST ============ */
.formations-list { padding: 20px 0 var(--section-pad); }
.formations-grid-lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .formations-grid-lg { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .formations-grid-lg { grid-template-columns: 1fr; } }

/* ============ FORMATION CARD (premium v3) ============ */
.formation-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(15, 27, 45, 0.04);
}
.formation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 27, 45, 0.12);
  border-color: transparent;
}
.formation-card:hover .formation-img img { transform: scale(1.06); }

/* Image area */
.formation-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.formation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Gradient for badge readability */
.formation-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.08) 0%, transparent 35%, transparent 50%, rgba(15, 27, 45, 0.3) 100%);
  pointer-events: none;
}

/* Category tag (bottom-left overlay) */
.formation-tag-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--petrol);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.formation-tag-cat svg {
  width: 14px;
  height: 14px;
  stroke: var(--petrol);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* Level tag (top-right overlay) */
.formation-tag-level {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--petrol-darker);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(232, 185, 35, 0.35);
}

/* Card body */
.formation-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.formation-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.formation-body p {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta with icons and proper spacing */
.formation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0;
  margin-bottom: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.formation-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.formation-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--petrol);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* CTA buttons row */
.formation-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.formation-card .btn-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-card.primary {
  background: var(--petrol);
  color: #FFFFFF;
}
.btn-card.primary:hover {
  background: var(--petrol-deep);
  box-shadow: 0 8px 20px rgba(19, 78, 94, 0.25);
}
.btn-card.secondary {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}
.btn-card.secondary:hover {
  background: var(--petrol);
  color: #FFFFFF;
}
.formation-card .btn-card .arrow-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s;
}
.btn-card.secondary .arrow-circle {
  background: rgba(19, 78, 94, 0.08);
}
.btn-card.secondary:hover .arrow-circle {
  background: rgba(255, 255, 255, 0.2);
}
.formation-card:hover .btn-card.primary .arrow-circle {
  transform: translateX(3px);
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 650px) {
  .formation-body { padding: 24px; }
}

/* Choose CTA block */
.choose-cta {
  background: var(--petrol);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.choose-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(232, 185, 35, 0.08);
}
.choose-cta-content { position: relative; z-index: 2; }
.choose-cta h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.choose-cta p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 18px; font-size: 0.9rem; }

/* ============ SINGLE FORMATION ============ */

/* Hero */
.formation-hero {
  background: var(--ink);
  color: var(--white);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.formation-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.formation-hero .pill-badge.dark { margin-bottom: 16px; }
.formation-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 16px;
}
.formation-hero .lead {
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 36px;
}

.formation-hero-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fh-meta-item {}
.fh-meta-item small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.fh-meta-item strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.formation-hero-photo {
  position: relative;
}
.formation-hero-photo .photo-main {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.formation-hero-photo .photo-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.formation-hero-photo .float-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.formation-hero-photo .float-badge .fb-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: grid; place-items: center; font-size: 0.7rem;
}
.formation-hero-photo .session-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .formation-hero-grid { grid-template-columns: 1fr; }
  .formation-hero-meta { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .formation-hero-meta { grid-template-columns: repeat(2, 1fr); }
}

/* What you'll learn grid */
.learn-section { padding: var(--section-pad) 0; background: var(--cream); }
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.learn-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 18px 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.learn-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.learn-card .icon-circle { margin-bottom: 16px; }
.learn-card h4 { margin-bottom: 8px; }
.learn-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

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

/* Program timeline */
.program-section { padding: var(--section-pad) 0; }
.program-timeline {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
}
.program-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}
.program-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 24px 0;
  position: relative;
}
.program-item:nth-child(odd) .program-content { grid-column: 1; text-align: right; }
.program-item:nth-child(odd) .program-spacer { grid-column: 2; }
.program-item:nth-child(even) .program-spacer { grid-column: 1; }
.program-item:nth-child(even) .program-content { grid-column: 2; }

.program-dot {
  position: absolute;
  left: 50%;
  top: 32px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
  transform: translateX(-50%);
  z-index: 2;
}
.program-week {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--petrol);
  margin-bottom: 6px;
}
.program-content h4 { margin-bottom: 8px; font-size: 1.05rem; }
.program-content p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 700px) {
  .program-timeline::before { left: 20px; }
  .program-item { grid-template-columns: 1fr; padding-left: 48px; }
  .program-item:nth-child(odd) .program-content,
  .program-item:nth-child(even) .program-content { grid-column: 1; text-align: left; }
  .program-spacer { display: none; }
  .program-dot { left: 20px; }
}

/* Method split */
.method-section { padding: var(--section-pad) 0; background: var(--cream); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.method-photo {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.method-photo img { width: 100%; height: 100%; object-fit: cover; }
.method-content .pill-badge { margin-bottom: 16px; }
.method-content h2 { margin-bottom: 16px; }
.method-content > p { margin-bottom: 28px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }
.method-features { display: flex; flex-direction: column; gap: 16px; }
.method-feat {
  display: flex; align-items: flex-start; gap: 12px;
}
.method-feat .check-icon { margin-top: 3px; }
.method-feat span { font-size: 0.95rem; color: var(--ink-soft); }

@media (max-width: 900px) { .method-grid { grid-template-columns: 1fr; } }

/* Professor card */
.professor-section { padding: var(--section-pad) 0; }
.professor-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
  max-width: 800px;
  margin: 0 auto;
}
.professor-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.professor-photo img { width: 100%; height: 100%; object-fit: cover; }
.professor-info h4 { font-size: 1.2rem; margin-bottom: 4px; }
.professor-info .prof-role { font-size: 0.88rem; color: var(--petrol); font-weight: 600; margin-bottom: 10px; }
.professor-info p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
.prof-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.prof-tag {
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(19,78,94,0.06);
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 600;
}
.prof-rating { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; }

@media (max-width: 600px) {
  .professor-card { flex-direction: column; text-align: center; }
  .prof-tags { justify-content: center; }
}

/* FAQ Accordion */
.faq-section { padding: var(--section-pad) 0; background: var(--cream); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(19,78,94,0.06);
  color: var(--petrol);
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--petrol);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 0 0 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Formation body layout */
.formation-body-wrap { padding: 80px 0 120px; }

.formation-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: flex-start;
  position: relative;
}

/* Contenu principal à gauche */
.formation-content { min-width: 0; }

/* Blocs de contenu avec séparateurs */
.formation-block {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.formation-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.formation-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.formation-block > p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Garde la compat avec les anciens sélecteurs utilisés dans d'autres pages */
.formation-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.formation-content p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }
.formation-content ul { margin: 16px 0; }
.formation-content ul li {
  padding: 14px 0 14px 40px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.formation-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 16px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* Sidebar sticky à droite */
.formation-sidebar {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 12px 40px rgba(15, 27, 45, 0.08);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.formation-sidebar::-webkit-scrollbar { width: 6px; }
.formation-sidebar::-webkit-scrollbar-track { background: var(--cream); border-radius: 3px; }
.formation-sidebar::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.formation-sidebar::-webkit-scrollbar-thumb:hover { background: var(--petrol); }

.formation-sidebar .sidebar-badge { margin-bottom: 20px; }
.formation-sidebar h4 { font-size: 1.1rem; margin-bottom: 20px; }
.formation-sidebar .price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.formation-sidebar .price small {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
}
.sidebar-list { margin: 24px 0; }
.sidebar-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.sidebar-list span { color: var(--muted); }
.sidebar-list strong { color: var(--ink); font-weight: 600; }
.sidebar-trust {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 12px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1000px) {
  .formation-layout { grid-template-columns: 1fr; gap: 50px; }
  .formation-sidebar { position: static; max-height: none; }
}

/* Check list (objectifs pédagogiques) */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  padding: 14px 0 14px 44px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.6;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 13px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* Similar formations */
.similar-section { padding: var(--section-pad) 0; background: var(--cream); }
.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .similar-grid { grid-template-columns: 1fr; } }

/* ============ TARIFS ============ */
.pricing { padding: 40px 0 var(--section-pad); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 24px 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 2px solid transparent;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); border-color: var(--petrol); }
.pricing-card.featured { border-color: var(--gold); }

.pricing-card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.pricing-card-header .icon-circle { width: 48px; height: 48px; }
.pricing-card-header .icon-circle svg { width: 22px; height: 22px; }
.pricing-card-header div h3 { margin-bottom: 2px; font-size: 1.1rem; }
.pricing-card-header div small { font-size: 0.82rem; color: var(--muted); }

.pricing-card .price-divider {
  width: 40px; height: 2px;
  background: var(--petrol);
  border-radius: 2px;
  margin-bottom: 12px;
}
.pricing-card.featured .price-divider { background: var(--gold); }

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .price small { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.price-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-list { margin-bottom: 16px; }
.pricing-list li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 0.82rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.6rem;
  font-weight: 700;
}
.pricing-card .btn { width: 100%; justify-content: center; }

@media (max-width: 950px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.pricing-note {
  margin-top: 32px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  text-align: center;
}
.pricing-note strong { color: var(--ink); }

/* ============ À PROPOS ============ */
.about-intro { padding: 48px 0 var(--section-pad); }

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-photos-wrap { position: relative; height: 480px; }
.about-photo-main {
  position: absolute; top: 0; left: 0;
  width: 60%; height: 75%;
  border-radius: 28px; overflow: hidden;
  z-index: 1;
}
.about-photo-mini {
  position: absolute; bottom: 0; right: 0;
  width: 50%; height: 50%;
  border-radius: 28px; overflow: hidden;
  z-index: 2;
}
.about-photo-main img, .about-photo-mini img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-float {
  position: absolute; top: 10px; right: 10px;
  background: var(--white); border-radius: 12px;
  padding: 10px 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 3; font-size: 0.8rem; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 6px;
}
.about-photo-float .stars { color: var(--gold); }

.about-text-side .pill-badge { margin-bottom: 16px; }
.about-text-side h2 { margin-bottom: 20px; }
.about-text-side > p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 28px; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-value-card {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.about-value-card .icon-circle { width: 40px; height: 40px; margin-bottom: 12px; }
.about-value-card .icon-circle svg { width: 18px; height: 18px; }
.about-value-card strong { display: block; font-size: 0.95rem; margin-bottom: 4px; color: var(--ink); }
.about-value-card p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 960px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-photos-wrap { height: 320px; }
}

/* Engagements */
.engagements-section { padding: var(--section-pad) 0; background: var(--cream); }
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.engagement-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.engagement-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.engagement-card .icon-circle { margin: 0 auto 16px; background: var(--gold); color: var(--ink); }
.engagement-card h4 { margin-bottom: 8px; font-size: 1rem; }
.engagement-card p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 900px) { .engagements-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .engagements-grid { grid-template-columns: 1fr; } }

/* Locaux */
.locaux-section { padding: var(--section-pad) 0; }
.locaux-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.locaux-photo { border-radius: 28px; overflow: hidden; aspect-ratio: 16/10; }
.locaux-photo img { width: 100%; height: 100%; object-fit: cover; }
.locaux-info h3 { margin-bottom: 16px; }
.locaux-info p { color: var(--ink-soft); margin-bottom: 8px; font-size: 0.95rem; }
.locaux-info .btn { margin-top: 20px; }
@media (max-width: 900px) { .locaux-grid { grid-template-columns: 1fr; } }

/* Timeline moderne */
.timeline-section { padding: var(--section-pad) 0; background: var(--cream); }

.timeline-track {
  position: relative;
  max-width: 900px;
  margin: 56px auto 0;
}

/* Ligne centrale */
.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}

/* Barre de progression qui monte au scroll */
.timeline-progress-bar {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--petrol));
  transform: translateX(-50%);
  transition: height 0.15s ease-out;
  z-index: 1;
}

/* Chaque item */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0 24px;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }

/* Délais en cascade */
.timeline-item:nth-child(2) { transition-delay: 0.05s; }
.timeline-item:nth-child(3) { transition-delay: 0.1s; }
.timeline-item:nth-child(4) { transition-delay: 0.15s; }
.timeline-item:nth-child(5) { transition-delay: 0.2s; }
.timeline-item:nth-child(6) { transition-delay: 0.25s; }

/* Point central */
.tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--petrol);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(15,27,45,0.10);
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.tl-dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: tlPulse 2.5s infinite;
}
@keyframes tlPulse {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  50% { opacity: 0.35; transform: scale(1.15); }
}
.timeline-item:hover .tl-dot { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Année (version desktop) */
.tl-year {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
  white-space: nowrap;
}

/* Carte contenu */
.timeline-content {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(15,27,45,0.07);
  border: 1px solid var(--line);
  position: relative;
}
.timeline-content h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.timeline-content p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* Triangle côté gauche (item tl-left : content à gauche) */
.tl-left .timeline-content::after {
  content: '';
  position: absolute;
  right: -10px; top: 28px;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--white);
  filter: drop-shadow(1px 0 0 var(--line));
}
/* Triangle côté droit (item tl-right : content à droite) */
.tl-right .timeline-content::after {
  content: '';
  position: absolute;
  left: -10px; top: 28px;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--white);
  filter: drop-shadow(-1px 0 0 var(--line));
}

/* Layout gauche : contenu | dot | année */
.tl-left { grid-template-areas: "content dot year"; }
.tl-left .timeline-content { grid-area: content; text-align: right; }
.tl-left .tl-dot { grid-area: dot; }
.tl-left .tl-year { grid-area: year; }

/* Layout droite : année | dot | contenu */
.tl-right { grid-template-areas: "year dot content"; }
.tl-right .timeline-content { grid-area: content; }
.tl-right .tl-dot { grid-area: dot; }
.tl-right .tl-year { grid-area: year; text-align: right; }

/* Année mobile (cachée sur desktop) */
.tl-year-mobile { display: none; }

@media (max-width: 768px) {
  .timeline-track::before { left: 28px; }
  .timeline-progress-bar { left: 28px; }
  .timeline-item {
    grid-template-columns: 56px 1fr;
    grid-template-areas: "dot content" !important;
  }
  .tl-year { display: none; }
  .tl-left .timeline-content,
  .tl-right .timeline-content { text-align: left; }
  .tl-left .timeline-content::after,
  .tl-right .timeline-content::after {
    left: -10px; right: auto;
    border-left: none;
    border-right: 10px solid var(--white);
    filter: drop-shadow(-1px 0 0 var(--line));
  }
  .tl-year-mobile {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }
}

/* Team */
.team { padding: var(--section-pad) 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.team-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-body { padding: 24px; text-align: center; }
.team-body h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-body .team-role { font-size: 0.82rem; color: var(--petrol); font-weight: 600; margin-bottom: 10px; }
.team-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.team-tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(19,78,94,0.06);
  color: var(--petrol);
  font-size: 0.72rem;
  font-weight: 600;
}

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

/* KPI Band (about page) */
.kpi-band { padding: 60px 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ============ BLOG ============ */
.blog-list { padding: 40px 0 var(--section-pad); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}
.blog-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-size: 1.15rem; margin-bottom: 16px; line-height: 1.3; flex: 1; }
.blog-body .blog-divider { height: 1px; background: var(--line); margin-bottom: 16px; }
.blog-body .read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.88rem; color: var(--petrol);
}
.read-more .rm-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(19,78,94,0.08); color: var(--petrol);
  display: grid; place-items: center; font-size: 0.8rem;
  transition: background 0.3s, color 0.3s;
}
.blog-card:hover .rm-arrow { background: var(--petrol); color: var(--white); }

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

/* Blog single */
.blog-single { padding: 150px 0 var(--section-pad); }
.blog-single-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.blog-single-header .pill-badge { margin-bottom: 16px; }
.blog-single-header h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.blog-single-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-single-cover {
  max-width: 960px;
  margin: 0 auto 48px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21/9;
}
.blog-single-cover img { width: 100%; height: 100%; object-fit: cover; }

.blog-single-layout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* TOC */
.blog-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}
.blog-toc-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}
.blog-toc a {
  display: block;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--line);
  padding-left: 12px;
  transition: color 0.3s, border-color 0.3s;
}
.blog-toc a:hover,
.blog-toc a.active {
  color: var(--petrol);
  border-left-color: var(--petrol);
  font-weight: 600;
}

/* Blog content */
.blog-single-content {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.85;
}
.blog-single-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
  color: var(--ink);
  position: relative;
  padding-top: 16px;
}
.blog-single-content h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.blog-single-content p { margin-bottom: 20px; }
.blog-single-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  margin: 36px 0;
  background: var(--cream);
  border-radius: 0 16px 16px 0;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  position: relative;
}
.blog-single-content blockquote::before {
  content: '"';
  position: absolute;
  top: 16px; left: 16px;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-style: normal;
}

.blog-callout {
  background: var(--gold-100);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.blog-callout strong { color: var(--gold-deep); }

.blog-content-img {
  border-radius: 16px;
  overflow: hidden;
  margin: 32px 0;
}
.blog-content-img img { width: 100%; height: auto; }

/* Sidebar author + share */
.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.blog-author-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.blog-author-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
}
.blog-author-photo img { width: 100%; height: 100%; object-fit: cover; }
.blog-author-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.blog-author-card p { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 10px; }

.blog-share { margin-bottom: 24px; }
.blog-share-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.blog-share-icons {
  display: flex;
  gap: 8px;
}
.blog-share-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  transition: all 0.3s;
}
.blog-share-icons a:hover {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol);
}

.blog-sidebar-cta {
  background: var(--petrol);
  border-radius: 16px;
  padding: 24px;
  color: var(--white);
  text-align: center;
}
.blog-sidebar-cta h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.blog-sidebar-cta p { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }

/* Related articles */
.related-section { padding: var(--section-pad) 0; background: var(--cream); }

/* Newsletter bar */
.newsletter-section {
  padding: 60px 0;
  background: var(--cream);
}
.newsletter-bar {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-bar h3 { margin-bottom: 8px; }
.newsletter-bar p { color: var(--ink-soft); margin-bottom: 20px; font-size: 0.95rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-right: none;
  border-radius: 999px 0 0 999px;
  font-family: var(--font);
  font-size: 0.92rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--petrol); }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--petrol);
  color: var(--white);
  border-radius: 0 999px 999px 0;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--petrol-deep); }

@media (max-width: 900px) {
  .blog-single-layout { grid-template-columns: 1fr; }
  .blog-toc, .blog-sidebar { position: static; }
  .blog-toc { display: none; }
}

/* ============ CONTACT ============ */
.contact-section { padding: 40px 0 var(--section-pad); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--ink);
  border-radius: 20px;
  padding: 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(232,185,35,0.06);
}
.contact-info-card > * { position: relative; }
.contact-info-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; font-size: 0.92rem; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232,185,35,0.12);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-item small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.contact-item strong {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-photo-mini {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 20px;
}
.contact-photo-mini img { width: 100%; height: 100%; object-fit: cover; }

.contact-form-card {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}
.contact-form-card .pill-badge { margin-bottom: 16px; }
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--ink-soft); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row-full { margin-bottom: 16px; }
textarea { min-height: 120px; resize: vertical; }
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.form-privacy input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--petrol);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px; }
}

/* Contact locaux */
.contact-locaux { padding: var(--section-pad) 0; background: var(--cream); }
.contact-direct {
  padding: 48px;
  background: var(--gold-100);
  border-radius: var(--card-radius);
  text-align: center;
}
.contact-direct h3 { margin-bottom: 16px; }
.contact-direct-items {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 20px;
}
.contact-direct-items a {
  font-size: 1.1rem; font-weight: 700; color: var(--petrol);
}

/* ============================================
   A-PROPOS — Sections spécifiques
   ============================================ */

/* ---- SECTION MISSION ---- */
.mission-section {
  padding: 60px 0;
  background: white;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: stretch;
}
.mission-img-wrap {
  position: relative;
  padding-bottom: 50px;
}
.mission-img {
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 27, 45, 0.15);
}
.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mission-float-img {
  position: absolute;
  bottom: 0;
  right: -28px;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 20px 40px rgba(15, 27, 45, 0.20);
  z-index: 2;
}
.mission-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mission-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 16px 0;
  color: var(--ink);
}
.mission-content > p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: 0 12px 32px rgba(15, 27, 45, 0.08);
  border-color: var(--gold);
}
.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.value-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--petrol);
}
.value-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.value-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 70px; }
  .mission-float-img { right: 16px; bottom: 0; width: 130px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ---- SECTION FONDATEUR ---- */
.founder-section {
  padding: 60px 0;
  background: var(--cream);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.founder-img-wrap {
  position: relative;
}
.founder-img {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 27, 45, 0.15);
}
.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-float-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: white;
  border-radius: 20px;
  padding: 22px 28px;
  box-shadow: 0 20px 40px rgba(15, 27, 45, 0.15);
  display: flex;
  gap: 16px;
  align-items: center;
}
.founder-float-card-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--petrol);
  line-height: 1;
}
.founder-float-card-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.founder-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 16px 0 20px;
  color: var(--ink);
}
.founder-content > p {
  color: var(--ink-soft);
  line-height: 1.75;
}
.founder-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--petrol);
  font-style: italic;
  line-height: 1.65;
}
.founder-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.founder-signature-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.founder-signature-role {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.founder-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--petrol);
  line-height: 1;
}
.founder-stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 70px; }
  .founder-float-card { right: 16px; bottom: -20px; }
  .founder-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* ---- SECTION MÉTHODE 3 ÉTAPES ---- */
.method-section {
  padding: 60px 0;
  background: white;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}
.method-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--gold) 50%, transparent 50%);
  background-size: 12px 2px;
  z-index: 0;
}
.method-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 28px 36px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}
.method-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 27, 45, 0.10);
}
.method-step-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--petrol);
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 12px 24px rgba(232, 185, 35, 0.35);
  position: relative;
}
.method-step-badge::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.3;
}
.method-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.method-step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; gap: 32px; }
  .method-grid::before { display: none; }
}

/* ---- SECTION POURQUOI L'ARABE ---- */
.why-arabic-section {
  padding: 60px 0;
  background: var(--cream);
}
.why-arabic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.why-arabic-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.why-arabic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 27, 45, 0.10);
  border-color: var(--gold);
}
.why-arabic-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.why-arabic-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--petrol);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(19, 78, 94, 0.20);
}
.why-arabic-card-icon svg { width: 26px; height: 26px; }
.why-arabic-card:nth-child(2) .why-arabic-card-icon,
.why-arabic-card:nth-child(3) .why-arabic-card-icon {
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(232, 185, 35, 0.25);
}
.why-arabic-card:nth-child(2) .why-arabic-card-icon svg,
.why-arabic-card:nth-child(3) .why-arabic-card-icon svg { stroke: var(--petrol) !important; }
.why-arabic-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.why-arabic-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-arabic-stat {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.why-arabic-stat:last-child { border-bottom: none; padding-bottom: 0; }
.why-arabic-stat:first-child { padding-top: 0; }
.why-arabic-stat-bullet {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--petrol);
}
.why-arabic-stat-text {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}
.why-arabic-stat-text strong {
  color: var(--petrol);
  font-weight: 700;
}

@media (max-width: 800px) {
  .why-arabic-grid { grid-template-columns: 1fr; }
  .why-arabic-card { padding: 28px 22px; }
}

/* ---- SECTION LOCAUX ---- */
.locaux-section {
  padding: 60px 0;
  background: var(--cream);
}
.locaux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.locaux-img {
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 27, 45, 0.15);
}
.locaux-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.locaux-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 16px 0 30px;
  color: var(--ink);
}
.locaux-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.locaux-info-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}
.locaux-info-list li:last-child { border-bottom: none; }
.locaux-info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--petrol);
  display: grid;
  place-items: center;
}
.locaux-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
}
.locaux-info-text small {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
  margin-bottom: 4px;
  font-weight: 600;
}
.locaux-info-text strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .locaux-grid { grid-template-columns: 1fr; gap: 50px; }
  .locaux-img { aspect-ratio: 16/9; }
}

/* ---- CERTIFICATIONS (partagé home + a-propos) ---- */
.certifications-section {
  padding: 60px 0;
  background: white;
}
.certifications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.certif-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.certif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 27, 45, 0.10);
  border-color: var(--gold);
}
.certif-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.certif-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--petrol);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.certif-card-icon svg {
  stroke: white;
  stroke-width: 2;
}
.certif-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.certif-card p {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.certif-card-logo {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.certif-card-logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}
.certif-lilate-name {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--petrol);
  letter-spacing: 0.06em;
}

@media (max-width: 800px) {
  .certifications-grid { grid-template-columns: 1fr; gap: 24px; }
  .certif-card { padding: 28px 24px; }
}

