/* ==========================================================
   MULTIAXE — Design System v2 (Light Theme)
   CSS global pour toutes les pages
   Palette : Blanc cassé #f8f7f4 | Bleu #1a3a6b | Orange #c9500e
   ========================================================== */

/* ── 1. Variables ─────────────────────────────────────── */
:root {
  --blue:        #1a3a6b;
  --blue-mid:    #24508a;
  --blue-light:  #dce8f5;
  --orange:      #c9500e;
  --orange-mid:  #d4622a;
  --orange-light:#fbeee6;
  --bg:          #f8f7f4;
  --bg-alt:      #ffffff;
  --surface:     #ffffff;
  --border:      #e4e2dc;
  --text:        #1e1e2e;
  --text-mid:    #4a4a5e;
  --text-muted:  #7a7a92;
  --shadow-sm:   0 2px 8px rgba(26,58,107,.08);
  --shadow-md:   0 6px 24px rgba(26,58,107,.12);
  --shadow-lg:   0 16px 48px rgba(26,58,107,.15);
  --font-display:'Exo 2', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --section-pad: clamp(60px, 8vw, 100px);
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-2xl: 40px;
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. Reset & Base ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
[data-aos] { opacity: 1 !important; transform: none !important; }

/* ── 3. Layout ────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ── 4. Décor grille ──────────────────────────────────── */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,58,107,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,58,107,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ── 5. Utilitaires section ───────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .35rem .85rem;
  background: var(--orange-light);
  border-radius: 50px;
  border: 1px solid rgba(201,80,14,.18);
  margin-bottom: 14px;
}
.section-label.blue-label {
  color: var(--blue);
  background: var(--blue-light);
  border-color: rgba(26,58,107,.15);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title span { color: var(--blue); }
.section-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
}

/* ── 6. Boutons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-2xl);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn i { font-size: 0.85rem; transition: transform var(--t); }
.btn:hover i { transform: translateX(3px); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,80,14,.3);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: #fff;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-2xl);
  font-size: 0.95rem;
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-white:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201,80,14,.25);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-2xl);
  font-size: 0.92rem;
  transition: all var(--t);
  cursor: pointer;
  text-decoration: none;
}
.btn-orange:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,107,.25);
}

/* ── 7. Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: padding var(--t);
}
.nav::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.nav.scrolled { padding: .65rem 0; }
.nav.scrolled::before {
  background: rgba(248,247,244,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(26,58,107,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 clamp(16px, 4vw, 44px);
  position: relative;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; transition: opacity var(--t); }
.nav-logo img:hover { opacity: .85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 8px 13px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav.scrolled .nav-links > li > a { color: var(--text-mid); }
.nav-links > li > a:hover,
.nav-links > li > a.active { color: rgba(255,255,255,1); background: rgba(255,255,255,.12); }
.nav.scrolled .nav-links > li > a:hover,
.nav.scrolled .nav-links > li > a.active { color: var(--blue); background: var(--blue-light); }
.nav-dropdown { position: relative; }
.nav-dropdown > a .chevron {
  font-size: 0.68rem;
  transition: transform var(--t);
}
.nav-dropdown:hover > a .chevron { transform: rotate(180deg); }
.nav-submenu {
  position: absolute;
  top: calc(100% + 10px); left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: var(--text-mid);
  transition: all var(--t);
}
.nav-submenu a:hover { background: var(--blue-light); color: var(--blue); padding-left: 18px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 7px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.25);
  transition: all var(--t); flex-shrink: 0; margin-right: 10px;
}
.nav.scrolled .nav-phone { color: var(--blue); border-color: var(--blue-light); background: var(--blue-light); }
.nav-phone:hover { color: var(--orange) !important; border-color: var(--orange) !important; background: var(--orange-light) !important; }
.nav-phone i { font-size: 0.75rem; }
.nav-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 9px 20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-2xl);
  font-family: var(--font-display); font-size: 0.86rem; font-weight: 600;
  transition: all var(--t); border: 2px solid var(--orange);
}
.nav-cta:hover { background: var(--blue); border-color: var(--blue); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 9px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.25);
  transition: all var(--t); cursor: pointer; margin-left: auto;
}
.nav.scrolled .hamburger { border-color: var(--border); }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--t); }
.nav.scrolled .hamburger span { background: var(--blue); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 8. Mobile nav ────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100%);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 40px rgba(26,58,107,.1);
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
  z-index: 999;
  display: flex; flex-direction: column; gap: 3px;
  transition: right .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { right: 0; }
.mobile-nav > a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-md);
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 500;
  color: var(--text-mid); transition: all var(--t);
}
.mobile-nav > a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-nav > a > i { color: var(--orange); width: 16px; text-align: center; }
.mobile-nav-sub {
  padding-left: 12px;
  border-left: 2px solid var(--border);
  margin: 2px 20px 6px;
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-nav-sub a {
  display: block;
  padding: 9px 12px; border-radius: var(--r-sm);
  font-family: var(--font-display); font-size: 0.88rem;
  color: var(--text-mid); transition: all var(--t);
}
.mobile-nav-sub a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-nav-footer {
  margin-top: auto; padding: 16px;
  background: var(--bg); border-radius: var(--r-md);
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px;
}
.mobile-nav-footer .btn { width: 100%; justify-content: center; }
.mobile-nav-tel {
  display: flex !important; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--blue) !important; padding: 4px 0;
}
.mobile-nav-tel i { color: var(--orange) !important; }
/* Overlay pour fermer le menu mobile */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(26,58,107,.25);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

/* ── 9. Hero de page interne ──────────────────────────── */
.page-hero {
  position: relative;
  padding: clamp(110px, 14vw, 160px) 0 clamp(60px, 7vw, 100px);
  background: var(--blue);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-icon {
  position: relative; z-index: 2;
  width: 72px; height: 72px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.page-hero-icon i { font-size: 1.8rem; color: #fff; }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Rétrocompatibilité service-hero */
.service-hero {
  position: relative;
  padding: clamp(110px, 14vw, 160px) 0 clamp(60px, 7vw, 100px);
  background: var(--blue);
  overflow: hidden;
  text-align: center;
}
.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.service-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.service-icon-large {
  position: relative; z-index: 2;
  width: 72px; height: 72px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.service-icon-large i { font-size: 1.8rem; color: #fff; }
.service-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1;
  color: #fff; margin-bottom: 18px;
}
.service-intro {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(255,255,255,.78); line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}

/* ── 10. Sections de contenu ──────────────────────────── */
.service-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative;
}
.service-section.alt-bg { background: var(--bg-alt); }
.service-section h2,
.service-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}
.service-section h2 { text-align: center; margin-bottom: 40px; }
.service-content { max-width: 820px; margin: 0 auto; }
.service-content p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-content p strong { color: var(--text); font-weight: 600; }
.service-content p a { color: var(--blue); transition: color var(--t); }
.service-content p a:hover { color: var(--orange); }

/* ── 11. Grille avantages / bénéfices ─────────────────── */
.benefits-grid,
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.benefit-item,
.advantage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.benefit-item:hover,
.advantage-card:hover {
  border-color: rgba(26,58,107,.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon,
.advantage-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--blue-light);
  border: 1px solid rgba(26,58,107,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--t);
}
.benefit-icon i,
.advantage-icon i { font-size: 1.3rem; color: var(--blue); transition: color var(--t); }
.benefit-item:hover .benefit-icon,
.advantage-card:hover .advantage-icon {
  background: var(--blue);
  border-color: var(--blue);
}
.benefit-item:hover .benefit-icon i,
.advantage-card:hover .advantage-icon i { color: #fff; }
.benefit-item h3,
.advantage-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.97rem; color: var(--text); margin-bottom: 8px;
}
.benefit-item h3 a { color: inherit; }
.benefit-item h3 a:hover { color: var(--blue); }
.benefit-item p,
.advantage-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* ── 12. Étapes d'approche ────────────────────────────── */
.approach-content { max-width: 1000px; margin: 0 auto; }
.approach-intro {
  font-size: 1rem; color: var(--text-mid); line-height: 1.8;
  max-width: 700px; margin: 0 auto 40px; text-align: center;
}
.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.step-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px 22px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.step-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26,58,107,.2); }
.step-number {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px;
  background: var(--blue);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 12px rgba(26,58,107,.3);
}
.step-item h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--text); margin: 14px 0 10px;
}
.step-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* ── 13. FAQ ──────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.faq-item:hover { border-left-color: var(--orange); box-shadow: var(--shadow-md); }
.faq-item h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--text); margin-bottom: 8px;
}
.faq-item p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }

/* ── 14. CTA section finale ───────────────────────────── */
.service-cta-section {
  padding: var(--section-pad) 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.service-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.service-cta-content { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.service-cta-content h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff; margin-bottom: 14px; line-height: 1.2;
}
.service-cta-content p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 32px; }
.cta-buttons {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.cta-button-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 28px; border-radius: var(--r-2xl);
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  transition: all var(--t); border: 2px solid var(--orange);
}
.cta-button-primary:hover { background: var(--orange-mid); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,80,14,.35); }
.cta-button-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  padding: 14px 28px; border-radius: var(--r-2xl);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  transition: all var(--t);
}
.cta-button-secondary:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

/* ── 15. Services connexes ────────────────────────────── */
.related-services {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.related-services h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--text); text-align: center; margin-bottom: 40px;
}
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.related-service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  display: flex; flex-direction: column; gap: 12px;
}
.related-service-card:hover {
  border-color: rgba(26,58,107,.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.related-service-card .service-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--blue-light);
  border: 1px solid rgba(26,58,107,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  transition: all var(--t);
}
.related-service-card .service-icon i { font-size: 1.3rem; color: var(--blue); transition: all var(--t); }
.related-service-card:hover .service-icon { background: var(--blue); }
.related-service-card:hover .service-icon i { color: #fff; }
.related-service-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.related-service-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.related-service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  color: var(--blue); transition: color var(--t); margin-top: 4px;
}
.related-service-card:hover .service-link { color: var(--orange); }

/* ── 16. CTA strip ────────────────────────────────────── */
.cta-strip {
  background: var(--blue);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-strip h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: #fff; margin-bottom: 8px;
  position: relative;
}
.cta-strip p { color: rgba(255,255,255,.7); margin-bottom: 0; font-size: 0.97rem; position: relative; }
.cta-strip .btn-orange, .cta-strip .btn-white { position: relative; flex-shrink: 0; }

/* ── 17. Page À propos ────────────────────────────────── */
.about-hero {
  position: relative;
  padding: clamp(110px, 14vw, 160px) 0 clamp(60px, 7vw, 100px);
  background: var(--blue); overflow: hidden; text-align: center;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.about-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.about-hero-content h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.1;
  color: #fff; margin-bottom: 18px;
}
.about-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,.78); line-height: 1.7; }

.about-page { padding: 60px 0; }
.about-section {
  padding: clamp(40px, 5vw, 80px) 0;
  border-bottom: 1px solid var(--border);
}
.about-section:last-child { border-bottom: none; }
.about-section h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); color: var(--text);
  margin-bottom: 32px;
}
.about-section p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.about-section p strong { color: var(--text); font-weight: 600; }
.about-intro { font-size: 1rem !important; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.about-image { border-radius: var(--r-lg); overflow: hidden; }
.about-image img { width: 100%; border-radius: var(--r-lg); }
.tech-overlay { display: none; }

/* Valeurs */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.value-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 22px;
  box-shadow: var(--shadow-sm); transition: all var(--t);
}
.value-card:hover { border-color: rgba(26,58,107,.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--text); margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.value-card h3 i { color: var(--orange); font-size: 1.1rem; }
.value-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* Expertise */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.expertise-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--t);
}
.expertise-card:hover { border-color: rgba(26,58,107,.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.expertise-image { height: 180px; overflow: hidden; }
.expertise-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t); }
.expertise-card:hover .expertise-image img { transform: scale(1.05); }
.expertise-content { padding: 20px 22px; }
.expertise-content h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 10px;
}
.expertise-content p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.expertise-content p strong { color: var(--text); }
.expertise-features { display: flex; flex-direction: column; gap: 6px; }
.expertise-feature {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.82rem; color: var(--text-mid);
}
.expertise-feature i { color: var(--blue); font-size: 0.78rem; }

/* Certifications */
.team-section { text-align: center; }
.team-section p { max-width: 800px; margin: 0 auto 28px; }
.certifications { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.certification-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid rgba(26,58,107,.2);
  border-radius: 100px; padding: 10px 20px;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--blue);
  transition: all var(--t);
}
.certification-badge:hover { background: var(--blue); color: #fff; }
.certification-badge i { color: var(--orange); }

/* Pourquoi choisir */
.why-choose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.why-choose-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--shadow-sm); transition: all var(--t);
}
.why-choose-item:hover { border-color: rgba(26,58,107,.2); box-shadow: var(--shadow-md); }
.why-choose-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
}
.why-choose-icon i { font-size: 1.1rem; color: var(--orange); }
.why-choose-content h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 0.97rem; color: var(--text); margin-bottom: 6px;
}
.why-choose-content p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }
.why-choose-content p strong { color: var(--text); }

/* Contact dans about */
.about-page .contact { background: var(--bg-alt); }

/* ── 18. Page Solutions ───────────────────────────────── */
.solutions-hero {
  position: relative;
  padding: clamp(110px, 14vw, 160px) 0 clamp(60px, 7vw, 100px);
  background: var(--blue); overflow: hidden; text-align: center;
}
.solutions-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.solutions-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.solutions-hero-content h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.1;
  color: #fff; margin-bottom: 18px;
}
.solutions-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,.78); line-height: 1.7; }
.solutions-hero-content strong { color: var(--orange-light); font-weight: 600; }

.all-solutions { padding: var(--section-pad) 0; background: var(--bg); }
.solutions-filter {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  display: inline-flex; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-mid); border-radius: 100px;
  padding: 9px 22px;
  font-family: var(--font-display); font-size: 0.86rem; font-weight: 500;
  transition: all var(--t); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue); border-color: var(--blue);
  color: #fff; box-shadow: 0 4px 16px rgba(26,58,107,.25);
}
.all-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.solution-card-full {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: auto 1fr;
  box-shadow: var(--shadow-sm); transition: all var(--t);
}
.solution-card-full:hover {
  border-color: rgba(26,58,107,.2);
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.solution-card-full .solution-icon {
  width: 64px; display: flex; align-items: flex-start; justify-content: center;
  padding: 28px 0 0 20px;
}
.solution-card-full .solution-icon i {
  font-size: 1.6rem; color: var(--blue); transition: color var(--t);
}
.solution-card-full:hover .solution-icon i { color: var(--orange); }
.solution-content { padding: 24px 20px 20px; }
.solution-content h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 8px;
}
.solution-content p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 10px; }
.solution-content strong { color: var(--text); }
.solution-tech-tag {
  display: inline-block;
  background: var(--blue-light); border: 1px solid rgba(26,58,107,.2);
  color: var(--blue); border-radius: 100px;
  padding: 4px 14px; font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
}
.solution-details { padding: 0 20px 24px; }
.solution-details h4 {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.solution-details ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.solution-details ul li {
  font-size: 0.84rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 8px;
}
.solution-details ul li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.solution-details .tech-button {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 10px 22px; border-radius: var(--r-2xl);
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  transition: all var(--t); border: 2px solid var(--blue);
}
.solution-details .tech-button:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

/* ── 19. Page Contact ─────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  position: relative; overflow: hidden;
}
.contact h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); color: var(--text);
  text-align: center; margin-bottom: 40px;
}
.contact-content {
  display: grid; grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(22px, 3.5vw, 40px);
  box-shadow: var(--shadow-sm);
}
.contact-form h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.3rem; color: var(--text); margin-bottom: 24px; text-align: left;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  color: var(--text); letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 12px 15px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  outline: none; transition: all var(--t); -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(26,58,107,.1);
}
.form-group select option { background: var(--surface); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.focus-border { display: none; }
.submit-btn, .contact-form button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 14px 28px; border-radius: var(--r-2xl);
  font-family: var(--font-display); font-weight: 600; font-size: 0.97rem;
  transition: all var(--t); cursor: pointer; border: 2px solid var(--blue);
  width: 100%; margin-top: 6px;
}
.submit-btn:hover, .contact-form button[type="submit"]:hover {
  background: var(--orange); border-color: var(--orange);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,80,14,.3);
}
.contact-info {
  display: flex; flex-direction: column; gap: 12px;
}
.contact-info h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; color: var(--text); margin-bottom: 4px; text-align: left;
}
.info-item {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 18px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); transition: all var(--t);
}
.info-item:hover { border-color: rgba(26,58,107,.2); box-shadow: var(--shadow-md); }
.info-item > i {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: var(--r-sm); background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 0.95rem;
}
.info-item > div strong {
  display: block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px;
}
.info-item > div p,
.info-item p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.5; }
.info-item a { color: var(--text-mid); transition: color var(--t); font-size: 0.87rem; }
.info-item a:hover { color: var(--orange); }
.info-item i + p { margin: 0; font-size: 0.87rem; color: var(--text-mid); line-height: 1.5; }
.service-section iframe { border-radius: var(--r-lg); }

/* ── 20. Pages légales ────────────────────────────────── */
.legal-content {
  padding: clamp(110px, 12vw, 150px) 0 80px;
  min-height: 70vh;
  background: var(--bg);
}
.legal-content h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text);
  margin-bottom: 12px;
}
.legal-content .last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 48px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  color: var(--text); margin-bottom: 14px; border-left: 3px solid var(--blue);
  padding-left: 14px;
}
.legal-section h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--text); margin: 18px 0 8px;
}
.legal-section p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 10px; }
.legal-section ul { padding-left: 20px; margin-bottom: 10px; list-style: disc; }
.legal-section ul li { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 4px; }
.legal-section a { color: var(--blue); transition: color var(--t); }
.legal-section a:hover { color: var(--orange); }
.legal-content section { margin: 0; }
.legal-content strong { color: var(--text); font-weight: 600; }

/* ── 21. Footer ───────────────────────────────────────── */
.footer {
  background: #eef2f8;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.75; max-width: 270px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); font-size: 0.88rem; transition: all var(--t);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-col-title {
  font-family: var(--font-display); font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem; color: var(--text-mid); transition: color var(--t);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--orange); }
.footer-bar {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bar p { font-size: 0.78rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--t); }
.footer-legal a:hover { color: var(--blue); }

/* Rétrocompatibilité */
.footer-content {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ── 22. Boutons flottants ────────────────────────────── */
.fab-container,
.floating-buttons-container {
  position: fixed; bottom: 22px; right: 18px;
  display: none; flex-direction: column; gap: 10px; z-index: 900;
}
.fab,
.floating-call-button,
.floating-message-button {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: var(--shadow-md);
  transition: all var(--t); text-decoration: none; border: none;
}
.fab:hover,
.floating-call-button:hover,
.floating-message-button:hover { transform: scale(1.1) translateY(-2px); box-shadow: var(--shadow-lg); }
.fab-call,
.floating-call-button { background: var(--blue); }
.floating-call-button:hover { background: var(--blue-mid); }
.fab-mail,
.floating-message-button { background: var(--orange); }
.floating-message-button:hover { background: var(--orange-mid); }

/* ── 23. Reveal animation ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ── 24. Responsive général ───────────────────────────── */
@media (max-width: 1024px) {
  .row { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .solution-card-full { grid-template-columns: 1fr; }
  .solution-card-full .solution-icon { padding: 20px 20px 0; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .footer-content { flex-direction: column; text-align: center; }
  .fab-container,
  .floating-buttons-container { display: flex; }
  .faq-grid { grid-template-columns: 1fr; }
  .all-solutions-grid { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
}
@media (max-width: 480px) {
  .approach-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .certifications { flex-direction: column; align-items: center; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-button-primary, .cta-button-secondary { width: 100%; justify-content: center; }
}

/* ── 25. Accueil — Hero ───────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
/* Overlay lumineux bleu sobre */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,58,107,.82) 0%, rgba(26,58,107,.65) 50%, rgba(12,32,62,.55) 100%);
}
/* Anciens éléments dark (masqués) */
.hero-grid { display: none; }
.hero-scan { display: none; }
.hero-glow { display: none; }
/* Dot pattern */
.hero-dots {
  position: absolute; inset: 0; z-index: 2;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
/* Découpe bas de hero */
.hero-accent {
  position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: var(--bg);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}
.hero .container { position: relative; z-index: 4; }
.hero-content { position: relative; z-index: 4; padding: 120px 0 90px; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px; padding: 7px 18px;
  font-family: var(--font-display); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 30px;
  backdrop-filter: blur(6px);
  animation: fadeDown .6s ease both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 8px rgba(201,80,14,.7); flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.3rem, 5.8vw, 4.2rem); line-height: 1.08;
  color: #fff; margin-bottom: 22px;
  animation: fadeDown .65s .1s ease both;
}
.hero-title em {
  font-style: normal; position: relative; display: inline-block;
}
.hero-title em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 3px;
  background: var(--orange); border-radius: 2px;
}
.hero-desc {
  font-size: clamp(0.97rem, 1.7vw, 1.1rem); color: rgba(255,255,255,.78);
  line-height: 1.75; max-width: 560px; margin-bottom: 28px;
  animation: fadeDown .65s .2s ease both;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
  animation: fadeDown .65s .3s ease both;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 7px 15px;
  font-family: var(--font-display); font-size: 0.80rem; font-weight: 500;
  color: rgba(255,255,255,.88); backdrop-filter: blur(4px);
}
.hero-tag i { color: rgba(255,255,255,.55); font-size: 0.72rem; }
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  animation: fadeDown .65s .4s ease both;
}
.hero-cta .btn-primary { background: var(--orange); border-color: var(--orange); color: #fff; border-radius: var(--r-2xl); }
.hero-cta .btn-primary:hover { background: var(--orange-mid); border-color: var(--orange-mid); }
.hero-cta .btn-outline {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); color: #fff;
  backdrop-filter: blur(6px); border-radius: var(--r-2xl);
}
.hero-cta .btn-outline:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); transform: none; box-shadow: none; }
/* Partenaires dans hero */
.hero-partners {
  margin-top: 2.5rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  animation: fadeDown .65s .5s ease both;
}
.hero-partners-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); white-space: nowrap;
}
.hero-partners-logos { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.hero-partner-badge {
  padding: .32rem .8rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px; font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  color: rgba(255,255,255,.75); backdrop-filter: blur(4px);
}
.scroll-hint {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45); font-family: var(--font-display); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-hint::after { content: ''; width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

/* ── 26. Accueil — Stats ──────────────────────────────── */
.stats {
  background: var(--blue);
  border-top: none; border-bottom: none;
  position: relative; z-index: 1;
  padding: 2.8rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px 20px; border-right: 1px solid rgba(255,255,255,.1);
  position: relative; cursor: default; transition: all var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.05); }
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; line-height: 1; margin-bottom: 6px;
}
.stat-num .accent { color: var(--orange); }
.stat-label {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,.55); text-align: center;
}

/* ── 27. Accueil — Grille de services ─────────────────── */
.services { padding: var(--section-pad) 0; background: var(--bg-alt); position: relative; overflow: hidden; }
.services-header { margin-bottom: clamp(36px, 5vw, 60px); text-align: center; }
.services-header .section-sub { margin-inline: auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 22px); }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(22px, 3vw, 36px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  display: flex; flex-direction: column; gap: 14px;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  border-color: rgba(26,58,107,.15);
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  background: var(--blue-light); border: 1px solid rgba(26,58,107,.15);
  display: flex; align-items: center; justify-content: center; transition: all var(--t); flex-shrink: 0;
}
.svc-icon i { font-size: 1.35rem; color: var(--blue); transition: all var(--t); }
.service-card:hover .svc-icon { background: var(--blue); }
.service-card:hover .svc-icon i { color: #fff; }
.svc-title { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--text); }
.svc-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.83rem; font-weight: 600;
  color: var(--blue); margin-top: 6px; transition: all var(--t);
}
.svc-link i { font-size: 0.68rem; transition: transform var(--t); }
.svc-link:hover { color: var(--orange); gap: .65rem; }
.svc-link:hover i { transform: translateX(5px); }

/* ── 28. Accueil — Approche ───────────────────────────── */
.approach { padding: var(--section-pad) 0; background: var(--bg); position: relative; overflow: hidden; }
.approach-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.approach-tagline { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.55rem, 2.8vw, 2.3rem); color: var(--text); line-height: 1.2; margin-bottom: 18px; }
.approach-text { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.steps { display: flex; flex-direction: column; gap: 13px; margin-top: 30px; }
.step {
  display: flex; align-items: flex-start; gap: 16px;
}
.step-n {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--r-md); background: var(--blue); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.step strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.97rem; color: var(--text); margin-bottom: 4px; }
.step p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.trust-cards { display: flex; flex-direction: column; gap: 14px; }
.trust-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: all var(--t);
}
.trust-card:hover { border-color: rgba(26,58,107,.2); box-shadow: var(--shadow-md); transform: translateX(4px); }
.tc-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tc-icon i { color: var(--orange); font-size: 1.1rem; }
.trust-card strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.trust-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* ── 29. Accueil — Secteurs ───────────────────────────── */
.sectors { padding: var(--section-pad) 0; background: var(--bg-alt); position: relative; overflow: hidden; }
.sectors-header { margin-bottom: clamp(36px, 4.5vw, 56px); text-align: center; }
.sectors-header .section-sub { margin-inline: auto; }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 18px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--t); cursor: default;
}
.sector-card:hover { border-color: rgba(26,58,107,.18); transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.sc-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-light); border: 1px solid rgba(26,58,107,.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all var(--t);
}
.sc-icon i { font-size: 1.3rem; color: var(--blue); transition: all var(--t); }
.sector-card:hover .sc-icon { background: var(--blue); }
.sector-card:hover .sc-icon i { color: #fff; }
.sc-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 8px; }
.sc-text { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.sectors-cta { text-align: center; margin-top: 40px; }

/* ── 30. Accueil — Partenaires ────────────────────────── */
.partners { padding: var(--section-pad) 0; background: var(--bg); position: relative; overflow: hidden; }
.partners-header { margin-bottom: 48px; text-align: center; }
.partners-header .section-sub { margin-inline: auto; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; box-shadow: var(--shadow-sm); transition: all var(--t);
}
.partner-card:hover { border-color: rgba(26,58,107,.18); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.partner-logo {
  height: 72px; display: flex; align-items: center; justify-content: center;
  padding: 12px 20px; background: var(--bg); border-radius: var(--r-md); width: 100%;
}
.partner-logo img { max-height: 48px; max-width: 140px; object-fit: contain; filter: grayscale(20%); opacity: .85; transition: all var(--t); }
.partner-card:hover .partner-logo img { filter: none; opacity: 1; }
.partner-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); }
.partner-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; }

/* ── 31. Accueil — Formulaire de contact ──────────────── */
.contact-header { margin-bottom: 48px; text-align: center; }
.contact-header .section-sub { margin-inline: auto; }
.contact-layout { display: grid; grid-template-columns: 1.45fr 0.55fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(22px, 3.5vw, 40px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.fg:last-child { margin-bottom: 0; }
.fg label { font-family: var(--font-display); font-size: 0.80rem; font-weight: 600; color: var(--text); letter-spacing: 0.03em; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 12px 15px; font-family: var(--font-body); font-size: 0.90rem;
  color: var(--text); outline: none; transition: all var(--t); -webkit-appearance: none; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-muted); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue); background: var(--surface);
  box-shadow: 0 0 0 3px rgba(26,58,107,.1);
}
.fg textarea { resize: vertical; min-height: 118px; }
.form-submit { margin-top: 18px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 15px; font-size: 0.97rem; }
.ci-card {
  display: flex; align-items: flex-start; gap: 13px; padding: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: all var(--t);
}
.ci-card:hover { border-color: rgba(26,58,107,.2); box-shadow: var(--shadow-md); }
.ci-ico {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-ico i { color: var(--blue); font-size: 0.95rem; }
.ci-card strong { display: block; font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.ci-card p, .ci-card a { font-size: 0.87rem; color: var(--text-mid); line-height: 1.5; transition: color var(--t); }
.ci-card a:hover { color: var(--orange); }

/* ── 32. Responsive — Accueil ─────────────────────────── */
@media (max-width: 1024px) {
  .sectors-grid    { grid-template-columns: repeat(2, 1fr); }
  .approach-layout { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-content    { padding: 94px 0 70px; }
  .scroll-hint     { display: none; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .services-grid   { grid-template-columns: 1fr; }
  .sectors-grid    { grid-template-columns: repeat(2, 1fr); }
  .partners-grid   { grid-template-columns: 1fr; gap: 14px; }
  .form-row        { grid-template-columns: 1fr; }
  .hero-accent     { height: 50px; }
}
@media (max-width: 480px) {
  .hero-title  { font-size: 2.1rem; }
  .hero-tags   { display: none; }
  .hero-partners { display: none; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .footer-bar   { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
