/* =====================================================
   Abéché Digital Impact — style.css (partagé)
   Charte : Orange #F47920 | Noir #0d0d0d | Blanc #fff
   ===================================================== */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --orange:#F47920; --orange-l:#FF9A45; --orange-d:#C95F10;
  --black:#0d0d0d;  --dark:#141414;     --dark2:#1e1e1e;   --dark3:#252525;
  --white:#fff;     --gray:rgba(255,255,255,.55);
  --font-d:'Syne',sans-serif;
  --font-b:'DM Sans',sans-serif;
  --radius:14px;
  --transition:.3s ease;
}
html { scroll-behavior:smooth; }
body { font-family:var(--font-b); background:var(--black); color:var(--white); overflow-x:hidden; }
img  { max-width:100%; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
::-webkit-scrollbar          { width:3px; }
::-webkit-scrollbar-track    { background:var(--dark); }
::-webkit-scrollbar-thumb    { background:var(--orange); border-radius:2px; }

/* ── CANVAS PARTICULES ── */
#particles-canvas { position:fixed; inset:0; z-index:0; pointer-events:none; opacity:.35; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 64px;
  transition:all .4s;
  border-bottom:1px solid transparent;
}
.navbar.scrolled {
  padding:12px 64px;
  background:rgba(13,13,13,.95);
  backdrop-filter:blur(24px);
  border-bottom-color:rgba(244,121,32,.15);
}
.nav-logo {
  font-family:var(--font-d); font-size:1.1rem; font-weight:800;
  letter-spacing:-.02em; color:var(--white);
}
.nav-logo span { color:var(--orange); }
.nav-links {
  display:flex; gap:32px; align-items:center;
}
.nav-links a {
  font-size:.8rem; font-weight:500; letter-spacing:.07em; text-transform:uppercase;
  color:rgba(255,255,255,.6); transition:color var(--transition); position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1.5px; background:var(--orange); transition:width .35s;
}
.nav-links a:hover,
.nav-links a.active { color:var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width:100%; }
.nav-cta {
  background:var(--orange); color:var(--white) !important;
  padding:9px 22px; border-radius:5px; font-size:.8rem; font-weight:700;
  letter-spacing:.05em; transition:all var(--transition);
  position:relative; overflow:hidden;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--orange-l); transform:translateY(-2px); box-shadow:0 8px 28px rgba(244,121,32,.35); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { width:24px; height:2px; background:var(--white); display:block; transition:.3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display:none; position:fixed; inset:0; z-index:999;
  background:var(--black); flex-direction:column;
  align-items:center; justify-content:center; gap:28px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-family:var(--font-d); font-size:1.6rem; font-weight:700;
  color:var(--white); transition:color var(--transition);
}
.mobile-menu a:hover { color:var(--orange); }
.mob-close {
  position:absolute; top:24px; right:28px;
  background:none; border:none; color:var(--white); font-size:2rem; cursor:pointer;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background:#080808; padding:72px 64px 28px;
  border-top:1px solid rgba(255,255,255,.06);
  position:relative; z-index:1;
}
.footer-grid {
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:52px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-brand p {
  font-size:.84rem; line-height:1.75; color:rgba(255,255,255,.4);
  margin-top:14px; max-width:280px;
}
.footer-logo { font-family:var(--font-d); font-size:1.05rem; font-weight:800; }
.footer-logo span { color:var(--orange); }
.footer-col h4 { font-family:var(--font-d); font-size:.85rem; font-weight:700; margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:.82rem; color:rgba(255,255,255,.4); transition:color var(--transition); }
.footer-col ul a:hover { color:var(--orange); }
.footer-bottom {
  padding-top:24px; display:flex; justify-content:space-between; align-items:center;
  font-size:.76rem; color:rgba(255,255,255,.3); flex-wrap:wrap; gap:10px;
}
.social-links { display:flex; gap:10px; margin-top:20px; }
.social-link {
  width:36px; height:36px; border-radius:9px;
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  font-size:.8rem; color:rgba(255,255,255,.45);
  transition:all var(--transition);
}
.social-link:hover { border-color:var(--orange); color:var(--orange); background:rgba(244,121,32,.08); }

/* Social icons specific */
.social-link.facebook:hover { border-color:#1877F2; color:#1877F2; background:rgba(24,119,242,.08); }
.social-link.tiktok:hover { border-color:#000; color:#fff; background:#000; }
.social-link.linkedin:hover { border-color:#0A66C2; color:#0A66C2; background:rgba(10,102,194,.08); }
.social-link.youtube:hover { border-color:#FF0000; color:#FF0000; background:rgba(255,0,0,.08); }

/* ════════════════════════════════════════
   SHARED COMPONENTS
════════════════════════════════════════ */
.divider { height:1px; background:linear-gradient(90deg,transparent,rgba(244,121,32,.25),transparent); position:relative; z-index:1; }
.section-label {
  display:inline-block; font-size:.72rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; color:var(--orange); margin-bottom:14px;
}
.section-title {
  font-family:var(--font-d); font-size:clamp(1.5rem,3vw,2.2rem);
  font-weight:800; line-height:1.08; letter-spacing:-.025em;
}
.section-title span { color: var(--orange); }
.section-sub {
  margin-top:16px; font-size:.95rem; font-weight:300; line-height:1.75;
  color:var(--gray); max-width:540px;
}
.section-head { margin-bottom:64px; }
.section-head.center { text-align:center; }
.section-head.center .section-sub { margin-left:auto; margin-right:auto; }

/* Buttons */
.btn-primary {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--orange); color:var(--white); padding:14px 30px;
  border-radius:6px; font-size:.88rem; font-weight:600;
  transition:all var(--transition); border:2px solid var(--orange);
  position:relative; overflow:hidden; cursor:pointer; font-family:var(--font-b);
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transform:translateX(-100%); transition:transform .5s;
}
.btn-primary:hover::before { transform:translateX(100%); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(244,121,32,.35); }
.btn-outline {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:var(--white); padding:14px 30px;
  border-radius:6px; font-size:.88rem; font-weight:500;
  border:2px solid rgba(255,255,255,.2); transition:all var(--transition);
  cursor:pointer; font-family:var(--font-b);
}
.btn-outline:hover { border-color:var(--orange); color:var(--orange); transform:translateY(-2px); }
.btn-orange-outline {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:var(--orange); padding:14px 30px;
  border-radius:6px; font-size:.88rem; font-weight:600;
  border:2px solid var(--orange); transition:all var(--transition); cursor:pointer;
}
.btn-orange-outline:hover { background:var(--orange); color:var(--white); transform:translateY(-2px); }

/* Marquee */
.marquee-band { background:var(--orange); padding:13px 0; overflow:hidden; position:relative; z-index:1; }
.marquee-track { display:flex; animation:marquee 22s linear infinite; white-space:nowrap; }
.marquee-track span { font-family:var(--font-d); font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--white); padding:0 36px; }
.marquee-track span.dot { color:rgba(255,255,255,.45); }

/* Reveal */
.reveal        { opacity:0; transform:translateY(40px); transition:opacity .7s ease, transform .7s ease; }
.reveal-left   { opacity:0; transform:translateX(-40px); transition:opacity .7s ease, transform .7s ease; }
.reveal-right  { opacity:0; transform:translateX(40px);  transition:opacity .7s ease, transform .7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; }
.counter       { display:inline-block; }

/* Page hero (inner pages) */
.page-hero {
  min-height:42vh; display:flex; align-items:center;
  padding:140px 64px 80px; position:relative; overflow:hidden; z-index:1;
}
.page-hero-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 60% 50%, rgba(244,121,32,.14) 0%, transparent 70%),
             linear-gradient(120deg,rgba(13,13,13,.98) 40%,rgba(13,13,13,.7));
}
.page-hero.contact-hero {
  background: linear-gradient(120deg,rgba(13,13,13,.55) 40%,rgba(13,13,13,.7)),
              url('images/1776368142833.png') center/cover no-repeat;
}
.page-hero.contact-hero .page-hero-bg {
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(244,121,32,.2) 0%, transparent 70%),
              linear-gradient(120deg,rgba(13,13,13,.9) 40%,rgba(13,13,13,.6));
}
.page-hero-grid {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(244,121,32,.04) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(244,121,32,.04) 1px,transparent 1px);
  background-size:60px 60px;
}
.page-hero-content { position:relative; z-index:2; }
.page-hero h1 { font-family:var(--font-d); font-size:clamp(2.4rem,5vw,4rem); font-weight:800; line-height:1.08; letter-spacing:-.03em; }
.page-hero h1 span { color:var(--orange); }
.page-hero p { margin-top:18px; font-size:1rem; font-weight:300; line-height:1.75; color:rgba(255,255,255,.6); max-width:540px; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:.78rem; color:rgba(255,255,255,.4); margin-bottom:22px; }
.breadcrumb a { color:rgba(255,255,255,.4); transition:color var(--transition); }
.breadcrumb a:hover { color:var(--orange); }
.breadcrumb span { color:var(--orange); }

/* Formations hero */
.page-hero.formations-hero {
  background: linear-gradient(120deg,rgba(13,13,13,.95) 40%,rgba(13,13,13,.7)),
              url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1600&q=80') center/cover no-repeat;
}
.page-hero.formations-hero .page-hero-bg {
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(244,121,32,.2) 0%, transparent 70%),
              linear-gradient(120deg,rgba(13,13,13,.9) 40%,rgba(13,13,13,.6));
}

/* Tags */
.tag {
  display:inline-block; padding:4px 12px; border-radius:100px;
  font-size:.7rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  background:rgba(244,121,32,.1); border:1px solid rgba(244,121,32,.25); color:var(--orange);
}

/* Cards common */
.card {
  background:var(--dark2); border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.07);
  transition:all var(--transition);
}
.card:hover { border-color:rgba(244,121,32,.28); transform:translateY(-5px); box-shadow:0 20px 56px rgba(0,0,0,.4); }

/* WhatsApp floating - avec vrai logo */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:500;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 28px rgba(37,211,102,.4);
  transition:all var(--transition);
  animation:waBounce 3s ease-in-out infinite;
}
.whatsapp-float img {
  width:32px; height:32px;
  filter: brightness(0) invert(1);
}
.whatsapp-float:hover { transform:scale(1.12); box-shadow:0 12px 40px rgba(37,211,102,.5); }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ════════════════════════════════════════
   HERO (index)
════════════════════════════════════════ */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding:100px 64px 60px; position:relative; overflow:hidden;
}
.hero-bg-img {
  position:absolute; inset:0;
  background:url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1600&q=80') center/cover no-repeat;
  opacity:.07; transform:scale(1.05); transition:transform 8s ease;
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(120deg,rgba(13,13,13,.97) 40%,rgba(13,13,13,.7));
}
.hero-glow {
  position:absolute; right:8%; top:15%; width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(244,121,32,.16) 0%,transparent 70%);
  animation:breathe 4s ease-in-out infinite;
}
.hero-content { position:relative; z-index:2; max-width:700px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(244,121,32,.1); border:1px solid rgba(244,121,32,.3);
  padding:6px 18px; border-radius:100px; font-size:.73rem; font-weight:600;
  color:var(--orange); letter-spacing:.1em; text-transform:uppercase; margin-bottom:32px;
  animation:fadeUp .8s ease both;
}
.hero-badge-dot { width:6px; height:6px; border-radius:50%; background:var(--orange); animation:pulse 2s infinite; flex-shrink:0; }
.hero-title {
  font-family:var(--font-d); font-size:clamp(2.2rem,4.5vw,4rem);
  font-weight:800; line-height:1.15; letter-spacing:-.025em;
  animation:fadeUp .8s .1s ease both;
}
.hero-title .accent { color:var(--orange); position:relative; display:inline-block; }
.hero-title .accent::after {
  content:''; position:absolute; bottom:4px; left:0; right:0;
  height:3px; background:var(--orange); opacity:.4; border-radius:2px;
}
.hero-title .outline { -webkit-text-stroke:2px rgba(255,255,255,.3); color:transparent; }
.hero-sub { margin-top:22px; font-size:1.05rem; font-weight:300; line-height:1.75; color:rgba(255,255,255,.6); max-width:520px; animation:fadeUp .8s .2s ease both; }
.hero-actions { margin-top:40px; display:flex; gap:14px; flex-wrap:wrap; animation:fadeUp .8s .3s ease both; }
.hero-stats { margin-top:60px; display:flex; gap:48px; animation:fadeUp .8s .4s ease both; flex-wrap:wrap; }
.stat-num  { font-family:var(--font-d); font-size:1.8rem; font-weight:800; color:var(--orange); line-height:1; }
.stat-label{ font-size:.7rem; font-weight:400; color:rgba(255,255,255,.45); margin-top:4px; letter-spacing:.06em; text-transform:uppercase; }

/* Hero right */
.hero-right { position:absolute; right:64px; top:50%; transform:translateY(-50%); width:600px; animation:fadeIn 1.2s .5s ease both; z-index:2; }
.hero-img-main { width:100%; height:450px; object-fit:cover; border-radius:20px; border:2px solid rgba(244,121,32,.2); box-shadow:0 40px 80px rgba(0,0,0,.6); }
.hero-img-float { position:absolute; bottom:-28px; left:-36px; width:165px; height:165px; object-fit:cover; border-radius:90px; border:4px solid rgba(244,121,32,.4); box-shadow:0 20px 40px rgba(0,0,0,.5); animation:float 10s ease-in-out infinite; }
.hero-badge-float { position:absolute; top:-18px; right:-18px; background:var(--orange); padding:14px 18px; border-radius:12px; text-align:center; box-shadow:0 12px 32px rgba(244,121,32,.4); }
.hero-badge-float-num  { font-family:var(--font-d); font-size:1.5rem; font-weight:800; line-height:1; }
.hero-badge-float-text { font-size:.65rem; opacity:.85; margin-top:2px; }

/* ── SECTIONS INDEX ── */
section.s-block { padding:100px 64px; position:relative; z-index:1; }

/* Avantages section */
.avantages-section { background: var(--dark); }
.avantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.avantage-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--dark2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .07);
}
.avantage-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.avantage-item h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.avantage-item p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Modalités section */
.modalites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.modalites-title {
  margin-bottom: 28px;
}
.modalites-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modalites-step {
  display: flex;
  gap: 16px;
}
.modalites-step-num {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.modalites-step-content h4 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.modalites-step-content p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
}
.modalites-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(244, 121, 32, .2);
}

/* Activités preview avec background images */
.Activités-preview-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.sp-card { 
  background:var(--dark2); 
  padding:44px 38px; 
  position:relative; 
  overflow:hidden; 
  transition:all .4s; 
}
.sp-card::before { 
  content:''; 
  position:absolute; 
  bottom:0; left:0; right:0; 
  height:3px; 
  background:linear-gradient(90deg,var(--orange-d),var(--orange-l)); 
  transform:scaleX(0); 
  transform-origin:left; 
  transition:transform .5s; 
}
.sp-card:hover { background:var(--dark3); }
.sp-card:hover::before { transform:scaleX(1); }
.sp-card:hover .sp-icon { background:rgba(244,121,32,.2); transform:scale(1.08) rotate(-4deg); }
.sp-icon { width:54px; height:54px; border-radius:12px; background:rgba(244,121,32,.08); border:1px solid rgba(244,121,32,.18); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:24px; transition:all .4s; }
.sp-card h3 { font-family:var(--font-d); font-size:1rem; font-weight:700; margin-bottom:10px; }
.sp-card p { font-size:.85rem; line-height:1.65; color:var(--gray); }
.sp-num { position:absolute; top:14px; right:18px; font-family:var(--font-d); font-size:3.5rem; font-weight:800; color:rgba(244,121,32,.05); line-height:1; }
.sp-link { display:inline-flex; align-items:center; gap:6px; color:var(--orange); font-size:.8rem; font-weight:600; margin-top:16px; transition:gap .25s; }
.sp-link:hover { gap:10px; }

/* Activités card with background image */
.sp-card-bg {
  position:relative;
  background-size:cover;
  background-position:center;
}
.sp-card-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(20,20,20,.95) 0%,rgba(20,20,20,.85) 100%);
  z-index:0;
}
.sp-card-bg > * {
  position:relative;
  z-index:1;
}

/* Chiffres */
.chiffres-band { background:var(--orange); position:relative; overflow:hidden; z-index:1; }
.chiffres-band::before { content:''; position:absolute; inset:0; background:url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&q=80') center/cover; opacity:.07; }
.chiffres-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; position:relative; z-index:1; }
.chiffre-item { text-align:center; padding:56px 36px; border-right:1px solid rgba(255,255,255,.15); }
.chiffre-item:last-child { border-right:none; }
.chiffre-num { font-family:var(--font-d); font-size:3.2rem; font-weight:800; color:var(--white); line-height:1; }
.chiffre-label { font-size:.75rem; font-weight:500; color:rgba(255,255,255,.8); margin-top:8px; letter-spacing:.05em; text-transform:uppercase; }

/* Portfolio preview */
.portfolio-preview-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pp-card { border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,.07); background:var(--dark2); transition:all .4s; }
.pp-card:hover { transform:translateY(-6px); border-color:rgba(244,121,32,.3); box-shadow:0 24px 56px rgba(0,0,0,.5); }
.pp-thumb { height:200px; position:relative; overflow:hidden; }
.pp-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.pp-card:hover .pp-thumb img { transform:scale(1.08); }
.pp-thumb::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,transparent 40%,rgba(13,13,13,.7)); }
.pp-cat { position:absolute; bottom:12px; left:14px; z-index:1; background:var(--orange); color:var(--white); font-size:.65rem; font-weight:700; padding:4px 10px; border-radius:4px; letter-spacing:.06em; text-transform:uppercase; }
.pp-body { padding:24px; }
.pp-body h3 { font-family:var(--font-d); font-size:.95rem; font-weight:700; margin-bottom:8px; }
.pp-body p { font-size:.82rem; color:var(--gray); line-height:1.6; }
.pp-result { display:inline-flex; align-items:center; gap:6px; margin-top:12px; font-size:.78rem; font-weight:600; color:var(--orange); }

/* Témoignages */
.temos-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.temo-card { background:var(--dark2); border-radius:18px; padding:34px; border:1px solid rgba(255,255,255,.06); transition:all .4s; position:relative; overflow:hidden; }
.temo-card::before { content:'"'; position:absolute; top:-10px; right:18px; font-size:7rem; color:rgba(244,121,32,.06); font-family:Georgia,serif; line-height:1; }
.temo-card:hover { border-color:rgba(244,121,32,.3); transform:translateY(-5px); box-shadow:0 20px 54px rgba(0,0,0,.4); }
.stars { color:var(--orange); font-size:.9rem; margin-bottom:18px; letter-spacing:3px; }
.temo-card blockquote { font-size:.88rem; line-height:1.8; color:rgba(255,255,255,.68); font-style:italic; margin-bottom:24px; position:relative; z-index:1; }
.temo-author { display:flex; align-items:center; gap:12px; }
.temo-avatar { width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid rgba(244,121,32,.35); flex-shrink:0; }
.temo-name { font-weight:600; font-size:.88rem; }
.temo-role { font-size:.74rem; color:rgba(255,255,255,.4); margin-top:2px; }

/* CTA band */
.cta-band { background:linear-gradient(135deg,var(--dark2) 0%,var(--dark3) 100%); padding:80px 64px; text-align:center; position:relative; overflow:hidden; z-index:1; }
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 60% at 50% 50%,rgba(244,121,32,.1) 0%,transparent 70%); }
.cta-band h2 { font-family:var(--font-d); font-size:clamp(2rem,4vw,3rem); font-weight:800; position:relative; z-index:1; }
.cta-band p { font-size:1rem; color:var(--gray); margin:16px auto 36px; max-width:500px; position:relative; z-index:1; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }
.btn-whatsapp { display:inline-flex; align-items:center; gap:9px; background:#25D366; color:var(--white); padding:14px 28px; border-radius:6px; font-size:.88rem; font-weight:700; transition:all var(--transition); }
.btn-whatsapp:hover { background:#1ebe5c; transform:translateY(-2px); box-shadow:0 10px 30px rgba(37,211,102,.35); }

/* ════════════════════════════════════════
   Activités PAGE
════════════════════════════════════════ */
.Activités-list { display:flex; flex-direction:column; gap:80px; }
.Activités-full { display:grid; grid-template-columns:1fr 1.2fr; gap:72px; align-items:center; }
.Activités-full.reverse { direction:rtl; }
.Activités-full.reverse > * { direction:ltr; }
.Activités-full-img { border-radius:20px; overflow:hidden; height:340px; border:1px solid rgba(244,121,32,.15); box-shadow:0 32px 72px rgba(0,0,0,.5); }
.Activités-full-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.Activités-full-img:hover img { transform:scale(1.05); }
.Activités-full-label { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.Activités-full-num { font-family:var(--font-d); font-size:3rem; font-weight:800; color:rgba(244,121,32,.15); line-height:1; }
.Activités-full h2 { font-family:var(--font-d); font-size:1.8rem; font-weight:800; margin-bottom:14px; }
.Activités-full p { font-size:.92rem; line-height:1.8; color:rgba(255,255,255,.6); margin-bottom:20px; }
.Activités-features { display:flex; flex-direction:column; gap:10px; margin-top:18px; }
.sf-item { display:flex; align-items:flex-start; gap:10px; font-size:.88rem; color:rgba(255,255,255,.65); line-height:1.5; }
.sf-dot { width:6px; height:6px; border-radius:50%; background:var(--orange); margin-top:6px; flex-shrink:0; }

/* Activités with background image */
.Activités-bg-section {
  position:relative;
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}
.Activités-bg-section::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(13,13,13,.95) 0%,rgba(13,13,13,.85) 100%);
}
.Activités-bg-section > * {
  position:relative;
  z-index:1;
}

/* Pricing */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.price-card { background:var(--dark2); border-radius:18px; padding:36px; border:1px solid rgba(255,255,255,.08); transition:all var(--transition); text-align:center; }
.price-card.popular { border-color:var(--orange); position:relative; }
.price-card.popular::before { content:'Populaire'; position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--orange); color:var(--white); font-size:.65rem; font-weight:700; padding:4px 14px; border-radius:100px; letter-spacing:.08em; }
.price-card:hover { transform:translateY(-5px); box-shadow:0 20px 56px rgba(0,0,0,.4); }
.price-name { font-family:var(--font-d); font-size:1rem; font-weight:700; margin-bottom:16px; }
.price-amount { font-family:var(--font-d); font-size:2.4rem; font-weight:800; color:var(--orange); }
.price-period { font-size:.78rem; color:rgba(255,255,255,.45); margin-bottom:24px; }
.price-features { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; text-align:left; }
.price-feat { display:flex; gap:8px; font-size:.83rem; color:rgba(255,255,255,.65); }
.price-feat::before { content:'✓'; color:var(--orange); font-weight:700; flex-shrink:0; }

/* ════════════════════════════════════════
   PORTFOLIO PAGE
════════════════════════════════════════ */
.portfolio-filters { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:48px; }
.filter-btn {
  padding:8px 20px; border-radius:100px; font-size:.78rem; font-weight:600;
  letter-spacing:.05em; border:1.5px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.6); background:transparent; cursor:pointer;
  transition:all var(--transition); font-family:var(--font-b);
}
.filter-btn.active,
.filter-btn:hover { background:var(--orange); border-color:var(--orange); color:var(--white); }
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.port-card { border-radius:18px; overflow:hidden; background:var(--dark2); border:1px solid rgba(255,255,255,.07); transition:all .4s; }
.port-card:hover { transform:translateY(-7px); border-color:rgba(244,121,32,.3); box-shadow:0 24px 60px rgba(0,0,0,.5); }
.port-thumb { height:220px; position:relative; overflow:hidden; }
.port-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.port-card:hover .port-thumb img { transform:scale(1.08); }
.port-overlay { position:absolute; inset:0; background:rgba(13,13,13,.75); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .4s; }
.port-card:hover .port-overlay { opacity:1; }
.port-view { background:var(--orange); color:var(--white); padding:10px 22px; border-radius:6px; font-size:.82rem; font-weight:700; cursor:pointer; border:none; }
.port-view:hover { background:var(--orange-l); }
.port-cat { position:absolute; top:14px; left:14px; z-index:1; }
.port-body { padding:26px; }
.port-title { font-family:var(--font-d); font-size:1rem; font-weight:700; margin-bottom:8px; }
.port-desc { font-size:.83rem; color:var(--gray); line-height:1.6; margin-bottom:14px; }
.port-results { display:flex; gap:16px; flex-wrap:wrap; }
.port-result { font-size:.75rem; font-weight:600; color:var(--orange); display:flex; align-items:center; gap:4px; }

/* Portfolio Modal */
.portfolio-modal {
  display:none;
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(0,0,0,.9);
  align-items:center;
  justify-content:center;
  padding:40px;
}
.portfolio-modal.active { display:flex; }
.modal-content {
  background:var(--dark2);
  border-radius:20px;
  max-width:900px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  border:1px solid rgba(244,121,32,.2);
}
.modal-header {
  padding:30px;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.modal-header h3 { font-family:var(--font-d); font-size:1.4rem; }
.modal-close {
  background:none;
  border:none;
  color:var(--white);
  font-size:1.5rem;
  cursor:pointer;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s;
}
.modal-close:hover { background:rgba(244,121,32,.2); color:var(--orange); }
.modal-body { padding:30px; }
.modal-image { width:100%; height:300px; object-fit:cover; border-radius:12px; margin-bottom:24px; }
.modal-body h4 { font-family:var(--font-d); font-size:1.1rem; margin:24px 0 12px; color:var(--orange); }
.modal-body ul { margin-left:20px; }
.modal-body li { font-size:.9rem; color:var(--gray); margin-bottom:8px; }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-imgs { position:relative; height:500px; }
.about-img1 { position:absolute; top:0; left:0; width:72%; height:360px; object-fit:cover; border-radius:20px; border:1px solid rgba(244,121,32,.2); box-shadow:0 40px 80px rgba(0,0,0,.5); }
.about-img2 { position:absolute; bottom:0; right:0; width:56%; height:240px; object-fit:cover; border-radius:16px; border:2px solid rgba(244,121,32,.35); box-shadow:0 24px 56px rgba(0,0,0,.5); animation:float 7s ease-in-out infinite; }
.about-badge { position:absolute; top:46%; left:52%; transform:translate(-50%,-50%); background:var(--orange); padding:20px 26px; border-radius:14px; text-align:center; box-shadow:0 20px 48px rgba(244,121,32,.45); z-index:3; }
.about-badge-num  { font-family:var(--font-d); font-size:2rem; font-weight:800; }
.about-badge-text { font-size:.68rem; opacity:.9; margin-top:2px; text-transform:uppercase; letter-spacing:.06em; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:36px; }
.val-item { padding:20px; border-radius:12px; border:1px solid rgba(244,121,32,.12); background:rgba(244,121,32,.03); transition:all .35s; }
.val-item:hover { border-color:rgba(244,121,32,.35); background:rgba(244,121,32,.07); transform:translateY(-3px); }
.val-item h4 { font-family:var(--font-d); font-size:.88rem; font-weight:700; margin-bottom:7px; color:var(--orange); }
.val-item p { font-size:.78rem; color:rgba(255,255,255,.5); line-height:1.55; }

/* Team */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.team-grid-preview { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.team-card { border-radius:18px; overflow:hidden; position:relative; }
.team-card img { width:100%; height:300px; object-fit:cover; transition:transform .6s, filter .4s; }
.team-card:hover img { transform:scale(1.08); filter:brightness(.6); }
.team-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(13,13,13,.9) 0%,transparent 50%); display:flex; flex-direction:column; justify-content:flex-end; padding:22px; }
.team-name { font-family:var(--font-d); font-size:.95rem; font-weight:700; }
.team-role { font-size:.75rem; color:var(--orange); margin-top:3px; }
.team-socials { display:flex; gap:7px; margin-top:9px; }
.team-soc { width:28px; height:28px; border-radius:6px; background:rgba(244,121,32,.2); border:1px solid rgba(244,121,32,.3); display:flex; align-items:center; justify-content:center; font-size:.68rem; color:var(--orange); transition:all var(--transition); }
.team-soc:hover { background:var(--orange); color:var(--white); }

/* Team extended card for full team page */
.team-card-extended {
  background:var(--dark2);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.07);
  transition:all .4s;
}
.team-card-extended:hover {
  border-color:rgba(244,121,32,.3);
  transform:translateY(-5px);
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}
.team-card-extended img {
  width:100%;
  height:300px;
  object-fit:cover;
  object-position:center 20%;
  transition:transform .5s ease;
}
.team-card-extended:hover img {
  transform:scale(1.03);
}
.team-card-extended .team-name {
  font-family:var(--font-d);
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:4px;
}
.team-card-extended .team-role {
  font-size:.85rem;
  color:var(--orange);
  margin-bottom:16px;
}
.team-card-extended .team-actions {
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
  min-width:0;
}
.team-card-extended .team-btn {
  flex:1 1 50%;
  min-width:0;
  max-width:100%;
  padding:10px 12px;
  border-radius:8px;
  font-size:.75rem;
  font-weight:600;
  text-align:center;
  transition:all .3s;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.team-card-extended .team-btn.linkedin {
  background:var(--orange);
  color:white;
}
.team-card-extended .team-btn.linkedin:hover {
  background:var(--orange-l);
}
.team-card-extended .team-btn.portfolio {
  background:var(--orange);
  color:white;
}
.team-card-extended .team-btn.portfolio:hover {
  background:var(--orange-l);
}

/* Stats grid */
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:3px;
}

/* Stat item */
.stat-item {
  background:var(--dark2);
  padding:44px 24px;
  text-align:center;
}
.stat-item-alt {
  background:var(--dark3);
}
.stat-value {
  font-family:var(--font-d);
  font-size:3rem;
  font-weight:800;
  color:var(--orange);
  line-height:1;
}
.stat-label {
  font-size:.85rem;
  color:var(--gray);
  margin-top:8px;
}

/* Skills */
.skills-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px 60px; }
.skill-item { }
.skill-header { display:flex; justify-content:space-between; margin-bottom:8px; font-size:.85rem; font-weight:600; }
.skill-bar { height:4px; background:rgba(255,255,255,.1); border-radius:2px; overflow:hidden; }
.skill-fill { height:100%; background:linear-gradient(90deg,var(--orange-d),var(--orange-l)); border-radius:2px; width:0; transition:width 1.2s cubic-bezier(.4,0,.2,1); }

/* Partners */
.partners-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.partner-card { background:var(--dark2); border-radius:12px; padding:28px 20px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.07); transition:all var(--transition); }
.partner-card:hover { border-color:rgba(244,121,32,.3); transform:translateY(-3px); }
.partner-name { font-family:var(--font-d); font-size:.85rem; font-weight:700; color:rgba(255,255,255,.5); transition:color var(--transition); }
.partner-card:hover .partner-name { color:var(--orange); }

/* Experiences */
.exp-timeline { position:relative; padding-left:32px; }
.exp-timeline::before { content:''; position:absolute; left:0; top:0; bottom:0; width:2px; background:linear-gradient(to bottom,var(--orange),transparent); }
.exp-item { position:relative; margin-bottom:48px; }
.exp-item::before { content:''; position:absolute; left:-38px; top:6px; width:12px; height:12px; border-radius:50%; background:var(--orange); border:3px solid var(--black); }
.exp-year { font-size:.72rem; font-weight:700; color:var(--orange); letter-spacing:.1em; text-transform:uppercase; margin-bottom:8px; }
.exp-item h3 { font-family:var(--font-d); font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.exp-item p { font-size:.87rem; color:rgba(255,255,255,.55); line-height:1.7; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-wrapper { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:start; }
.contact-info-card { background:var(--dark2); border-radius:18px; padding:36px; border:1px solid rgba(255,255,255,.08); margin-bottom:24px; }
.contact-info-card h3 { font-family:var(--font-d); font-size:1.1rem; font-weight:700; margin-bottom:20px; }
.c-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:18px; }
.c-icon { width:42px; height:42px; border-radius:10px; background:rgba(244,121,32,.08); border:1px solid rgba(244,121,32,.18); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; transition:all var(--transition); }
.c-item:hover .c-icon { background:rgba(244,121,32,.18); }
.c-item strong { font-size:.83rem; display:block; margin-bottom:2px; }
.c-item span { font-size:.83rem; color:var(--gray); }
.contact-form-wrap { background:var(--dark2); border-radius:18px; padding:44px; border:1px solid rgba(255,255,255,.08); }
.contact-form-wrap h2 { font-family:var(--font-d); font-size:1.4rem; font-weight:800; margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.form-group label { font-size:.75rem; font-weight:600; color:rgba(255,255,255,.55); letter-spacing:.06em; text-transform:uppercase; }
.form-group input,
.form-group textarea,
.form-group select { background:var(--dark3); border:1px solid rgba(255,255,255,.09); border-radius:9px; padding:13px 16px; color:var(--white); font-family:var(--font-b); font-size:.9rem; transition:all var(--transition); outline:none; width:100%; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(244,121,32,.1); }
.form-group textarea { resize:vertical; min-height:130px; }
.form-group select option { background:var(--dark2); }
.form-submit { background:var(--orange); color:var(--white); border:none; border-radius:9px; padding:15px 36px; font-family:var(--font-b); font-size:.9rem; font-weight:700; cursor:pointer; transition:all var(--transition); width:100%; margin-top:6px; }
.form-submit:hover { background:var(--orange-l); transform:translateY(-2px); box-shadow:0 10px 32px rgba(244,121,32,.35); }
.wa-contact-btn { display:flex; align-items:center; gap:12px; background:#25D366; color:var(--white); padding:16px 24px; border-radius:12px; font-weight:700; font-size:.95rem; margin-top:18px; transition:all var(--transition); }
.wa-contact-btn:hover { background:#1ebe5c; transform:translateY(-2px); box-shadow:0 10px 30px rgba(37,211,102,.35); }
.map-embed { border-radius:16px; overflow:hidden; height:260px; border:1px solid rgba(255,255,255,.08); margin-top:24px; background:var(--dark3); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.3); font-size:.9rem; }
.wa-contact-note { font-size:.75rem; font-weight:400; opacity:.85; }
.contact-social { margin-top:28px; }
.contact-social-title { font-family:var(--font-d); font-size:.88rem; font-weight:700; margin-bottom:16px; }
.contact-social .social-links { margin-top:0; }
.contact-faq { margin-top:40px; }
.contact-faq-title { font-family:var(--font-d); font-size:.88rem; font-weight:700; margin-bottom:18px; }
.contact-form-wrap h2 span { color:var(--orange); }
.rgpd-row { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.rgpd-checkbox { width:16px; height:16px; accent-color:var(--orange); }
.rgpd-label { font-size:.78rem; color:var(--gray); }
.rgpd-link { color:var(--orange); }
.privacy-note { font-size:.75rem; color:rgba(255,255,255,.35); margin-top:14px; text-align:center; }
.hidden-bot { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-status { font-size:.82rem; margin:14px 0 0; min-height:1em; font-weight:600; }
.form-status.success { color:#27ae60; }
.form-status.error { color:#e74c3c; }
.form-submit:disabled { opacity:.7; cursor:wait; }
.offices-section { background:var(--dark); }
.offices-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.office-card { background:var(--dark2); padding:36px 28px; text-align:center; }
.office-card-dark { background:var(--dark3); }
.office-icon { font-size:2rem; margin-bottom:14px; }
.office-card-title { font-family:var(--font-d); font-size:1rem; font-weight:700; margin-bottom:10px; color:var(--orange); }
.office-card-text { font-size:.82rem; color:var(--gray); line-height:1.65; }

/* Source indicator for contact form */
.source-indicator {
  background:rgba(244,121,32,.1);
  border:1px solid rgba(244,121,32,.3);
  border-radius:10px;
  padding:12px 16px;
  margin-bottom:20px;
  display:none;
  align-items:center;
  gap:10px;
}
.source-indicator-icon {
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--orange);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
}
.source-indicator-text {
  font-size:.85rem;
}
.source-indicator-text strong {
  color:var(--orange);
}

/* ════════════════════════════════════════
   BLOG PAGE
════════════════════════════════════════ */
.blog-layout { display:grid; grid-template-columns:1fr 320px; gap:48px; align-items:start; }
.blog-main-grid { display:flex; flex-direction:column; gap:32px; }
.blog-card { display:grid; grid-template-columns:300px 1fr; gap:0; border-radius:16px; overflow:hidden; background:var(--dark2); border:1px solid rgba(255,255,255,.07); transition:all .4s; }
.blog-card:hover { border-color:rgba(244,121,32,.3); transform:translateY(-4px); box-shadow:0 18px 50px rgba(0,0,0,.4); }
.blog-card.hidden { display:none; }
.blog-thumb { height:220px; overflow:hidden; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.blog-card:hover .blog-thumb img { transform:scale(1.06); }
.blog-body { padding:28px; display:flex; flex-direction:column; justify-content:space-between; }
.blog-meta { display:flex; gap:12px; align-items:center; margin-bottom:14px; flex-wrap:wrap; }
.blog-cat { background:rgba(244,121,32,.1); border:1px solid rgba(244,121,32,.25); color:var(--orange); font-size:.68rem; font-weight:700; padding:4px 10px; border-radius:100px; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; transition:all .3s; }
.blog-cat:hover { background:var(--orange); color:white; }
.blog-date { font-size:.75rem; color:rgba(255,255,255,.35); }
.blog-body h2 { font-family:var(--font-d); font-size:1.1rem; font-weight:700; line-height:1.4; margin-bottom:10px; }
.blog-body p { font-size:.85rem; color:var(--gray); line-height:1.65; }
.blog-footer { display:flex; align-items:center; justify-content:space-between; margin-top:20px; }
.blog-author { display:flex; align-items:center; gap:9px; }
.blog-author img { width:32px; height:32px; border-radius:50%; object-fit:cover; }
.blog-author-name { font-size:.78rem; font-weight:600; }
.blog-link { color:var(--orange); font-size:.8rem; font-weight:600; display:flex; align-items:center; gap:5px; transition:gap .25s; cursor:pointer; }
.blog-link:hover { gap:9px; }

/* Blog sidebar */
.blog-sidebar { }
.sidebar-card { background:var(--dark2); border-radius:14px; padding:26px; border:1px solid rgba(255,255,255,.07); margin-bottom:24px; }
.sidebar-card h3 { font-family:var(--font-d); font-size:.92rem; font-weight:700; margin-bottom:18px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,.08); }
.sidebar-tags { display:flex; flex-wrap:wrap; gap:8px; }
.s-tag { padding:5px 14px; border-radius:100px; font-size:.72rem; font-weight:600; border:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.55); cursor:pointer; transition:all var(--transition); }
.s-tag:hover { border-color:var(--orange); color:var(--orange); }
.s-tag.active { background:var(--orange); color:white; border-color:var(--orange); }
.recent-post { display:flex; gap:12px; margin-bottom:16px; align-items:flex-start; cursor:pointer; }
.recent-post:last-child { margin-bottom:0; }
.recent-thumb { width:60px; height:52px; border-radius:8px; overflow:hidden; flex-shrink:0; }
.recent-thumb img { width:100%; height:100%; object-fit:cover; }
.recent-title { font-size:.8rem; font-weight:600; line-height:1.4; margin-bottom:4px; transition:color var(--transition); }
.recent-post:hover .recent-title { color:var(--orange); }
.recent-date { font-size:.7rem; color:rgba(255,255,255,.35); }

/* Category link */
.cat-link {
  display:flex;
  justify-content:space-between;
  font-size:.83rem;
  color:rgba(255,255,255,.55);
  padding:6px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:color .2s;
  cursor:pointer;
}
.cat-link:hover { color:var(--orange); }
.cat-link span { color:var(--orange); }

/* Newsletter success message */
.newsletter-success {
  background:rgba(39,174,96,.15);
  border:1px solid rgba(39,174,96,.3);
  border-radius:8px;
  padding:12px;
  text-align:center;
  font-size:.85rem;
  color:#27ae60;
  display:none;
}
.newsletter-success.show { display:block; }

/* FAQ */
.faq-item { border-bottom:1px solid rgba(255,255,255,.07); overflow:hidden; }
.faq-q { width:100%; background:none; border:none; color:var(--white); font-family:var(--font-b); font-size:.95rem; font-weight:500; padding:20px 0; text-align:left; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:18px; }
.faq-icon { width:28px; height:28px; border-radius:50%; border:1.5px solid rgba(244,121,32,.4); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .35s; color:var(--orange); font-size:1.1rem; }
.faq-item.open .faq-icon { background:var(--orange); color:var(--white); border-color:var(--orange); transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .45s ease; }
.faq-a p { padding-bottom:20px; font-size:.88rem; line-height:1.8; color:rgba(255,255,255,.55); }
.faq-item.open .faq-a { max-height:300px; }

/* ════════════════════════════════════════
   FORMATIONS PAGE
════════════════════════════════════════ */
.formations-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.formation-card {
  background:var(--dark2);
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.07);
  transition:all .4s;
}
.formation-card:hover {
  border-color:rgba(244,121,32,.3);
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(0,0,0,.5);
}
.formation-thumb {
  height:200px;
  position:relative;
  overflow:hidden;
}
.formation-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s;
}
.formation-card:hover .formation-thumb img {
  transform:scale(1.08);
}
.formation-duration {
  position:absolute;
  top:14px;
  right:14px;
  background:var(--orange);
  color:white;
  padding:6px 12px;
  border-radius:100px;
  font-size:.72rem;
  font-weight:700;
}
.formation-body {
  padding:28px;
}
.formation-body h3 {
  font-family:var(--font-d);
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:12px;
}
.formation-body p {
  font-size:.85rem;
  color:var(--gray);
  line-height:1.65;
  margin-bottom:20px;
}
.formation-meta {
  display:flex;
  gap:16px;
  margin-bottom:20px;
  font-size:.78rem;
  color:rgba(255,255,255,.5);
}
.formation-meta span {
  display:flex;
  align-items:center;
  gap:6px;
}
.formation-btn {
  width:100%;
  background:var(--orange);
  color:white;
  border:none;
  border-radius:10px;
  padding:14px;
  font-family:var(--font-b);
  font-size:.88rem;
  font-weight:700;
  cursor:pointer;
  transition:all .3s;
}
.formation-btn:hover {
  background:var(--orange-l);
  transform:translateY(-2px);
}

/* ════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════ */
@keyframes breathe  { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.1);opacity:1} }
@keyframes pulse    { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0;transform:translateY(-50%) scale(.95)} to{opacity:1;transform:translateY(-50%) scale(1)} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── RESPONSIVE ÉQUIPE (mobile) ── */
@media (max-width:1024px) {
  /* Grille équipe */
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .team-card-extended img { height:280px; object-position:center 15%; }
  .team-card-extended .team-info { padding:16px; }
  .team-card-extended .team-name { font-size:1rem; }
  .team-card-extended .team-role { font-size:.8rem; margin-bottom:12px; }
  .team-card-extended .team-btn { padding:8px 10px; font-size:.72rem; }
  .team-card-extended { border-radius:16px; }

  /* Stats section */
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item { padding:36px 20px; }
  .stat-value { font-size:2.4rem; }
  .stat-label { font-size:.8rem; }
}

@media (max-width:600px) {
  /* Grille équipe - 1 colonne */
  .team-grid { grid-template-columns:1fr !important; gap:16px; }
  .team-card-extended .team-info { padding:16px; }
  .team-card-extended .team-name { font-size:1rem; }
  .team-card-extended .team-role { font-size:.8rem; margin-bottom:12px; }
  .team-card-extended .team-actions { gap:8px; }
  .team-card-extended .team-btn { padding:8px 6px; font-size:.7rem; }
  .team-card-extended { border-radius:14px; }
  .team-card-extended img { height:260px; object-position:center 20%; }

  /* Stats section - empilement vertical */
  .stats-grid { grid-template-columns:1fr; gap:2px; }
  .stat-item { padding:28px 20px; }
  .stat-value { font-size:2rem; word-break:break-word; }
  .stat-label { font-size:.78rem; }

  /* Hero équipe */
  .page-hero { padding:100px 20px 50px; min-height:35vh; }
  .page-hero h1 { font-size:1.8rem; }
  .page-hero p { font-size:.9rem; max-width:100%; }
  .breadcrumb { font-size:.72rem; flex-wrap:wrap; }

  /* Section head */
  .section-head { margin-bottom:40px; }
  .section-head.center .section-title br { display:none; }
  .section-title { font-size:1.7rem; }
  .section-sub { font-size:.88rem; }

  /* CTA band */
  .cta-band { padding:50px 20px; }
  .cta-band h2 { font-size:1.6rem; }
  .cta-band p { font-size:.9rem; margin:12px auto 28px; }
  .cta-actions { flex-direction:column; gap:12px; }
  .cta-actions a { width:100%; justify-content:center; }

  /* Footer */
  footer { padding:48px 20px 0; }

  /* WhatsApp float */
  .whatsapp-float { bottom:20px; right:20px; width:50px; height:50px; }
  .whatsapp-float svg { width:28px; height:28px; }
}

/* ── RESPONSIVE GLOBAL ── */
@media (max-width:1024px) {
  .navbar, .navbar.scrolled { padding:14px 24px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero { padding:60px 16px 30px; }
  .hero-right { display:none; }
  .hero-stats { gap:24px; }
  .page-hero { padding:120px 24px 64px; }
  section.s-block { padding:70px 24px; }
  .Activités-preview-grid { grid-template-columns:1fr; gap:3px; }
  .chiffres-grid { grid-template-columns:1fr 1fr; }
  .portfolio-preview-grid { grid-template-columns:1fr; }
  .temos-grid { grid-template-columns:1fr; }
  .cta-band { padding:60px 24px; }
  footer { padding:52px 24px 24px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  /* Activités page */
  .Activités-full { grid-template-columns:1fr; gap:36px; }
  .Activités-full.reverse { direction:ltr; }
  .pricing-grid { grid-template-columns:1fr; }
  /* Portfolio */
  .portfolio-grid { grid-template-columns:1fr; }
  /* About */
  .about-grid { grid-template-columns:1fr; gap:48px; }
  .about-imgs { height:280px; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .team-grid-preview { grid-template-columns:1fr 1fr; }
  .skills-grid { grid-template-columns:1fr; }
  .partners-grid { grid-template-columns:repeat(3,1fr); }
  /* Contact */
  .contact-wrapper { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  /* Blog */
  .blog-layout { grid-template-columns:1fr; }
  .blog-card { grid-template-columns:1fr; }
  .blog-thumb { height:200px; }
  /* Formations */
  .formations-grid { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .hero-title { font-size:1.9rem; line-height:1.2; text-align:center; }
  .hero-glow { width:250px; height:250px; top:8%; right:5%; }
  .hero-actions { justify-content:center; }
  .hero-sub { text-align:center; margin-left:auto; margin-right:auto; }
  .nav-logo {font-family: var(--font-d);font-size: 0.7rem;font-weight: 800;letter-spacing: -.02em;color: var(--white);}
  .hero-stats {margin-top: 60px; display:grid; grid-template-columns:repeat(3,1fr); gap: 18px; animation: fadeUp .8s .4s ease both;flex-wrap: wrap;
}
.stat-num {font-size: 1.5rem;}
.offices-grid{ grid-template-columns: 1fr;}
.office-card { border-radius: 12px; }
  .section-title { font-size:1.5rem; }
  .partners-grid { grid-template-columns:1fr; }
  .chiffres-grid { grid-template-columns:1fr; }
  .chiffre-item { padding:36px 24px; border-right:none; border-bottom:1px solid rgba(255,255,255,.15); }
  .chiffre-item:last-child { border-bottom:none; }
  .chiffre-num { font-size:2.2rem; }
  .chiffre-label { font-size:.7rem; }
  .team-grid-preview { grid-template-columns:1fr; }
  .avantages-grid { display: grid; grid-template-columns:1fr; gap: 24px; }
  .modalites-grid {
    display: grid;
    grid-template-columns:1fr;
    gap: 80px;
    align-items: center;
}
  .footer-grid {
  display:block;
  text-align: center;}
  .footer-brand p {
 max-width: 400px; }
 .social-links{
display:inline-flex;}
.footer-col {
  margin-bottom: 2px;
}
.footer-col h4 {
  margin-bottom: 14px;
  margin-top: 14px;
  font-size: .95rem;
}
.footer-col ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 20px;
  text-align: center;
}
.footer-col ul a {
  font-size: .85rem;
  line-height: 1.4;
}
.footer-col:last-child ul {
  grid-template-columns: 1fr;
  text-align: center;
}
.footer-col:nth-child(3) ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
}
/*logo*/
.logo img {
  height: 40px;
  margin-right: 10px;
}
