/* ============================================================
   Smart Bilingual Academy — Feuille de style principale
   Palette : Bleu marine #1B3068 | Orange #E8762B
   ============================================================ */

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

:root {
  --navy:        #1B3068;
  --navy-dark:   #122149;
  --navy-light:  #2A4A9E;
  --orange:      #E8762B;
  --orange-dark: #C45E18;
  --orange-light:#FFF3E8;
  --cream:       #FDFAF6;
  --white:       #FFFFFF;
  --text-dark:   #1A1A2E;
  --text-mid:    #374151;
  --text-gray:   #6B7280;
  --border:      #E5E7EB;
  --bg-light:    #F0F4FF;
  --green:       #22C55E;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius:    12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(27,48,104,.08);
  --shadow:    0 4px 20px rgba(27,48,104,.12);
  --shadow-lg: 0 8px 40px rgba(27,48,104,.18);

  --transition: all .3s ease;

  --container: 1180px;
  --section-py: 90px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- UTILITY ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: var(--section-py) 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--light { background: var(--bg-light); }

.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section--navy .section-tag {
  background: rgba(232,118,43,.2);
  color: var(--orange);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section--navy .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 580px;
  margin-bottom: 48px;
}
.section--navy .section-subtitle { color: rgba(255,255,255,.75); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,118,43,.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,118,43,.45); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,48,104,.3);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

.btn-ghost {
  color: var(--navy);
  font-weight: 600;
  padding: 14px 4px;
}
.btn-ghost:hover { color: var(--orange); }
.btn-ghost svg { transition: transform .25s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 14px;
  padding: 6px 14px 6px 8px;
  transition: var(--transition);
}
.navbar.scrolled .navbar-logo {
  background: transparent;
  border-color: transparent;
  padding: 0;
  backdrop-filter: none;
}
.navbar-logo img { height: 52px; width: auto; transition: height .3s ease; }
.navbar.scrolled .navbar-logo img { height: 44px; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--navy); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--orange); }
.navbar.scrolled .nav-link:hover { color: var(--orange); }

.navbar-actions { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.navbar.scrolled .lang-switcher { background: var(--bg-light); }
.lang-btn {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.navbar.scrolled .lang-btn { color: var(--text-gray); }
.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .burger span { background: var(--navy); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-menu .nav-link {
  font-size: 1.4rem;
  color: var(--white);
  padding: 8px 0;
}
.mobile-menu .nav-link::after { left: 0; right: 0; bottom: 0; }
.mobile-menu .lang-switcher { background: rgba(255,255,255,.15); }
.mobile-menu .lang-btn { color: rgba(255,255,255,.7); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Push content below fixed navbar (80px) + a comfortable gap */
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/DSC_0821.JPG') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,48,104,.88) 0%, rgba(27,48,104,.65) 60%, rgba(232,118,43,.3) 100%);
}
/* hero-content moved into badge block above */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 8px 20px 8px 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  white-space: nowrap;
}
/* Pulsing dot wrapper */
.hero-badge .badge-dot {
  position: relative;
  width: 12px; height: 12px;
  flex-shrink: 0;
}
.hero-badge .badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
.hero-badge .badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(232,118,43,.35);
  animation: pulse 2s infinite .4s;
}
/* Legacy single span (fallback) */
.hero-badge > span:first-child { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.45);opacity:.55} }

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 860px;
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero-title .highlight { color: var(--orange); }

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  max-width: 100%;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-light); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--orange); }
.stat-label { font-size: .85rem; color: var(--text-gray); font-weight: 500; }

/* ---------- ABOUT SECTION ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-badge-float {
  position: absolute;
  top: 30px; left: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-float strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; }
.about-badge-float span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }

.about-text { padding-right: 16px; }
.about-text .section-subtitle { margin-bottom: 28px; }
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--navy);
}
.pillar-item strong { font-family: var(--font-heading); font-size: .95rem; color: var(--navy); display: block; margin-bottom: 2px; }
.pillar-item p { font-size: .88rem; color: var(--text-gray); }

/* ---------- PROGRAMS ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card:hover::before { transform: scaleX(1); }
.program-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
  color: var(--navy);
}
.program-card:hover .program-icon { background: var(--orange-light); color: var(--orange); }
.program-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.program-card p { font-size: .9rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 18px; }
.program-ages {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ---------- IMPACT NUMBERS ---------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.impact-card {
  background: rgba(255,255,255,.06);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}
.impact-card:hover { background: rgba(255,255,255,.1); }
.impact-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-card p { color: rgba(255,255,255,.8); font-size: .9rem; }

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item:first-child {
  grid-row: span 2;
  grid-column: span 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,48,104,.5), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- APPROACH CARDS ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.approach-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition);
}
.approach-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.approach-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(232,118,43,.2);
  line-height: 1;
  margin-bottom: 16px;
}
.approach-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.approach-card p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; line-height: 1.75; color: var(--text-mid); font-style: italic; flex: 1; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-family: var(--font-heading); font-size: .88rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: .78rem; color: var(--text-gray); }

/* ---------- NEWSLETTER / CTA ---------- */
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(232,118,43,.1);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-box p {
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(232,118,43,.4); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 52px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.6); max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  font-size: .9rem;
}
.social-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: var(--orange); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  color: var(--white);
  text-align: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,48,104,0.9), rgba(27,48,104,0.7));
  z-index: 1;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-tag { background: var(--orange); color: var(--white); margin-bottom: 20px; box-shadow: 0 4px 12px rgba(232,118,43,0.3); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; margin-bottom: 20px; line-height: 1.1; letter-spacing: -0.02em; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; align-items: center; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumb a { color: var(--white); opacity: 0.8; transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); opacity: 1; }
.breadcrumb span { color: var(--orange); }

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
}

/* ---------- CARDS COMMON ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-img-placeholder {
  width: 100%; height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.card-text { font-size: .88rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 16px; }
.card-meta { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--text-gray); }

/* ---------- DONATION CARDS ---------- */
.donation-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.donation-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.donation-card:hover, .donation-card.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,118,43,.1);
  transform: translateY(-4px);
}
.donation-icon { font-size: 2.5rem; margin-bottom: 16px; }
.donation-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.donation-card p { font-size: .88rem; color: var(--text-gray); margin-bottom: 20px; }
.donation-detail {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 16px;
  font-family: monospace;
  font-size: .88rem;
  color: var(--navy);
  word-break: break-all;
  text-align: left;
}
.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px auto 0;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-heading);
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- REPORTS ---------- */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.report-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.report-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.report-icon { font-size: 2.2rem; }
.report-year { font-family: var(--font-heading); font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; }
.report-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); }
.report-desc { font-size: .88rem; color: var(--text-gray); flex: 1; }
.report-meta { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--text-gray); }

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ---------- MISC COMPONENTS ---------- */
.divider {
  width: 60px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.text-center .divider { margin: 16px auto 28px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ---------- FORM ---------- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,118,43,.15); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  :root { --section-py: 70px; }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .programs-grid,
  .testimonials-grid,
  .approach-grid,
  .reports-grid,
  .donation-methods { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: 10px; bottom: -20px; width: 150px; height: 130px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .navbar-nav, .navbar-actions .btn-primary { display: none; }
  .burger { display: flex; }

  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.15; }
  .hero-badge { font-size: .76rem; padding: 6px 14px 6px 10px; }
  .hero-desc { font-size: 1rem; line-height: 1.7; }
  .hero-actions .btn { padding: 12px 22px; font-size: .88rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .programs-grid,
  .approach-grid,
  .donation-methods,
  .testimonials-grid,
  .reports-grid { grid-template-columns: 1fr; }

  .impact-grid { grid-template-columns: 1fr 1fr; }

  .cta-box { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-badge-float { top: 16px; left: 10px; padding: 12px 16px; }
  .about-badge-float strong { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .hero-stats { position: relative; }
  .hero { min-height: calc(100vh - 220px); padding-bottom: 0; }
}

/* ---------- DIRECTOR SECTION ---------- */
.director-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.director-img {
  position: relative;
}
.director-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.director-img::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  border: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.director-quote {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-style: italic;
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin: 0 0 28px;
}
.director-signature {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.director-signature-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.director-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.director-title {
  font-size: .82rem;
  color: var(--text-gray);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .director-grid { grid-template-columns: 1fr; gap: 36px; }
  .director-img img { height: 320px; }
  .director-img::before { display: none; }
}

/* ---------- AUTHOR AVATAR INITIALS ---------- */
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.author-avatar--navy  { background: var(--navy);  color: var(--white); }
.author-avatar--orange{ background: var(--orange); color: var(--white); }
.author-avatar--green { background: var(--green);  color: var(--white); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: transform .3s ease, box-shadow .3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: wa-pulse 2.2s infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  60% { transform: scale(1.2); opacity: 0; }
}

/* ============================================================
   NEW SECTIONS — ADDED IN SESSION 2
   ============================================================ */

/* ---------- HERO PARTICLES ---------- */
.hero-particles-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---------- TYPEWRITER CURSOR ---------- */
.tw-typing::after {
  content: '|';
  display: inline-block;
  color: var(--orange);
  animation: tw-blink .75s step-end infinite;
  font-weight: 400;
  margin-left: 2px;
}
.tw-done::after { display: none; }
@keyframes tw-blink { 50% { opacity: 0; } }

/* ---------- TWO TRACKS SECTION ---------- */
.tracks-section { background: var(--white); }

.tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media(max-width:768px){ .tracks-grid { grid-template-columns: 1fr; } }

.track-card {
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.track-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }

.track-card--expert {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-left: 5px solid var(--navy);
}
.track-card--entrepreneurial {
  background: linear-gradient(135deg, #fff5ec 0%, #ffeedd 100%);
  border-left: 5px solid var(--orange);
}

.track-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.track-card--expert .track-icon-wrap { background: var(--navy); color: var(--white); }
.track-card--entrepreneurial .track-icon-wrap { background: var(--orange); color: var(--white); }

.track-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.track-card--expert .track-label { background: var(--navy); color: var(--white); }
.track-card--entrepreneurial .track-label { background: var(--orange); color: var(--white); }

.track-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.track-card p {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.track-list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.track-list li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.track-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.track-card--expert .track-list li::before { background: var(--navy); }
.track-card--entrepreneurial .track-list li::before { background: var(--orange); }

.track-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 16px;
  transition: transform .4s ease;
}
.track-card:hover .track-img { transform: scale(1.03); }

/* ---------- PARTNERS HOME SECTION ---------- */
.partners-home-section { }

.partners-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media(max-width:900px){ .partners-cards-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .partners-cards-grid { grid-template-columns: 1fr; } }

.partner-home-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 2px solid transparent;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.partner-home-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  opacity: 0;
  transition: opacity .3s ease;
}
.partner-home-card:hover { transform: translateY(-5px); border-color: rgba(27,48,104,.15); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.partner-home-card:hover::before { opacity: 1; }
.partner-home-card--featured {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(232,118,43,.15);
}
.partner-home-card--featured::before { opacity: 1; }

.partner-home-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,118,43,.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.partner-home-logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,48,104,.08), rgba(232,118,43,.08));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy);
}
.partner-home-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.partner-home-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.65;
}
.partner-home-logo--img {
  background: var(--white);
  border: 1px solid var(--border);
  width: 140px; height: 72px;
  border-radius: 12px;
  padding: 10px 14px;
}
.partner-home-logo--img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- GALLERY CAROUSEL ---------- */
.gallery-carousel {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  background: var(--navy);
  aspect-ratio: 16/7;
  margin-bottom: 24px;
}
@media(max-width:768px){ .gallery-carousel { aspect-ratio: 4/3; } }

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background .25s ease, transform .25s ease;
}
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-prev:hover, .carousel-next:hover {
  background: rgba(255,255,255,.35);
  transform: translateY(-50%) scale(1.08);
}

.carousel-dots {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.c-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none; cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  padding: 0;
}
.c-dot.active { background: var(--white); transform: scale(1.4); }

/* Thumbnail strip */
.gallery-thumbs {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0;
  width: 120px; height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: .75;
  transition: opacity .25s ease, transform .25s ease;
}
.gallery-thumb:hover { opacity: 1; transform: scale(1.05); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- VISION 2030 SECTION ---------- */
.vision2030-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0f2156 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.vision2030-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,118,43,.15) 0%, transparent 70%);
  pointer-events: none;
}
.vision2030-section .section-tag { color: var(--orange); }
.vision2030-section .section-title { color: var(--white); }
.vision2030-section .section-subtitle { color: rgba(255,255,255,.75); }
.vision2030-section .divider { background: rgba(232,118,43,.6); }

.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media(max-width:900px){ .phases-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px){ .phases-grid { grid-template-columns: 1fr; } }

.phase-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: background .3s ease, transform .3s ease;
  position: relative;
}
.phase-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }

.phase-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .5;
}
.phase-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.phase-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.phase-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(232,118,43,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0;
  color: var(--orange);
}

/* Vision KPIs */
.vision-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 8px;
}
@media(max-width:900px){ .vision-kpis { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .vision-kpis { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px 20px; } }

.vkpi-item { text-align: center; }
.vkpi-val {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.vkpi-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media(max-width:480px){
  .track-card { padding: 28px 22px; }
  .phase-num { font-size: 2.2rem; }
  .vkpi-val { font-size: 2rem; }
  .gallery-thumb { width: 90px; height: 60px; }
}

/* ============================================================
   PARTNERS MARQUEE (section Rapports + potentiellement autres)
   ============================================================ */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Masques de fondu sur les bords gauche et droit */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.partners-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;                    /* s'étend autant que son contenu */
  animation: marquee-scroll 28s linear infinite;
}

/* Pause au survol */
.partners-marquee-wrap:hover .partners-marquee-track {
  animation-play-state: paused;
}

/* Carte individuelle de logo partenaire */
.partner-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 32px;
  height: 100px;
  min-width: 200px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  filter: grayscale(30%) opacity(0.85);
}

.partner-marquee-item:hover {
  filter: grayscale(0%) opacity(1);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--orange);
}

.partner-marquee-item img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Texte de fallback si l'image est introuvable */
.partner-fallback {
  display: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

@media(max-width: 768px) {
  .partner-marquee-item {
    padding: 14px 24px;
    min-width: 160px;
    height: 80px;
  }
  .partner-marquee-item img { max-height: 44px; max-width: 120px; }
  .partners-marquee-track { gap: 20px; animation-duration: 22s; }
}

