/* ============================================
   DATAOPTIME — CHARTE GRAPHIQUE v3
   Couleurs officielles : #1E3A5F / #f29304
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ── VARIABLES ── */
:root {
  --blue:        #4578b9;
  --blue-mid:    #1E3A5F;
  --blue-light:  #EEF3FA;
  --blue-pale:   #f0f5ff;
  --orange:      #f29304;
  --orange-light:#fff4e6;
  --black:       #111111;
  --white:       #FFFFFF;
  --gray-light:  #f7f8f9;
  --gray:        #666666;
  --gray-dark:   #333333;
  --text-muted:  #8badd4;
  --border:      #e0e8f5;
  --font-head:   'Nunito', 'Century Gothic', Arial, sans-serif;
  --font-body:   'DM Sans', 'Century Gothic', Arial, sans-serif;
  --shadow:      0 4px 20px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.10);
  --radius:      8px;
  --radius-lg:   12px;
  --transition:  all 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-dark); background: var(--white); line-height: 1.6; font-size: 1.05rem;}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-white  { background: var(--white); }
.section-blue   { background: var(--blue-pale); }
.section-gray   { background: var(--gray-light); }
.section-dark   { background: var(--blue); }

.section-title { margin-bottom: 0.5rem; color: var(--blue); }
.section-title em { color: var(--orange); font-style: normal; }
.section-title.white { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--gray); margin-bottom: 2.5rem; max-width: 640px; }
.section-header { margin-bottom: 2.5rem; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}
.navbar-logo img { height: 42px; width: auto; }
.navbar-logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}
.navbar-logo-text em { color: var(--orange); font-style: normal; }
.navbar-menu { display: flex; list-style: none; gap: 1.8rem; align-items: center; }
.navbar-menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.navbar-menu a:hover, .navbar-menu a.active {
  color: var(--blue-mid);
  border-bottom-color: var(--orange);
}
.navbar-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  font-weight: 700 !important;
}
.navbar-cta:hover { background: #d4820a !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: #4578b9;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.hero-left {
  padding: 3.5rem 2rem 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(242,147,4,0.4);
  border-radius: 99px;
  font-size: 0.82rem;
  color: var(--orange);
  margin-bottom: 1.4rem;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.18;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.hero-hint { font-size: 0.8rem; color: rgba(255,255,255,0.32); }

/* Colonne droite — image pleine hauteur sans rognage */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 5rem 2rem 2rem;
  align-self: stretch;
  oveflow: hidden;
}
.hero-image {
  display: block; 
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 15px;
  transform: scale(1.15);
}

/* ── RESPONSIVE HERO ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 2.5rem 1.5rem; max-width: 100%; }
  .hero-right { display: none; } /* Masquer image sur mobile */
  .hero { min-height: auto; }
}

/* ── VALUE PROPS ── */
.vp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.vp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid var(--blue-mid);
  transition: var(--transition);
}
.vp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vp-icon { font-size: 1.8rem; margin-bottom: 0.9rem; }
.vp-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 0.5rem; line-height: 1.4; }
.vp-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ── SERVICES ── */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-mid);
}
.svc-card.orange::before { background: var(--orange); }
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(242,147,4,0.08);
  position: absolute;
  top: 0.8rem; right: 1rem;
  line-height: 1;
}
.svc-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.svc-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.icon-blue  { background: var(--blue-light); }
.icon-orange { background: var(--orange-light); }
.svc-card-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--blue); line-height: 1.3; padding-right: 2rem; }
.svc-card-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.svc-card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.svc-tag { font-size: 0.75rem; padding: 0.2rem 0.7rem; background: var(--blue-pale); color: var(--blue-mid); border-radius: 99px; }
.svc-link { font-size: 0.85rem; font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 0.3rem; transition: var(--transition); }
.svc-link:hover { color: var(--blue); gap: 0.6rem; }

/* ── CLIENTS ── */
.clients-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.clients-logos-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.6rem; margin-bottom: 0.75rem; }
.client-logo-box {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 0.9rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  transition: var(--transition);
}
.client-logo-box:hover { border-color: var(--blue-mid); color: var(--blue); }
.clients-count { font-size: 0.8rem; color: #999; text-align: center; font-style: italic; }
.testi-list { display: flex; flex-direction: column; gap: 0.75rem; }
.testi-item {
  background: var(--white);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem;
  transition: var(--transition);
}
.testi-item:hover { box-shadow: var(--shadow); }
.testi-text { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.7; font-style: italic; margin-bottom: 0.6rem; }
.testi-author { font-size: 0.85rem; font-weight: 600; color: var(--blue); }
.testi-project { font-size: 0.75rem; color: #999; }


/* ── PROCESSUS ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  text-align: center;
  transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); border-color: var(--orange); }
.process-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--orange); margin-bottom: 0.5rem; }
.process-title { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
.process-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-thumb {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  background: var(--blue-pale);
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1rem; }
.blog-cat {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: var(--border);
  color: var(--gray);
}
.cat-data  { background: #e8f0fe; color: #1557b0; }
.cat-web   { background: #e8f5e9; color: #1b5e20; }
.cat-mkt, .cat-marketing { background: #fff3e0; color: #e65100; }
.cat-it    { background: #f3e5f5; color: #6a1b9a; }
.cat-formation { background: #e0f2f1; color: #00695c; }
.blog-title {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--blue);
  line-height: 1.4; margin-bottom: 0.4rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-excerpt {
  font-size: 0.8rem; color: var(--gray); line-height: 1.55; margin-bottom: 0.75rem;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: #999; }
.blog-read-link { color: var(--orange); font-weight: 600; }
.see-all-link { font-size: 0.9rem; font-weight: 600; color: var(--orange); white-space: nowrap; }
.see-all-link:hover { color: var(--blue); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--blue-mid); }
.faq-q { font-size: 0.92rem; font-weight: 600; color: var(--blue); margin-bottom: 0.4rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.faq-q-icon { color: var(--orange); font-weight: 800; flex-shrink: 0; }
.faq-a { font-size: 0.85rem; color: var(--gray); line-height: 1.65; padding-left: 1.1rem; }

/* ── CTA SECTION ── */
.cta-section { background: var(--blue); padding: 5rem 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section h2 em { color: var(--orange); font-style: normal; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255); margin-bottom: 1.5rem; }
.cta-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; max-width: 520px; margin: 0 auto 2rem; text-align: left; }
.cta-check { font-size: 0.875rem; color: rgba(255,255,255); display: flex; gap: 0.5rem; align-items: flex-start; }
.cta-check-icon { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.cta-hint { font-size: 0.8rem; color: rgba(255,255,255); margin-top: 0.6rem; }

/* ── FOOTER ── */
.footer {
  background: #4578b9;
  padding: 3.5rem 0 1.2rem;
  border-top: 3px solid var(--orange);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: rgba(255,255,255); margin-bottom: 0.5rem; }
.footer-brand em { color: var(--orange); font-style: normal; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255); line-height: 1.65; margin-bottom: 0.9rem; }
.footer-contact { font-size: 0.85rem; color: rgba(255,255,255); line-height: 2; }
.footer-col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .navbar-menu.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: var(--blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    gap: 0;
    border-top: 2px solid var(--orange);
  }
  .navbar-menu.open li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .navbar-menu.open a { display: block; padding: 0.85rem 0; border-bottom: none !important; color: var(--white); }
  .navbar-menu.open a:hover { color: var(--orange); }
  .navbar-cta { margin-top: 0.75rem; }
  .hero { padding: 3rem 0 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .vp-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .clients-layout { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .cta-checklist { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════
   PAGES SERVICES
══════════════════════════════════ */

/* Hero service */
.service-hero {
  background: #4578b9;
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
}
.service-hero-left { max-width: 700px; }
.service-breadcrumb {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-breadcrumb:hover { color: var(--orange); }
.service-icon-large {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}
.service-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.service-accroche {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.service-hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Chiffre clé hero */
.service-hero-right { flex-shrink: 0; }
.service-chiffre-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.service-chiffre-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-chiffre-card span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* Introduction layout */
.service-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-intro-text h2 { margin-bottom: 1.2rem; }
.service-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}

/* Livrables */
.service-livrables {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.service-livrables h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 1.2rem;
}
.livrables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.livrables-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.livrable-check {
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Prestations (sous-pages service) */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.prestation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--orange);
}
.prestation-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.prestation-desc { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

.service-techno-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--gray);
  line-height: 1.7;
}

/* Outils grid */
.outils-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.outil-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}
.outil-badge:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ══ MÉTHODE SCROLL HIJACK ══ */
.meth-section {
  position: relative;
  background: var(--white);
}
.meth-sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}
.meth-section-header { margin-bottom: 2rem; }
.meth-progress-bar {
  height: 3px;
  background: var(--blue-pale);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.meth-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.meth-scroll-space { height: 800px; }

/* Grille méthode */
.methode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.meth-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.meth-card.active {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(242,147,4,0.1);
}
.meth-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
    transition: transform 0.5s ease;
}
.meth-card.active .meth-card-accent { transform: scaleX(1); }
.meth-card-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.meth-card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.meth-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* Compteur dots */
.meth-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0;
}
.meth-dots { display: flex; gap: 6px; }
.meth-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, transform 0.3s;
  display: inline-block;
}
.meth-dot.lit {
  background: var(--orange);
  transform: scale(1.35);
}
.meth-hint {
  font-size: 0.82rem;
  color: var(--gray);
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}
.meth-hint-icon { font-size: 1rem; }
.meth-hint.done { color: var(--orange); font-weight: 600; }

/* Responsive méthode */
@media (max-width: 768px) {
  .meth-sticky { position: relative; padding: 2rem 0 1rem; }
  .meth-scroll-space { display: none; }
  .methode-grid { grid-template-columns: 1fr; }
  .meth-card {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .meth-card.active {
    border-color: var(--orange);
    background: var(--white);
  }
  .meth-card-accent { transform: scaleX(1); }
  .meth-progress-bar { display: none; }
  .meth-counter { display: none; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .methode-grid { grid-template-columns: repeat(2, 1fr); }
  .meth-scroll-space { height: 800px; }
}

/* Responsive pages services */
@media (max-width: 768px) {
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-right { display: none; }
  .service-intro-layout { grid-template-columns: 1fr; }
  .methode-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .methode-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   PAGES SERVICES HUB
══════════════════════════════════ */

.service-hero {
  background: #4578b9;
  position: relative;
  overflow: hidden;
}
.service-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
.service-hero-left { padding-bottom: 2rem; }
.service-breadcrumb {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-breadcrumb:hover { color: var(--orange); }
.service-icon-large { font-size: 3rem; margin-bottom: 0.8rem; }
.service-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.service-accroche {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.service-hero-intro {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.service-hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.service-hero-right {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  align-self: stretch;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.service-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px 12px 0 0;
  display: block;
}
.service-hero-placeholder {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.3;
}

/* Stats bar service */
.service-stats-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.service-stat {
  padding: 1.2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
}
.service-stat:last-child { border-right: none; }
.service-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}
.service-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Intro layout */
.service-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-intro-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray);
  margin-top: 1.2rem;
}
.service-livrables {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.service-livrables h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 1.2rem;
}
.livrables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.livrables-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.livrable-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Sous-services grid */
.sous-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.sous-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 3px solid var(--blue-mid);
  cursor: pointer;
}
.sous-service-card:nth-child(even) { border-top-color: var(--orange); }
.sous-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-top-color: var(--orange);
}
.sous-service-icon { font-size: 2rem; }
.sous-service-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}
.sous-service-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.sous-service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 0.5rem;
}

/* Secteurs */
.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.secteur-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  transition: var(--transition);
}
.secteur-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-mid);
}
.secteur-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.secteur-nom {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin-bottom: 0.3rem;
}
.secteur-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* ══ PARTENAIRES TICKER ══ */
.partenaires-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partenaires-ticker {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.partenaires-ticker:hover {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partenaire-ticker-item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.partenaire-ticker-logo {
  display: block;
  max-width: 130px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(25%);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s;
}
.partenaire-ticker-item:hover .partenaire-ticker-logo {
  filter: grayscale(0%);
  opacity: 1;
}
.partenaire-ticker-nom {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

/* Méthode */
.methode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.methode-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.methode-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.methode-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.methode-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.methode-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Outils */
.outils-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.outil-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}
.outil-badge:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ── RESPONSIVE SERVICES ── */
@media (max-width: 1024px) {
  .sous-services-grid { grid-template-columns: repeat(2, 1fr); }
  .secteurs-grid { grid-template-columns: repeat(3, 1fr); }
  .methode-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .service-hero-inner { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 0; }
  .service-hero-right { display: none; }
  .service-stats-bar { flex-wrap: wrap; }
  .service-stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .service-intro-layout { grid-template-columns: 1fr; }
  .sous-services-grid { grid-template-columns: 1fr; }
  .secteurs-grid { grid-template-columns: repeat(2, 1fr); }
  .methode-grid { grid-template-columns: 1fr; }
  .prestations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .secteurs-grid { grid-template-columns: 1fr 1fr; }
  .service-stat { flex: 0 0 100%; }
}
@media (max-width: 360px) {
  /* 2 colonnes trop étroit avec le padding de .secteur-card en dessous de ~360px */
  .secteurs-grid { grid-template-columns: 1fr; }
}

/* ══ CAS CLIENTS ══ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 3px solid var(--blue-mid);
}
.case-card:nth-child(even) { border-top-color: var(--orange); }
.case-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.case-card-client {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 0.3rem;
}
.case-card-secteur { font-size: 0.82rem; color: var(--gray); }
.case-card-resume {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  flex: 1;
  margin: 0.3rem 0 0;
}
.case-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 0.3rem;
}
.case-card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.case-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  white-space: nowrap;
}
.case-status-livre { background: #e8f5e9; color: #1b5e20; }
.case-status-en_cours { background: #fff3e0; color: #e65100; }
.case-card-annee { font-size: 0.78rem; color: var(--gray); }
@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* Méthode sur fond bleu (homepage) */
.section-blue .meth-card {
  background: var(--white);
}
.section-blue .meth-card.active {
  background: var(--white);
  border-color: var(--orange);
}
.section-blue .meth-sticky {
  background: var(--blue-pale);
}

/* ══════════════════════════════════
   BLOG
══════════════════════════════════ */

/* Hero blog */
.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  text-align: center;
}
.blog-hero-inner h1 { color: var(--white); margin-bottom: 1rem; }
.blog-hero-inner .hero-sub { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 1.5rem; }

/* Filtres */
.blog-filters-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.blog-filters {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
  align-items: center;
}
.blog-filter-btn {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  color: var(--gray);
  background: var(--white);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.blog-filter-data.active   { background: var(--blue-mid); border-color: var(--blue-mid); color: var(--white); }
.blog-filter-web.active    { background: #1b5e20; border-color: #1b5e20; color: var(--white); }
.blog-filter-marketing.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.blog-filter-it.active     { background: #6a1b9a; border-color: #6a1b9a; color: var(--white); }
.blog-filter-formation.active { background: #00695c; border-color: #00695c; color: var(--white); }

/* Catégorie badges */
.blog-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.blog-cat-data       { background: #e8f0fe; color: #1557b0; }
.blog-cat-web        { background: #e8f5e9; color: #1b5e20; }
.blog-cat-marketing  { background: #fff3e0; color: #e65100; }
.blog-cat-it         { background: #f3e5f5; color: #6a1b9a; }
.blog-cat-formation  { background: #e0f2f1; color: #00695c; }

/* Article à la une */
.blog-featured {
  margin-bottom: 3rem;
}
.blog-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-featured-inner:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-featured-image {
  height: 320px;
  overflow: hidden;
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-featured-inner:hover .blog-featured-image img {
  transform: scale(1.03);
}
.blog-featured-placeholder {
  width: 100%;
  height: 100%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-featured-content {
  padding: 2rem 2rem 2rem 0;
}
.blog-featured-content h2 {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-featured-extrait {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
}

/* Blog méta */
.blog-meta {
  display: flex;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray);
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

/* Grille articles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-card-thumb {
  height: 200px;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  flex: 1;
}
.blog-card-extrait {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Message vide */
.blog-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray);
  font-size: 1.1rem;
}

/* ══ ARTICLE ══ */
.article-hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.article-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,58,95,0.95) 40%, rgba(30,58,95,0.7) 100%);
}
.article-hero-content {
  position: relative;
  max-width: 780px;
  padding: 3.5rem 0;
}
.article-hero-content h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0.75rem 0 1rem;
}
.article-extrait {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.article-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.article-meta-sep { color: rgba(255,255,255,0.3); }

/* Layout article */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
}
.article-body {}
.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-dark);
}
.article-content h2 {
  font-size: 1.5rem;
  color: var(--blue);
  margin: 2rem 0 1rem;
}
.article-content h3 {
  font-size: 1.2rem;
  color: var(--blue);
  margin: 1.5rem 0 0.75rem;
}
.article-content p { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol {
  margin: 1rem 0 1.2rem 1.5rem;
  line-height: 1.8;
}
.article-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--blue-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-dark);
}
.article-content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.article-content table {
  display: block;
  overflow-x: auto;
  max-width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}
.article-content th, .article-content td {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}

/* Tags */
.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.article-tags-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}
.article-tag {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  background: var(--blue-pale);
  color: var(--blue-mid);
  border-radius: 99px;
}

/* Partage */
.article-share {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.article-share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-right: 0.5rem;
}
.article-share-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--transition);
}
.article-share-btn.linkedin  { background: #0077b5; color: var(--white); }
.article-share-btn.twitter   { background: #000; color: var(--white); }
.article-share-btn.whatsapp  { background: #25d366; color: var(--white); }
.article-share-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.sidebar-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.sidebar-cta {
  background: var(--blue);
}
.sidebar-cta h4 { color: var(--white); }
.sidebar-cta p { color: rgba(255,255,255,0.7); }

/* Responsive blog */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: minmax(0, 1fr); }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .blog-featured-inner { grid-template-columns: 1fr; }
  .blog-featured-image { height: 220px; }
  .blog-featured-content { padding: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-filters { gap: 0.4rem; }
}

/* ══ BLOCS ARTICLE ══ */
.article-cta-bloc {
  background: #4578b9;
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-cta-texte {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.article-cta-bloc .btn {
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--white);
  color: #4578b9;
  border-color: var(--white);
  font-weight: 700;
}
.article-cta-bloc .btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.article-blockquote {
  border-left: 4px solid var(--orange);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--blue-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}
.article-blockquote cite {
  font-size: 0.85rem;
  color: var(--blue-mid);
  font-style: normal;
  font-weight: 600;
}

.article-encadre {
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.article-encadre h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.article-encadre p { margin: 0; font-size: 0.95rem; line-height: 1.65; }
.article-encadre-blue   { background: var(--blue-pale); border: 1px solid #c0d4f0; }
.article-encadre-blue h4 { color: var(--blue); }
.article-encadre-blue p  { color: var(--gray-dark); }
.article-encadre-orange { background: #fff4e6; border: 1px solid #f5d5a0; }
.article-encadre-orange h4 { color: #b85c00; }
.article-encadre-orange p  { color: #7a4010; }
.article-encadre-green  { background: #e8f5e9; border: 1px solid #a5d6a7; }
.article-encadre-green h4 { color: #1b5e20; }
.article-encadre-green p  { color: #2e7d32; }

@media (max-width: 600px) {
  .article-cta-bloc {
    flex-direction: column;
    text-align: center;
  }
  .article-cta-bloc .btn { width: 100%; justify-content: center; }
}

/* ══ BLOCS ARTICLE ENRICHIS ══ */

/* Tableau */
.article-tableau-wrap { margin: 2rem 0; }
.article-tableau-titre {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-tableau-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.article-tableau {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.article-tableau thead tr {
  background: var(--blue);
}
.article-tableau thead th {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 0.85rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.article-tableau tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.article-tableau tbody tr:last-child { border-bottom: none; }
.article-tableau tbody tr:hover { background: var(--blue-pale); }
.article-tableau tbody td {
  padding: 0.8rem 1rem;
  color: var(--gray-dark);
  vertical-align: top;
}
.article-tableau tbody tr:nth-child(even) td {
  background: rgba(69,120,185,0.03);
}

/* Encadré enrichi */
.article-encadre {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.article-encadre-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.article-encadre-icon { font-size: 1.2rem; }
.article-encadre h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin: 0;
}
.article-encadre .rich-text { font-size: 0.92rem; line-height: 1.7; }
.article-encadre-blue   { background: #e8f0fe; border: 1px solid #b5d0f5; }
.article-encadre-blue h4 { color: #1557b0; }
.article-encadre-orange { background: #fff4e6; border: 1px solid #f5d5a0; }
.article-encadre-orange h4 { color: #b85c00; }
.article-encadre-green  { background: #e8f5e9; border: 1px solid #a5d6a7; }
.article-encadre-green h4 { color: #1b5e20; }
.article-encadre-red    { background: #fce8e8; border: 1px solid #f5a5a5; }
.article-encadre-red h4 { color: #b71c1c; }

/* Image avec légende */
.article-figure {
  margin: 2rem 0;
}
.article-figure img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.article-figure-centree { max-width: 80%; margin-left: auto; margin-right: auto; }
.article-figure-petite  { max-width: 50%; margin-left: auto; margin-right: auto; }
figcaption {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Bloc de code */
.article-code-bloc {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #2a4a6a;
}
.article-code-header {
  background: #1a2e48;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article-code-lang {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-code-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.article-code {
  background: #0d1a2e;
  padding: 1.2rem 1.5rem;
  margin: 0;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.7;
  color: #e0e8f5;
}

/* Stats grid */
.article-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.article-stat-card {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.article-stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.article-stat-card span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.article-stat-card p {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* Séparateur */
.article-sep {
  border: none;
  border-top: 2px solid var(--border);
  margin: 2.5rem 0;
}

/* Citation enrichie */
.article-blockquote {
  border-left: 4px solid var(--orange);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--blue-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}
.article-blockquote cite {
  font-size: 0.85rem;
  color: var(--blue-mid);
  font-style: normal;
  font-weight: 600;
}
.cite-poste {
  font-weight: 400;
  color: var(--gray);
}

/* ══ NAVBAR DROPDOWN ══ */
.navbar-dropdown-wrap {
  position: relative;
}
.navbar-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.navbar-arrow {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.navbar-dropdown-wrap.open .navbar-arrow {
  transform: rotate(180deg);
}
.navbar-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 260px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 999;
}
.navbar-dropdown-wrap.open .navbar-dropdown {
  display: block;
}
.navbar-dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  color: var(--gray-dark) !important;
  border-bottom: none !important;
  transition: var(--transition);
}
.navbar-dropdown li a:hover {
  background: var(--blue-pale);
  color: var(--blue) !important;
  padding-left: 1.5rem;
}

/* Dropdown mobile */
@media (max-width: 768px) {
  .navbar-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--blue-pale);
    padding: 0;
    display: none;
    width: 100%;
  }
  .navbar-dropdown li a {
    padding: 0.6rem 1.5rem !important;
    color: var(--blue) !important;
    font-size: 0.85rem;
  }
}

/* ══ PAGE CONTACT ══ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-form-card {
  background: var(--white);
  padding: 2.5rem;
}
.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.contact-form-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.contact-field {
  margin-bottom: 1rem;
  width: 100%;
}
.contact-field-half {
  width: calc(50% - 0.5rem);
}
.contact-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.35rem;
}
.contact-req { color: var(--orange); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(69,120,185,0.12);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-error {
  font-size: 0.78rem;
  color: #d32f2f;
  margin-top: 0.25rem;
  display: block;
}
.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem !important;
  font-size: 1rem !important;
  margin-top: 0.5rem;
}
.contact-hint {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.75rem;
  width: 100%;
}

/* Colonne droite */
.contact-side {
  background: #4578b9;
  padding: 2.5rem;
  color: var(--white);
}
.contact-side-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.contact-side-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.contact-checks {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  min-height: 140px;
}
.contact-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  animation: fadeSlideIn 0.35s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.contact-check-icon {
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.contact-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 0.9rem;
  text-align: center;
}
.contact-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
}
.contact-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.contact-testi {
  background: rgba(255,255,255,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem;
  margin-bottom: 1.2rem;
}
.contact-testi p {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.contact-testi cite {
  font-size: 0.78rem;
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}
.contact-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.contact-badge {
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}

/* Coordonnées */
.contact-coords-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.contact-coord-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition);
}
.contact-coord-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}
.contact-coord-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-coord-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.contact-coord-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
.contact-coord-card a { color: var(--blue-mid); font-weight: 600; }
.contact-coord-card a:hover { color: var(--orange); }

/* Responsive contact */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-coords-grid { grid-template-columns: 1fr; }
  .contact-field-half { width: 100%; }
}

/* Logo dans le FOOTER*/
.footer-logo {
    width: 180px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}
/* Bouton WhatsApp*/
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 16px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

/* Bouton retour en haut de page */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); }
@media (max-width: 768px) {
  .back-to-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
}

/* ══════════════════════════════════
   PAGE À PROPOS
══════════════════════════════════ */

/* Hero mono-colonne (pas d'image hero-right sur cette page) */
.about-hero .hero-inner { grid-template-columns: 1fr; }
.about-hero .hero-left { max-width: 720px; margin: 0 auto; text-align: center; padding: 3.5rem 2rem; }
.about-hero .hero-badge { margin-left: auto; margin-right: auto; }
.about-hero .hero-btns { justify-content: center; }

/* Chiffres clés sur 3 colonnes (le composant .contact-stat est prévu pour 4, en 2 colonnes) */
.about-stats { grid-template-columns: repeat(3, 1fr); max-width: 640px; margin: 2rem auto 0; }

/* Texte narratif centré (réutilise la typographie de .article-content) */
.about-prose { max-width: 800px; margin: 0 auto; }

/* Timeline "Depuis 2020" */
.about-timeline { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.about-timeline-item {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
}
.about-timeline-year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
}
.about-timeline-text { color: var(--gray); font-size: 0.92rem; }

@media (max-width: 768px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-timeline-item { flex-direction: column; gap: 0.3rem; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .methode-step, .vp-card, .svc-card, .client-logo-box {
    transition: none;
  }
}