/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --red: #E54038;
  --red-alt: #E22A21;
  --red-light: #E95E57;
  --red-hover: #c9332b;
  --pink-tint: #F5D1CF;
  --dark: #161414;
  --black: #211110;
  --gold: #FFB700;
  --blue: #215EE2;
  --gray: #6E6E6E;
  --gray-light: #F7F7F7;
  --gray-border: #E5E5E5;
  --light-bg: #E8ECEA;
  --white: #FFFFFF;

  --radius-pill: 100px;
  --radius-card: 10px;
  --radius-sm: 7px;
  --radius-circle: 50%;

  --container: 1240px;
  --container-wide: 1440px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   GLOBAL
   ============================================================ */
body {
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--red-hover);
}
.btn-primary svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--red);
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  border: 1.5px solid var(--red);
  color: var(--red);
  transition: all 0.2s;
}
.btn-circle:hover {
  background: var(--red);
  color: var(--white);
}
.btn-circle svg { width: 16px; height: 16px; }

/* ============================================================
   1. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 14px;
}
.header-search svg { width: 16px; height: 16px; opacity: 0.5; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--black);
  cursor: pointer;
}
.lang-switch img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta .btn-outline {
  padding: 8px 20px;
  font-size: 13px;
}
.header-cta .btn-primary {
  padding: 8px 20px;
  font-size: 13px;
}

/* Nav */
.header-nav {
  border-top: 1px solid var(--gray-border);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.header-nav li {
  position: relative;
}
.header-nav a {
  display: block;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--red);
}
.header-nav li.active a {
  color: var(--red);
  font-weight: 600;
}
.header-nav li.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
}
.header-nav .has-dropdown a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================================================
   2. BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 20px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb-badges img {
  height: 32px;
  width: auto;
  border-radius: 4px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li::after {
  content: '›';
  color: var(--gray);
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li:last-child {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}
.breadcrumb svg {
  width: 16px;
  height: 16px;
  color: var(--gray);
}

/* ============================================================
   3. HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 20px 0 60px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Hero Image Area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-visual img.hero-photo {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}
.hero-logo-overlay {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 160px;
  height: auto;
  z-index: 3;
  border-radius: 4px;
}
.hero-97 {
  position: absolute;
  bottom: -10px;
  right: 40px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 12px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-97-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.hero-97-label {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.3;
}
.hero-97-label strong {
  display: block;
  font-size: 12px;
  color: var(--black);
}

.hero-person-badge {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 14px 6px 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.hero-person-badge .avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-circle);
  background: var(--red);
}
.hero-person-badge span {
  font-size: 12px;
  font-weight: 500;
}

/* Hero BG patterns */
.hero-bg-left, .hero-bg-right {
  position: absolute;
  top: 0;
  width: 384px;
  height: 527px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-left { left: 0; }
.hero-bg-right { right: 30%; top: 10%; }

/* ============================================================
   4. DUALITE
   ============================================================ */
.dualite {
  padding: 80px 0;
}
.dualite .section-tag {
  border: none;
  padding: 0;
}
.dualite-header {
  max-width: 560px;
}
.dualite-header h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}
.dualite-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.dualite-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  align-items: start;
}

/* Curved arrows between cards */
.dualite-arrow {
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
}
.dualite-arrow--top {
  top: 0;
  left: 54%;
}
.dualite-arrow--bottom {
  bottom: 0%;
  left: 45%;
}

.dualite-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: stretch;
  min-height: 420px;
}

/* Business Card */
.dualite-card--business {
  background: var(--white);
  border: 1px solid var(--gray-border);
}
.dualite-card--business .card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 50%;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.dualite-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.dualite-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.dualite-icon img { width: 24px; height: 24px; filter: brightness(0) invert(1); }

.dualite-card h3 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dualite-card .card-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.dualite-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dualite-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
}
.dualite-card--care li {
  background: rgba(255,255,255,0.06);
}
.dualite-card li .bullet {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dualite-card li .bullet::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 2px;
}
.dualite-card-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.dualite-card-img--care {
  margin-top: 80px;
}
.dualite-card-image {
  width: 100%;
  height: 65%;
  object-fit: cover;
  align-self: end;
  border-top-left-radius: 12px;
}

/* Care Card */
.dualite-card--care {
  background: var(--dark);
  color: var(--white);
  margin-top: 80px;
}
.dualite-card--care .card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.dualite-card--care .card-sub {
  color: rgba(255,255,255,0.5);
}
.dualite-card--care li .bullet {
  background: var(--red);
}
.dualite-card--care .card-finance {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
}
.dualite-card--care .card-finance svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   5. SPECIALISATIONS
   ============================================================ */
.specialisations {
  padding: 80px 0;
}
.specialisations-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.specialisations-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}
.specialisations-header p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.spec-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.spec-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.spec-card-body {
  padding: 24px;
}
.spec-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  font-style: italic;
}
.spec-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.spec-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  border: 1px solid var(--gray-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   6. DISTINGUE
   ============================================================ */
.distingue {
  padding: 80px 0;
}
.distingue-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.distingue-top-left h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
}
.distingue-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.distingue-info-left {
  max-width: 480px;
}
.distingue-info-left h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.distingue-info-left p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.distingue-labels {
  display: flex;
  align-items: center;
  gap: 16px;
}
.distingue-labels-imgs {
  display: flex;
  gap: 8px;
}
.distingue-labels-imgs img {
  height: 48px;
  width: auto;
}
.distingue-labels p {
  font-size: 13px;
  color: var(--black);
  max-width: 160px;
  line-height: 1.4;
}
.distingue-labels p strong {
  font-weight: 700;
}

.distingue-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.distingue-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 340px;
}
.distingue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.distingue-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}
.distingue-card-overlay h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.distingue-card .btn-outline {
  color: var(--white);
  border-color: var(--white);
  font-size: 12px;
  padding: 8px 18px;
}
.distingue-card .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* ============================================================
   7. PROFILS
   ============================================================ */
.profils {
  padding: 80px 0;
}
.profils-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.profils-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}
.profils-header p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.profils-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.profil-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-card);
}
.profil-card img {
  width: 160px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}
.profil-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.profil-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 14px;
}

.profils-bottom {
  display: flex;
  justify-content: center;
}
.profil-card--wide {
  max-width: 680px;
  width: 100%;
}

.profils-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   8. INFOS CLES
   ============================================================ */
.infos-cles {
  padding: 80px 0;
}
.infos-cles .section-tag {
  border: none;
  padding: 0;
}
.infos-cles-header h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 8px;
}
.infos-cles-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.infos-subtitle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}
.infos-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.infos-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 520px;
}
.infos-70 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--gray-border);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.infos-70 svg { width: 18px; height: 18px; }

.infos-dual-label {
  font-size: 13px;
  color: var(--red);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 16px;
}

/* Weekly schedule */
.schedule-week {
  margin-bottom: 40px;
  padding: 28px;
  background: #F8F8FA;
  border-radius: 16px;
}
.schedule-header {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 50px;
}
.schedule-header span {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.label-bar {
  display: inline-block;
  width: 3px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  border-radius: 2px;
}
.label-bar--blue { background: var(--blue); }
.label-bar--red { background: var(--red); }

.schedule-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 16px 0;
  border-radius: 100px;
  margin-bottom: 12px;
}
.schedule-bar--entreprise {
  background: rgba(33, 94, 226, 0.08);
}
.schedule-bar--ecole {
  background: rgba(229, 64, 56, 0.08);
}
.schedule-bar-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-bar-icon--entreprise {
  color: var(--blue);
}
.schedule-bar-icon--ecole {
  color: var(--red);
}
.schedule-bar-label {
  font-size: 13px;
  font-weight: 600;
}
.schedule-bar--entreprise .schedule-bar-label { color: var(--blue); }
.schedule-bar--ecole .schedule-bar-label { color: var(--red); }
.schedule-bar-label small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
}
.schedule-row-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 12px;
}

/* Capsule schedule */
.capsule-label {
  text-align: center;
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 24px;
}

.capsule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.capsule-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-card);
  padding: 20px;
  position: relative;
}
.capsule-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.capsule-accent {
  width: 3px;
  height: 14px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.capsule-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.capsule-day {
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 16px 12px;
  background: #f7eaea;
}
.capsule-day-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.capsule-day-label {
  font-size: 12px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
}
.capsule-plus {
  position: absolute;
  top: 50%;
  right: -27px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  z-index: 3;
}
.capsule-card:last-child .capsule-plus { display: none; }

.infos-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ============================================================
   9. TELECHARGER / CONTACT
   ============================================================ */
.telecharger {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.telecharger::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 42, 33, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.telecharger .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.telecharger-left {
  position: relative;
  z-index: 2;
}
.telecharger-left .section-tag {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}
.telecharger-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.telecharger-left p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}
.telecharger-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.telecharger-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.telecharger-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.telecharger-contact-icon svg { width: 16px; height: 16px; color: var(--white); }

/* Form */
.telecharger-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-group select option {
  background: var(--dark);
}
.telecharger-form .btn-outline {
  color: var(--red);
  border-color: var(--red);
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.telecharger-form .btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   10. TEMOIGNAGES
   ============================================================ */
.temoignages {
  padding: 80px 0;
}
.temoignages .section-tag {
  border: none;
  padding: 0;
  margin-bottom: 12px;
}
.temoignages-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.temoignages-header-left h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 10px;
}
.temoignages-header-left p {
  font-size: 14px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.5;
}
.temoignages-certifs {
  display: flex;
  gap: 10px;
  align-items: center;
}
.temoignages-certifs img {
  height: 44px;
  width: auto;
}

.temoignages-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.temoignages-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.temoignages-tab {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-border);
}
.temoignages-tab:hover {
  color: var(--black);
  border-color: var(--black);
}
.temoignages-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.temoignages-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.temoignages-nav .btn-circle {
  width: 38px;
  height: 38px;
}
.temoignages-counter {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.temoignages-carousel {
  display: flex;
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
}
.temoignage-card {
  width: calc(60% - 12px);
  min-width: calc(60% - 12px);
  flex: 0 0 calc(60% - 12px);
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
}
.temoignage-photo {
  width: 190px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.temoignage-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  background: #eeeeee40;
  border-radius: 8px;
}
.temoignage-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.temoignage-stars svg { width: 22px; height: 22px; }

.temoignage-text {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}
.temoignage-footer {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid var(--gray-border);
  padding-top: 12px;
  justify-content: space-between;
}
.temoignage-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}
.temoignage-role {
  font-size: 13px;
  color: #999;
}

/* ============================================================
   11. FAQ
   ============================================================ */
.faq {
  padding: 80px 0;
}
.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.faq-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}
.faq-header p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  border: 1.5px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
  background: var(--red);
}
.faq-item.active .faq-toggle svg {
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
}
.faq-answer-inner p,
.faq-answer-inner li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}
.faq-answer-inner ul {
  padding-left: 0;
}
.faq-answer-inner li {
  position: relative;
  padding-left: 16px;
}
.faq-answer-inner li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   12. ACCREDITATIONS
   ============================================================ */
.accreditations {
  padding: 40px 0;
  border-top: 1px solid var(--gray-border);
  overflow: hidden;
}
.accreditations-track {
  display: flex;
  width: max-content;
  animation: accreditations-scroll 20s linear infinite;
}
.accreditations-track:hover {
  animation-play-state: paused;
}
.accreditations-logos {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
}
.accreditations-logos img {
  height: 44px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.2s;
}
.accreditations-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes accreditations-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social:hover {
  background: var(--red);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.footer-contact-certifs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-contact-certifs img {
  height: 44px;
  width: auto;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
}

/* ============================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .header-top { padding: 14px 24px; }
  .header-search { display: none; }

  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 32px; }
  .hero-visual { justify-content: center; }
  .hero-visual img.hero-photo { max-width: 400px; }
  .hero-logo-overlay { width: 120px; right: 40px; }
  .hero-bg-left, .hero-bg-right { display: none; }

  .dualite-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dualite-card-img--care { margin-top: 60px; }
  .dualite-header h2 { font-size: 30px; }
  .dualite-top { flex-direction: column; gap: 16px; align-items: flex-start; }

  .specs-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .distingue-cards { grid-template-columns: 1fr 1fr; }
  .distingue-card { height: 280px; }

  .profils-carousel { gap: 16px; }
  .profil-card { min-width: calc(50% - 8px); }

  .schedule-row-split { grid-template-columns: 1fr 1fr; }
  .capsule-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

  .telecharger .container { grid-template-columns: 1fr 1fr; gap: 24px; }

  .temoignage-card { min-width: calc(70% - 12px); }

  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-top { padding: 12px 16px; }
  .header-actions { gap: 10px; }
  .lang-switch { display: none; }

  .hero { padding: 16px 0 40px; }
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 13px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-visual img.hero-photo { max-width: 100%; }
  .hero-97 { bottom: 0; right: 10px; padding: 8px 12px; }
  .hero-97-number { font-size: 32px; }
  .hero-person-badge { display: none; }
  .hero-logo-overlay { width: 100px; right: 20px; top: 10px; }

  .dualite { padding: 48px 0; }
  .dualite-cards { grid-template-columns: 1fr; gap: 16px; }
  .dualite-card-img--care { margin-top: 0; }
  .dualite-arrow { display: none; }
  .dualite-header h2 { font-size: 26px; }
  .dualite-top { margin-bottom: 24px; }

  .specialisations { padding: 48px 0; }
  .specialisations-header h2 { font-size: 26px; }
  .specs-grid { grid-template-columns: 1fr; }
  .spec-card-image { height: 180px; }

  .distingue { padding: 48px 0; }
  .distingue-top { flex-direction: column; gap: 16px; }
  .distingue-cards { grid-template-columns: 1fr; }
  .distingue-card { height: 240px; }
  .distingue-top h2 { font-size: 26px; }
  .distingue-info { flex-direction: column; gap: 16px; }
  .distingue-labels { flex-wrap: wrap; }

  .profils { padding: 48px 0; }
  .profil-card { min-width: 100%; grid-template-columns: 1fr; }
  .profil-card img { width: 100%; height: 180px; }
  .profil-card--wide { max-width: 100%; }

  .employabilite { padding: 48px 0; }

  .infos-cles { padding: 48px 0; }
  .infos-cles-header h2 { font-size: 28px; }
  .infos-subtitle-row { flex-direction: column; gap: 12px; }
  .schedule-week { padding: 16px; overflow-x: auto; }
  .schedule-header { min-width: 500px; }
  .schedule-bar { min-width: 500px; }
  .schedule-row-split { grid-template-columns: 1fr; gap: 8px; min-width: 500px; }
  .capsule-grid { grid-template-columns: 1fr; gap: 16px; }
  .capsule-plus { display: none; }

  .telecharger { padding: 48px 0; }
  .telecharger .container { grid-template-columns: 1fr; gap: 32px; }

  .temoignages { padding: 48px 0; }
  .temoignages-header { flex-direction: column; gap: 16px; }
  .temoignages-header-left h2 { font-size: 28px; }
  .temoignages-tabs-row { flex-direction: column; gap: 16px; align-items: flex-start; }
  .temoignage-card { min-width: calc(85% - 12px); grid-template-columns: 140px 1fr; gap: 12px; }
  .temoignage-photo { width: 140px; }

  .faq { padding: 48px 0; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-contact-certifs { flex-wrap: wrap; }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .header-top { padding: 10px 12px; }
  .header-logo img { height: 32px; }
  .header-cta .btn-outline { font-size: 12px; padding: 6px 14px; }

  .hero h1 { font-size: 24px; }
  .hero-tags { gap: 6px; }
  .hero-tag { font-size: 10px; padding: 4px 10px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }

  .dualite-header h2 { font-size: 22px; }

  .specialisations-header h2 { font-size: 22px; }
  .spec-card-body { padding: 16px; }

  .distingue-top h2 { font-size: 22px; }

  .infos-cles-header h2 { font-size: 24px; }
  .infos-subtitle { font-size: 16px; }
  .schedule-header span { font-size: 11px; }
  .schedule-week { padding: 16px; }

  .telecharger-left h2 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .temoignage-card { grid-template-columns: 1fr; gap: 12px; }
  .temoignage-photo { width: 100%; height: 200px; }
  .temoignages-header-left h2 { font-size: 24px; }
  .temoignages-tabs { flex-wrap: wrap; }

  .faq-question { font-size: 14px; padding: 14px 0; }

  .footer-cols { grid-template-columns: 1fr; }
  .footer-copyright { font-size: 11px; }
}
