/* ============================================================
   STEEVEN CADEL — Stylesheet
   Palette: Navy #1B3A6B | Blue #2D6FA3 | Gold #C9A84C | Light #F5F7FA
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1B3A6B;
  --navy-dark: #132c52;
  --blue:      #2D6FA3;
  --gold:      #C9A84C;
  --gold-dark: #b0913f;
  --light:     #F5F7FA;
  --white:     #ffffff;
  --text:      #1A1A2E;
  --text-mid:  #4B5563;
  --text-light:#9CA3AF;
  --border:    #E5E7EB;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(27,58,107,.10);
  --shadow-lg: 0 12px 48px rgba(27,58,107,.18);
  --transition:0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ---- Section Headers ---- */
.section-head { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label--light { color: var(--gold); }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(27,58,107,.1);
  padding: 0;
}
.nav.scrolled .nav__logo { color: var(--navy); }
.nav.scrolled .nav__logo span { color: var(--gold); }
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__links a:hover { color: var(--navy); }
.nav.scrolled .nav__cta { background: var(--navy) !important; color: var(--white) !important; }
.nav.scrolled .nav__burger span { background: var(--navy); }

.nav__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(45,111,163,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,168,76,.08) 0%, transparent 50%);
}
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__label {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero__x {
  font-style: normal;
  color: var(--gold);
}
.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero__desc strong { color: var(--white); font-weight: 600; }
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-n {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-l {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__photo-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__photo-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%);
  z-index: -1;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.svc-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card__icon--1 { background: rgba(27,58,107,.08);  color: var(--navy); }
.svc-card__icon--2 { background: rgba(201,168,76,.12); color: var(--gold-dark); }
.svc-card__icon--3 { background: rgba(45,111,163,.10); color: var(--blue); }
.svc-card__icon--4 { background: rgba(27,58,107,.08);  color: var(--navy); }

.svc-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.svc-card__desc {
  font-size: .95rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}
.svc-card__list { display: flex; flex-direction: column; gap: 8px; }
.svc-card__list li {
  font-size: .875rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.svc-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   APPROCHE
   ============================================================ */
.approche__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approche__text {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.approche__text strong { color: var(--white); }
.approche__text:last-of-type { margin-bottom: 36px; }

.methodes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.methode {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px;
  transition: background var(--transition), border-color var(--transition);
}
.methode:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(201,168,76,.4);
}
.methode__num {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 8px;
}
.methode h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.methode p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ============================================================
   PARCOURS
   ============================================================ */
.parcours__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.parcours__col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.parcours__col-icon {
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.parcours__col-icon svg { width: 18px; height: 18px; color: var(--navy); }

.parcours__list { display: flex; flex-direction: column; gap: 20px; }
.parcours__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.parcours__year {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201,168,76,.12);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 44px;
  text-align: center;
}
.parcours__list strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.parcours__list p {
  font-size: .825rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Timeline */
.parcours__timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:last-child .timeline-dot::after { display: none; }
.timeline-dot {
  position: relative;
  flex-shrink: 0;
  margin-top: 6px;
}
.timeline-dot::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}
.timeline-dot::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 14px;
  width: 2px;
  height: calc(100% + 16px);
  background: var(--border);
}
.timeline-content { flex: 1; }
.timeline-date {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201,168,76,.12);
  border-radius: 6px;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.timeline-content strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: .825rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.client-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.client-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(27,58,107,.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
}
.client-card__icon svg { width: 28px; height: 28px; }
.client-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.client-card p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.form-success {
  text-align: center;
  padding: 16px;
  background: rgba(45,111,163,.08);
  border: 1px solid rgba(45,111,163,.25);
  border-radius: var(--radius);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  margin-top: 8px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 20px 0 32px;
}
.contact__info { display: flex; flex-direction: column; gap: 16px; }
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-mid);
}
.contact__info-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--navy); margin-top: 2px; }
.contact__info-item a { color: var(--blue); text-decoration: underline; }
.contact__info-item a:hover { color: var(--navy); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,111,163,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__tagline {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer__sub {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer__links h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer__linkedin {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__linkedin:hover { color: var(--gold); }
.footer__linkedin svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__container    { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__desc         { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions      { justify-content: center; }
  .hero__stats        { justify-content: center; }
  .hero__visual       { order: -1; }
  .hero__photo-wrap   { width: 280px; aspect-ratio: 1; border-radius: 50%; }
  .hero__photo        { object-position: center top; }
  .approche__grid     { grid-template-columns: 1fr; gap: 48px; }
  .parcours__cols     { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid      { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links         { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px 24px; box-shadow: 0 8px 32px rgba(0,0,0,.12); gap: 4px; }
  .nav__links.open    { display: flex; }
  .nav__links a       { color: var(--text) !important; padding: 10px 0; font-size: .95rem; border-bottom: 1px solid var(--border); }
  .nav__links li:last-child a { border-bottom: none; }
  .nav__cta           { background: var(--navy) !important; color: var(--white) !important; border-radius: 0 !important; padding: 12px 0 !important; }
  .nav__burger        { display: flex; }
  .nav                { background: transparent; }
  .nav.scrolled       { background: rgba(255,255,255,.96); }
  .services__grid     { grid-template-columns: 1fr; }
  .methodes__grid     { grid-template-columns: 1fr; }
  .clients__grid      { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .footer__grid       { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom     { flex-direction: column; gap: 12px; text-align: center; }
  .section            { padding: 64px 0; }
  .hero__stats        { gap: 24px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__title        { font-size: 2.2rem; }
  .hero__actions      { flex-direction: column; }
  .btn                { justify-content: center; }
}

/* ============================================================
   BUTTONS EXTRA
   ============================================================ */
.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.4);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   APPROCHE — ACTIONS
   ============================================================ */
.approche__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================================
   ENJEUX
   ============================================================ */
.enjeux__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.enjeu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.enjeu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.enjeu-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(45,111,163,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.enjeu-card__icon svg { width: 26px; height: 26px; }
.enjeu-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.enjeu-card p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.enjeu-card__link {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .01em;
  transition: color var(--transition);
  margin-top: auto;
}
.enjeu-card__link:hover { color: var(--navy); }

/* ============================================================
   PHOTO BANNER
   ============================================================ */
.photo-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.photo-banner--short { height: 260px; }
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(27,58,107,.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.photo-banner__quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 760px;
  line-height: 1.55;
  letter-spacing: .01em;
}

/* ============================================================
   ARTICLES LINKEDIN
   ============================================================ */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.article-card__tag {
  display: inline-block;
  background: rgba(45,111,163,.1);
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
}
.article-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.article-card__desc {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.article-card__read {
  font-size: .78rem;
  color: var(--text-light);
  font-style: italic;
}
.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--transition), gap var(--transition);
}
.article-card__link:hover {
  color: var(--navy);
  gap: 10px;
}
.articles__cta {
  text-align: center;
}

/* ============================================================
   PAGE HEADER (parcours.html)
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: 140px 0 64px;
  text-align: center;
}
.page-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 12px 0 16px;
}
.page-header__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto;
}

/* Nav active state */
.nav__active {
  color: var(--gold) !important;
  font-weight: 600;
}

/* Parcours CTA */
.parcours__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT — CARTES
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto 32px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.contact-card--linkedin:hover { border-color: #0077B5; }
.contact-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(45,111,163,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-card--linkedin .contact-card__icon {
  background: rgba(0,119,181,.1);
  color: #0077B5;
}
.contact-card__icon svg { width: 32px; height: 32px; }
.contact-card__body { flex: 1; }
.contact-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-card__body p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 10px;
}
.contact-card__action {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
}
.contact-card--linkedin .contact-card__action { color: #0077B5; }
.contact-card__arrow {
  color: var(--text-light);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}
.contact-card__arrow svg { width: 22px; height: 22px; }
.contact-card:hover .contact-card__arrow {
  color: var(--blue);
  transform: translateX(4px);
}
.contact-card--linkedin:hover .contact-card__arrow { color: #0077B5; }
.contact__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* ============================================================
   RESPONSIVE — NOUVEAUX ÉLÉMENTS
   ============================================================ */
@media (max-width: 1024px) {
  .enjeux__grid   { grid-template-columns: repeat(2, 1fr); }
  .articles__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards  { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 768px) {
  .enjeux__grid     { grid-template-columns: 1fr; }
  .articles__grid   { grid-template-columns: 1fr; }
  .contact-card     { flex-direction: column; text-align: center; padding: 28px 20px; }
  .contact-card__arrow { display: none; }
  .photo-banner     { height: 260px; }
  .photo-banner--short { height: 200px; }
  .approche__actions { flex-direction: column; }
  .photo-banner__quote { font-size: 1rem; }
}

/* ============================================================
   DIAGNOSTIC CTA
   ============================================================ */
.diag-cta {
  padding: 0;
}
.diag-cta__inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.diag-cta__label {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.diag-cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.diag-cta__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  max-width: 520px;
}
.diag-cta__btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .diag-cta__inner {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
    gap: 28px;
  }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stats-strip__item {
  text-align: center;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats-strip__num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stats-strip__label {
  font-size: .85rem;
  color: var(--text-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stats-strip__divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .stats-strip { padding: 24px 0; }
  .stats-strip__grid { gap: 0; flex-wrap: nowrap; }
  .stats-strip__item { padding: 0; flex: 1; min-width: 0; }
  .stats-strip__num { font-size: 1.6rem; }
  .stats-strip__label { font-size: .6rem; letter-spacing: .03em; }
  .stats-strip__divider { height: 36px; flex-shrink: 0; }
}

/* ============================================================
   ENJEUX — BORDURES COLORÉES
   ============================================================ */
.enjeu-card--1 { border-top: 3px solid var(--navy); }
.enjeu-card--2 { border-top: 3px solid #c0392b; }
.enjeu-card--3 { border-top: 3px solid var(--gold); }
.enjeu-card--4 { border-top: 3px solid var(--blue); }

.enjeu-card--1 .enjeu-card__icon { background: rgba(27,58,107,.1); color: var(--navy); }
.enjeu-card--2 .enjeu-card__icon { background: rgba(192,57,43,.1); color: #c0392b; }
.enjeu-card--3 .enjeu-card__icon { background: rgba(201,168,76,.12); color: var(--gold-dark); }
.enjeu-card--4 .enjeu-card__icon { background: rgba(45,111,163,.1); color: var(--blue); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
