/* ===================================
   WEBSITE 02 - HEALTHCARE & MEDICAL FOCUS
   Design: Teal/Mint + White + Clinical green
   Font: Nunito + Merriweather
   =================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal: #0B7A75;
  --teal-dark: #065E5A;
  --teal-light: #E6F7F6;
  --mint: #3DBDB8;
  --green: #27AE60;
  --navy: #1A2B3C;
  --white: #FFFFFF;
  --gray: #F4F7F9;
  --text: #2D3748;
  --text-muted: #718096;
  --border: #E2E8F0;
  --shadow: 0 2px 16px rgba(11,122,117,0.10);
  --shadow-lg: 0 8px 40px rgba(11,122,117,0.15);
  --radius: 16px;
  --transition: 0.3s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Merriweather', serif; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

.tag-medical { display: inline-block; background: var(--teal-light); color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.tag-medical.center { display: block; text-align: center; }
.section-title { font-size: clamp(26px, 4vw, 42px); color: var(--navy); margin-bottom: 16px; }
.section-title.center { text-align: center; }
.section-intro { color: var(--text-muted); font-size: 17px; margin-bottom: 48px; }
.section-intro.center { text-align: center; }

/* NAV */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 2px solid var(--teal-light); transition: box-shadow var(--transition); padding: 0; }
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 8px; }
.brand-cross { width: 36px; height: 36px; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 22px; font-weight: 700; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-family: 'Merriweather', serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.brand-sub { font-size: 12px; color: var(--teal); font-weight: 700; letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text); font-size: 14px; font-weight: 700; transition: color var(--transition); }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--teal) !important; color: var(--white) !important; padding: 10px 20px; border-radius: 8px; }
.nav-cta:hover { background: var(--teal-dark) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); }

/* HERO - SPLIT */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 72px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 64px 64px 64px 48px; background: var(--white); }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--teal); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.pulse-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(39,174,96,0.4)} 50%{box-shadow:0 0 0 8px rgba(39,174,96,0)} }
.hero-left h1 { font-size: clamp(32px, 4vw, 52px); color: var(--navy); margin-bottom: 20px; }
.hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.pill { padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; }
.pill.green { background: rgba(39,174,96,0.12); color: var(--green); }
.pill.blue { background: rgba(11,122,117,0.12); color: var(--teal); }
.pill.teal { background: rgba(61,189,184,0.15); color: var(--mint); }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.cta-main { background: var(--teal); color: var(--white); padding: 16px 28px; border-radius: 10px; font-weight: 800; font-size: 16px; transition: var(--transition); }
.cta-main:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cta-outline { background: transparent; color: var(--teal); padding: 16px 24px; border-radius: 10px; font-weight: 700; font-size: 15px; border: 2px solid var(--teal); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.cta-outline:hover { background: var(--teal-light); }
.hero-social-proof { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--white); margin-left: -10px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.hero-social-proof span { font-size: 14px; color: var(--text-muted); }
.hero-right { position: relative; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-card { position: absolute; background: var(--white); border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-lg); }
.card-top { top: 10%; right: 32px; }
.card-bottom { bottom: 10%; left: 32px; }
.card-icon-wrap { font-size: 28px; }
.hero-card strong { display: block; font-size: 14px; color: var(--navy); font-weight: 800; }
.hero-card span { font-size: 12px; color: var(--text-muted); }

/* OBJECTIF */
.objectif { background: var(--gray); }
.objectif-top { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.objectif-top h2 { font-size: clamp(26px, 4vw, 40px); color: var(--navy); margin-bottom: 16px; }
.objectif-top p { color: var(--text-muted); font-size: 17px; }
.objectif-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.obj-card { background: var(--white); padding: 36px 28px; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform var(--transition); }
.obj-card:hover { transform: translateY(-4px); }
.obj-number { font-family: 'Merriweather', serif; font-size: 48px; font-weight: 700; color: var(--teal-light); margin-bottom: 12px; line-height: 1; }
.obj-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.obj-card p { color: var(--text-muted); font-size: 15px; }

/* ACTIVITES */
.activites { background: var(--white); }
.activites-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.activites-image-side { position: relative; border-radius: var(--radius); overflow: hidden; height: 520px; }
.activites-image-side img { width: 100%; height: 100%; object-fit: cover; }
.medical-tag { position: absolute; bottom: 20px; left: 20px; right: 20px; background: var(--teal); color: var(--white); padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 700; text-align: center; }
.activites-content h2 { font-size: clamp(26px, 3vw, 38px); color: var(--navy); margin-bottom: 14px; }
.intro-text { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }
.activity-list { display: flex; flex-direction: column; gap: 24px; }
.activity-item { display: flex; gap: 16px; align-items: flex-start; }
.activity-icon { font-size: 28px; flex-shrink: 0; background: var(--teal-light); padding: 10px; border-radius: 10px; }
.activity-item h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.activity-item p { color: var(--text-muted); font-size: 14px; }

/* PUBLIC */
.public { background: var(--teal-light); }
.public-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.public-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition); }
.public-card:hover { transform: translateY(-4px); }
.public-card.highlight { border-top: 4px solid var(--teal); }
.public-avatar { height: 200px; overflow: hidden; }
.public-avatar img { width: 100%; height: 100%; object-fit: cover; }
.public-card h3 { font-size: 18px; color: var(--navy); padding: 20px 24px 8px; }
.public-card p { padding: 0 24px 24px; color: var(--text-muted); font-size: 14px; }

/* PRÉREQUIS */
.prerequis { background: var(--white); }
.prerequis-content { max-width: 800px; margin: 0 auto; }
.prerequis-content h2 { font-size: clamp(26px, 4vw, 38px); color: var(--navy); margin-bottom: 36px; }
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.req-box { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-radius: 12px; }
.req-box.ok { background: rgba(39,174,96,0.07); border: 1px solid rgba(39,174,96,0.2); }
.req-box.info { background: var(--teal-light); border: 1px solid rgba(11,122,117,0.2); }
.req-icon { font-size: 24px; flex-shrink: 0; }
.req-box h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.req-box p { font-size: 14px; color: var(--text-muted); }

/* COMPÉTENCES */
.competences { background: var(--gray); }
.skills-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 960px; margin: 0 auto; }
.skills-col { display: flex; flex-direction: column; gap: 24px; }
.skill-item { display: flex; flex-direction: column; gap: 8px; }
.skill-item span { font-size: 14px; font-weight: 700; color: var(--navy); }
.skill-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.skill-bar::after { content: ''; display: block; height: 100%; background: linear-gradient(90deg, var(--teal), var(--mint)); border-radius: 4px; width: 0; transition: width 1s ease; }
.skill-bar.animated::after { width: var(--w); }

/* PROGRAMME */
.programme { background: var(--white); }
.programme-timeline { max-width: 900px; margin: 0 auto 48px; position: relative; }
.programme-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--teal-light); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px; align-items: start; }
.timeline-item.left .timeline-content { grid-column: 1; }
.timeline-item.right .timeline-content { grid-column: 2; grid-row: 1; }
.timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; background: var(--teal); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 4px var(--teal-light); }
.timeline-item { position: relative; }
.timeline-content { background: var(--gray); padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); }
.tl-tag { display: inline-block; background: var(--teal); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 800; margin-bottom: 10px; }
.timeline-content h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.timeline-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.programme-img-bar { border-radius: var(--radius); overflow: hidden; height: 300px; }
.programme-img-bar img { width: 100%; height: 100%; object-fit: cover; }

/* ÉVALUATION */
.evaluation { background: var(--navy); }
.eval-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.eval-header .tag-medical { background: rgba(230,247,246,0.15); color: var(--mint); }
.eval-header h2 { font-size: clamp(26px, 4vw, 38px); color: var(--white); margin-bottom: 14px; }
.eval-header p { color: rgba(255,255,255,0.65); }
.eval-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.eval-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 28px; border-radius: 14px; }
.eval-num { font-family: 'Merriweather', serif; font-size: 36px; font-weight: 700; color: var(--mint); opacity: 0.5; margin-bottom: 10px; }
.eval-card h3 { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.eval-card p { font-size: 14px; color: rgba(255,255,255,0.6); }

/* DÉBOUCHÉS */
.debouches { background: var(--gray); }
.debouches-map { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.map-left { border-radius: var(--radius); overflow: hidden; height: 520px; }
.map-left img { width: 100%; height: 100%; object-fit: cover; }
.map-right { display: flex; flex-direction: column; gap: 16px; }
.debouche-item { background: var(--white); padding: 24px; border-radius: 14px; display: flex; gap: 16px; align-items: flex-start; border: 2px solid transparent; transition: var(--transition); }
.debouche-item:hover, .debouche-item.active { border-color: var(--teal); }
.debouche-icon { font-size: 28px; flex-shrink: 0; }
.debouche-item h3 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.debouche-item p { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.debouche-stat { background: var(--teal-light); color: var(--teal); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; }

/* CAREER */
.remuneration { background: var(--white); }
.career-path { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: start; }
.career-arrow { font-size: 32px; color: var(--teal); align-self: center; }
.career-stage { background: var(--gray); padding: 32px 24px; border-radius: var(--radius); text-align: center; border: 2px solid transparent; transition: var(--transition); }
.career-stage.mid { background: var(--teal); border-color: var(--teal); }
.career-stage:hover { border-color: var(--teal); }
.career-icon { font-size: 40px; margin-bottom: 12px; }
.career-stage h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.career-stage.mid h3 { color: var(--white); }
.career-salary { font-family: 'Merriweather', serif; font-size: 26px; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.career-stage.mid .career-salary { color: rgba(255,255,255,0.9); }
.career-stage p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.career-stage.mid p { color: rgba(255,255,255,0.7); }
.career-stage ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 6px; }
.career-stage ul li { font-size: 13px; color: var(--text-muted); padding-left: 16px; position: relative; }
.career-stage ul li::before { content: '▸'; position: absolute; left: 0; color: var(--teal); }
.career-stage.mid ul li { color: rgba(255,255,255,0.75); }
.career-stage.mid ul li::before { color: rgba(255,255,255,0.5); }

/* MÉTHODES */
.methodes { background: var(--teal-light); }
.methodes-header { margin-bottom: 48px; }
.methodes-header h2 { font-size: clamp(26px, 4vw, 40px); color: var(--navy); }
.methodes-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.methode-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 400px; }
.methode-card img { width: 100%; height: 100%; object-fit: cover; }
.methode-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(11,122,117,0.9)); padding: 40px 28px 28px; }
.methode-overlay h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; }
.methode-overlay p { font-size: 14px; color: rgba(255,255,255,0.8); }
.methode-features { display: flex; flex-direction: column; gap: 24px; }
.feat { display: flex; gap: 16px; align-items: flex-start; background: var(--white); padding: 20px; border-radius: 12px; }
.feat-icon { font-size: 28px; flex-shrink: 0; }
.feat h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.feat p { font-size: 14px; color: var(--text-muted); }

/* ACCES */
.acces { background: var(--white); }
.acces-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.process-step { text-align: center; position: relative; }
.ps-icon { font-size: 40px; background: var(--teal-light); width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 16px; }
.ps-line { position: absolute; top: 36px; left: calc(50% + 36px); right: calc(-50% + 36px); height: 2px; background: var(--teal-light); }
.ps-line.last { display: none; }
.process-step h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); }
.access-note { background: var(--teal-light); padding: 24px; border-radius: 12px; }
.access-note p { font-size: 15px; color: var(--teal-dark); }

/* DELAIS */
.delais { background: var(--teal); padding: 64px 0; }
.delais-row { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.delais-row h2 { font-size: clamp(24px, 3vw, 36px); color: var(--white); text-align: center; }
.delais-cards { display: flex; gap: 24px; }
.delai-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 32px 28px; border-radius: var(--radius); text-align: center; flex: 1; }
.dc-icon { font-size: 36px; margin-bottom: 12px; }
.delai-card h3 { color: var(--white); margin-bottom: 10px; font-size: 18px; }
.delai-card p { color: rgba(255,255,255,0.75); font-size: 15px; }
.delai-card strong { color: var(--white); }

/* VALIDATION */
.validation { background: var(--gray); }
.validation-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.val-left { border-radius: var(--radius); overflow: hidden; height: 460px; }
.val-left img { width: 100%; height: 100%; object-fit: cover; }
.val-right h2 { font-size: clamp(26px, 3vw, 38px); color: var(--navy); margin-bottom: 28px; }
.val-diploma { background: var(--white); padding: 28px; border-radius: 14px; margin-bottom: 28px; border-left: 4px solid var(--teal); }
.diploma-badge { display: inline-block; background: var(--teal); color: var(--white); padding: 4px 16px; border-radius: 50px; font-size: 12px; font-weight: 800; margin-bottom: 10px; }
.val-diploma h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.val-diploma p { color: var(--text-muted); font-size: 15px; }
.val-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.val-list li { padding-left: 24px; position: relative; color: var(--text-muted); font-size: 15px; }
.val-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* TARIFS */
.tarifs { background: var(--white); }
.tarifs-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tarif-box { background: var(--gray); border-radius: var(--radius); padding: 36px 28px; border: 2px solid transparent; position: relative; transition: var(--transition); }
.tarif-box:hover { border-color: var(--teal); }
.tarif-box.popular { background: var(--navy); border-color: var(--teal); }
.tarif-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); padding: 4px 20px; border-radius: 50px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.tarif-format { font-size: 14px; font-weight: 800; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.tarif-box.popular .tarif-format { color: var(--mint); }
.tarif-mode { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.tarif-box.popular .tarif-mode { color: rgba(255,255,255,0.6); }
.tarif-price { font-family: 'Merriweather', serif; font-size: 48px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.tarif-box.popular .tarif-price { color: var(--white); }
.tarif-price span { font-size: 20px; color: var(--text-muted); }
.tarif-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.tarif-list li { font-size: 14px; color: var(--text); padding-left: 20px; position: relative; }
.tarif-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.tarif-box.popular .tarif-list li { color: rgba(255,255,255,0.8); }
.tarif-btn { display: block; text-align: center; background: var(--teal); color: var(--white); padding: 14px; border-radius: 10px; font-weight: 800; transition: var(--transition); }
.tarif-btn:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* FINANCEMENT */
.financement { background: var(--gray); }
.financement-header { margin-bottom: 48px; }
.financement-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.fin-main { background: var(--navy); padding: 48px; border-radius: var(--radius); }
.cpf-badge { font-family: 'Merriweather', serif; font-size: 48px; font-weight: 700; color: var(--mint); margin-bottom: 16px; }
.fin-main h3 { font-size: 24px; color: var(--white); margin-bottom: 14px; }
.fin-main p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.fin-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.fin-step { display: flex; gap: 12px; align-items: flex-start; }
.fin-step span { background: var(--teal); color: var(--white); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.fin-step p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }
.fin-btn { display: block; text-align: center; background: var(--teal); color: var(--white); padding: 14px; border-radius: 10px; font-weight: 800; transition: var(--transition); }
.fin-btn:hover { background: var(--mint); }
.fin-others { display: flex; flex-direction: column; gap: 16px; }
.fin-others h3 { font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.fin-item { background: var(--white); padding: 22px; border-radius: 12px; border-left: 3px solid var(--teal); }
.fin-item h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.fin-item p { font-size: 13px; color: var(--text-muted); }

/* FAQ */
.faq { background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); transition: background var(--transition); }
.faq-q:hover { background: var(--gray); }
.fi { font-size: 22px; color: var(--teal); flex-shrink: 0; font-weight: 300; transition: transform 0.3s; }
.faq-q.active .fi { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* CONTACT */
.contact { background: var(--teal-light); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-left h2 { font-size: clamp(26px, 3vw, 38px); color: var(--navy); margin-bottom: 14px; }
.contact-left p { color: var(--text-muted); margin-bottom: 28px; }
.contact-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cf-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--teal-dark); font-weight: 700; }
.contact-photo { border-radius: var(--radius); height: 240px; object-fit: cover; }
.contact-right { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form h3 { font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--text); transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { min-height: 90px; resize: vertical; }
.contact-form button { background: var(--teal); color: var(--white); padding: 16px; border: none; border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.contact-form button:hover { background: var(--teal-dark); transform: translateY(-2px); }
.form-legal { font-size: 12px; color: var(--text-muted); text-align: center; }
.form-success { text-align: center; padding: 40px 20px; }
.success-check { font-size: 56px; color: var(--green); margin-bottom: 16px; }
.form-success h3 { color: var(--navy); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* FINAL CTA */
.final-cta { padding: 0; }
.fct-content { position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fct-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fct-overlay { position: absolute; inset: 0; background: rgba(11,94,90,0.88); }
.fct-text { position: relative; z-index: 1; text-align: center; padding: 80px 24px; max-width: 720px; }
.fct-text h2 { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; }
.fct-text p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 32px; }
.fct-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.fct-badges span { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 700; }
.fct-btn { display: inline-block; background: var(--white); color: var(--teal); padding: 18px 40px; border-radius: 10px; font-size: 17px; font-weight: 800; transition: var(--transition); }
.fct-btn:hover { background: var(--teal-light); transform: translateY(-2px); }

/* FOOTER */
.footer { background: var(--navy); padding: 48px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand .brand-cross { background: var(--teal); }
.footer-brand span { font-family: 'Merriweather', serif; font-size: 18px; color: var(--white); font-weight: 700; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color var(--transition); }
.footer-nav a:hover { color: var(--mint); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--teal); color: var(--white); border: none; border-radius: 50%; font-size: 20px; cursor: pointer; box-shadow: var(--shadow-lg); transition: var(--transition); opacity: 0; pointer-events: none; z-index: 999; font-weight: 700; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-4px); }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 400px; }
  .activites-grid, .methodes-grid, .debouches-map, .financement-content, .validation-inner, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .programme-timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item.right .timeline-content { grid-column: 1; }
  .career-path { grid-template-columns: 1fr; }
  .career-arrow { display: none; }
  .tarifs-row { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .public-cards { grid-template-columns: 1fr; }
  .acces-process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero-left { padding: 48px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px; border-top: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .skills-visual { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .delais-cards { flex-direction: column; }
  .eval-grid { grid-template-columns: 1fr; }
  .eval-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .acces-process { grid-template-columns: 1fr; }
  .ps-line { display: none; }
}
