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

:root {
  --navy:  #1565C0;
  --navy2: #0D47A1;
  --gold:  #FFB300;
  --gold2: #FFD54F;
  --green: #2E7D32;
  --green2:#43A047;
  --white: #ffffff;
  --off:   #F0F7FF;
  --text:  #1A237E;
  --muted: #546E7A;
  --font-body:    'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

[dir="rtl"] {
  --font-body:    'Cairo', sans-serif;
  --font-heading: 'Amiri', serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-heading); }

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.10); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; }
.nav-logo-copy span { display: block; }
.nav-logo-copy .l1 { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 1px; }
.nav-logo-copy .l2 { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: .05em; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }

.nav-cta { background: var(--navy); color: #fff; padding: 10px 22px; border-radius: 7px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s, transform .15s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold); color: var(--navy2); transform: translateY(-1px); }

/* ─── Réseaux sociaux ─── */
.socials { display: flex; gap: 12px; list-style: none; align-items: center; }
.socials a { display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: color .2s, transform .15s; }
.socials a:hover { color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; display: block; }

/* Top-bar (fixe en haut, au-dessus du nav) */
.top-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; background: var(--navy2); color: #fff; font-size: 12px; height: 34px; display: flex; align-items: center; }
.top-bar-inner { width: 100%; padding: 0 5vw; display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.top-bar-text { color: rgba(255,255,255,.75); font-weight: 600; letter-spacing: .04em; }
.top-socials { gap: 14px; }
.top-socials a { color: rgba(255,255,255,.9); }
.top-socials a:hover { color: var(--gold2); }
.top-socials svg { width: 16px; height: 16px; }

/* Quand la top-bar est présente, on décale le nav et le hero */
body.has-top-bar nav { top: 34px; }
body.has-top-bar #hero { padding-top: 134px; }

/* Réseaux sociaux dans la section contact */
.contact-socials { justify-content: center; gap: 18px; margin-top: 10px; }
.contact-socials svg { width: 24px; height: 24px; }
.contact-socials-wrap { margin-top: 48px; text-align: center; }
.contact-socials-wrap h4 { color: var(--text); font-size: 1rem; margin-bottom: 14px; font-weight: 700; }

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

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 500px) {
  .nav-logo-copy { display: none; }
  nav { padding: 0 4vw; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .top-bar-text { display: none; }
  .top-bar-inner { justify-content: center; padding: 0 4vw; }
}

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 100px 5vw 60px;
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 55%, #1976D2 100%);
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .15; pointer-events: none; }
.orb1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; }
.orb2 { width: 350px; height: 350px; background: var(--green); bottom: -80px; left: 5%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.18); border: 1px solid rgba(201,162,39,.4);
  color: var(--gold2); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; background: var(--gold2); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-text h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 20px; }
.hero-text h1 em { font-style: normal; color: var(--gold2); }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 400; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 460px; margin-bottom: 36px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--navy2);
  padding: 15px 32px; border-radius: 8px; font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer; font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(201,162,39,.4);
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,162,39,.5); }

.btn-outline {
  background: transparent; color: rgba(255,255,255,.92);
  padding: 14px 28px; border-radius: 8px; border: 1px solid rgba(255,255,255,.28);
  font-weight: 500; font-size: 14px; cursor: pointer; font-family: var(--font-body);
  text-decoration: none; display: inline-block;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); color:#fff; }

/* ─── HERO RÉASSURANCE ───────────────────────────── */
.hero-reassurance {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: .85rem; color: rgba(255,255,255,.78); font-weight: 500;
}
.hero-reassurance li { display: inline-flex; align-items: center; gap: 7px; }
.hero-reassurance .r-icon { font-size: 1rem; line-height: 1; }

.hero-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); }
.s-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold2); font-weight: 700; }
.s-lbl { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .07em; }

.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-img-wrap {
  position: relative; margin: 0;
  width: 100%; max-width: 560px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,.4);
  animation: floatY 4s ease-in-out infinite;
}
.hero-img-wrap img { width: 100%; display: block; object-fit: cover; }
.hero-img-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 18px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
  color: #fff; font-size: .78rem; font-style: italic; letter-spacing: .02em;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding-top: 100px; gap: 32px; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 20px; }
  .s-num { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-reassurance { gap: 8px 16px; font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img-wrap, .badge-dot, .orb, .wa-btn { animation: none !important; }
}

/* ─── SECTION BASE ────────────────────────────────────── */
section { padding: clamp(64px, 8vw, 100px) 5vw; }
.inner { max-width: 1200px; margin: 0 auto; }
.center { text-align: center; }
.section-lbl { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 600px; }

/* ─── WHY US ──────────────────────────────────────────── */
#why { background: var(--off); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 52px; }
.feat-card {
  background: #fff; border-radius: 16px; padding: 32px 26px;
  border: 1px solid rgba(0,0,0,.05); box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.09); }
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #1565C0, #42A5F5); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.feat-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ─── EXPERIENCE ──────────────────────────────────────── */
#experience { background: linear-gradient(135deg, #0D47A1, #1976D2); }
#experience .section-title { color: #fff; }
#experience .section-sub { color: rgba(255,255,255,.7); }
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 52px; }
.exp-card {
  border-radius: 16px; padding: 36px 28px; text-align: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  transition: background .25s, transform .25s;
}
.exp-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.exp-card .big { font-size: 48px; display: block; margin-bottom: 18px; }
.exp-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gold2); margin-bottom: 10px; }
.exp-card p { font-size: .9rem; color: rgba(255,255,255,.68); line-height: 1.6; }
.exp-quote {
  margin-top: 56px; text-align: center;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 48px;
  font-family: 'Playfair Display', serif; font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--gold2); font-style: italic; line-height: 1.55;
}

/* ─── PROMISE ─────────────────────────────────────────── */
#promise { background: #fff; }
.promise-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.promise-vis {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #0D47A1, #42A5F5);
  aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px; text-align: center; gap: 24px;
}
.promise-vis .big-emoji { font-size: 72px; }
.promise-vis .vis-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold2); line-height: 1.5; }
.promise-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.promise-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--off); border-radius: 12px; padding: 18px;
  transition: background .2s;
}
.promise-item:hover { background: #eef1f8; }
.check { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #2e8b5a); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 14px; font-weight: 700; }
.promise-item-body p { font-size: .92rem; color: var(--text); line-height: 1.6; }
.promise-item-body strong { color: var(--navy); display: block; margin-bottom: 2px; font-weight: 700; }

@media (max-width: 900px) {
  .promise-layout { grid-template-columns: 1fr; gap: 36px; }
  .promise-vis { aspect-ratio: auto; padding: 32px 24px; }
  .promise-vis .big-emoji { font-size: 48px; }
  .promise-vis .vis-text { font-size: 1.1rem; }
}

/* ─── URGENCY BAND ────────────────────────────────────── */
.urgency-band {
  background: var(--gold); padding: 22px 5vw;
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.urgency-band p { font-size: 1rem; font-weight: 700; color: var(--navy2); }
.urgency-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.urgency-tag { background: var(--navy2); color: var(--gold2); padding: 6px 16px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .08em; }

/* ─── GALLERY ─────────────────────────────────────────── */
#galerie { background: #fff; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.gallery-item { position: relative; }
.gallery-item-main { grid-column: 1 / 3; }
.gallery-img { width: 100%; height: 320px; object-fit: cover; border-radius: 16px; display: block; }
.gallery-placeholder {
  border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: #fff; height: 200px; cursor: default;
  transition: transform .25s, box-shadow .25s;
}
.gallery-placeholder:hover { transform: scale(1.02); box-shadow: 0 10px 32px rgba(0,0,0,.15); }
.gallery-placeholder span { font-size: 13px; font-weight: 700; text-align: center; padding: 0 16px; }
.gallery-caption { font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 8px; text-align: center; letter-spacing: .04em; }
.gallery-note { text-align: center; margin-top: 32px; font-size: .9rem; color: var(--muted); font-style: italic; }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-main { grid-column: 1 / 3; }
  .gallery-img { height: 220px; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-main { grid-column: auto; }
}

/* ─── ACTUALITÉS ──────────────────────────────────────── */
#actualites { background: var(--off); }
.actu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: 1200px; margin: 0 auto; }
.actu-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(26,43,107,.08); border: 1px solid rgba(26,43,107,.06); transition: transform .25s, box-shadow .25s; }
.actu-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(26,43,107,.13); }
.actu-thumb { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 60px; }
.actu-body { padding: 24px 22px; }
.actu-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.actu-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin: 8px 0 10px; line-height: 1.35; }
.actu-desc { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.actu-footer { display: flex; align-items: center; justify-content: space-between; }
.actu-footer time { font-size: 11px; color: var(--muted); }
.actu-footer a { font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; transition: color .2s; }
.actu-footer a:hover { color: var(--gold); }

/* ─── INSCRIPTION ─────────────────────────────────────── */
#inscription { background: var(--off); }
.form-wrap { max-width: 560px; margin: 48px auto 0; background: #fff; border-radius: 20px; padding: 44px 36px; box-shadow: 0 8px 48px rgba(26,43,107,.09); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: .05em; margin-bottom: 8px; text-transform: uppercase; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #dde2ee; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--text);
  background: #fff; transition: border-color .2s; outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--navy); }
.form-submit { width: 100%; margin-top: 8px; }
.form-success { display: none; margin-top: 24px; background: #e8f7f2; border: 1px solid #3aaa6e; border-radius: 12px; padding: 20px; color: #1a5c3a; font-weight: 600; text-align: center; }

/* ─── CONTACT ─────────────────────────────────────────── */
#contact { background: #fff; padding-top: 60px; padding-bottom: 60px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; text-align: center; }
.contact-icon { font-size: 36px; margin-bottom: 12px; }
.contact-item h4 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 6px; }
.contact-item p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.address-link { color: var(--muted); text-decoration: underline dotted; transition: color .2s; }
.address-link:hover { color: var(--navy); }
.map-embed { margin-top: 40px; border-radius: 12px; overflow: hidden; width: 100%; height: 360px; box-shadow: 0 4px 20px rgba(0,0,0,.10); }
.map-embed iframe { display: block; width: 100%; height: 100%; }
@media (max-width: 600px) { .map-embed { height: 240px; } }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: var(--navy2); color: rgba(255,255,255,.7); padding: 48px 5vw 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.footer-brand h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-col h5 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold2); margin-bottom: 14px; }
.footer-col a { display: block; font-size: .88rem; color: rgba(255,255,255,.65); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: .82rem; }
.footer-credit { margin-top: 8px; opacity: .6; font-size: .78rem; }
.footer-credit a { color: var(--gold2); text-decoration: none; transition: opacity .2s; }
.footer-credit a:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── WHATSAPP BUTTON ─────────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none;
  animation: waPulse 2s ease-in-out infinite;
  transition: transform .2s;
}
.wa-btn:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); transform: scale(1); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,.7); transform: scale(1.07); }
}
.wa-btn:hover { animation: none; transform: scale(1.1); }

/* ─── PAGE ARTICLE ────────────────────────────────────── */
.article-page {
  padding: clamp(106px, 14vw, 148px) 5vw clamp(64px, 8vw, 100px);
  min-height: 80vh;
}
body.has-top-bar .article-page { padding-top: clamp(140px, 18vw, 182px); }

.article-wrap { max-width: 820px; margin: 0 auto; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 600; font-size: .88rem;
  text-decoration: none; margin-bottom: 32px;
  transition: color .2s;
}
.back-link:hover { color: var(--gold); }

.article-header {
  display: flex; gap: 28px; align-items: flex-start;
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 2px solid var(--off);
}
.article-thumb {
  width: 110px; height: 110px; border-radius: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.article-cat {
  display: block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
.article-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); line-height: 1.25;
  color: var(--text); margin-bottom: 12px;
}
.article-date { color: var(--muted); font-size: .88rem; }

.article-intro {
  font-size: 1.08rem; color: var(--muted); line-height: 1.75;
  border-left: 4px solid var(--gold); padding-left: 20px;
  margin-bottom: 40px;
}

.article-body {
  font-size: 1rem; line-height: 1.9; color: #2c3e6a;
  margin-bottom: 52px;
}
.article-body h2 { font-size: 1.5rem; color: var(--navy); margin: 36px 0 16px; }
.article-body h3 { font-size: 1.15rem; color: var(--navy); margin: 28px 0 12px; }
.article-body p  { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--navy); }
.article-body a { color: var(--navy); text-underline-offset: 3px; }
.article-body a:hover { color: var(--gold); }

.article-share {
  border-top: 1px solid #E3EAF4; padding-top: 32px; margin-bottom: 40px;
}
.article-share h4 { font-size: .95rem; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.share-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px; font-size: .88rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: transform .15s, box-shadow .15s;
}
.share-btn:hover { transform: translateY(-2px); }
.share-wa   { background: #25D366; color: #fff; box-shadow: 0 4px 12px rgba(37,211,102,.3); }
.share-wa:hover { box-shadow: 0 6px 20px rgba(37,211,102,.45); }
.share-fb   { background: #1877F2; color: #fff; box-shadow: 0 4px 12px rgba(24,119,242,.3); }
.share-fb:hover { box-shadow: 0 6px 20px rgba(24,119,242,.45); }
.share-copy { background: var(--off); color: var(--navy); border: 2px solid #D6E4FF; }
.share-copy:hover { border-color: var(--navy); }

.btn-back-home {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--navy); color: #fff;
  border-radius: 8px; font-size: .95rem; font-weight: 700;
  text-decoration: none; transition: background .2s, transform .15s;
}
.btn-back-home:hover { background: var(--gold); color: var(--navy2); transform: translateY(-2px); }

@media (max-width: 600px) {
  .article-header { flex-direction: column; }
  .article-thumb  { width: 80px; height: 80px; font-size: 2.2rem; }
  .article-page   { padding-top: 100px; }
  body.has-top-bar .article-page { padding-top: 134px; }
}

/* ─── RESPONSIVE (small screens) ─────────────────────── */
@media (max-width: 600px) {
  section { padding: 48px 5vw; }
  .section-title { font-size: 1.6rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ─── LANG TOGGLE ─────────────────────────────────────── */
.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  background: none; border: 1.5px solid rgba(21,101,192,.2); border-radius: 7px;
  padding: 7px 12px; cursor: pointer; font-size: 12px; font-weight: 700;
  font-family: var(--font-body); letter-spacing: .04em;
  transition: border-color .2s;
}
.lang-toggle:hover { border-color: var(--gold); }
.lang-toggle .sep { color: var(--muted); font-weight: 400; }
.lang-toggle .lang-fr,
.lang-toggle .lang-ar { color: var(--muted); transition: color .2s; }
.lang-toggle .lang-fr.active,
.lang-toggle .lang-ar.active { color: var(--gold); }
.lang-toggle .lang-ar { font-family: 'Cairo', sans-serif; }

/* ─── RTL OVERRIDES ───────────────────────────────────── */
[dir="rtl"] body { direction: rtl; }

/* Feat card: décoration en bas vient de droite en RTL */
[dir="rtl"] .feat-card::after {
  transform-origin: right;
}

/* Orbe gauche du hero → côté droit en RTL */
[dir="rtl"] .orb2 { left: auto; right: 5%; }

/* Listes dans les articles : indentation côté droit */
[dir="rtl"] .article-body ul,
[dir="rtl"] .article-body ol { margin: 0 24px 20px 0; }

/* Éléments de promise : icône check à droite */
[dir="rtl"] .promise-item { flex-direction: row-reverse; }

/* Nav hamburger : pas de changement, flex-direction du nav gère l'ordre */

/* Formulaire d'inscription : labels et inputs RTL */
[dir="rtl"] .form-group label { text-align: right; display: block; }
[dir="rtl"] input, [dir="rtl"] select, [dir="rtl"] textarea { text-align: right; }

/* Pied de page */
[dir="rtl"] .footer-inner { direction: rtl; }