:root {
  --blue: #004A99; --blue-deep: #002D62; --blue-mid: #0056B3; --blue-soft: #E7F0FA;
  --orange: #FF7F00; --orange-warm: #FF6A00; --orange-light: #FFEFD9; --orange-deep: #D96A00;
  --ink: #1C2A3A; --slate: #5C6B7D; --gray: #8A97A6; --steel: #5c6b73;
  --line: #E2E9F1; --bg: #FFFFFF; --bg-alt: #F5F9FD; --bg-card: #F1F6FB; --white: #FFFFFF;
  --radius: 14px;
  --display: 'Montserrat', sans-serif; --sans: 'DM Sans', sans-serif; --mono: 'DM Mono', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { text-decoration: none; }
.deco-circle { position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #EFF4FA 0%, rgba(245,249,253,0) 70%); pointer-events: none; z-index: 0; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 5%; height: 92px; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo svg { height: 68px; width: auto; }
.nav-links { display: flex; gap: 22px; list-style: none; flex: 1; justify-content: center; }
.nav-links a { color: var(--slate); font-size: 13px; font-weight: 600; letter-spacing: 0.2px; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--orange); }
.nav-drop { position: relative; }
.nav-submenu { position: absolute; top: 100%; left: -16px; margin-top: 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 16px 40px rgba(0,74,153,0.14); padding: 8px; min-width: 240px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.2s; }
.nav-drop:hover .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-submenu li { display: block; }
.nav-submenu a { display: block; padding: 11px 14px; border-radius: 8px; font-size: 13px; color: var(--ink); white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-submenu a:hover { background: var(--bg-alt); color: var(--orange); }
.nav-cta { flex-shrink: 0; background: var(--orange); color: var(--white); padding: 10px 22px; border-radius: 7px; font-size: 13px; font-weight: 700; letter-spacing: 0.3px; white-space: nowrap; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: var(--orange-warm); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.nav-toggle svg { width: 26px; height: 26px; display: block; }
.mobile-menu { position: fixed; top: 92px; left: 0; right: 0; bottom: 0; z-index: 99; background: var(--white); padding: 22px 7% 48px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin: 18px 0 4px; }
.mobile-menu-label:first-child { margin-top: 0; }
.mobile-menu a { padding: 14px 4px; font-size: 16px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); transition: color 0.15s; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mobile-menu-cta { margin-top: 26px; background: var(--orange); color: var(--white); text-align: center; border: none; border-radius: 8px; padding: 16px; font-weight: 700; }

section { padding: 60px 7% 40px; position: relative; scroll-margin-top: 96px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.eyebrow-bar { width: 34px; height: 3px; background: var(--orange); border-radius: 2px; }
.eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--orange); text-transform: uppercase; }
.s-title { font-family: var(--display); font-size: clamp(28px, 3.6vw, 46px); font-weight: 700; line-height: 1.15; color: var(--blue); letter-spacing: -0.5px; margin-bottom: 18px; }
.s-title em { font-style: normal; color: var(--orange); }
.s-intro { font-size: 17px; color: var(--slate); line-height: 1.75; max-width: 720px; margin-bottom: 54px; }

/* HERO */
#hero { background: var(--bg-alt); display: grid; grid-template-columns: 1.76fr 0.95fr 0.8fr; align-items: center; gap: 50px; padding: 124px 7% 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 75% 35%, rgba(255,127,0,0.06) 0%, transparent 70%), radial-gradient(ellipse 50% 70% at 5% 90%, rgba(0,74,153,0.05) 0%, transparent 60%); }
.hero-left { display: flex; flex-direction: column; padding: 0; position: relative; z-index: 2; }
.hero-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.hero-kicker-line { width: 42px; height: 2px; background: var(--orange); }
.hero-kicker-text { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--orange); text-transform: uppercase; }
.hero-headline { font-family: var(--display); font-size: clamp(38px, 4.6vw, 62px); line-height: 1.05; font-weight: 800; color: var(--blue); letter-spacing: -1.3px; margin-bottom: 22px; }
.hero-headline em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: clamp(15px, 1.5vw, 18px); color: var(--slate); line-height: 1.7; max-width: 500px; margin-bottom: 38px; }
.hero-tagline { font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--orange-deep); margin-bottom: 18px; letter-spacing: 0.2px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; max-width: 640px; }
.hero-cta-group .btn-primary, .hero-cta-group .btn-ghost { flex: 1 1 0; text-align: center; min-width: 200px; white-space: nowrap; }
#hero .btn-ghost { color: var(--orange); border-color: var(--orange); }
#hero .btn-ghost:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
#dirigeants .btn-ghost { color: var(--orange); border-color: var(--orange); background: transparent; }
#dirigeants .btn-ghost:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary { background: var(--orange); color: var(--white); padding: 15px 32px; border-radius: 8px; font-size: 14px; font-weight: 700; letter-spacing: 0.3px; border: 2px solid var(--orange); transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--orange-warm); border-color: var(--orange-warm); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--blue); padding: 15px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; border: 2px solid var(--line); transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 18px; }
.hero-stat { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: 14px; padding: 8px 22px; box-shadow: 0 10px 26px rgba(0,74,153,0.06); transition: transform .25s, box-shadow .25s; }
.hero-stat:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,74,153,0.12); }
.hero-stat-num { font-family: var(--display); font-size: 34px; font-weight: 800; color: var(--orange); line-height: 1; font-variant-numeric: tabular-nums; }
.hero-stat-label { font-size: 12px; color: var(--slate); letter-spacing: 0.4px; margin-top: 5px; line-height: 1.4; font-weight: 500; }
.hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 0; }
.hero-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 40px; max-width: 410px; width: 100%; box-shadow: 0 24px 60px rgba(0,74,153,0.1); }
.hero-card-quote { font-family: var(--display); font-size: 20px; font-weight: 500; font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: 26px; }
.hero-card-quote span { color: var(--orange); font-style: normal; font-weight: 600; }
.hero-card-author { display: flex; align-items: center; gap: 14px; }
.hero-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange)); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.hero-author-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.hero-author-role { font-size: 12px; color: var(--gray); margin-top: 2px; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-tag { background: var(--blue-soft); color: var(--blue); padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }

/* AUDIENCE SWITCH */
.audience { background: var(--white); }
.door { display: block; border-radius: 18px; padding: 38px 40px; position: relative; overflow: hidden; border: 1px solid var(--line); transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; }
.door:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(0,74,153,0.12); }
.door-label { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 14px; }
.door-label-light { color: var(--orange); }
.door-title { font-family: var(--display); font-size: clamp(22px,2.4vw,30px); font-weight: 800; line-height: 1.2; color: var(--blue); letter-spacing: -0.4px; margin-bottom: 14px; }
.door-title-sm { font-family: var(--display); font-size: 20px; font-weight: 700; line-height: 1.25; color: var(--blue); margin-bottom: 12px; }
.door-desc { font-size: 16px; line-height: 1.7; color: var(--slate); margin-bottom: 22px; max-width: 600px; }
.door-desc-sm { font-size: 14px; line-height: 1.65; color: var(--slate); margin-bottom: 20px; }
.door-cta { font-size: 13px; font-weight: 700; letter-spacing: 0.3px; color: var(--orange-deep); display: inline-flex; align-items: center; gap: 8px; }
.door-cta-light { color: var(--orange); }
.door-hero { background: var(--bg-alt); display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 20px; border-left: 4px solid var(--orange); }
.door-hero-mark { font-family: var(--display); font-size: 90px; font-weight: 900; color: rgba(0,74,153,0.07); line-height: 1; flex-shrink: 0; }
.door-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.door-pro { background: var(--bg-alt); }
.door-ent { background: var(--bg-alt); }
.door-mark { position: absolute; bottom: 18px; right: 24px; font-family: var(--display); font-size: 50px; font-weight: 900; color: rgba(0,74,153,0.06); line-height: 1; }
.door-jeunes { background: linear-gradient(135deg, var(--blue) 0%, var(--orange-warm) 175%); display: flex; align-items: center; justify-content: space-between; gap: 30px; border: none; }
.door-jeunes-content { flex: 1; }
.door-jeunes .door-cta-light { white-space: nowrap; flex-shrink: 0; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience-card { border-radius: 18px; padding: 44px 40px; position: relative; overflow: hidden; border: 1px solid var(--line); transition: transform 0.25s, box-shadow 0.25s; }
.audience-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(0,74,153,0.1); }
.audience-card.indiv { background: var(--bg-alt); }
.audience-card.entreprise { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); }
.audience-label { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.audience-card.indiv .audience-label { color: var(--orange-deep); }
.audience-card.entreprise .audience-label { color: var(--orange); }
.audience-title { font-family: var(--display); font-size: 26px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.4px; }
.audience-card.indiv .audience-title { color: var(--blue); }
.audience-card.entreprise .audience-title { color: var(--white); }
.audience-desc { font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.audience-card.indiv .audience-desc { color: var(--slate); }
.audience-card.entreprise .audience-desc { color: rgba(255,255,255,0.75); }
.audience-list { list-style: none; margin-bottom: 28px; }
.audience-list li { font-size: 14px; line-height: 1.6; padding-left: 22px; position: relative; margin-bottom: 10px; }
.audience-card.indiv .audience-list li { color: var(--ink); }
.audience-card.entreprise .audience-list li { color: rgba(255,255,255,0.85); }
.audience-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.audience-cta { font-size: 13px; font-weight: 700; letter-spacing: 0.3px; display: inline-flex; align-items: center; gap: 8px; }
.audience-card.indiv .audience-cta { color: var(--orange-deep); }
.audience-card.entreprise .audience-cta { color: var(--orange); }

/* PROBLEMES */
.problemes { background: var(--bg-alt); }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card { background: var(--white); border-radius: 14px; padding: 30px 28px; border: 1px solid var(--line); transition: transform 0.2s, box-shadow 0.2s; display: grid; grid-template-columns: auto 1fr; column-gap: 20px; row-gap: 6px; align-items: start; }
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,74,153,0.08); }
.problem-number { display: none; }
.problem-icon { grid-column: 1; grid-row: 1 / 3; align-self: center; display: flex; align-items: center; margin: 0; }
.problem-icon svg { width: 56px; height: 56px; }
.problem-title { grid-column: 2; grid-row: 1; font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--blue); line-height: 1.3; margin-bottom: 0; }
.problem-desc { grid-column: 2; grid-row: 2; font-size: 16px; color: var(--slate); line-height: 1.7; }

/* SEVERINE */
.severine { background: var(--white); }
.severine-banner { position: relative; width: 100%; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,74,153,0.18); margin-bottom: 44px; }
.severine-photo-land { width: 100%; aspect-ratio: 3/4; height: auto; object-fit: cover; object-position: center bottom; display: block; }
.severine-content { max-width: 1060px; }
@media (min-width: 820px){ .severine-titlewrap .s-title { white-space: nowrap; } }
.severine-photo-wrap { position: relative; }
.severine-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 18px; display: block; box-shadow: 0 24px 60px rgba(0,74,153,0.18); }
.severine-badge { position: static; max-width: none; background: rgba(255,255,255,0.94); border-radius: 0; padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.severine-badge-name { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--blue); }
.severine-badge-role { font-size: 11px; color: var(--orange); margin-top: 2px; letter-spacing: 0.3px; font-weight: 600; }
.severine-promise { font-family: var(--display); font-size: 16px; font-weight: 500; font-style: italic; color: var(--blue); text-align: left; margin: 8px 0 24px; padding: 18px 24px; line-height: 1.6; background: var(--bg-card); border-left: 3px solid var(--orange); border-radius: 0 10px 10px 0; }
.severine-quote { font-family: var(--display); font-size: 20px; font-weight: 500; font-style: italic; color: var(--blue); line-height: 1.55; padding: 26px 30px; background: var(--bg-card); border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; margin: 26px 0; }
.severine-quote span { color: var(--orange); font-style: normal; }
.severine-text { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.severine-text strong { color: var(--ink); font-weight: 600; }
.severine-bio-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.severine-bio-cols .severine-text { margin-bottom: 0; }
.severine-bio-cols .bio-narrative .severine-text { margin-bottom: 18px; }
.severine-bio-cols .bio-narrative .severine-text:last-child { margin-bottom: 0; }
.bio-certifs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 39px; }
.severine-linkedin { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; padding: 10px 18px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--blue); background: var(--bg-alt); transition: border-color 0.2s, color 0.2s, transform 0.15s; }
.severine-linkedin:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.severine-linkedin svg { width: 17px; height: 17px; flex-shrink: 0; }
.certif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }
.severine-titlewrap { margin-bottom: 42px; }
.severine-layout { display: flex; gap: 44px; align-items: flex-start; }
.severine-layout .severine-content { flex: 1 1 auto; max-width: none; min-width: 0; }
.severine-layout .severine-aside { flex: 0 0 25%; display: flex; flex-direction: column; gap: 16px; }
.severine-layout .severine-banner { margin-bottom: 0; }
.severine-aside .severine-linkedin { display: flex; width: fit-content; margin: 22px auto 0; background: #0A66C2; color: #fff; border-color: #0A66C2; font-size: 14px; padding: 7px 20px; box-shadow: 0 6px 18px rgba(10,102,194,0.35); }
.severine-aside .severine-linkedin:hover { background: #084e96; color: #fff; border-color: #084e96; }
.severine-layout .severine-photo-land { aspect-ratio: 3/4; height: auto; object-position: center bottom; }
@media (max-width: 860px){
  .severine-layout { flex-direction: column; }
  .severine-layout .severine-aside { flex: none; width: 100%; }
  .severine-layout .severine-photo-land { aspect-ratio: 3/4; height: auto; }
}
.certif-pill { background: var(--bg-alt); border: 1px solid var(--line); padding: 11px 16px; border-radius: 8px; font-size: 12.5px; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 9px; }
.certif-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
/* METHODE PIVOT&#174; + CALME&#174; */
.methode { background: var(--bg-alt); }
.pivot-schema { margin-bottom: 28px; padding: 36px 30px 28px; background: var(--white); border-radius: 16px; border: 1px solid var(--line); }
.pivot-schema svg { width: 100%; height: auto; display: block; }
.pivot-schema-caption { text-align: center; font-size: 13px; color: var(--slate); font-style: italic; margin-top: 14px; }
.calme-block { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calme-card { background: var(--white); border-radius: 16px; padding: 34px 36px; border: 1px solid var(--line); }
.calme-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.calme-mark { width: 54px; height: 54px; border-radius: 12px; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 11px; flex-shrink: 0; }
.calme-mark.orange { background: var(--orange); }
.calme-card-title { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--blue); }
.calme-card-tagline { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 2px; }
.calme-card-desc { font-size: 16px; color: var(--slate); line-height: 1.75; margin-bottom: 18px; }
.calme-dims { display: flex; flex-wrap: wrap; gap: 8px; }
.calme-dim { background: var(--blue-soft); color: var(--blue); font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 20px; }

/* PROGRAMME ODYSSEE */
.programme { background: var(--white); }
.prog-price-note { font-size: 13px; color: var(--gray); font-style: italic; margin-bottom: 40px; max-width: 720px; line-height: 1.6; }
.prog-panel { display: block; }
.prog-panel + .prog-panel { margin-top: 70px; padding-top: 70px; border-top: 2px solid var(--line); }
.prog-header { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; margin-bottom: 50px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.prog-id { font-family: var(--mono); font-size: 11px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.prog-title { font-family: var(--display); font-size: clamp(30px, 3.8vw, 46px); font-weight: 800; line-height: 1.05; color: var(--blue); letter-spacing: -0.6px; margin-bottom: 18px; }
.prog-title em { font-style: normal; color: var(--orange); }
.prog-promise { font-size: 17px; color: var(--slate); line-height: 1.6; font-style: italic; margin-bottom: 22px; }
.prog-target { display: inline-block; padding: 9px 18px; background: var(--orange-light); color: var(--orange-deep); border-radius: 30px; font-size: 12px; font-weight: 700; }
.prog-card { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); border-radius: 18px; padding: 32px; position: relative; overflow: hidden; }
.prog-card::before { content: ''; position: absolute; top: -70px; right: -70px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,127,0,0.28) 0%, transparent 70%); }
.prog-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.13); position: relative; z-index: 2; }
.prog-row:last-of-type { border-bottom: none; }
.prog-row-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.prog-row-value { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--white); text-align: right; }
.prog-quote-btn { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; background: var(--orange); color: var(--white); padding: 13px; border-radius: 8px; font-size: 13px; font-weight: 700; position: relative; z-index: 2; transition: background 0.2s, transform 0.15s; }
.prog-quote-btn:hover { background: var(--orange-warm); transform: translateY(-2px); }
.legend { display: flex; gap: 28px; align-items: center; margin-bottom: 36px; padding: 15px 22px; background: var(--blue-soft); border-radius: 12px; font-size: 13px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 500; }
.legend-ic { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.legend-ic.indiv { background: var(--orange-light); color: var(--orange-deep); }
.legend-ic.collec { background: var(--blue); color: var(--white); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 44px; }
.timeline.cinq { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tm { background: var(--bg-alt); border-radius: 16px; padding: 28px 24px; position: relative; border: 1px solid var(--line); transition: transform 0.25s, box-shadow 0.25s; }
.tm:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,74,153,0.1); }
.tm-num { position: absolute; top: -19px; left: 24px; width: 40px; height: 40px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 24px; font-weight: 800; border: 4px solid var(--white); }
.tm-phase { font-family: var(--mono); font-size: 9px; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-top: 14px; }
.tm-label { font-family: var(--mono); font-size: 10px; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; margin-bottom: 8px; }
.tm-title { font-family: var(--display); font-size: 19px; font-weight: 800; color: var(--blue); line-height: 1.15; margin-bottom: 8px; letter-spacing: -0.2px; }
.tm-sub { font-style: italic; font-size: 12.5px; color: var(--gray); line-height: 1.5; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.tm-items { display: flex; flex-direction: column; gap: 10px; }
.tm-item { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.tm-ic { flex-shrink: 0; width: 21px; height: 21px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; margin-top: 1px; }
.tm-ic.indiv { background: var(--orange-light); color: var(--orange-deep); }
.tm-ic.collec { background: var(--blue); color: var(--white); }
.tm-ic.star { background: var(--orange); color: var(--white); }
.tm-text { color: var(--ink); flex: 1; }
.tm-text strong { color: var(--blue); font-weight: 600; }
.bonus { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); border-radius: 18px; padding: 34px 40px; display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; position: relative; overflow: hidden; }
.bonus::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 100%; background: radial-gradient(ellipse at right, rgba(255,127,0,0.22) 0%, transparent 70%); }
.bonus-ic { width: 56px; height: 56px; background: var(--orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 24px; font-weight: 800; color: var(--white); position: relative; z-index: 2; }
.bonus-content { position: relative; z-index: 2; }
.bonus-label { font-family: var(--mono); font-size: 14px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.bonus-title { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 6px; }
.bonus-desc { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.6; }
.bonus-tag { background: var(--orange); color: var(--white); padding: 8px 18px; border-radius: 30px; font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; position: relative; z-index: 2; white-space: nowrap; }
/* ENJEUX ENTREPRISES */
.enjeux { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); }
.enjeux .deco-circle { background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 70%); }
.enjeux .s-title { color: var(--white); }
.enjeux .s-intro { color: rgba(255,255,255,0.72); }
.enjeux-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 44px; position: relative; z-index: 2; }
.enjeu-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 30px 24px; }
.enjeu-num { font-family: var(--display); font-size: 44px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.enjeu-desc { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.6; }
.enjeu-src { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.42); margin-top: 12px; }
.valeur-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; z-index: 2; }
.valeur-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 32px 30px; }
.valeur-card.accent { background: rgba(255,127,0,0.1); border-color: rgba(255,127,0,0.4); }
.valeur-head { font-family: var(--display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--orange); margin-bottom: 20px; }
.valeur-item { font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.6; padding-left: 18px; position: relative; margin-bottom: 14px; }
.valeur-item:last-child { margin-bottom: 0; }
.valeur-item::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* EXCLUSIFS */
.exclusifs { background: var(--white); }
.exclusifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ex-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 34px 30px; transition: transform 0.25s, box-shadow 0.25s; }
.ex-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,74,153,0.08); }
.ex-num { font-family: var(--display); font-size: 52px; font-weight: 800; color: var(--orange); line-height: 0.9; margin-bottom: 18px; }
.ex-tag { display: inline-block; padding: 5px 12px; background: var(--blue-soft); color: var(--blue); font-family: var(--mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; margin-bottom: 16px; }
.ex-title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--blue); line-height: 1.25; margin-bottom: 13px; }
.ex-desc { font-size: 16px; color: var(--slate); line-height: 1.7; }

/* EXPERIENCE JOURNEY */
.experience { background: var(--bg-alt); }
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.journey-step { padding: 30px 24px 30px 0; position: relative; display: flex; flex-direction: column; }
.journey-step:not(:last-child)::after { content: ''; position: absolute; top: 18px; right: 12px; width: 24px; height: 24px; }
.journey-num { width: 88px; height: 88px; border-radius: 50%; background: var(--white); border: 2px solid var(--orange); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 32px; margin-bottom: 18px; }
.journey-title { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--blue); line-height: 1.3; margin-bottom: 10px; }
.journey-desc { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: 12px; }
.journey-label { font-family: var(--mono); font-size: 15px; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-top: auto; display: inline-block; align-self: flex-start; padding: 5px 14px; background: var(--orange); border-radius: 999px; }

/* TEMOIGNAGES */
.temoignages { background: var(--white); }
.temoin-note { font-family: var(--mono); font-size: 11px; color: var(--gray); margin-bottom: 36px; padding: 10px 16px; background: var(--bg-alt); border: 1px dashed var(--line); border-radius: 8px; display: inline-block; }
.temoin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.temoin-card { background: var(--bg-alt); border-radius: 14px; padding: 30px 28px; border: 1px solid var(--line); }
.temoin-stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.temoin-text { font-size: 16px; color: var(--ink); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.temoin-author { display: flex; align-items: center; gap: 12px; }
.temoin-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.temoin-name { font-weight: 700; font-size: 13px; color: var(--ink); }
.temoin-role { font-size: 11.5px; color: var(--gray); margin-top: 1px; }

/* REFERENCES */
.references { background: var(--bg-alt); padding: 56px 7%; text-align: center; }
.refs-title { font-family: var(--mono); font-size: 12px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.refs-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ref-chip { background: var(--white); border: 1px solid var(--line); color: var(--slate); font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 30px; }

/* CONTACT */
.contact { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); }
.contact .deco-circle { background: radial-gradient(circle at 40% 40%, rgba(255,127,0,0.1) 0%, transparent 70%); }
.contact .s-title { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; position: relative; z-index: 2; }
.contact-info-text { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail-ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-ic svg { width: 19px; height: 19px; }
.contact-detail-label { font-family: var(--mono); font-size: 10px; color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; color: var(--white); font-weight: 500; }
.contact-detail-value a { color: var(--white); }
.contact-form { background: var(--white); border-radius: 18px; padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12px; font-weight: 600; color: var(--slate); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--bg-alt); }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--orange); }
.btn-submit { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 15px; border-radius: 8px; font-family: var(--sans); font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.prog-finance-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.16); color: #fff; font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 30px; margin: 14px 0 4px; letter-spacing: 0.2px; }
.prog-finance-badge::before { content: '✓'; color: var(--orange); font-weight: 800; }
.btn-submit:hover { background: var(--orange-warm); }
.form-hint { font-size: 11.5px; color: var(--gray); text-align: center; margin-top: 12px; }

/* FOOTER */
footer { background: var(--ink); padding: 60px 7% 30px; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--white); }
.footer-brand-sub { font-size: 9px; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-top: 2px; margin-bottom: 16px; }
.footer-brand-desc { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 320px; }
.footer-col-title { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.7; font-family: var(--mono); }
.footer-legal strong { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* IA SECTION */
.ia { background: var(--bg-alt); }
.ia-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 14px; }
.ia-stat { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px; border-top: 3px solid var(--orange); }
.ia-num { font-family: var(--display); font-size: 42px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 12px; }
.ia-desc { font-size: 16px; color: var(--slate); line-height: 1.6; }
.ia-src { font-family: var(--mono); font-size: 11px; color: var(--gray); margin-bottom: 50px; }
.ia-pivot { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: start; }
.ia-pivot-title { font-family: var(--display); font-size: 26px; font-weight: 800; color: var(--blue); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.4px; }
.ia-pivot-p { font-size: 15.5px; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.ia-pivot-card { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); border-radius: 18px; padding: 32px 30px; }
.ia-pivot-card-label { font-family: var(--mono); font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.ia-point { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.ia-point:last-child { margin-bottom: 0; }
.ia-point-ic { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: var(--orange); color: var(--white); font-family: var(--display); font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.ia-point-t { font-size: 13.5px; color: rgba(255,255,255,0.88); line-height: 1.5; }

/* BLOG */
.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; cursor: pointer; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(0,74,153,0.1); }
.blog-thumb { height: 190px; position: relative; display: flex; align-items: flex-end; padding: 16px; }
.blog-thumb-2 { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--orange) 160%); }
.blog-thumb-3 { background: linear-gradient(135deg, var(--orange-warm) 0%, var(--orange) 100%); }
.blog-cat { background: rgba(255,255,255,0.92); color: var(--blue); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.blog-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { font-family: var(--mono); font-size: 11px; color: var(--gray); letter-spacing: 0.5px; margin-bottom: 12px; }
.blog-title { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--blue); line-height: 1.3; margin-bottom: 12px; }
.blog-excerpt { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: 18px; }
.blog-link { font-size: 13px; font-weight: 700; color: var(--orange); }
.blog-cta-btn { display: inline-block; background: var(--orange); color: var(--white); font-size: 13px; font-weight: 700; padding: 11px 22px; border-radius: 7px; text-decoration: none; transition: background 0.2s, transform 0.15s; margin-top: auto; align-self: flex-start; }
.blog-cta-btn:hover { background: var(--orange-warm); transform: translateY(-1px); }
.blog-card-feature { border-color: var(--orange); }
/* Université : déposer le fichier images/universite.jpg ; voile marine pour la cohérence et la lisibilité, dégradé de repli si la photo est absente */
#univ-photo { background-image: linear-gradient(150deg, rgba(0,45,98,0.62) 0%, rgba(0,45,98,0.18) 55%, rgba(255,106,0,0.40) 100%), url('images/universite.jpg'); background-size: cover; background-position: center; background-color: var(--blue-deep); }
/* Atelier Clap Studio : déposer le fichier images/clap-studio.jpg */
#clap-photo { background-image: linear-gradient(150deg, rgba(0,45,98,0.45) 0%, rgba(217,106,0,0.45) 100%), url('images/clap-studio.jpg'); background-size: cover; background-position: center; background-color: var(--orange-deep); }
.blog-note { font-family: var(--mono); font-size: 11px; color: var(--gray); margin-top: 32px; padding: 10px 16px; background: var(--bg-alt); border: 1px dashed var(--line); border-radius: 8px; display: inline-block; }

/* VACILLE */
.vacille { background: var(--blue-deep); position: relative; overflow: hidden; padding: 0; }
.vacille-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,127,0,0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 85% 15%, rgba(0,86,179,0.4) 0%, transparent 60%); }
.vacille-inner { position: relative; z-index: 2; padding: 100px 7%; }
.vacille-lede { font-size: 17px; color: rgba(255,255,255,0.62); line-height: 1.75; margin-top: 16px; }
.vacille-lede strong { color: var(--orange); }
.promise-block { margin: 56px 0; padding: 44px 52px; background: var(--orange); border-radius: 20px; position: relative; overflow: hidden; }
.promise-ghost { position: absolute; right: -20px; top: -50px; font-family: var(--display); font-size: 200px; font-weight: 900; color: rgba(255,255,255,0.09); line-height: 1; pointer-events: none; user-select: none; }
.promise-content { position: relative; z-index: 1; }
.promise-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.75); text-transform: uppercase; margin-bottom: 16px; }
.promise-quote { font-family: var(--display); font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; color: var(--white); line-height: 1.35; max-width: 700px; }
.promise-quote em { font-style: italic; }
.promise-author { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 16px; font-style: italic; }
.dims-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 56px; }
.dim-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 30px 28px; display: grid; grid-template-columns: auto 1fr; column-gap: 20px; row-gap: 6px; align-items: start; }
.dim-icon { grid-column: 1; grid-row: 1 / 4; align-self: center; width: auto; height: auto; background: none; border-radius: 0; display: flex; align-items: center; justify-content: center; margin: 0; }
.dim-icon svg { width: 56px; height: 56px; }
.dim-title { grid-column: 2; grid-row: 1; font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 0; }
.dim-desc { grid-column: 2; grid-row: 2; font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 18px; }
.dim-tags { grid-column: 2; grid-row: 3; display: flex; flex-wrap: wrap; gap: 6px; }
.dim-tag { background: rgba(255,127,0,0.14); color: var(--orange); font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.4px; }
.case { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,127,0,0.22); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1.4fr; }
.case-left { background: var(--orange); padding: 44px 40px; position: relative; overflow: hidden; }
.case-ghost { position: absolute; bottom: -34px; left: -16px; font-family: var(--display); font-size: 150px; font-weight: 900; color: rgba(255,255,255,0.1); line-height: 1; pointer-events: none; user-select: none; }
.case-left-content { position: relative; z-index: 1; }
.case-kicker { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.78); text-transform: uppercase; margin-bottom: 12px; }
.case-name { font-family: var(--display); font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.case-intro { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 24px; }
.case-meta { display: inline-flex; gap: 8px; background: rgba(255,255,255,0.16); padding: 8px 16px; border-radius: 8px; font-size: 11px; color: var(--white); }
.case-meta span { font-weight: 600; }
.case-right { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.case-step-label { font-size: 16px; font-weight: 700; letter-spacing: 1px; color: var(--orange); text-transform: uppercase; margin-bottom: 8px; }
.case-step-text { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.7; }
.case-divider { height: 1px; background: rgba(255,255,255,0.08); }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.case-tag { background: rgba(255,127,0,0.12); border: 1px solid rgba(255,127,0,0.25); color: var(--orange); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px; }
.case-quote { padding: 18px 22px; background: rgba(255,255,255,0.04); border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; }
.case-quote p { font-family: var(--display); font-size: 14px; font-style: italic; color: rgba(255,255,255,0.78); line-height: 1.65; }
.case-quote span { display: block; font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 10px; letter-spacing: 0.3px; }

/* DIRIGEANTS */
.dirigeants { background: var(--blue-deep); position: relative; overflow: hidden; padding: 0; }
.dir-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 70% at 80% 30%, rgba(255,127,0,0.1) 0%, transparent 65%), radial-gradient(ellipse 45% 60% at 10% 90%, rgba(0,86,179,0.4) 0%, transparent 60%); }
.dir-inner { position: relative; z-index: 2; padding: 100px 7%; }
.dir-lede { font-size: 17px; color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 50px; }
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.dir-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 32px 28px; transition: transform 0.25s, border-color 0.25s; }
.dir-card:hover { transform: translateY(-4px); border-color: rgba(255,127,0,0.4); }
.dir-card-num { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.dir-card-title { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 12px; }
.dir-card-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.dir-cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.dir-link { color: var(--orange); font-size: 14px; font-weight: 700; }

/* JEUNES (vue plein écran) */
#jeunes-view { display: none; position: fixed; inset: 0; z-index: 200; background: var(--bg); overflow-y: auto; }
#prog-univ-view { display: none; position: fixed; inset: 0; z-index: 200; background: var(--bg); overflow-y: auto; }
#prog-univ-view.open { display: block; }
#prog-atelier-view { display: none; position: fixed; inset: 0; z-index: 200; background: var(--bg); overflow-y: auto; }
#prog-atelier-view.open { display: block; }
#prog-univ2-view { display: none; position: fixed; inset: 0; z-index: 200; background: var(--bg); overflow-y: auto; }
#prog-univ2-view.open { display: block; }
#inv-calme-view { display: none; position: fixed; inset: 0; z-index: 200; background: var(--bg); overflow-y: auto; }
#inv-calme-view.open { display: block; }
.inv-pilier-head { display: flex; align-items: center; gap: 18px; margin: 40px 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--orange); }
.inv-pilier-letter { font-family: var(--display); font-size: 42px; font-weight: 900; color: var(--orange); line-height: 1; }
.inv-pilier-title { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--blue); margin: 0; }
.inv-pilier-desc { font-size: 16px; color: var(--gray); font-style: italic; margin: 4px 0 0; }
.inv-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; }
.inv-q { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.inv-num { background: var(--blue-soft); color: var(--blue); font-family: var(--mono); font-weight: 700; font-size: 13px; min-width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.inv-text { font-size: 15px; color: var(--ink); line-height: 1.5; padding-top: 5px; }
.inv-scale { display: flex; gap: 8px; padding-left: 46px; flex-wrap: wrap; }
.inv-choice { position: relative; }
.inv-choice input { position: absolute; opacity: 0; pointer-events: none; }
.inv-choice span { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 38px; padding: 0 14px; border: 1.5px solid var(--line); border-radius: 8px; font-weight: 700; color: var(--slate); cursor: pointer; transition: all 0.15s; font-size: 14px; }
.inv-choice:hover span { border-color: var(--orange); color: var(--orange); }
.inv-choice input:checked + span { background: var(--blue); color: var(--white); border-color: var(--blue); }
.inv-submit-block { text-align: center; padding: 40px 0 24px; }
.inv-score-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; margin-bottom: 14px; }
.inv-score-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.inv-score-letter { font-family: var(--display); font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; min-width: 36px; }
.inv-score-title { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--blue); margin: 0; }
.inv-score-level { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.inv-score-num { margin-left: auto; font-family: var(--display); font-size: 30px; font-weight: 800; color: var(--blue); }
.inv-score-tot { font-size: 16px; color: var(--gray); font-weight: 600; }
.inv-bar { height: 8px; background: var(--bg-alt); border-radius: 4px; overflow: hidden; }
.inv-bar-fill { height: 100%; border-radius: 4px; transition: width 0.5s; }
.btn-secondary { display: inline-block; background: var(--white); color: var(--blue); border: 1.5px solid var(--blue); padding: 11px 22px; border-radius: 7px; font-size: 13.5px; font-weight: 700; text-decoration: none; }
.btn-secondary:hover { background: var(--blue-soft); }
.calme-cta { display: inline-block; margin-top: 18px; background: var(--orange); color: var(--white); padding: 11px 22px; border-radius: 8px; font-size: 13.5px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.calme-cta:hover { background: var(--orange-warm); }
.univ-doc { max-width: 900px; margin: 0 auto; padding: 20px 24px 80px; }
.univ-head { padding: 24px 0 36px; border-bottom: 2px solid var(--line); margin-bottom: 36px; }
.univ-title { font-family: var(--display); font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--blue); line-height: 1.1; letter-spacing: -0.5px; margin: 8px 0 16px; }
.univ-title em { font-style: normal; color: var(--orange); }
.univ-sub { font-family: var(--mono); font-size: 13px; color: var(--gray); letter-spacing: 0.5px; margin-bottom: 24px; }
.univ-cta { display: inline-block; }
.univ-block { margin-bottom: 40px; }
.univ-h2 { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--blue-deep); margin-bottom: 16px; }
.univ-block p { font-size: 15.5px; color: var(--slate); line-height: 1.75; margin-bottom: 14px; }
.univ-days { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.univ-day { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; border-top: 3px solid var(--orange); }
.univ-day-when { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 8px; }
.univ-day-title { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--blue); line-height: 1.3; margin-bottom: 10px; }
.univ-day p { font-size: 13.5px; color: var(--slate); line-height: 1.65; margin: 0; }
.univ-infos { background: var(--blue-soft); border-radius: 18px; padding: 34px 36px; }
.univ-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; margin-bottom: 28px; }
.univ-info { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(0,74,153,0.12); }
.univ-info-k { font-family: var(--display); font-weight: 700; color: var(--blue); font-size: 14px; }
.univ-info-v { color: var(--slate); font-size: 14px; text-align: right; }
.univ-cta-block { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.univ-cta-note { font-size: 12px; color: var(--gray); }
#jeunes-view.open { display: block; }
.jeunes-top { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 18px 7%; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.jeunes-back { background: none; border: 1px solid var(--line); border-radius: 8px; padding: 9px 18px; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--slate); cursor: pointer; transition: all 0.2s; }
.jeunes-back:hover { border-color: var(--orange); color: var(--orange); }
.jeunes-badge { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-deep); }
.jeunes-hero { background: linear-gradient(150deg, var(--blue-deep) 0%, var(--blue) 55%, var(--orange-warm) 165%); padding: 80px 7% 90px; position: relative; overflow: hidden; }
.jeunes-hero-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.jeunes-hero h1 { font-family: var(--display); font-size: clamp(34px,5vw,60px); font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 22px; max-width: 800px; }
.jeunes-hero h1 em { font-style: normal; color: var(--orange); }
.jeunes-hero p { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.65; max-width: 560px; margin-bottom: 36px; }
.jeunes-sec { padding: 80px 7%; }
.jeunes-sec.alt { background: var(--bg-alt); }
.jeunes-grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.jeunes-grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.jc { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; }
.jc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 12px; }
.jc-title { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 10px; line-height: 1.3; }
.jc-desc { font-size: 16px; color: var(--slate); line-height: 1.7; }
.jeunes-mission { background: var(--orange-light); border-radius: 16px; padding: 36px 40px; border-left: 4px solid var(--orange); }
.jeunes-mission-label { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 12px; }
.jeunes-mission p { font-family: var(--display); font-size: 19px; font-weight: 500; font-style: italic; color: var(--blue); line-height: 1.5; }

/* FAQ */
.faq { background: var(--bg-alt); padding-bottom: 90px; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 22px 26px; font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--blue); list-style: none; position: relative; padding-right: 50px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 26px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--orange); font-weight: 400; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 26px 24px; font-size: 14.5px; color: var(--slate); line-height: 1.75; }

/* ETUDES */
.etudes { background: var(--white); }
.etudes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.etude-card { display: block; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; text-decoration: none; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative; }
.etude-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(0,74,153,0.1); border-color: var(--orange); }
.etude-card::after { content: '↗'; position: absolute; top: 24px; right: 26px; color: var(--orange); font-size: 18px; opacity: 0.5; transition: opacity 0.2s; }
.etude-card:hover::after { opacity: 1; }
.etude-tag { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-deep); background: var(--orange-light); padding: 4px 10px; border-radius: 4px; margin-bottom: 16px; }
.etude-title { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--blue); line-height: 1.3; margin-bottom: 12px; padding-right: 20px; }
.etude-desc { font-size: 13.5px; color: var(--slate); line-height: 1.7; margin-bottom: 18px; }
.etude-src { font-family: var(--mono); font-size: 11px; color: var(--gray); line-height: 1.4; }
.etudes-note { font-family: var(--mono); font-size: 11px; color: var(--gray); margin-top: 32px; padding: 10px 16px; background: var(--bg-alt); border: 1px dashed var(--line); border-radius: 8px; display: inline-block; }

@media (max-width: 1024px) {
  .dir-grid, .jeunes-grid3 { grid-template-columns: 1fr 1fr; }
  .door-hero, .door-jeunes { flex-direction: column; align-items: flex-start; gap: 20px; }
  .door-hero-mark { display: none; }
  #hero { grid-template-columns: 1fr; padding: 120px 7% 60px; gap: 30px; }
  .hero-right { padding: 0; }
  .audience-grid, .calme-block, .valeur-grid, .contact-grid, .prog-header, .severine-grid { grid-template-columns: 1fr; gap: 36px; }
  .problems-grid, .enjeux-grid, .exclusifs-grid, .temoin-grid, .journey, .ia-stats, .blog-grid, .dims-grid, .etudes-grid { grid-template-columns: repeat(2, 1fr); }
  .case { grid-template-columns: 1fr; }
  .ia-pivot { grid-template-columns: 1fr; gap: 32px; }
  .timeline, .timeline.cinq { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; }
}
@media (max-width: 640px) {
  section { padding: 70px 6%; }
  .problems-grid, .enjeux-grid, .exclusifs-grid, .temoin-grid, .journey, .timeline, .timeline.cinq, .form-grid, .footer-main, .certif-grid, .ia-stats, .blog-grid, .dims-grid, .etudes-grid, .severine-bio-cols, .faq-list { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .vacille-inner { padding: 70px 6%; }
  .dir-grid, .jeunes-grid3, .jeunes-grid2, .door-row { grid-template-columns: 1fr; }
  .dir-inner { padding: 70px 6%; }
  .bonus { grid-template-columns: 1fr; gap: 16px; }
  .hero-stats { gap: 24px; }
  .legend { flex-direction: column; align-items: flex-start; gap: 12px; }
  nav { padding: 0 6%; }
}
@media print {
  nav { position: static; }
  .enjeux, .contact, .exclusifs, footer, .prog-card, .bonus, .severine-photo, .enjeu-stat, .valeur-card { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .prog-panel { display: block !important; }
}

.nav-drop-toggle { cursor: default; }

/* Respiration sous le header fixe (92px) + 65px pour la 1re section des pages intérieures */
hero) { padding-top: 157px; }#hero) { padding-top: 157px; }

.mobile-menu + section .dir-inner { padding-top: 0; }

/* Header fixe 92px : padding (pas margin) sur la 1re section, son fond monte jusau header, le contenu respire 65px sous le menu */
.mobile-menu + section:not(#hero) { padding-top: 157px; }

/* --- largeur de lecture commune --- titres de section + intros calés sur 1000px partout */
.s-title, .s-intro, .dir-lede, .vacille-lede { max-width: 1000px; }

.btn-on-dark { color: #fff; border-color: rgba(255,255,255,0.45); background: transparent; }
.btn-on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.bonus-ic svg { width: 27px; height: 27px; }

/* titre long "a besoin de PIVOTS ?" : pleine largeur pour tenir sur une ligne */
#enjeux .s-title { max-width: none; }

@media (max-width: 640px) {
  .dir-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .dir-cta-row .btn-primary, .dir-cta-row .btn-ghost { width: 100%; text-align: center; }
}

/* espace entre S'inscrire et Télécharger (boutons programme) */
a[download].btn-ghost { margin-left: 12px; }
@media (max-width:640px){ a[download].btn-ghost { margin-left: 0; margin-top: 10px; } }
#univ2-photo { background: linear-gradient(150deg, rgba(0,45,98,0.92) 0%, rgba(0,45,98,0.55) 55%, rgba(255,106,0,0.55) 100%); background-color: var(--blue-deep); }
