/* ============================================================
   UICF — Université Internationale Clairefontaine
   Collegiate design system · navy + gold (Anglo-Saxon) + bordeaux (LMD)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy-900: #0f1c33;
  --navy: #16263f;
  --navy-700: #1f3557;
  --navy-600: #2a466e;
  --ink: #1b2230;
  --slate: #5a6478;
  --slate-light: #8b93a4;

  --gold: #b5882f;
  --gold-bright: #cda04a;
  --gold-soft: #f3ead7;

  --bordeaux: #7c2433;
  --bordeaux-bright: #9c3343;
  --bordeaux-soft: #f3e2e4;

  --paper: #faf8f3;
  --paper-2: #f3efe6;
  --white: #ffffff;
  --line: #e4ded2;
  --line-strong: #d4ccba;

  --shadow-sm: 0 2px 8px rgba(16,28,51,.06);
  --shadow-md: 0 12px 30px rgba(16,28,51,.10);
  --shadow-lg: 0 24px 60px rgba(16,28,51,.16);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, sans-serif;

  --container: 1240px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.12; margin: 0; color: var(--navy); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.bordeaux { color: var(--bordeaux); }
.eyebrow.bordeaux::before { background: var(--bordeaux); }
.eyebrow.light { color: var(--gold-bright); }
.eyebrow.light::before { background: var(--gold-bright); }

.h-display { font-size: clamp(34px, 5vw, 60px); letter-spacing: -.01em; }
.h-section { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.01em; }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--slate); line-height: 1.6; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: .01em;
  padding: 14px 26px; border-radius: 4px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 8px 20px rgba(181,136,47,.28); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-bordeaux { background: var(--bordeaux); color: #fff; box-shadow: 0 8px 20px rgba(124,36,51,.25); }
.btn-bordeaux:hover { background: var(--bordeaux-bright); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: #fff; border-color: var(--line-strong); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.arrow::after { content: '→'; font-size: 1.05em; transition: transform .2s ease; }
.btn:hover .arrow::after, a:hover > .arrow::after { transform: translateX(3px); }

/* ════════════ HEADER ════════════ */
.topbar {
  background: var(--navy-900); color: #c3cee0;
  font-size: 13px; font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar-left { display: flex; gap: 22px; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { color: #c3cee0; transition: color .2s; }
.topbar-right a:hover { color: #fff; }

.lang {
  display: inline-flex; border: 1px solid rgba(255,255,255,.25); border-radius: 4px; overflow: hidden;
}
.lang button {
  background: transparent; border: none; color: #97a3ba; font-family: var(--sans);
  font-weight: 700; font-size: 12px; padding: 4px 10px; cursor: pointer; transition: all .2s;
}
.lang button.active { background: var(--gold); color: #fff; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,243,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-chip {
  width: 52px; height: 52px; border-radius: 50%; background: #fff;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
}
.brand-chip img { width: 92%; height: 92%; object-fit: contain; }
.brand-name {
  display: inline-block; white-space: nowrap; font-family: var(--serif); font-weight: 800;
  font-size: 17px; line-height: 1.05; letter-spacing: -.01em;
}
.brand-name .bn1 { color: #1f6fb8; } /* bleu du logo */
.brand-name .bn2 { color: #e1322a; } /* rouge du logo */

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  font-weight: 600; font-size: 15px; color: var(--ink); padding: 10px 13px; border-radius: 4px;
  position: relative; transition: color .2s; white-space: nowrap;
}
.nav > a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav > a:hover { color: var(--navy); }
.nav > a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }

/* mobile drawer */
.drawer { display: none; }

/* ════════════ HERO ════════════ */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(15,28,51,.94) 0%, rgba(15,28,51,.74) 42%, rgba(15,28,51,.32) 100%),
    linear-gradient(0deg, rgba(15,28,51,.6), rgba(15,28,51,0) 40%);
}
.hero-inner { position: relative; z-index: 1; padding: 104px 0 84px; max-width: 760px; }
.hero h1 { color: #fff; font-size: clamp(38px, 5.4vw, 66px); font-weight: 800; }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-sub { margin: 22px 0 34px; font-size: clamp(17px, 1.5vw, 21px); color: rgba(255,255,255,.86); max-width: 620px; line-height: 1.6; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-devise {
  font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--gold-bright);
  margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.hero-devise::before { content: ''; width: 34px; height: 1.5px; background: var(--gold-bright); }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1;
  color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after { content: '↓'; font-size: 16px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ════════════ REASSURANCE ════════════ */
.reassure { background: var(--navy); color: #fff; }
.reassure .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.reassure-item { padding: 34px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.reassure-item:last-child { border-right: none; }
.reassure-num { font-family: var(--serif); font-size: 40px; font-weight: 800; color: var(--gold-bright); line-height: 1; }
.reassure-label { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.45; }

/* ════════════ PATHWAYS ════════════ */
.pathways { background: var(--paper-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .h-section { margin-top: 16px; }
.section-head p { margin-top: 16px; }

.pathway-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pathway {
  position: relative; background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.pathway:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pathway-top { height: 6px; }
.pathway.gold .pathway-top { background: linear-gradient(90deg, var(--gold), var(--gold-bright)); }
.pathway.bordeaux .pathway-top { background: linear-gradient(90deg, var(--bordeaux), var(--bordeaux-bright)); }
.pathway-media { height: 180px; position: relative; overflow: hidden; }
.pathway-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pathway:hover .pathway-media img { transform: scale(1.05); }
.pathway-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 4px; color: #fff;
}
.pathway.gold .pathway-badge { background: var(--gold); }
.pathway.bordeaux .pathway-badge { background: var(--bordeaux); }
.pathway-body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.pathway-body h3 { font-size: 27px; margin-bottom: 6px; }
.pathway.gold h3 { color: var(--gold); }
.pathway.bordeaux h3 { color: var(--bordeaux); }
.pathway-campus { font-size: 14px; font-weight: 700; color: var(--slate); letter-spacing: .02em; margin-bottom: 16px; }
.pathway-feat { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.pathway-feat li { display: flex; gap: 10px; font-size: 15.5px; color: var(--ink); align-items: flex-start; }
.pathway-feat li::before { content: '✓'; font-weight: 800; flex-shrink: 0; }
.pathway.gold .pathway-feat li::before { color: var(--gold); }
.pathway.bordeaux .pathway-feat li::before { color: var(--bordeaux); }
.pathway-body .btn { margin-top: auto; align-self: flex-start; }

/* ════════════ PROGRAMS ════════════ */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prog-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.prog-media { height: 158px; overflow: hidden; position: relative; }
.prog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prog-card:hover .prog-media img { transform: scale(1.05); }
.prog-school {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 16px;
  background: linear-gradient(0deg, rgba(15,28,51,.9), transparent);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.prog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.prog-body h3 { font-size: 21px; line-height: 1.2; margin-bottom: 12px; }
.prog-tag { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.prog-careers { font-size: 14.5px; color: var(--slate); line-height: 1.55; }
.prog-careers strong { color: var(--ink); font-weight: 700; }
.prog-link { margin-top: 18px; font-weight: 700; color: var(--navy); display: inline-flex; gap: 7px; align-items: center; font-size: 15px; }

/* ════════════ WHY ════════════ */
.why { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.why .section-head .h-section, .why .section-head p { color: #fff; }
.why .section-head p { color: rgba(255,255,255,.8); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  padding: 26px 20px; text-align: center; transition: background .25s, transform .25s;
}
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(205,160,74,.16); display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.why-card h4 { color: var(--gold-bright); font-size: 17px; font-family: var(--sans); font-weight: 700; margin-bottom: 7px; }
.why-card p { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.5; margin: 0; }
.why-note {
  text-align: center; margin-top: 36px; font-size: 14.5px; color: rgba(255,255,255,.7);
}
.why-note strong { color: var(--gold-bright); }

/* ════════════ COMPARISON ════════════ */
.compare-wrap { max-width: 960px; margin: 0 auto; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.compare { width: 100%; border-collapse: collapse; background: #fff; font-size: 15.5px; }
.compare thead th { padding: 22px 24px; text-align: left; background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 18px; vertical-align: top; }
.compare thead th .sys { display: flex; align-items: center; gap: 9px; font-size: 18px; }
.compare thead th small { display: block; font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; opacity: .8; }
.dot-g { width: 11px; height: 11px; border-radius: 50%; background: var(--gold-bright); display: inline-block; flex-shrink: 0; }
.dot-b { width: 11px; height: 11px; border-radius: 50%; background: var(--bordeaux-bright); display: inline-block; flex-shrink: 0; }
.compare td { padding: 16px 24px; border-top: 1px solid var(--line); vertical-align: top; }
.compare tbody tr td:first-child { font-weight: 700; color: var(--navy); font-family: var(--sans); width: 22%; background: var(--paper); }
.compare td.gold-col { background: #fdfaf3; }
.compare td.bord-col { background: #fcf6f6; }
.compare-foot { text-align: center; margin-top: 22px; font-size: 14.5px; color: var(--slate); }

/* ════════════ INTERNATIONAL ════════════ */
.intl { background: var(--paper-2); }
.intl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.partner {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 20px 22px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 14px; transition: transform .2s, box-shadow .2s;
}
.partner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.partner-flag { font-size: 26px; }
.partner-name { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--navy); line-height: 1.2; }
.partner-loc { font-size: 12.5px; color: var(--slate); font-weight: 600; }
.intl-inst { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: #fff; border: 1px solid var(--line-strong); border-radius: 20px; padding: 6px 15px; font-size: 13px; font-weight: 600; color: var(--slate); }
.intl-visual { position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }
.intl-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ════════════ EMPLOYABILITY ════════════ */
.employ { background: var(--navy-900); color: #fff; }
.employ .section-head .h-section, .employ .section-head p { color: #fff; }
.employ .section-head p { color: rgba(255,255,255,.78); }
.jobs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 920px; margin: 0 auto; }
.job {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 6px;
  padding: 13px 20px; font-size: 15.5px; font-weight: 600; color: #fff; transition: all .2s;
}
.job:hover { background: var(--gold); border-color: var(--gold); }

/* ════════════ ILCF ════════════ */
.ilcf-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.ilcf-visual { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; position: relative; }
.ilcf-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ilcf-langs { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.lang-pill { background: var(--gold-soft); color: #7a5a18; border-radius: 6px; padding: 8px 16px; font-weight: 700; font-size: 15px; }
.ilcf-tests { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 24px; }
.test-badge { border: 1.5px solid var(--navy); color: var(--navy); border-radius: 6px; padding: 9px 18px; font-weight: 700; font-size: 15px; }
.ilcf-accred {
  background: var(--paper-2); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0;
  padding: 16px 20px; font-size: 14.5px; color: var(--slate); margin-bottom: 26px;
}
.ilcf-accred strong { color: var(--navy); }

/* ════════════ TESTIMONIALS ════════════ */
.testi { background: var(--paper-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px;
  box-shadow: var(--shadow-sm); position: relative;
}
.testi-quote { font-family: var(--serif); font-size: 60px; color: var(--gold-soft); line-height: .6; position: absolute; top: 24px; right: 24px; }
.testi-text { font-size: 16px; color: var(--ink); line-height: 1.6; font-style: italic; margin-bottom: 22px; position: relative; z-index: 1; }
.testi-person { display: flex; align-items: center; gap: 13px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-name { font-weight: 700; color: var(--navy); font-size: 15.5px; }
.testi-prog { font-size: 12.5px; color: var(--slate); font-weight: 600; }
.testi-prog .tag-g { color: var(--gold); } .testi-prog .tag-b { color: var(--bordeaux); }

/* ════════════ NEWS ════════════ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-media { height: 180px; overflow: hidden; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-media img { transform: scale(1.05); }
.news-body { padding: 22px 24px 26px; }
.news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; font-size: 12.5px; }
.news-cat { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.news-date { color: var(--slate-light); }
.news-body h3 { font-size: 20px; line-height: 1.25; }
.news-body p { font-size: 14.5px; color: var(--slate); margin: 10px 0 0; }

/* ════════════ FINAL CTA ════════════ */
.cta-final { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-final-media { position: absolute; inset: 0; z-index: 0; }
.cta-final-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-final-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(15,28,51,.92), rgba(15,28,51,.86)); }
.cta-final .container { position: relative; z-index: 1; padding: 96px 32px; }
.cta-final h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); }
.cta-final .devise { font-family: var(--serif); font-style: italic; color: var(--gold-bright); font-size: 19px; margin-bottom: 18px; }
.cta-final p { color: rgba(255,255,255,.84); max-width: 560px; margin: 18px auto 30px; font-size: 18px; }
.cta-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════ FOOTER ════════════ */
.footer { background: #11192a; color: #aeb8c9; font-size: 14.5px; }
.footer-top { padding: 64px 0 44px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.footer-chip { width: 50px; height: 50px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.footer-chip img { width: 92%; height: 92%; object-fit: contain; }
.footer-brand strong { font-family: var(--serif); color: #fff; font-size: 17px; display: block; line-height: 1.1; }
.footer-brand span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-bright); }
.footer p { line-height: 1.7; color: #8c97a9; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: #aeb8c9; transition: color .2s; }
.footer ul a:hover { color: var(--gold-bright); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact span { display: flex; gap: 9px; align-items: flex-start; color: #aeb8c9; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; transition: all .2s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #74808f; }
.footer-bottom .lang { border-color: rgba(255,255,255,.2); }

/* ════════════ REVEAL ════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1200px) {
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .prog-grid, .news-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .reassure .container { grid-template-columns: 1fr 1fr; }
  .reassure-item:nth-child(2) { border-right: none; }
  .reassure-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .pathway-grid, .intl-grid, .ilcf-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .topbar-left span:nth-child(2) { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .brand-name { font-size: 14px; }
  .brand-chip { width: 46px; height: 46px; }
  .why-grid, .prog-grid, .news-grid, .testi-grid { grid-template-columns: 1fr; }
  .compare { font-size: 13.5px; }
  .compare thead th, .compare td { padding: 13px 14px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .topbar-left { gap: 12px; }
  .topbar-left span:nth-child(3) { display: none; }
}
@media (max-width: 400px) {
  .brand-name { font-size: 12px; }
  .brand { gap: 9px; }
}

/* drawer mobile */
.drawer {
  position: fixed; inset: 0; z-index: 200; background: rgba(15,28,51,.5); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; top: 0; right: 0; width: min(320px, 84vw); height: 100%; background: var(--paper);
  padding: 26px 24px; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-lg);
}
.drawer.open .drawer-panel { transform: none; }
.drawer-panel a { padding: 14px 12px; font-weight: 600; font-size: 17px; color: var(--navy); border-bottom: 1px solid var(--line); }
.drawer-close { align-self: flex-end; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--navy); margin-bottom: 8px; }
.drawer-panel .btn { margin-top: 16px; }

/* ════════════════════════════════════════════════
   PAGE BANNER (interior pages)
   ════════════════════════════════════════════════ */
.page-banner { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.page-banner::before {
  content: ''; position: absolute; inset: 0; opacity: .16;
  background-image: url("https://images.unsplash.com/photo-1562774053-701939374585?w=1600&q=80");
  background-size: cover; background-position: center;
}
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, var(--navy) 30%, rgba(22,38,63,.7)); }
.page-banner .container { position: relative; z-index: 1; padding: 64px 32px 58px; }
.page-banner .crumb { font-size: 13px; color: rgba(255,255,255,.66); margin-bottom: 14px; letter-spacing: .04em; }
.page-banner .crumb a { color: var(--gold-bright); }
.page-banner h1 { color: #fff; font-size: clamp(32px, 4.2vw, 50px); }
.page-banner h1 em { font-style: italic; color: var(--gold-bright); }
.page-banner p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 620px; margin: 16px 0 0; line-height: 1.6; }

/* ════════════════════════════════════════════════
   APPLICATION FORM
   ════════════════════════════════════════════════ */
.apply-section { padding: 64px 0 92px; background: var(--paper); }
.apply-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.apply-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md); overflow: hidden; }

/* stepper */
.stepper { display: flex; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.step-pip { flex: 1; padding: 18px 12px; text-align: center; position: relative; }
.step-pip:not(:last-child)::after { content: ''; position: absolute; top: 30px; right: -1px; width: 1px; height: 24px; background: var(--line-strong); }
.step-pip .pip-num {
  width: 34px; height: 34px; border-radius: 50%; margin: 0 auto 7px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 15px; background: #fff; color: var(--slate); border: 2px solid var(--line-strong);
  transition: all .25s;
}
.step-pip .pip-label { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-light); transition: color .25s; }
.step-pip.active .pip-num { background: var(--gold); border-color: var(--gold); color: #fff; box-shadow: 0 4px 12px rgba(181,136,47,.35); }
.step-pip.active .pip-label { color: var(--navy); }
.step-pip.done .pip-num { background: var(--navy); border-color: var(--navy); color: #fff; }
.step-pip.done .pip-num::before { content: '✓'; }
.step-pip.done .pip-num span { display: none; }

.apply-body { padding: 36px 40px 32px; }
.form-step { display: none; animation: fadeStep .35s ease; }
.form-step.active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.step-title { font-size: 24px; margin-bottom: 6px; }
.step-intro { color: var(--slate); font-size: 15px; margin: 0 0 26px; }

/* pathway radio cards */
.pick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pick {
  position: relative; border: 2px solid var(--line); border-radius: 10px; padding: 24px 22px; cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s; background: #fff; display: block;
}
.pick:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick .pick-sys { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.pick.gold .pick-sys { color: var(--gold); }
.pick.bordeaux .pick-sys { color: var(--bordeaux); }
.pick h4 { font-size: 21px; margin-bottom: 6px; color: var(--navy); }
.pick p { font-size: 13.5px; color: var(--slate); margin: 0; line-height: 1.5; }
.pick .pick-check { position: absolute; top: 16px; right: 16px; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; transition: all .2s; }
.pick.gold input:checked ~ .pick-check { background: var(--gold); border-color: var(--gold); }
.pick.bordeaux input:checked ~ .pick-check { background: var(--bordeaux); border-color: var(--bordeaux); }
.pick input:checked ~ .pick-check::after { content: '✓'; }
.pick.gold input:checked { }
.pick.gold:has(input:checked) { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,136,47,.15); }
.pick.bordeaux:has(input:checked) { border-color: var(--bordeaux); box-shadow: 0 0 0 3px rgba(124,36,51,.15); }

/* fields */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: var(--bordeaux); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line-strong); border-radius: 7px; padding: 12px 14px; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,136,47,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 96px; }
.field .hint { font-size: 12px; color: var(--slate-light); margin-top: 5px; }
.field.error input, .field.error select { border-color: var(--bordeaux); }
.field .err-msg { display: none; font-size: 12px; color: var(--bordeaux); margin-top: 5px; font-weight: 600; }
.field.error .err-msg { display: block; }

/* segmented radios */
.seg { display: flex; gap: 10px; flex-wrap: wrap; }
.seg label {
  border: 1.5px solid var(--line-strong); border-radius: 7px; padding: 11px 18px; cursor: pointer; font-weight: 600; font-size: 14.5px;
  color: var(--slate); background: var(--paper); transition: all .2s; margin: 0; flex-direction: row;
}
.seg input { position: absolute; opacity: 0; }
.seg label:has(input:checked) { border-color: var(--gold); background: var(--gold-soft); color: #7a5a18; }

/* upload */
.upload-list { display: flex; flex-direction: column; gap: 12px; }
.upload {
  display: flex; align-items: center; gap: 16px; border: 1.5px dashed var(--line-strong); border-radius: 9px;
  padding: 15px 18px; background: var(--paper); transition: border-color .2s, background .2s; cursor: pointer; position: relative;
}
.upload:hover { border-color: var(--gold); background: #fff; }
.upload input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload .up-ic { width: 42px; height: 42px; border-radius: 8px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.upload .up-main { flex: 1; min-width: 0; }
.upload .up-title { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.upload .up-sub { font-size: 12.5px; color: var(--slate); }
.upload .up-status { font-size: 12.5px; font-weight: 700; color: var(--slate-light); white-space: nowrap; }
.upload.filled { border-style: solid; border-color: #4a8d5f; background: #f0f8f2; }
.upload.filled .up-status { color: #2f7d4a; }
.upload.filled .up-ic { background: #2f7d4a; }

/* review */
.review-group { margin-bottom: 22px; }
.review-group h5 { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin: 0 0 10px; font-weight: 700; }
.review-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.review-list .ri { display: flex; flex-direction: column; padding: 9px 0; border-bottom: 1px solid var(--line); }
.review-list .ri.full { grid-column: 1 / -1; }
.review-list .ri .rk { font-size: 12px; color: var(--slate-light); font-weight: 600; }
.review-list .ri .rv { font-size: 15px; color: var(--ink); font-weight: 600; }
.consent { display: flex; gap: 12px; align-items: flex-start; background: var(--paper-2); border-radius: 9px; padding: 16px 18px; margin: 24px 0 6px; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.consent label { font-size: 13.5px; color: var(--slate); line-height: 1.5; }

/* form nav */
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-nav .spacer { flex: 1; }

/* success */
.apply-success { display: none; text-align: center; padding: 56px 40px; }
.apply-success.show { display: block; animation: fadeStep .4s ease; }
.success-ic { width: 84px; height: 84px; border-radius: 50%; background: #eaf6ee; color: #2f7d4a; display: flex; align-items: center; justify-content: center; font-size: 42px; margin: 0 auto 22px; border: 3px solid #b9e0c5; }
.apply-success h2 { font-size: 30px; margin-bottom: 12px; }
.apply-success p { color: var(--slate); font-size: 16px; max-width: 480px; margin: 0 auto 8px; line-height: 1.6; }
.apply-ref { display: inline-block; margin-top: 18px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px; padding: 12px 22px; font-family: var(--serif); font-size: 18px; color: var(--navy); font-weight: 700; letter-spacing: .04em; }

/* aside */
.apply-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px 24px; box-shadow: var(--shadow-sm); }
.aside-card.navy { background: var(--navy); color: #fff; }
.aside-card h4 { font-size: 18px; margin-bottom: 16px; }
.aside-card.navy h4 { color: #fff; }
.proc-step { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.proc-step:last-child { border-bottom: none; }
.proc-num { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-soft); color: #7a5a18; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; font-family: var(--serif); }
.proc-step .ps-t { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.proc-step .ps-d { font-size: 13px; color: var(--slate); line-height: 1.45; margin-top: 2px; }
.aside-card.navy .aside-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,.86); }
.aside-card.navy .aside-contact span { display: flex; gap: 9px; }
.aside-note { font-size: 13.5px; color: var(--slate); line-height: 1.55; }
.aside-note strong { color: var(--navy); }

@media (max-width: 980px) {
  .apply-wrap { grid-template-columns: 1fr; }
  .apply-aside { position: static; flex-direction: column; }
}
@media (max-width: 600px) {
  .apply-body { padding: 26px 22px; }
  .field-grid, .pick-grid, .review-list { grid-template-columns: 1fr; }
  .stepper { flex-wrap: wrap; }
  .step-pip { flex: 1 0 33%; }
  .step-pip .pip-label { display: none; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; }
}

/* ════════════════════════════════════════════════
   FRAIS DE SCOLARITÉ & BOURSES
   ════════════════════════════════════════════════ */
.fees { background: var(--paper-2); }
.fees-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 34px; align-items: start; }
.fees-table-wrap { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.fees-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 16px; }
.fees-table thead th { padding: 18px 22px; text-align: left; background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 16px; }
.fees-table thead th:not(:first-child) { text-align: right; }
.fees-table thead th small { display: block; font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; opacity: .78; margin-top: 3px; }
.fees-table td { padding: 15px 22px; border-top: 1px solid var(--line); }
.fees-table td:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
.fees-table tbody tr td:first-child { font-weight: 700; color: var(--navy); }
.fees-table .price { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--navy); }
.fees-table .price-aff { color: var(--gold); }
.fee-foot { background: var(--paper); padding: 14px 22px; font-size: 13.5px; color: var(--slate); }
.fee-foot strong { color: var(--navy); }

.fee-side { display: flex; flex-direction: column; gap: 18px; }
.annex-card, .bourse-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px 24px; box-shadow: var(--shadow-sm); }
.annex-card h4, .bourse-card h4 { font-size: 18px; margin-bottom: 14px; color: var(--navy); }
.annex-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.annex-list li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--slate); }
.annex-list li:first-child { border-top: none; }
.annex-list li b { color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
.bourse-card { background: var(--navy); color: #fff; }
.bourse-card h4 { color: #fff; }
.bourse-card p { font-size: 14.5px; color: rgba(255,255,255,.82); margin: 0 0 14px; line-height: 1.55; }
.bourse-pts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.bourse-pts li { display: flex; gap: 11px; font-size: 14.5px; color: rgba(255,255,255,.9); align-items: flex-start; }
.bourse-pts li::before { content: '✦'; color: var(--gold-bright); flex-shrink: 0; }

/* ════════════════════════════════════════════════
   CALENDRIER (timeline)
   ════════════════════════════════════════════════ */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
.tl-step { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px 26px; box-shadow: var(--shadow-sm); position: relative; border-top: 4px solid var(--gold); }
.tl-num { font-family: var(--serif); font-weight: 800; font-size: 15px; color: #fff; background: var(--gold); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tl-when { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tl-step h4 { font-size: 19px; color: var(--navy); line-height: 1.25; }
.tl-step p { font-size: 14px; color: var(--slate); margin: 9px 0 0; line-height: 1.5; }

/* ════════════════════════════════════════════════
   PIÈCES À FOURNIR (checklist)
   ════════════════════════════════════════════════ */
.docs { background: var(--navy); color: #fff; }
.docs .section-head .h-section, .docs .section-head p { color: #fff; }
.docs .section-head p { color: rgba(255,255,255,.8); }
.docs-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; max-width: 980px; margin: 0 auto; }
.doc-item { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 15px; color: rgba(255,255,255,.9); align-items: flex-start; line-height: 1.45; }
.doc-item .doc-qty { flex-shrink: 0; width: 30px; height: 30px; border-radius: 7px; background: rgba(205,160,74,.18); color: var(--gold-bright); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); }
.docs-note { text-align: center; margin-top: 32px; font-size: 14.5px; color: rgba(255,255,255,.72); }
.docs-note strong { color: var(--gold-bright); }

/* ════════════════════════════════════════════════
   VIE DE CAMPUS
   ════════════════════════════════════════════════ */
.campus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.campus-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.campus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.campus-ic { width: 50px; height: 50px; border-radius: 12px; background: var(--gold-soft); color: #7a5a18; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.campus-card h4 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.campus-card p { font-size: 14px; color: var(--slate); margin: 0; line-height: 1.55; }

@media (max-width: 980px) {
  .fees-grid { grid-template-columns: 1fr; }
  .campus-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .timeline { grid-template-columns: 1fr; }
  .docs-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .campus-grid { grid-template-columns: 1fr; }
  .fees-table { font-size: 14px; }
  .fees-table thead th, .fees-table td { padding: 12px 14px; }
}

/* ════════════════════════════════════════════════
   NAV ACTIVE STATE
   ════════════════════════════════════════════════ */
.nav > a.active { color: var(--navy); }
.nav > a.active::after { transform: scaleX(1); }
.drawer-panel a.active { color: var(--gold); }
.footer-devise { font-family: var(--serif); font-style: italic; color: var(--gold-bright); font-size: 15px; margin-top: 16px; }

/* ════════════════════════════════════════════════
   PAGE HERO (bannière des pages intérieures)
   ════════════════════════════════════════════════ */
.page-hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 88% -10%, rgba(205,160,74,.20), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy) 60%);
}
.page-hero .container { position: relative; z-index: 1; padding: 78px 32px 64px; }
.page-hero .crumb { font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,.62); margin-bottom: 18px; display: flex; gap: 9px; align-items: center; }
.page-hero .crumb a { color: rgba(255,255,255,.62); transition: color .2s; }
.page-hero .crumb a:hover { color: var(--gold-bright); }
.page-hero .crumb span { color: var(--gold-bright); }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; max-width: 17ch; letter-spacing: -.01em; }
.page-hero .page-sub { margin-top: 20px; font-size: clamp(17px, 1.5vw, 20px); color: rgba(255,255,255,.82); max-width: 62ch; line-height: 1.6; }
.page-hero .eyebrow { color: var(--gold-bright); margin-bottom: 18px; }
.page-hero .eyebrow::before { background: var(--gold-bright); }

/* ════════════════════════════════════════════════
   10 RAISONS (numbered grid)
   ════════════════════════════════════════════════ */
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.reason-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 26px 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.reason-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.reason-num {
  flex-shrink: 0; font-family: var(--serif); font-weight: 800; font-size: 22px;
  color: var(--gold); width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-soft); display: flex; align-items: center; justify-content: center;
}
.reason-card h4 { font-size: 18px; color: var(--navy); margin-bottom: 7px; line-height: 1.25; }
.reason-card p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.55; }

/* ════════════════════════════════════════════════
   BONUS (liste à coches sur navy)
   ════════════════════════════════════════════════ */
.bonus { background: var(--navy); color: #fff; }
.bonus .section-head .h-section { color: #fff; }
.bonus-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.bonus-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 26px 22px; text-align: center;
}
.bonus-card .bonus-ic { font-size: 26px; margin-bottom: 12px; }
.bonus-card p { font-size: 14px; color: rgba(255,255,255,.86); margin: 0; line-height: 1.5; }

/* ════════════════════════════════════════════════
   CRITÈRES D'ADMISSION (checklist sur fond clair)
   ════════════════════════════════════════════════ */
.criteria { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.crit-item {
  display: flex; gap: 15px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.crit-check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: var(--gold);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
}
.crit-item p { margin: 0; font-size: 15.5px; color: var(--ink); line-height: 1.5; }
.crit-item p b { color: var(--navy); }

/* Bandeau frais de dossier */
.fee-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--gold-soft); border: 1px solid var(--line-strong); border-left: 5px solid var(--gold);
  border-radius: 10px; padding: 28px 32px; max-width: 920px; margin: 40px auto 0;
}
.fee-banner .fb-amount { font-family: var(--serif); font-weight: 800; font-size: 32px; color: var(--navy); white-space: nowrap; }
.fee-banner p { margin: 0; font-size: 15px; color: var(--slate); max-width: 46ch; }

/* ════════════════════════════════════════════════
   VIE ÉTUDIANTE (grandes cartes)
   ════════════════════════════════════════════════ */
.life-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.life-card {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 32px 32px;
  box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s;
}
.life-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.life-ic { width: 64px; height: 64px; border-radius: 16px; background: var(--gold-soft); color: #7a5a18; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.life-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.life-card p { margin: 0; font-size: 15.5px; color: var(--slate); line-height: 1.6; }
.life-card ul { margin: 12px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.life-card ul li { background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; font-size: 13px; color: var(--navy); font-weight: 600; }

/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 34px 34px; box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 21px; color: var(--navy); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.contact-card h3 .ci { width: 42px; height: 42px; border-radius: 11px; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; flex-direction: column; gap: 2px; }
.contact-row .cl-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.contact-row .cl-value { font-size: 17px; color: var(--ink); font-weight: 600; }
.contact-row a.cl-value { transition: color .2s; }
.contact-row a.cl-value:hover { color: var(--gold); }
.contact-hours { display: flex; flex-direction: column; gap: 12px; }
.hours-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line); }
.hours-row:first-child { border-top: none; }
.hours-row .hr-day { font-weight: 700; color: var(--navy); }
.hours-row .hr-time { color: var(--slate); font-variant-numeric: tabular-nums; }
.contact-map { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 320px; background: var(--paper-2); }
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.contact-cta { background: var(--navy); color: #fff; border-radius: 14px; padding: 44px 40px; text-align: center; margin-top: 26px; }
.contact-cta h2 { color: #fff; }
.contact-cta p { color: rgba(255,255,255,.82); max-width: 56ch; margin: 14px auto 26px; }

@media (max-width: 900px) {
  .reasons-grid, .criteria, .life-grid, .contact-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .reason-card { padding: 22px 22px; gap: 16px; }
  .life-card { grid-template-columns: 1fr; }
  .fee-banner { flex-direction: column; align-items: flex-start; }
}

