/* ===================================
   WEBSITE 01 - PREMIUM EDUCATION BRAND
   Design System: Gold & Deep Navy
   Font: Playfair Display + Inter
   =================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --navy: #0D1F3C;
  --navy-mid: #1A3558;
  --cream: #FAF6EF;
  --white: #FFFFFF;
  --text: #2C3E50;
  --text-light: #6B7A8D;
  --border: #E8E0D0;
  --success: #27AE60;
  --shadow: 0 4px 24px rgba(13, 31, 60, 0.10);
  --shadow-lg: 0 12px 48px rgba(13, 31, 60, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

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

img { width: 100%; height: 100%; object-fit: cover; display: block; }

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

section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); color: var(--navy); margin-bottom: 20px; }
.section-lead { font-size: 18px; color: var(--text-light); max-width: 640px; margin: 0 auto; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 20px 0;
}
.navbar.scrolled { background: var(--navy); box-shadow: var(--shadow-lg); padding: 12px 0; }

.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }

.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { font-size: 24px; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); font-weight: 700; }
.brand-accent { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 10px 20px; border-radius: 6px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !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(--white); transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; }

.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,60,0.92) 0%, rgba(13,31,60,0.75) 60%, rgba(13,31,60,0.5) 100%); }

.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; }

.hero-badge { display: inline-block; background: rgba(201,168,76,0.2); border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 28px; }

.hero-title { font-size: clamp(40px, 6vw, 72px); color: var(--white); margin-bottom: 24px; max-width: 720px; }
.hero-accent { color: var(--gold); display: block; }

.hero-subtitle { font-size: 20px; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 32px; margin-bottom: 48px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

.hero-actions { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }

.btn-primary { background: var(--gold); color: var(--navy); padding: 16px 32px; border-radius: 8px; font-weight: 700; font-size: 16px; transition: var(--transition); display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

.btn-secondary { background: transparent; color: var(--white); padding: 16px 32px; border-radius: 8px; font-weight: 600; font-size: 16px; border: 2px solid rgba(255,255,255,0.4); transition: var(--transition); display: inline-block; }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust span { color: rgba(255,255,255,0.75); font-size: 14px; }

/* ===== OBJECTIF ===== */
.objectif { background: var(--cream); }
.objectif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.objectif-card { background: var(--white); padding: 40px 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); border-top: 3px solid transparent; }
.objectif-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.card-icon { font-size: 36px; margin-bottom: 20px; }
.objectif-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.objectif-card p { color: var(--text-light); line-height: 1.7; }

/* ===== ACTIVITES ===== */
.activites-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.activites-text h2 { font-size: clamp(28px, 4vw, 40px); color: var(--navy); margin-bottom: 20px; }
.activites-text p { color: var(--text-light); margin-bottom: 32px; font-size: 17px; }
.activites-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.activites-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); }
.check { color: var(--gold); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.activites-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 520px; }
.activites-image img { width: 100%; height: 100%; object-fit: cover; }
.image-badge { position: absolute; bottom: 24px; left: 24px; background: var(--gold); color: var(--navy); padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 14px; }

/* ===== PUBLIC ===== */
.public { background: var(--navy); }
.public .section-tag { color: var(--gold); }
.public .section-header h2 { color: var(--white); }
.public-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
.public-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 36px 28px; border-radius: var(--radius-lg); transition: background var(--transition); }
.public-item:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.public-icon { font-size: 40px; margin-bottom: 20px; }
.public-item h3 { font-size: 20px; color: var(--white); margin-bottom: 12px; }
.public-item p { color: rgba(255,255,255,0.65); }

/* ===== PREREQUIS ===== */
.prerequis-box { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.prerequis-left h2 { font-size: clamp(28px, 4vw, 40px); color: var(--navy); margin-bottom: 16px; }
.prerequis-left p { color: var(--text-light); margin-bottom: 32px; }
.prerequis-list { display: flex; flex-direction: column; gap: 14px; }
.req-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; border-radius: 10px; font-size: 15px; }
.req-ok { background: rgba(39,174,96,0.08); color: var(--text); }
.req-ok span { color: var(--success); font-weight: 700; }
.req-info { background: rgba(201,168,76,0.08); color: var(--text); }
.req-info span { color: var(--gold); font-weight: 700; }
.prerequis-right { border-radius: var(--radius-lg); overflow: hidden; height: 480px; }
.prerequis-right img { width: 100%; height: 100%; object-fit: cover; }

/* ===== COMPETENCES ===== */
.competences { background: var(--cream); }
.comp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.comp-block { background: var(--white); padding: 36px 28px; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 4px solid var(--gold); }
.comp-block h3 { font-size: 17px; color: var(--navy); margin-bottom: 20px; font-family: 'Inter', sans-serif; font-weight: 700; }
.comp-block ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.comp-block ul li { padding-left: 20px; position: relative; color: var(--text-light); font-size: 14px; }
.comp-block ul li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); }

/* ===== PROGRAMME ===== */
.programme-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 64px; align-items: start; }
.programme-image { border-radius: var(--radius-lg); overflow: hidden; height: 400px; position: sticky; top: 100px; }
.programme-image img { width: 100%; height: 100%; object-fit: cover; }
.programme-modules { display: flex; flex-direction: column; gap: 20px; }
.module { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.module-header { display: flex; align-items: center; gap: 16px; padding: 24px 28px; background: var(--cream); }
.module-num { background: var(--gold); color: var(--navy); padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.module-header h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); flex: 1; }
.module-duration { font-size: 12px; color: var(--gold); font-weight: 600; white-space: nowrap; }
.module-content { padding: 20px 28px; }
.module-content p { color: var(--text-light); font-size: 15px; }

/* ===== EVALUATION ===== */
.evaluation { background: var(--navy); }
.eval-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: center; }
.eval-text .section-tag { color: var(--gold); }
.eval-text h2 { font-size: clamp(28px, 4vw, 40px); color: var(--white); margin-bottom: 20px; }
.eval-text p { color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.eval-items { display: flex; flex-direction: column; gap: 28px; }
.eval-item { display: flex; gap: 20px; align-items: flex-start; }
.eval-icon { font-size: 32px; flex-shrink: 0; }
.eval-item h4 { color: var(--gold); font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 6px; }
.eval-item p { color: rgba(255,255,255,0.65); font-size: 15px; }
.eval-image { border-radius: var(--radius-lg); overflow: hidden; height: 460px; }
.eval-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== DEBOUCHES ===== */
.debouches { background: var(--cream); }
.debouches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.debouche-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.debouche-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.debouche-card img { height: 200px; width: 100%; object-fit: cover; }
.debouche-info { padding: 28px; }
.debouche-info h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.debouche-info p { color: var(--text-light); font-size: 15px; margin-bottom: 16px; }
.debouche-tag { display: inline-block; background: rgba(201,168,76,0.15); color: var(--gold); padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; }

/* ===== REMUNERATION ===== */
.remun-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.remun-step { background: var(--cream); padding: 40px 32px; border-radius: var(--radius-lg); text-align: center; border: 2px solid transparent; }
.remun-step.featured { background: var(--navy); border-color: var(--gold); }
.remun-level { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.remun-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.remun-step.featured .remun-title { color: var(--white); }
.remun-salary { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.remun-desc { font-size: 14px; color: var(--text-light); }
.remun-step.featured .remun-desc { color: rgba(255,255,255,0.65); }
.remun-note { background: rgba(201,168,76,0.08); border: 1px solid var(--gold); border-radius: var(--radius); padding: 20px 28px; }
.remun-note p { font-size: 14px; color: var(--text); }

/* ===== METHODES ===== */
.methodes { background: var(--white); }
.methodes-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.methodes-image { border-radius: var(--radius-lg); overflow: hidden; height: 500px; }
.methodes-image img { width: 100%; height: 100%; object-fit: cover; }
.methodes-text h2 { font-size: clamp(28px, 4vw, 40px); color: var(--navy); margin-bottom: 16px; }
.methodes-text p { color: var(--text-light); margin-bottom: 36px; font-size: 17px; }
.methode-items { display: flex; flex-direction: column; gap: 28px; }
.methode-item { display: flex; gap: 20px; align-items: flex-start; }
.methode-icon { font-size: 32px; flex-shrink: 0; }
.methode-item h4 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.methode-item p { color: var(--text-light); font-size: 15px; }

/* ===== ACCES ===== */
.acces { background: var(--cream); }
.acces-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 16px; align-items: start; margin-bottom: 48px; }
.step { background: var(--white); padding: 32px 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.step-num { display: inline-block; width: 48px; height: 48px; background: var(--gold); color: var(--navy); border-radius: 50%; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-light); }
.step-arrow { font-size: 28px; color: var(--gold); align-self: center; flex-shrink: 0; }
.accessibilite-note { background: var(--white); padding: 32px; border-radius: var(--radius); border-left: 4px solid var(--navy); box-shadow: var(--shadow); }
.accessibilite-note h3 { color: var(--navy); margin-bottom: 10px; }
.accessibilite-note p { color: var(--text-light); }

/* ===== DELAIS ===== */
.delais { background: var(--navy); padding: 64px 0; }
.delais-box { max-width: 960px; margin: 0 auto; text-align: center; }
.delais-box h2 { font-size: clamp(28px, 4vw, 40px); color: var(--white); margin-bottom: 48px; }
.delais-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.delai-item { background: rgba(255,255,255,0.06); padding: 36px 24px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); }
.delai-icon { font-size: 36px; margin-bottom: 16px; }
.delai-item h3 { color: var(--gold); margin-bottom: 10px; }
.delai-item p { color: rgba(255,255,255,0.65); font-size: 15px; }
.delai-item strong { color: var(--white); }

/* ===== VALIDATION ===== */
.validation-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.diploma-icon { font-size: 56px; margin-bottom: 20px; }
.validation-diploma h3 { font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.diploma-level { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 20px; }
.validation-diploma p { color: var(--text-light); margin-bottom: 28px; }
.diploma-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge { background: rgba(201,168,76,0.12); color: var(--gold); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; border: 1px solid var(--gold); }
.validation-process h3 { font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.process-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.process-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-light); font-size: 15px; padding-left: 16px; position: relative; }
.process-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* ===== TARIFS ===== */
.tarifs { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--white); padding: 40px 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow); position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--navy); border: 2px solid var(--gold); }
.pricing-badge { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.pricing-badge.popular { display: inline-block; background: var(--gold); color: var(--navy); padding: 4px 14px; border-radius: 50px; margin-bottom: 8px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-price span { font-size: 20px; font-family: 'Inter', sans-serif; color: var(--text-light); }
.pricing-subtitle { font-size: 14px; color: var(--text-light); margin-bottom: 28px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.pricing-card.featured .pricing-subtitle { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { font-size: 14px; color: var(--text); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-btn { display: block; text-align: center; background: var(--gold); color: var(--navy); padding: 14px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: var(--transition); }
.pricing-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===== FINANCEMENT ===== */
.financement { background: var(--white); }
.financement-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.financement-card.primary { background: var(--navy); padding: 48px; border-radius: var(--radius-lg); }
.financement-logo { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.financement-card.primary h3 { font-size: 26px; color: var(--white); margin-bottom: 16px; }
.financement-card.primary p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.financement-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.financement-steps span { color: rgba(255,255,255,0.7); font-size: 14px; padding: 8px 16px; background: rgba(255,255,255,0.05); border-radius: 6px; }
.financement-btn { display: block; text-align: center; background: var(--gold); color: var(--navy); padding: 14px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: var(--transition); }
.financement-btn:hover { background: var(--gold-light); }
.financement-options { display: flex; flex-direction: column; gap: 20px; }
.financement-option { background: var(--cream); padding: 28px; border-radius: var(--radius); border-left: 3px solid var(--gold); }
.financement-option h4 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 15px; }
.financement-option p { color: var(--text-light); font-size: 14px; }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 28px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy); transition: background var(--transition); }
.faq-question:hover { background: var(--cream); }
.faq-icon { font-size: 22px; color: var(--gold); flex-shrink: 0; font-weight: 300; transition: transform var(--transition); }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 28px 24px; color: var(--text-light); font-size: 15px; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact { background: var(--navy); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-text .section-tag { color: var(--gold); }
.contact-text h2 { font-size: clamp(28px, 4vw, 40px); color: var(--white); margin-bottom: 16px; }
.contact-text p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.contact-promises { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.promise { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 15px; }
.promise span { color: var(--gold); font-weight: 700; }
.contact-img { border-radius: var(--radius-lg); height: 250px; object-fit: cover; }

.contact-form-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { padding: 14px 16px; border: 2px solid var(--border); border-radius: 8px; font-size: 15px; font-family: 'Inter', sans-serif; color: var(--text); transition: border-color var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { background: var(--gold); color: var(--navy); padding: 18px 32px; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Inter', sans-serif; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-arrow { font-size: 18px; }
.form-note { font-size: 12px; color: var(--text-light); }

.form-success { text-align: center; padding: 40px; }
.success-icon { font-size: 56px; color: var(--success); margin-bottom: 16px; }
.form-success h3 { color: var(--navy); font-size: 24px; margin-bottom: 12px; }
.form-success p { color: var(--text-light); }

/* ===== FINAL CTA ===== */
.final-cta { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); padding: 96px 0; }
.final-cta-content { text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta-content h2 { font-size: clamp(32px, 5vw, 52px); color: var(--navy); margin-bottom: 20px; }
.final-cta-content p { font-size: 18px; color: rgba(13,31,60,0.75); margin-bottom: 36px; }
.final-trust { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }
.final-trust span { font-weight: 600; color: var(--navy); font-size: 15px; }
.btn-final { display: inline-block; background: var(--navy); color: var(--white); padding: 20px 48px; border-radius: 8px; font-size: 18px; font-weight: 700; transition: var(--transition); }
.btn-final:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(13,31,60,0.3); }
.final-note { margin-top: 20px; font-size: 14px; color: rgba(13,31,60,0.65); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-links h4 { color: var(--gold); font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; text-align: center; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--gold); color: var(--navy); 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(--gold-light); transform: translateY(-4px); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .activites-inner, .prerequis-box, .programme-layout, .eval-inner, .methodes-inner, .contact-inner, .validation-content, .financement-grid { grid-template-columns: 1fr; gap: 48px; }
  .programme-image { position: static; height: 300px; }
  .acces-steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .remun-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; gap: 20px; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 24px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .debouches-grid { grid-template-columns: 1fr; }
  .delais-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .final-trust { flex-direction: column; align-items: center; gap: 12px; }
}
