/* =============================================
   PROFORMACORP — CORPORATE PROFESSIONAL THEME
   Formation SAMA — Website 04
   ============================================= */

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

:root {
  --navy: #2B3A52;
  --navy-dark: #1e2b3e;
  --navy-light: #3d5270;
  --orange: #E8621A;
  --orange-light: #f07432;
  --orange-dark: #c44e0e;
  --bg-light: #F8F9FC;
  --bg-alt: #EEF1F6;
  --white: #FFFFFF;
  --text-dark: #1a2332;
  --text-body: #3d4d60;
  --text-muted: #6b7d93;
  --border: #D4DCEA;
  --shadow-sm: 0 2px 8px rgba(43,58,82,0.08);
  --shadow-md: 0 6px 24px rgba(43,58,82,0.12);
  --shadow-lg: 0 16px 48px rgba(43,58,82,0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --font-sans: 'Source Sans Pro', sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Container --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.35);
}
.btn-primary.large { font-size: 1.1rem; padding: 18px 40px; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-secondary.large { font-size: 1.1rem; padding: 18px 40px; }

/* --- Section Label --- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,98,26,0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-label.light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* --- Section Variants --- */
.section-light { padding: 80px 0; background: var(--white); }
.section-dark {
  padding: 80px 0;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }
.section-alt { padding: 80px 0; background: var(--bg-alt); }
.section-career {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.section-career h2 { color: var(--white); }
.section-career .section-label { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); }
.section-testimonials {
  padding: 80px 0;
  background: var(--navy-dark);
}
.section-testimonials h2, .section-testimonials .section-header p { color: var(--white); }
.section-contact {
  padding: 80px 0;
  background: var(--navy);
}
.section-contact h2 { color: var(--white); }
.section-contact h3 { color: var(--white); }
.section-contact p { color: rgba(255,255,255,0.75); }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--orange); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(43,58,82,0.15);
  border-bottom-color: transparent;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo { text-decoration: none; display: flex; flex-direction: column; }
.logo-main {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.logo-accent { color: var(--orange); }
.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); background: rgba(232,98,26,0.06); }
.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 9px 18px;
}
.nav-links a.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(232,98,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.badge-icon { color: var(--orange); font-style: normal; }

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero image with diagonal clip-path */
.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.badge-float-icon { font-size: 1.8rem; }
.hero-badge-float strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.hero-badge-float span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-wave {
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  font-family: var(--font-sans);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* =============================================
   BENEFITS STRIP
   ============================================= */
.benefits-strip {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
}
.benefits-scroll-track {
  overflow: hidden;
  width: 100%;
}
.benefits-scroll-inner {
  display: flex;
  gap: 16px;
  animation: scrollBenefits 30s linear infinite;
  width: max-content;
}
.benefit-chip {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.15);
}
@keyframes scrollBenefits {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   TWO COLUMN LAYOUTS
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.equal-col { align-items: start; }
.col-text { }
.col-image { }

.rounded-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  height: 380px;
}

.img-caption-box {
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-size: 0.9rem;
  line-height: 1.4;
}
.img-caption-box strong { display: block; font-size: 1rem; margin-bottom: 2px; }

/* --- Check list --- */
.check-list {
  list-style: none;
  margin-top: 16px;
}
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* =============================================
   ACTIVITIES GRID
   ============================================= */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.activity-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.activity-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.activity-icon { font-size: 2rem; margin-bottom: 14px; }
.activity-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.activity-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* =============================================
   INFO BOXES (Public & Prérequis)
   ============================================= */
.info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.info-box h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}
.prereq-box { border-top: 4px solid var(--navy); }
.prereq-note {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 14px;
  margin-top: 16px;
  font-size: 0.88rem;
}
.list-styled {
  list-style: none;
  margin-top: 12px;
}
.list-styled li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.93rem;
  border-bottom: 1px dashed var(--border);
}
.list-styled li:last-child { border-bottom: none; }
.list-styled li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* =============================================
   COMPETENCES GRID
   ============================================= */
.competences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.competence-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.competence-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.comp-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  min-width: 44px;
  font-family: var(--font-sans);
}
.comp-content h4 { color: var(--navy); margin-bottom: 8px; }
.comp-content p { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   TIMELINE (Programme)
   ============================================= */
.timeline {
  position: relative;
  margin-top: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--navy));
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-number {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--orange);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  flex: 1;
  border-left: 4px solid var(--orange);
}
.timeline-duration {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.timeline-content h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.timeline-content p { font-size: 0.93rem; color: var(--text-body); }
.timeline-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.timeline-tags span {
  background: var(--bg-alt);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  border: 1px solid var(--border);
}

/* =============================================
   EVAL GRID
   ============================================= */
.eval-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.eval-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--navy);
  transition: all var(--transition);
}
.eval-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.eval-icon { font-size: 2.5rem; margin-bottom: 14px; }
.eval-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.eval-card p { font-size: 0.92rem; }

/* =============================================
   SECTORS GRID
   ============================================= */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.sector-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--orange);
}
.sector-icon { font-size: 2.4rem; margin-bottom: 14px; }
.sector-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.sector-card p { font-size: 0.88rem; color: var(--text-muted); }

/* =============================================
   SALARY TABLE
   ============================================= */
.salary-table {
  margin: 28px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.salary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 16px;
}
.salary-row:last-child { border-bottom: none; }
.salary-row.highlight { background: rgba(232,98,26,0.2); }
.salary-poste { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.salary-amount { font-weight: 700; font-size: 0.95rem; color: var(--orange); white-space: nowrap; }
.salary-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0; }

/* =============================================
   METHODES GRID
   ============================================= */
.methodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.methode-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.methode-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.methode-item:hover::before { transform: scaleX(1); }
.methode-item:hover { box-shadow: var(--shadow-md); }
.methode-icon { font-size: 2rem; margin-bottom: 14px; }
.methode-item h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.methode-item p { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   NUMBERED LIST
   ============================================= */
.numbered-list {
  list-style: none;
  counter-reset: steps;
  margin-top: 12px;
}
.numbered-list li {
  counter-increment: steps;
  padding: 10px 0 10px 40px;
  position: relative;
  font-size: 0.93rem;
  border-bottom: 1px dashed var(--border);
}
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.access-note {
  margin-top: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 16px;
  border-left: 3px solid var(--navy);
}
.access-note h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.access-note p { font-size: 0.88rem; }

/* =============================================
   VALIDATION
   ============================================= */
.validation-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.validation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.validation-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.validation-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.validation-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 12px; }
.validation-card p { font-size: 0.9rem; }

/* =============================================
   PRICING TABLE
   ============================================= */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.pricing-table thead th {
  background: rgba(255,255,255,0.08);
  padding-top: 8px;
}
.price-plan-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
}
.plan-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.plan-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.plan-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.best-plan {
  background: rgba(232,98,26,0.15) !important;
  border-left: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}
.plan-popular {
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 30px 30px 0 0;
  margin-bottom: 0;
}
.check { color: #4ade80; font-size: 1.1rem; }
.cross { color: rgba(255,255,255,0.3); }

.btn-table, .btn-table-accent {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-table {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-table:hover { background: rgba(255,255,255,0.25); color: var(--white); }
.btn-table-accent {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}
.btn-table-accent:hover { background: var(--orange-dark); color: var(--white); }
.cta-row td { padding-top: 12px; padding-bottom: 20px; }

.pricing-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 20px;
}

/* =============================================
   FINANCEMENT
   ============================================= */
.financement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.financement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.financement-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.financement-logo {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.financement-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 12px; }
.financement-card p { font-size: 0.9rem; margin-bottom: 10px; }
.financement-card a { color: var(--orange); }
.financement-tag {
  display: inline-block;
  background: rgba(232,98,26,0.1);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  margin-top: 8px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question[aria-expanded="true"] { color: var(--orange); }
.faq-arrow {
  color: var(--orange);
  font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--orange); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-details { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  font-size: 1.5rem;
  width: 44px;
  flex-shrink: 0;
  text-align: center;
}
.contact-detail-item strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-detail-item a, .contact-detail-item span {
  display: block;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
}
.contact-detail-item a { color: var(--orange); }

.contact-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge-item {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}
.form-row { margin-bottom: 16px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition);
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.35);
}
.form-success-msg {
  text-align: center;
  padding: 20px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  color: #166534;
  font-weight: 600;
  margin-top: 16px;
  font-size: 1rem;
}
.success-icon { margin-right: 8px; }
.form-rgpd {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr ;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo-main { font-size: 1.4rem; color: var(--white); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 12px; line-height: 1.6; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.footer-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-links h4 { color: var(--white); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* =============================================
   BACK TO TOP
   ============================================= */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  pointer-events: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#backToTop:hover { background: var(--orange-dark); transform: translateY(-3px); }

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

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .methodes-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .competences-grid { grid-template-columns: 1fr; }
  .validation-content { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .col-image { order: -1; }
  .section-career .col-image { order: 1; }
  .financement-grid { grid-template-columns: 1fr; }
  .eval-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; border-radius: var(--radius); }
  .nav-links a.nav-cta { text-align: center; margin-top: 8px; }
  .navbar { position: sticky; top: 0; }

  .top-bar .container { justify-content: center; text-align: center; }
  .hero { padding: 40px 0 0; }
  .hero-content { padding: 0 24px 40px; }
  .hero-trust { flex-direction: column; gap: 12px; text-align: center; }
  .trust-sep { width: 40px; height: 1px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group a { text-align: center; }

  .stats-grid { flex-direction: column; }
  .activities-grid { grid-template-columns: 1fr; }
  .two-col.equal-col { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .methodes-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .validation-content { grid-template-columns: 1fr; }
  .financement-grid { grid-template-columns: 1fr; }
  .eval-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .pricing-table th, .pricing-table td { padding: 10px 10px; font-size: 0.8rem; }
  .plan-price { font-size: 1.3rem; }
  .section-light, .section-dark, .section-alt, .section-career, .section-testimonials, .section-contact { padding: 60px 0; }
  .final-cta { padding: 60px 0; }
  .cta-group { flex-direction: column; align-items: center; }
  .timeline::before { left: 24px; }
  .timeline-number { width: 48px; height: 48px; font-size: 1.1rem; }
  .timeline-item { gap: 20px; }
  #backToTop { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-trust { display: none; }
  .benefits-strip { display: none; }
  .salary-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .contact-grid { gap: 24px; }
}
