:root {
  --dark: #262624;
  --accent: #ff730a;
  --white: #ffffff;
  --light: #f4f2ee;
  --grey: #cfcfcf;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--dark);
  color: var(--white);
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

a { color: inherit; text-decoration: none; }

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(38, 38, 36, 0.72);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 900;
}

.brand-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 52px;
    width: auto;
}
.main-nav{

    display:flex;

    gap:32px;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.16em;

    color:var(--white);

}

.main-nav a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  padding: 13px 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
}

/* SLIDES ACCUEIL */

.slide {
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-dark { background: var(--dark); color: var(--white); }
.slide-light { background: var(--light); color: var(--dark); }
.slide-contact { background: var(--accent); color: var(--white); }

.grid-bg {
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 24px 24px;
}

.content,
.two-columns {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  position: relative;
  z-index: 5;
}

.content-front { z-index: 10; }

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* IMAGES ACCUEIL */

.image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-img {
	
	background-image:url("../IMG/hero-accueil.jpg");
  /*background-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?q=80&w=1800&auto=format&fit=crop");*/
  opacity: 0.85;
}

.portrait-img {
  aspect-ratio: 4 / 5;
  background-image: url("../IMG/coaching.png");
  background-size: cover;
  background-position: center;
	opacity: 0.65;
}

.parcours-img {
  background-image: url("https://images.unsplash.com/photo-1534367610401-9f5ed68180aa?q=80&w=1800&auto=format&fit=crop");
  opacity: 0.35;
}
.transmettre-img{
	background-image: url("../IMG/entrainer.png");
  opacity: 0.35;
}
.animer-img{
	background-image: url("../IMG/animer.png");
  opacity: 0.35;
}
.developper-img{
	background-image: url("../IMG/developper.png");
  opacity: 0.35;
}
.organiser-img{
	background-image: url("../IMG/organiser.png");
  opacity: 0.35;
}
.accompagner-img{
	background-image: url("../IMG/accompagner.png");
  opacity: 0.35;
}
.performer-img{
	background-image: url("../IMG/performer.png");
  opacity: 0.35;
}
.overlay-hero {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(38,38,36,0.78) 55%, rgba(38,38,36,0.12) 100%);
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(38, 38, 36, 0.75);
}

/* TYPO GLOBALE */

.kicker {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-weight: 800;
}

.formation-page .kicker { color: var(--formation-color); }

h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  font-weight: 950;
}

.slide-hero h2 {
  margin: 24px 0 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 950;
}

.section-title {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
  font-weight: 950;
}

.lead,
.text-large {
  margin-top: 40px;
  max-width: 680px;
  font-size: 22px;
  line-height: 1.45;
  color: #e6e6e6;
}

.text-large { margin-top: 32px; color: #d6d6d6; }
.slide-light .text-large,
.slide-light p { color: #555; }

/* BUTTONS */

.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }

.btn {
  display: inline-block;
  padding: 17px 30px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.btn-primary { background: var(--accent); color: var(--white); }
.btn-secondary { border: 1px solid rgba(255,255,255,.45); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-outline-white { border: 1px solid var(--white); }

/* VISUAL CARD */

.visual-block { position: relative; }

.orange-card {
  position: absolute;
  left: -32px;
  bottom: -32px;
  background: var(--accent);
  padding: 32px;
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 950;
}

/* CARDS ACCUEIL */

.three-cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card-light { border-top: 4px solid var(--accent); padding-top: 24px; }

.card-light h3,
.three-cards h3 {
  margin: 0;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 950;
}

.card-light p,
.three-cards p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.5;
}

.orange-title { color: var(--accent); }

/* PARCOURS ACCUEIL */

.step-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: rgba(255,255,255,.10);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.step-card span {
  color: var(--accent);
  font-size: 42px;
  font-weight: 950;
}

.step-card h3 {
  margin: 32px 0 0;
  font-size: 22px;
  text-transform: uppercase;
}

.step-card p { color: #d0d0d0; line-height: 1.45; }

.step-grid-light { margin-top: 70px; }

.step-card-light {
  background: #ffffff;
  border-top: 8px solid var(--accent);
  padding: 34px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.step-card-light span {
  display: block;
  color: var(--accent);
  font-size: 72px;
  font-weight: 950;
  line-height: .85;
}

.step-card-light h3 {
  margin: 10px 0 0;
  color: var(--dark);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 950;
}

.step-card-light p {
  margin-top: 18px;
  color: #555;
  line-height: 1.45;
  font-size: 17px;
}

.step-action {
  margin: 22px 0 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

/* SECTION PLACE — TRAJECTOIRES */

#place { display: block; padding-bottom: 0; }

#place .content { max-width: 1280px; margin: 0 auto; padding: 120px 40px 40px; }

.trajectory-wall {
  width: 100%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.trajectory-block {
  min-height: 500px;
  background: rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-rows: auto 190px auto 1fr;
  overflow: hidden;
}

.trajectory-block:first-child { border-left: 0; }

.trajectory-block h3 {
  margin: 0;
  padding: 20px;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .04em;
}

.trajectory-photo {
  position: relative;
  min-height: 190px;
  background-size: cover;
  background-position: center;
  /*filter: grayscale(1);*/
}

.trajectory-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,38,36,.05), rgba(38,38,36,.85));
}

.trajectory-photo span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}



.trajectory-block ul { margin: 0; padding: 20px; list-style: none; }

.trajectory-block li {
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  line-height: 1.25;
}

.trajectory-voice {
  margin: 0 20px 20px;
  padding-top: 16px;
  border-top: 2px solid var(--accent);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.voice-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
}

.trajectory-voice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
}

/* UNIVERS FORMATIONS */

.univers-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.univers-card {
  background: var(--white);
  border-top: 8px solid var(--accent);
  padding: 28px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.univers-number {
  color: var(--accent);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.univers-card h3 {
  margin: 28px 0 0;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 950;
  color: var(--dark);
}

.univers-card p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: #555;
}

.univers-card ul { margin: 24px 0 0; padding: 0; list-style: none; }

.univers-card li {
  padding: 11px 0;
  border-top: 1px solid rgba(38,38,36,.14);
  font-size: 14px;
  line-height: 1.35;
  color: var(--dark);
}

/* CTA ACCUEIL */

.cta-title {
  margin: 0;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.85;
  text-transform: uppercase;
  font-weight: 950;
}

/* PRESENTATION BUTTON */

.presentation-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background: rgba(38,38,36,.92);
  color: white;
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: .25s ease;
}

.presentation-toggle:hover { background: var(--accent); color: var(--dark); }

.split-title span { color: var(--dark); }
.split-title strong { color: var(--accent); font-weight: 950; }

/* AMBITION */

.ambition-slide { text-align: center; }

.ambition-title {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--dark);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  line-height: .92;
  font-weight: 950;
  text-transform: uppercase;
}

.ambition-title span { color: var(--accent); }

.ambition-lines {
  max-width: 1000px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ambition-lines p {
  margin: 0;
  padding-top: 22px;
  border-top: 5px solid var(--accent);
  color: #555;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.ambition-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ambition-card { border-top: 6px solid var(--accent); padding-top: 24px; }

.ambition-card h3 {
  margin: 0;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.ambition-card p {
  margin-top: 18px;
  color: #555;
  font-size: 17px;
  line-height: 1.5;
}

/* =========================
   PAGE FORMATION
========================= */

.formation-page { scroll-snap-type: none; overflow-y: auto; }

/* HERO FORMATION */

.formation-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.formation-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  opacity: .58;
}

.formation-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38,38,36,.96), rgba(38,38,36,.7), rgba(38,38,36,.2)),
    radial-gradient(circle at 80% 50%, rgba(var(--formation-rgb),.35), transparent 30%);
}

.formation-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 40px 80px;
}

.formation-hero h1 { max-width: 1100px; font-size: clamp(4rem, 8vw, 8rem); }
.formation-hero h1 span { color: var(--formation-color); }

.formation-lead {
  margin-top: 36px;
  max-width: 680px;
  color: #eee;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
}

.formation-tags { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 12px; }

.formation-tags span {
  border: 1px solid rgba(255,255,255,.22);
  padding: 12px 16px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: rgba(255,255,255,.06);
}

/* OBJECTIF */

.finalite-header { background: var(--formation-color); padding: 5px 0; }
 .finalite-header .content { padding: 5px 0; }
.finalite-kicker {
  margin: 0 0 5px;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-weight: 900;
}

.finalite-body { background: #3b3b3b; padding: 10px 0; color: #fff; }
.finalite-body .content { padding: 5px 0; }
.finalite-body h2 { color: #fff; margin-bottom: 10px;font-size: 32px; }

.finalite-list { margin: 0 0 35px; padding-left: 24px; }
.finalite-list li { margin-bottom: 12px; font-size: 1.2rem; }

.finalite-text {
  max-width: 700px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

/* SECTIONS FORMATION */

.formation-section { padding: 120px 0; }
.formation-section.light { background: var(--light); color: var(--dark); }
.formation-section.dark { background: var(--dark); color: var(--white); }

.formation-content,
.formation-two {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.formation-two {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.formation-section h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 950;
}

.formation-section p { font-size: 21px; line-height: 1.55; }

/* SECTEUR */

.sector-section h2 { max-width: 950px; }

.sector-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
}

.sector-grid p {
  margin: 0;
  color: #555;
  font-size: 22px;
  line-height: 1.55;
}

/* PROJECTION MÉTIERS */

.projection-section { overflow: hidden; }

.job-grid-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit,300px);
  justify-content: center;
  gap: 32px;
}

.job-card {
  min-height: 520px;
  padding: 0;
  background: rgba(255,255,255,.06);
  display: grid;
  grid-template-rows: 210px auto auto 1fr;
  border: 1px solid rgba(255,255,255,.12);
}

.job-card:hover { border-color: var(--formation-color); }

.job-visual {
  min-height: 210px;
  background: rgba(255,255,255,.12);
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  position: relative;
}

.job-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(38,38,36,.05), rgba(38,38,36,.85)),
    radial-gradient(circle at 75% 70%, rgba(var(--formation-rgb),.45), transparent 28%);
}

.job-card span {
  display: block;
  padding: 22px 24px 0;
  color: var(--formation-color);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}

.job-card h3 {
  margin: 28px 0 0;
  padding: 0 24px;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}

.job-card p {
  margin: 18px 0 0;
  padding: 0 24px 28px;
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.45;
}

/* LES PLUS */

.plus-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.plus-grid div {
  background: #fff;
  border-top: 7px solid var(--formation-color);
  padding: 26px;
}

.plus-grid h3 {
  margin: 0;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 950;
}

.plus-grid p { margin-top: 18px; color: #555; font-size: 16px; }

/* ACTION WALL */

.action-wall {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.action-wall div {
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  border-top: 5px solid var(--formation-color);
}

/* PARCOURS FORMATION */

.program-grid {
  width: 100%;
  max-width: 1400px;
  margin: 64px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.program-card {
  background: #fff;
  border-top: 8px solid var(--formation-color);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.program-header { padding: 30px 28px 0; }

.program-header span {
  display: block;
  color: var(--formation-color);
  font-size: 42px;
  line-height: .9;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.program-hours {
  display: block;
  margin-top: 5px;
  color: var(--formation-color);
  font-size: 24px;
  line-height: .95;
  font-weight: 950;
  text-transform: uppercase;
}

.program-subtitle {
  margin: 5px 28px 0;
  color: #777;
  font-size: 15px;
  line-height: .95;
  font-weight: 400;
}

.program-card h3 {
  margin: 22px 28px 0;
  color: var(--dark);
  font-size: 42px;
  line-height: .95;
  text-transform: uppercase;
  font-weight: 950;
}

.program-section { padding: 28px; }

.program-section h4 {
  margin: 0 0 20px;
  color: var(--formation-color);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.program-section strong {
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 950;
}

.program-section ul { margin: 0; padding-left: 18px; }

.program-section li {
  margin-bottom: 8px;
  color: #555;
  font-size: 15px;
  line-height: 1.45;
}

.esport-section,
.combat-section,
.fitness-section,
.animation-section {
  background: #f1f1ee;
  border-top: 1px solid rgba(38,38,36,.10);
  border-bottom: 1px solid rgba(38,38,36,.10);
  border-left: 6px solid var(--formation-color);
}

.program-objective {
  margin-top: auto;
  padding: 0;
  background: rgba(var(--formation-rgb),0.10);
  width: 100%;
}

.program-objective h4 {
  margin: 0;
  padding: 18px 28px;
  background: #4b4b46;
  color: var(--formation-color);
  font-size: 24px;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 950;
}

.program-objective-inner {
  margin: 0;
  padding: 26px 28px 30px;
  background: #6a6a64;
}

.program-objective-inner p {
  margin: 0 0 18px;
  padding: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
}

.program-objective-inner ul { margin: 0; padding-left: 18px; }

.program-objective-inner li {
  margin-bottom: 10px;
  color: white;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

/* POUR QUI */

.target-list p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.public-box {
  margin-top: 36px;
  padding: 28px;
  background: var(--formation-color);
  color: var(--dark);
}

.public-box strong {
  display: block;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 950;
}

.public-box span {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

/* ET APRÈS */

.after-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.after-grid div { border-top: 6px solid var(--formation-color); padding-top: 24px; }

.after-grid h3 {
  margin: 0;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--dark);
}

.after-grid p { color: #555; font-size: 18px; }

/* CTA FORMATION */

.formation-cta {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--formation-color);
  color: #fff;
}

.formation-cta h2 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: .85;
  text-transform: uppercase;
  font-weight: 950;
}

/* FOOTER */

.site-footer { background:#1f1f1f; color:#ffffff; padding:70px 8% 30px; }

.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; }
.footer-logo { font-size:2rem; font-weight:800; color:var(--accent); margin-bottom:15px; }
.footer-brand h3 { margin-bottom:15px; }
.footer-brand p { color:#bdbdbd; line-height:1.7; }
.footer-col h4 { margin-bottom:18px; color:#ffffff; }
.footer-col ul { list-style:none; padding:0; margin:0; }
.footer-col li { margin-bottom:10px; }
.footer-col a { color:#bdbdbd; text-decoration:none; transition:.25s; }
.footer-col a:hover { color:var(--accent); }
.footer-social { margin-top:20px; display:flex; gap:15px; flex-wrap:wrap; }

.footer-bottom {
  margin-top:50px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:.9rem;
  color:#9e9e9e;
}

.footer-legal { display:flex; gap:20px; }
.footer-legal a { color:#9e9e9e; text-decoration:none; }
.footer-legal a:hover { color:var(--accent); }
.footer-signature { color:#777; }

/* DRAWER */

.drawer-toggle {
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:900;
  border:0;
  border-radius:999px;
  padding:14px 20px;
  background:var(--formation-color);
  color:#111;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.drawer-toggle span { display:block; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; }
.drawer-toggle strong { display:block; font-size:1rem; }

.drawer-overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:950;
  opacity:0;
  pointer-events:none;
  transition:.3s;
}

.formation-drawer {
  position:fixed;
  top:0;
  right:0;
  width:min(460px, 92vw);
  height:100vh;
  z-index:1000;
  background:#fff;
  color:#1f1f1f;
  padding:44px 34px;
  transform:translateX(100%);
  transition:.35s ease;
  overflow-y:auto;
  box-shadow:-20px 0 50px rgba(0,0,0,.25);
}

body.drawer-open .formation-drawer { transform:translateX(0); }
body.drawer-open .drawer-overlay { opacity:1; pointer-events:auto; }

.drawer-close {
  position:absolute;
  top:18px;
  right:22px;
  border:0;
  background:none;
  font-size:2rem;
  cursor:pointer;
}

.drawer-kicker {
  color:var(--formation-color);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.formation-drawer h2 span { color:var(--formation-color); }

.drawer-info-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:28px 0;
}

.drawer-info-grid div {
  background:#f4f4f4;
  padding:16px;
  border-left:5px solid var(--formation-color);
}

.drawer-info-grid strong {
  display:block;
  font-size:.75rem;
  text-transform:uppercase;
  margin-bottom:6px;
}

.drawer-section { margin-top:28px; }
.drawer-section ul { padding-left:18px; }

.drawer-download {
  display:inline-block;
  margin-top:12px;
  padding:14px 18px;
  background:var(--formation-color);
  color:#111;
  font-weight:800;
  text-decoration:none;
  border-radius:999px;
}

.drawer-contact { margin-top:34px; }
.drawer-contact a { color:#111; font-weight:800; }

.drawer-program-list { display:flex; flex-direction:column; gap:18px; }

.drawer-program-card {
  background:#f6f6f6;
  border-left:6px solid var(--formation-color);
  padding:18px;
}

.drawer-program-header {
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-bottom:10px;
}

.drawer-program-header span { font-weight:900; color:var(--formation-color); }
.drawer-program-header strong { font-size:.85rem; }
.drawer-program-subtitle { font-size:.85rem; color:#666; margin-bottom:8px; }
.drawer-program-card h4 { margin:0 0 14px; }
.drawer-program-section { margin-top:14px; }

.drawer-program-section h5,
.drawer-program-objective h5 {
  margin-bottom:6px;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.drawer-program-card ul { margin:0; padding-left:18px; }

.drawer-program-objective {
  margin-top:16px;
  padding:14px;
  background:rgba(var(--formation-rgb), .12);
}





.main-nav a.active {

  color: var(--color-orange);

}

.main-nav a.active::after {

  width: 100%;

}
/* RESPONSIVE */

@media (max-width: 1200px) {
  .trajectory-wall { grid-template-columns: repeat(2, 1fr); }
  .univers-grid { grid-template-columns: repeat(2, 1fr); }

  .job-grid-wide,
  .plus-grid,
  .action-wall { grid-template-columns: repeat(2, 1fr); }

  .program-grid,
  .after-grid,
  .formation-two { grid-template-columns: 1fr; }

  .program-grid { max-width: 850px; }
}

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

@media (max-width: 900px) {
  .main-nav { display: none; }

  .two-columns,
  .three-cards,
  .step-grid,
  .ambition-lines { grid-template-columns: 1fr; }

  .content,
  .two-columns { padding: 110px 24px 64px; }

  #place .content { padding: 110px 24px 40px; }

  .orange-card { left: 0; bottom: 0; }

  .ambition-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }

  .footer-bottom { flex-direction:column; align-items:flex-start; }
}

@media (max-width: 700px) {
  .trajectory-wall,
  .univers-grid,
  .job-grid-wide,
  .plus-grid,
  .action-wall { grid-template-columns: 1fr; }

  .trajectory-block,
  .univers-card { min-height: auto; }

  .formation-hero-content,
  .formation-content,
  .formation-two,
  .program-grid { padding-left: 24px; padding-right: 24px; }

  .program-grid { padding-left: 24px; padding-right: 24px; }

  .formation-section { padding: 80px 0; }

  .sector-grid { grid-template-columns: 1fr; }
}

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



.formations-transition{
  background:var(--dark);
  color:#fff;
  padding:80px 0;
}

.formations-transition h2{
  margin:0;
  font-size:clamp(3rem, 6vw, 6rem);
  line-height:.95;
  text-transform:uppercase;
  font-weight:950;
}

.transition-text{
  max-width:680px;
  margin-top:26px;
  font-size:24px;
  line-height:1.45;
  color:#d6d6d6;
}


.program-grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2rem;
}

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

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




