/* ============================================================
   COERVER® COACHING TUNISIE — Style officiel
   Noir | Vert #4CAF50 | Blanc
   ============================================================ */
:root {
  --black:        #000000;
  --black-nav:    #0a0a0a;
  --black-card:   #0f0f0f;
  --black-section:#0d0d0d;
  --black-border: #1e1e1e;
  --green:        #4CAF50;
  --green-dark:   #388E3C;
  --green-light:  #66BB6A;
  --white:        #ffffff;
  --gray:         #888888;
  --gray-light:   #c0c0c0;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --container:    1200px;
  --transition:   all 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:   72px;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --green-glow:   0 0 24px rgba(76,175,80,0.35);
  --green-gradient: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  --glass-bg:     rgba(8,8,8,0.78);
  --glass-border: rgba(255,255,255,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { display: block; max-width: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ══════════════════════════════════════════════
   NAVBAR — Single compact row
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(0,0,0,0.9);
  box-shadow: 0 4px 40px rgba(0,0,0,0.8);
  border-bottom: 1px solid rgba(76,175,80,0.25);
}

.nav-single-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 22px 14px;
  transition: color 0.22s ease;
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--green-gradient);
  border-radius: 2px 2px 0 0;
  transition: left 0.25s ease, right 0.25s ease;
}
.nav-link:hover         { color: var(--white); }
.nav-link:hover::after  { left: 14px; right: 14px; }
.nav-link.active        { color: var(--green); }
.nav-link.active::after { left: 14px; right: 14px; background: var(--green); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.btn-inscription {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green-gradient);
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(76,175,80,0.3);
}
.btn-inscription:hover {
  transform: translateY(-1px);
  box-shadow: var(--green-glow);
  filter: brightness(1.1);
}

/* Legacy two-row support (inner pages not yet updated) */
.nav-row1 { display: none; }
.nav-row2 { display: none; }
.nav-row1-inner,
.nav-row2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
}
.burger span:nth-child(1) { width: 22px; }
.burger span:nth-child(2) { width: 16px; }
.burger span:nth-child(3) { width: 22px; }
.burger:hover span { background: var(--green); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* ══════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 2rem;
  cursor: pointer; font-family: var(--font-display);
  font-weight: 900;
}
.mobile-close:hover { color: var(--green); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 900; font-size: 2.2rem;
  text-transform: uppercase; color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--black-border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu nav a:hover { color: var(--green); padding-left: 12px; }
.mobile-btn {
  margin-top: 24px !important;
  background: var(--green) !important;
  color: var(--black) !important;
  text-align: center; border-radius: 50px;
  font-size: 1.1rem !important;
  padding: 16px !important;
}
.mobile-btn:hover { background: var(--green-dark) !important; padding-left: 0 !important; }

/* ══════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.slider { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-portrait { background-position: center 10% !important; }
@media(max-width:768px){ .slide-portrait { background-position: center top !important; } }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.15) 100%);
}
.slide-hexagons {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='150' viewBox='0 0 130 150'%3E%3Cpolygon points='65,8 122,38 122,112 65,142 8,112 8,38' fill='none' stroke='rgba(76,175,80,0.18)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 130px 150px;
}
.slide-content { position: relative; z-index: 2; width: 100%; padding-top: 40px; }
.slide-text { max-width: 680px; }
.slide-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 36px;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}
.slide-title-green {
  color: var(--green-light);
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 0 32px rgba(0,0,0,0.8);
}
.slide.active .slide-title { animation: slideUp 0.8s ease forwards; }
.slide.active .btn-green   { animation: slideUp 0.8s ease 0.2s both; }

.slider-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: var(--transition); padding: 0;
}
.dot.active { background: var(--green); border-color: var(--green); transform: scale(1.2); }
.dot:hover  { background: var(--green-light); border-color: var(--green-light); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 2.5rem;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--green); border-color: var(--green); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* ══════════════════════════════════════════════
   SHARED SECTION ELEMENTS
══════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.22);
  border-radius: 20px;
  padding: 4px 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 14px;
}
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 14px auto 0; }

/* ══════════════════════════════════════════════
   1. STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--green);
  padding: 0;
}
.stats-bar-inner {
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.stat-item:hover { background: rgba(0,0,0,0.1); }
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--black);
  line-height: 1;
}
.stat-number-text {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
}
.stat-plus {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--black);
  margin-left: 2px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-top: 6px;
}
.stat-separator {
  width: 1px;
  background: rgba(0,0,0,0.15);
  align-self: stretch;
}

/* ══════════════════════════════════════════════
   2. POUR QUI
══════════════════════════════════════════════ */
.pour-qui {
  background: var(--black);
  padding: 100px 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(76,175,80,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(76,175,80,0.12), 0 0 40px rgba(76,175,80,0.06);
}
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #1a1a1a;
}
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #1a1a1a;
  border-bottom: 2px dashed var(--black-border);
}
.card-img-placeholder span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
}
.card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.card-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.card-list li {
  font-size: 0.85rem;
  color: var(--gray-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--black-border);
  padding-left: 16px;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.btn-card {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1.5px solid rgba(76,175,80,0.5);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
}
.btn-card:hover {
  background: var(--green-gradient);
  border-color: transparent;
  color: var(--black);
  box-shadow: 0 4px 20px rgba(76,175,80,0.35);
}

/* ══════════════════════════════════════════════
   3. POURQUOI COERVER
══════════════════════════════════════════════ */
.pourquoi {
  background: var(--black-section);
  padding: 100px 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.pourquoi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pourquoi-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.pourquoi-img-placeholder {
  aspect-ratio: 4/3;
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--black-border);
  border-radius: 4px;
}
.pourquoi-img-placeholder span {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #444;
}
.pourquoi-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--green);
  padding: 16px 20px;
  border-radius: 4px;
  text-align: center;
}
.pourquoi-badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900; font-size: 2.2rem;
  color: var(--black); line-height: 1;
}
.pourquoi-badge-text {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(0,0,0,0.7); margin-top: 4px;
}
.pourquoi-content .section-title { margin-bottom: 20px; }
.pourquoi-intro {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}
.pourquoi-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.point {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 0 4px 4px 0;
}
.point:hover {
  border-left-color: var(--green);
  background: rgba(76,175,80,0.04);
}
.point-icon {
  font-family: var(--font-display);
  font-weight: 900; font-size: 2rem;
  color: var(--green); line-height: 1;
  flex-shrink: 0; width: 48px;
  opacity: 0.6;
}
.point-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 6px; letter-spacing: 0.04em;
}
.point-text { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ══════════════════════════════════════════════
   4. TEMOIGNAGES
══════════════════════════════════════════════ */
.temoignages {
  background: var(--black);
  padding: 100px 0 0;
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.temoignage-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.temoignage-card:hover {
  border-color: rgba(76,175,80,0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(76,175,80,0.05);
}
.temoignage-quote {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--green);
  line-height: 0.7;
  margin-bottom: 16px;
  opacity: 0.7;
}
.temoignage-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
}
.temoignage-author { display: flex; align-items: center; gap: 14px; }
.author-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase; color: var(--white);
  letter-spacing: 0.04em;
}
.author-role {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 3px;
}

/* Partners bar */
.partners-bar {
  border-top: 1px solid var(--black-border);
  padding: 36px 0;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}
.partners-label {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #444; white-space: nowrap; flex-shrink: 0;
}
.partners-logos {
  display: flex; gap: 48px; align-items: center;
  flex-wrap: wrap;
}
.partners-logos span {
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #555; transition: color 0.3s; white-space: nowrap;
}
.partners-logos span:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   5. PROGRAMMES
══════════════════════════════════════════════ */
.programmes {
  background: var(--black-section);
  padding: 100px 0;
  border-top: 1px solid var(--black-border);
}
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.prog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.prog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(76,175,80,0.4);
  box-shadow: 0 24px 56px rgba(0,0,0,0.6), 0 0 40px rgba(76,175,80,0.07);
}
.prog-card-featured {
  border-color: rgba(76,175,80,0.5);
  box-shadow: 0 0 0 1px rgba(76,175,80,0.15), 0 0 40px rgba(76,175,80,0.08);
}
.prog-featured-tag {
  background: var(--green);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-align: center; padding: 8px;
}
.prog-card-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--black-border);
}
.prog-age {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.prog-name {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.35rem;
  text-transform: uppercase; color: var(--white);
  line-height: 1.1;
}
.prog-card-body { padding: 24px; flex: 1; }
.prog-desc {
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.7; margin-bottom: 20px;
}
.prog-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.prog-features li {
  font-size: 0.83rem; color: var(--gray-light);
  padding-left: 16px; position: relative;
}
.prog-features li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}
.prog-card-footer { padding: 20px 24px; border-top: 1px solid var(--black-border); }
.btn-prog {
  display: block; text-align: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--green);
  padding: 12px; border-radius: 3px;
  border: 2px solid var(--green);
  transition: var(--transition);
}
.btn-prog:hover { background: transparent; color: var(--green); }

/* Stages banner */
.stages-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 4px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.stages-tag {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(0,0,0,0.6); display: block; margin-bottom: 10px;
}
.stages-title {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.8rem;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 12px;
}
.stages-text { font-size: 0.9rem; color: rgba(0,0,0,0.7); line-height: 1.65; max-width: 540px; }
.stages-banner .btn-green {
  background: var(--black); color: var(--white);
  border-color: var(--black); white-space: nowrap; flex-shrink: 0;
}
.stages-banner .btn-green:hover { background: transparent; color: var(--black); border-color: var(--black); }

/* ══════════════════════════════════════════════
   6. CALL TO ACTION FINAL
══════════════════════════════════════════════ */
.cta-final {
  position: relative;
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--black-border);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(76,175,80,0.06) 0%, transparent 70%);
}
.cta-hexagons {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115' viewBox='0 0 100 115'%3E%3Cpolygon points='50,5 95,28 95,72 50,95 5,72 5,28' fill='none' stroke='rgba(76,175,80,0.05)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100px 115px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-content { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase; color: var(--white);
  line-height: 1.05; margin-bottom: 20px;
}
.cta-title-green { color: var(--green); }
.cta-text {
  font-size: 1rem; color: var(--gray);
  line-height: 1.75; margin-bottom: 48px;
}

/* Form */
.cta-form { text-align: left; margin-bottom: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray);
}
.form-input {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--green); }
.form-input::placeholder { color: #444; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-select option { background: #111; color: var(--white); }
.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px;
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  color: var(--black);
  border: none; border-radius: 24px;
  font-family: var(--font-display);
  font-weight: 900; font-size: 1rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(76,175,80,0.25);
}
.btn-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(76,175,80,0.45);
}
.form-note {
  text-align: center; font-size: 0.78rem;
  color: #555; margin-top: 14px;
}

.cta-divider {
  display: flex; align-items: center; gap: 20px;
  margin: 32px 0;
}
.cta-divider::before, .cta-divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--black-border);
}
.cta-divider span {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #444; white-space: nowrap;
}
.btn-whatsapp {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  width: 100%; padding: 16px;
  background: #25D366; color: var(--white);
  border: none; border-radius: 24px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #050505;
  border-top: 1px solid var(--black-border);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--black-border);
}
.footer-logo { height: 60px; width: auto; margin-bottom: 20px; }
.footer-desc {
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.75; max-width: 280px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.7rem; color: var(--gray);
  transition: var(--transition);
}
.social-link:hover { background: var(--green); border-color: var(--green); color: var(--black); box-shadow: 0 0 16px rgba(76,175,80,0.4); }
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col a {
  font-size: 0.88rem; color: var(--gray);
  padding: 7px 0; border-bottom: 1px solid var(--black-border);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-inner span { font-size: 0.78rem; color: #444; }
.footer-license { color: var(--green) !important; }

/* ══════════════════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════════════════ */
.btn-green {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--green-gradient);
  padding: 14px 40px; border-radius: 24px;
  border: none; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(76,175,80,0.25);
}
.btn-green:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(76,175,80,0.45);
}

/* WhatsApp Float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 990; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,0.65); }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%     { box-shadow: 0 4px 36px rgba(37,211,102,0.75); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-link          { font-size: 0.75rem; padding: 22px 10px; }
  .programmes-grid   { grid-template-columns: repeat(2, 1fr); }
  .pourquoi-inner    { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links         { display: none; }
  .btn-inscription   { display: none; }
  .burger            { display: flex; }
  .nav-single-row    { height: 62px; }
  .nav-logo img      { height: 54px; }
  .slider-arrow      { display: none; }
  .cards-grid        { grid-template-columns: 1fr; }
  .temoignages-grid  { grid-template-columns: 1fr; }
  .programmes-grid   { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .stages-banner     { flex-direction: column; text-align: center; }
  .partners-bar      { flex-direction: column; gap: 20px; }
  .slide-title       { font-size: clamp(2.2rem, 7vw, 3.5rem); }
}
@media (max-width: 480px) {
  .nav-logo img      { height: 46px; }
  .stats-bar-inner   { flex-wrap: wrap; }
  .stat-item         { flex: 0 0 50%; }
  .stat-separator    { display: none; }
  .footer-inner      { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   PAGES INTERNES (apropos, programmes, etc.)
══════════════════════════════════════════════ */

/* Navbar toujours solide sur les pages internes */
.navbar-solid {
  background: rgba(0,0,0,0.92) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  border-bottom: 1px solid rgba(76,175,80,0.18) !important;
  box-shadow: 0 2px 32px rgba(0,0,0,0.7) !important;
}

/* Compenser la navbar fixe sur les pages internes */
.page-main { padding-top: var(--nav-height); }
body.page-inner .page-main { padding-top: 0 !important; }

/* ── PAGE BANNER ─────────────────────────────── */
.page-banner {
  position: relative;
  background: var(--black);
  padding: 90px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--black-border);
}
.page-banner-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(76,175,80,0.07) 0%, transparent 70%);
}
.page-banner-hexagons {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115' viewBox='0 0 100 115'%3E%3Cpolygon points='50,5 95,28 95,72 50,95 5,72 5,28' fill='none' stroke='rgba(76,175,80,0.06)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100px 115px;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.page-banner-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  text-transform: uppercase; color: var(--white);
  line-height: 1.0; margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.page-banner-sub {
  font-size: 1rem; color: var(--gray);
  line-height: 1.8; max-width: 680px;
}

/* ── ABOUT PILLARS ───────────────────────────── */
.about-pillars {
  background: var(--black-section);
  padding: 80px 0;
  border-bottom: 1px solid var(--black-border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black-border);
  border-radius: 4px;
  overflow: hidden;
}
.pillar-card {
  background: var(--black-card);
  padding: 48px 36px;
  transition: background 0.3s;
}
.pillar-card:hover { background: #161616; }
.pillar-card-featured { background: #0e1e0e; }
.pillar-card-featured:hover { background: #122012; }
.pillar-number {
  font-family: var(--font-display);
  font-weight: 900; font-size: 3.5rem;
  color: rgba(76,175,80,0.15); line-height: 1;
  margin-bottom: 16px;
}
.pillar-card-featured .pillar-number { color: rgba(76,175,80,0.3); }
.pillar-title {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.4rem;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 16px; letter-spacing: 0.04em;
}
.pillar-divider {
  width: 40px; height: 3px;
  background: var(--green); margin-bottom: 20px;
}
.pillar-text {
  font-size: 0.92rem; color: var(--gray);
  line-height: 1.8;
}

/* ── ABOUT HISTORY ───────────────────────────── */
.about-history {
  background: var(--black);
  padding: 100px 0;
}
.about-history .section-tag { margin-bottom: 48px; display: block; }
.history-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.history-content { }
.history-content .section-title { margin-bottom: 32px; }
.history-text {
  font-size: 0.95rem; color: var(--gray);
  line-height: 1.85; margin-bottom: 20px;
}
.history-text strong { color: var(--white); font-style: italic; }
.history-image { }
.history-img-placeholder {
  aspect-ratio: 16/10;
  background: #111;
  border: 2px dashed var(--black-border);
  border-radius: 4px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 24px;
}
.history-img-placeholder span {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #444;
}
.history-img-placeholder p {
  font-size: 0.75rem; color: #333;
}
.history-caption {
  margin-top: 16px; text-align: center;
}
.history-caption-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase; color: var(--white);
}
.history-caption-sub {
  display: block;
  font-size: 0.8rem; color: var(--gray); margin-top: 4px;
}

/* ── ABOUT PYRAMID ───────────────────────────── */
.about-pyramid {
  background: var(--black-section);
  padding: 100px 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.section-tag-center {
  display: block; text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.section-title-center { text-align: center; }
.pyramid-copy {
  text-align: center; font-size: 0.95rem;
  color: var(--gray); line-height: 1.8;
  max-width: 620px; margin: 20px auto 64px;
}
.pyramid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pyramid-visual {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.pyr-level { width: 100%; display: flex; justify-content: center; }
.pyr-bar {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  height: 52px; border-radius: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default; padding: 0 20px;
}
.pyr-bar:hover { transform: scaleX(1.02); }
.pyr-bar-num {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
}
.pyr-bar-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white);
}
.pyr-1 .pyr-bar { width: 100%; background: #1a3d1c; }
.pyr-2 .pyr-bar { width: 88%;  background: #1e4820; }
.pyr-3 .pyr-bar { width: 76%;  background: #256b28; }
.pyr-4 .pyr-bar { width: 64%;  background: #2d8030; }
.pyr-5 .pyr-bar { width: 52%;  background: #388E3C; }
.pyr-6 .pyr-bar { width: 40%;  background: var(--green); }
.pyr-bar-base   { background: #122712 !important; border: 2px solid var(--green); }

.pyramid-descriptions { display: flex; flex-direction: column; gap: 0; }
.pyr-desc {
  padding: 20px 0;
  border-bottom: 1px solid var(--black-border);
  transition: background 0.2s, padding-left 0.2s;
  cursor: default;
}
.pyr-desc:hover { background: rgba(76,175,80,0.03); padding-left: 12px; }
.pyr-desc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.pyr-desc-num {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.4rem;
  color: var(--green); min-width: 32px;
}
.pyr-desc-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.95rem;
  text-transform: uppercase; color: var(--white);
  letter-spacing: 0.04em;
}
.pyr-desc-text {
  font-size: 0.85rem; color: var(--gray);
  line-height: 1.7; padding-left: 48px;
}

/* ── ABOUT BELIEFS ───────────────────────────── */
.about-beliefs {
  background: var(--black);
  padding: 100px 0;
}
.beliefs-inner { }
.beliefs-header { margin-bottom: 56px; }
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.belief-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.belief-item:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.belief-icon {
  font-family: var(--font-display);
  font-weight: 900; font-size: 2.8rem;
  color: rgba(76,175,80,0.2); line-height: 1;
  margin-bottom: 16px;
}
.belief-text {
  font-size: 0.9rem; color: var(--gray); line-height: 1.75;
}

/* ── ABOUT PATHWAY ───────────────────────────── */
.about-pathway {
  background: var(--black-section);
  padding: 100px 0;
  border-top: 1px solid var(--black-border);
}
.pathway-sub {
  text-align: center; font-size: 0.95rem;
  color: var(--gray); line-height: 1.8;
  max-width: 580px; margin: 16px auto 64px;
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pathway-step {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px; padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.pathway-step:hover {
  border-color: var(--green);
  transform: translateY(-6px);
}
.pathway-step-featured {
  border-color: var(--green);
  background: #0e1e0e;
}
.pathway-age {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.pathway-name {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.3rem;
  text-transform: uppercase; color: var(--white);
  line-height: 1.1; margin-bottom: 16px;
}
.pathway-desc {
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.7; flex: 1; margin-bottom: 24px;
}
.btn-pathway {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); border: 1.5px solid rgba(76,175,80,0.5);
  padding: 10px 20px; border-radius: 20px;
  transition: var(--transition); text-align: center;
}
.btn-pathway:hover { background: linear-gradient(135deg,#4CAF50,#66BB6A); border-color: transparent; color: var(--black); box-shadow: 0 4px 16px rgba(76,175,80,0.35); }

/* ── ABOUT PARTNERS ──────────────────────────── */
.about-partners {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--black-border);
}
.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--black-border);
  margin-top: 56px;
  border-radius: 4px;
  overflow: hidden;
}
.partner-logo-item {
  background: var(--black-card);
  padding: 28px 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #555; transition: color 0.3s, background 0.3s;
}
.partner-logo-item:hover { color: var(--white); background: #161616; }

/* ── ABOUT CTA ───────────────────────────────── */
.about-cta {
  position: relative;
  background: var(--black-section);
  padding: 100px 0;
  border-top: 1px solid var(--black-border);
  overflow: hidden;
  text-align: center;
}
.about-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(76,175,80,0.07) 0%, transparent 65%);
}
.about-cta-hexagons {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115' viewBox='0 0 100 115'%3E%3Cpolygon points='50,5 95,28 95,72 50,95 5,72 5,28' fill='none' stroke='rgba(76,175,80,0.05)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100px 115px;
}
.about-cta-inner { position: relative; z-index: 1; }
.about-cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  text-transform: uppercase; color: var(--white);
  line-height: 1.05; margin-bottom: 20px;
}
.about-cta-green { color: var(--green); }
.about-cta-text {
  font-size: 1rem; color: var(--gray);
  line-height: 1.75; margin-bottom: 40px;
}
.about-cta-btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.btn-outline-white {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: transparent;
  padding: 14px 40px; border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Pages internes
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid       { grid-template-columns: 1fr; }
  .pathway-grid       { grid-template-columns: repeat(2, 1fr); }
  .partners-logos-grid{ grid-template-columns: repeat(4, 1fr); }
  .pyramid-layout     { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .history-inner      { grid-template-columns: 1fr; gap: 48px; }
  .beliefs-grid       { grid-template-columns: 1fr; }
  .pathway-grid       { grid-template-columns: 1fr; }
  .partners-logos-grid{ grid-template-columns: repeat(2, 1fr); }
  .page-banner-title  { font-size: 2.8rem; }
}

/* ══════════════════════════════════════════════
   A PROPOS PAGE — Design officiel blanc/vert/noir
══════════════════════════════════════════════ */

/* ── SECTION 1 : BLANC ───────────────────────── */
.ap-intro {
  background: #ffffff;
  padding: 72px 0 60px;
  color: #000;
}
.ap-intro-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: #000;
  margin-bottom: 32px;
  line-height: 1.05;
}
.ap-intro-lead {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.8;
  max-width: 860px;
  margin-bottom: 40px;
}
.ap-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin-bottom: 56px;
}
.ap-pillar-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  margin-bottom: 6px;
  display: inline;
}
.ap-pillar-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  display: inline;
}
.ap-pillar {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}

/* Video YouTube */
.ap-video-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.ap-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.ap-video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── SECTION 2 : VERT ────────────────────────── */
.ap-history {
  background: #4CAF50;
  padding: 80px 0;
  color: #000;
}
.ap-history-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #000;
  margin-bottom: 32px;
  line-height: 1.05;
}
.ap-history-text {
  font-size: 1rem;
  color: #111;
  line-height: 1.85;
  max-width: 860px;
  margin-bottom: 28px;
}
.ap-history-text em {
  font-style: italic;
  font-weight: 600;
}
.ap-history-photo {
  max-width: 540px;
  margin: 40px auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.ap-history-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── SECTION 3 : BLANC — Pyramide ───────────── */
.ap-pyramid-section {
  background: #ffffff;
  padding: 80px 0;
  color: #000;
}
.ap-section-title-dark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
}
.ap-section-subtitle-dark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}
.ap-pyramid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ap-pyramid-levels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ap-pyr-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.2s, padding-left 0.2s;
}
.ap-pyr-item:hover { background: #f9f9f9; padding-left: 8px; }
.ap-pyr-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 6px;
}
.ap-pyr-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.ap-pyr-text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.65;
}
.ap-pyramid-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-pyramid-visual svg {
  width: 100%;
  max-width: 380px;
  height: auto;
}

/* ── SECTION 4 : BLANC — Nous Croyons ───────── */
.ap-beliefs-section {
  background: #f5f5f5;
  padding: 80px 0;
  color: #000;
  border-top: 1px solid #e0e0e0;
}
.ap-beliefs-section .ap-section-title-dark {
  margin-bottom: 40px;
}
.ap-beliefs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
}
.ap-belief-item {
  font-size: 1rem;
  color: #333;
  line-height: 1.75;
  padding: 20px 0 20px 32px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  transition: background 0.2s;
}
.ap-belief-item:hover { background: #fff; }
.ap-belief-item::before {
  content: '';
  position: absolute;
  left: 0; top: 28px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
}

/* ── SECTION 5 : NOIR — Cheminement ─────────── */
.ap-pathway-section {
  background: #000;
  padding: 80px 0;
  color: #fff;
}
.ap-section-title-white {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}
.ap-pathway-intro {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.ap-pathway-subtitle {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}
.ap-pathway-visual {
  max-width: 900px;
  margin: 0 auto 40px;
}
.ap-pathway-svg {
  width: 100%;
  height: auto;
}
.ap-phase-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ap-phase-card {
  text-align: center;
  padding: 28px 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  background: #0d0d0d;
  min-width: 220px;
  transition: border-color 0.3s, transform 0.3s;
}
.ap-phase-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.ap-phase-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.ap-phase-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ap-phase-age {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.ap-phase-arrow {
  font-size: 2rem;
  color: var(--green);
  font-weight: 900;
}

/* ── SECTION 6 : VERT — CTA ─────────────────── */
.ap-cta-section {
  background: var(--green);
  padding: 80px 0;
}
.ap-cta-inner { text-align: center; }
.ap-cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.05;
}
.ap-cta-text {
  font-size: 1rem;
  color: rgba(0,0,0,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}
.ap-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-black {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  padding: 16px 40px;
  border-radius: 24px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(76,175,80,0.3);
}
.btn-cta-black:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(76,175,80,0.45);
}
.btn-cta-outline {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: transparent;
  padding: 16px 40px;
  border-radius: 24px;
  border: 1.5px solid rgba(0,0,0,0.4);
  transition: var(--transition);
}
.btn-cta-outline:hover {
  border-color: #000;
  background: rgba(0,0,0,0.08);
}

/* Responsive A Propos */
@media (max-width: 768px) {
  .ap-pyramid-grid  { grid-template-columns: 1fr; }
  .ap-phase-arrow   { transform: rotate(90deg); }
  .ap-phase-cards   { flex-direction: column; align-items: center; }
}
/* ══════════════════════════════════════════════
   HOMEPAGE — WHITE SECTION OVERRIDES
══════════════════════════════════════════════ */
 
/* Pour Qui — white background */
.pour-qui-white {
  background: #ffffff;
}
.section-title-dark {
  color: #000000 !important;
}
.section-subtitle-dark {
  color: #444444 !important;
}
 
/* Cards on white background */
.card-light {
  background: #f7f7f7 !important;
  border-color: #e0e0e0 !important;
}
.card-light:hover {
  background: #ffffff !important;
  border-color: var(--green) !important;
}
.card-title-dark { color: #000000 !important; }
.card-text-dark  { color: #555555 !important; }
.card-list-light li {
  color: #333333 !important;
  border-bottom-color: #e0e0e0 !important;
}
 
/* Programmes — white background */
.programmes-white {
  background: #f5f5f5 !important;
  border-top: none !important;
}
.prog-card-light {
  background: #ffffff !important;
  border-color: #e0e0e0 !important;
}
.prog-card-light:hover {
  border-color: var(--green) !important;
}
.prog-header-light {
  border-bottom-color: #e8e8e8 !important;
}
.prog-name-dark  { color: #000000 !important; }
.prog-desc-dark  { color: #555555 !important; }
.prog-features-dark li {
  color: #333333 !important;
}
.prog-features-dark li::before {
  background: var(--green) !important;
}
.prog-footer-light {
  border-top-color: #e8e8e8 !important;
}
 
/* Section CTA center link */
.section-cta-center {
  text-align: center;
  margin-top: 48px;
}
.btn-green-dark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #000;
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  padding: 16px 48px;
  border-radius: 24px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(76,175,80,0.25);
}
.btn-green-dark:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(76,175,80,0.45);
}
 
/* ══════════════════════════════════════════════
   HOMEPAGE — CTA BANNER GREEN
══════════════════════════════════════════════ */
.cta-banner-green {
  background: var(--green);
  padding: 80px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #000000;
  line-height: 1.05;
  margin-bottom: 12px;
}
.cta-banner-sub {
  font-size: 1rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cta-black {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  padding: 16px 40px;
  border-radius: 24px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(76,175,80,0.3);
}
.btn-cta-black:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(76,175,80,0.45);
}
.btn-cta-outline-dark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  background: transparent;
  padding: 16px 40px;
  border-radius: 24px;
  border: 1.5px solid rgba(0,0,0,0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-outline-dark:hover {
  border-color: #000000;
  background: rgba(0,0,0,0.08);
}

/* Responsive CTA banner */
@media (max-width: 768px) {
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns  { justify-content: center; }
}

/* ══════════════════════════════════════════════
   POUR QUI — WHITE SECTION
══════════════════════════════════════════════ */
.pour-qui-section {
  background: #ffffff;
  padding: 100px 0;
}
.pq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pq-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}
.pq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.pq-card-img {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
}
.pq-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 100%);
}
.pq-card-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.pq-card-body {
  padding: 28px;
}
.pq-card-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}
.pq-list {
  list-style: none;
  margin-bottom: 24px;
}
.pq-list li {
  font-size: 0.85rem;
  color: #333;
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}
.pq-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.pq-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.pq-btn:hover { color: var(--green-dark); border-color: var(--green-dark); }
 
/* ══════════════════════════════════════════════
   PROGRAMMES — PHOTO CARDS
══════════════════════════════════════════════ */
.prog-section {
  background: #f5f5f5;
  padding: 100px 0;
}
.prog-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.prog-photo-card {
  position: relative;
}
.prog-photo-bg {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}
.prog-photo-card:hover .prog-photo-bg {
  transform: scale(1.03);
}
.prog-photo-card {
  overflow: hidden;
}
.prog-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.10) 100%);
  transition: background 0.3s;
}
.prog-photo-card:hover .prog-photo-overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.20) 100%);
}
.prog-photo-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  width: 100%;
}
.prog-photo-badge {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.prog-photo-age {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.prog-photo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.prog-photo-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 18px;
}
.prog-photo-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  padding: 10px 20px;
  border-radius: 3px;
  border: 2px solid var(--green);
  transition: background 0.2s, color 0.2s;
}
.prog-photo-btn:hover {
  background: transparent;
  color: var(--green);
}
.prog-photo-featured .prog-photo-bg {
  border-top: 4px solid var(--green);
}
.btn-voir-tous {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #000;
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  padding: 16px 48px;
  border-radius: 24px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(76,175,80,0.25);
}
.btn-voir-tous:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(76,175,80,0.45);
}
 
/* ══════════════════════════════════════════════
   TEMOIGNAGES — FULLWIDTH SLIDER
══════════════════════════════════════════════ */
.temoignages-section {
  position: relative;
  background: #fff;
  padding-bottom: 0;
}
.temo-header {
  background: #fff;
  text-align: center;
  padding: 72px 0 40px;
  border-bottom: 4px solid var(--green);
}
.temo-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #000;
  margin-top: 8px;
}
.temo-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.temo-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.temo-slide.temo-active { opacity: 1; z-index: 1; }
.temo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.15) 100%);
}
.temo-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 80px;
}
.temo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.temo-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.temo-quote {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 20px;
}
.temo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.temo-arrow:hover { background: var(--green); border-color: var(--green); }
.temo-prev { left: 24px; }
.temo-next { right: 24px; }
.temo-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.temo-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.temo-dot-active { background: var(--green); border-color: var(--green); }
.temo-partners {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.temo-partners .partners-label {
  color: #aaa;
}
.temo-partners .partners-logos span {
  color: #999;
}
.temo-partners .partners-logos span:hover { color: #000; }
 
/* ══════════════════════════════════════════════
   CTA BANNER GREEN
══════════════════════════════════════════════ */
.cta-banner-green {
  background: var(--green);
  padding: 80px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #000;
  line-height: 1.05;
  margin-bottom: 12px;
}
.cta-banner-sub {
  font-size: 1rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cta-black {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  padding: 16px 40px;
  border-radius: 24px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(76,175,80,0.3);
}
.btn-cta-black:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(76,175,80,0.45); }
.btn-cta-outline-dark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: transparent;
  padding: 16px 40px;
  border-radius: 24px;
  border: 1.5px solid rgba(0,0,0,0.35);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-cta-outline-dark:hover { border-color: #000; background: rgba(0,0,0,0.08); }
 
/* ══ RESPONSIVE ══════════════════════════════ */
@media (max-width: 1024px) {
  .prog-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pq-grid         { grid-template-columns: 1fr; }
  .prog-photo-grid { grid-template-columns: 1fr; }
  .prog-photo-bg   { height: 360px; }
  .temo-content    { padding: 0 60px; }
  .temo-slider     { height: 440px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns  { justify-content: center; }
}
@media (max-width: 480px) {
  .temo-content  { padding: 0 32px; }
  .temo-slider   { height: 500px; }
  .temo-arrow    { display: none; }
}
/* ── INNER PAGES FIX ─────────────────────────── */
.navbar-solid ~ .page-main,
.page-main {
  padding-top: 80px;
}
.navbar-solid ~ main,
body:has(.navbar-solid) main {
  padding-top: 88px;
}

/* ── NAVBAR SOLID ───────────────────────────── */
.navbar-solid { transition: none !important; }
.navbar-solid .nav-logo img { height: 68px; }
.ent-hero { margin-top: 0; }

/* ── NAVBAR SHRINK ON SCROLL ────────────────── */
#navbar.scrolled .nav-logo img {
  height: 56px !important;
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ── MOBILE NAVBAR ───────────────────────────── */
@media (max-width: 768px) {
  .navbar-solid ~ main,
  body:has(.navbar-solid) main {
    padding-top: 56px;
  }
}

/* ══ TEMO SLIDE MOBILE IMAGE FIX ════════════════ */
.temo-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  z-index: 0;
}
.temo-slide {
  filter: none !important;
}
.temo-overlay {
  z-index: 1;
}
.temo-content {
  z-index: 2;
}

/* ══ TEMO PARTNERS MOBILE FIX ═══════════════════ */
@media (max-width: 480px) {
  .temo-partners {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }
  .temo-partners .partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .temo-partners .partners-logos span {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

/* ── TRADEMARK NOTICE ────────────────────────── */
.footer-trademark {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  text-align: center;
}
.footer-trademark p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  font-family: 'Barlow', sans-serif;
  margin: 0;
}

/* ── INNER PAGES DEFINITIVE FIX ─────────────── */
body.page-inner main,
body.page-inner .page-main,
.page-inner main.page-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
body.page-inner .navbar-solid ~ main,
body.page-inner .navbar-solid ~ .page-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
body.page-inner main > section:first-child,
body.page-inner .page-main > section:first-child {
  padding-top: 80px !important;
}

/* ── FOOTER CREDIT ───────────────────────────── */
.footer-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.04em;
}
.footer-credit a:hover { color: rgba(255,255,255,0.6) !important; }

.pq-card-img { background-position: center top !important; }
@media (max-width: 768px) {
  .prog-photo-bg { background-position: center top !important; }
  .pq-card-img { background-position: center top !important; }
}
