/* =============================================
   CSS Variables
   ============================================= */
:root {
  --color-navy: #0F172A;
  --color-blue: #3B82F6;
  --color-teal: #10B981;
  --color-white: #FFFFFF;
  --color-bg: #F8FAFC;
  --color-slate: #64748B;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container-max: 1200px;
  --transition: 0.2s ease;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-navy);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; }

/* =============================================
   Utilities
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
  line-height: 1;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--primary { background: var(--color-blue); color: var(--color-white); }
.btn--outline { background: transparent; border: 2px solid var(--color-blue); color: var(--color-blue); }

/* =============================================
   Navbar
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid #E2E8F0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-slate);
  transition: color var(--transition);
  white-space: nowrap;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--color-blue); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.lang-switcher a { color: var(--color-slate); transition: color var(--transition); }
.lang-switcher a.active,
.lang-switcher a:hover { color: var(--color-blue); }
.lang-switcher span { color: #CBD5E1; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Tablet (≤1024px) : réduire l'espacement des liens ── */
@media (max-width: 1024px) {
  .navbar__links { gap: 1.25rem; }
  .navbar__links a { font-size: 0.9rem; }
}

/* ── Mobile (≤768px) : afficher le hamburger, masquer les liens ── */
@media (max-width: 768px) {
  .navbar__hamburger { display: flex; }

  .navbar__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  .navbar__links.open { display: flex; }

  .navbar__actions .btn--primary { display: none; }

  /* Afficher le switcher de langue dans le menu mobile aussi */
  .navbar__actions { gap: 0.5rem; }
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.footer__tagline {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
}

.footer__logo-img {
  display: block;
  height: 56px;
  width: auto;
  margin-top: 1rem;
  opacity: 0.85;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul li,
.footer__col ul a {
  font-size: 0.9rem;
  color: #CBD5E1;
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--color-white); }

.footer__bottom {
  border-top: 1px solid #1E293B;
  padding: 1.25rem 0;
  text-align: center;
}
.footer__bottom p { font-size: 0.85rem; color: #64748B; }

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* =============================================
   Section helpers
   ============================================= */
.section {
  padding: 5rem 0;
}
.section--bg {
  background: var(--color-bg);
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.section__header p {
  font-size: 1.05rem;
  color: var(--color-slate);
  max-width: 560px;
  margin: 0 auto;
}
.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}
.empty-state {
  text-align: center;
  color: var(--color-slate);
  padding: 2rem 0;
}

/* =============================================
   Hero Slider
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 600px;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Backgrounds per slide */
.hero-slide--1 { background: linear-gradient(135deg, #0F172A 0%, #0F1F3A 100%); }
.hero-slide--2 { background: linear-gradient(135deg, #0A1628 0%, #0D2438 100%); }
.hero-slide--3 { background: linear-gradient(135deg, #080F1E 0%, #0C1535 100%); }
.hero-slide--4 { background: linear-gradient(135deg, #0A1420 0%, #0F1A2E 100%); }

.hero-slide--1::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 50%, rgba(59,130,246,.18) 0%, transparent 65%); pointer-events:none; }
.hero-slide--2::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 50%, rgba(16,185,129,.15) 0%, transparent 65%); pointer-events:none; }
.hero-slide--3::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 50%, rgba(99,102,241,.18) 0%, transparent 65%); pointer-events:none; }
.hero-slide--4::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 50%, rgba(245,158,11,.14) 0%, transparent 65%); pointer-events:none; }

/* Inner layout */
.hero-slide__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 100%;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Content */
.hero-slide__content { color: var(--color-white); }

.hero-slide__tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #64748B;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.hero-slide__tags span:nth-child(odd) { color: #94A3B8; }
.hero-slide__tags span:nth-child(even) { color: #334155; }

.hero-slide__title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}
.hero-slide__title em { font-style: normal; }
.hero-slide--1 .hero-slide__title em { color: var(--color-blue); }
.hero-slide--2 .hero-slide__title em { color: var(--color-teal); }
.hero-slide--3 .hero-slide__title em { color: #818CF8; }
.hero-slide--4 .hero-slide__title em { color: #F59E0B; }

.hero-slide__desc {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-slide__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 8px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn--ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

/* Visual area */
.hero-slide__visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* — Slide 1: orbs + floating badges — */
.hs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
}
.hs-orb--blue  { width:300px; height:300px; background:var(--color-blue); top:-10%; right:-10%; }
.hs-orb--teal  { width:200px; height:200px; background:var(--color-teal); bottom:5%; left:5%; }
.hs-orb--mid   { width:140px; height:140px; background:#6366F1; top:40%; left:25%; }

.hs-badge {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}
.hs-badge--1 { top:12%; left:5%; }
.hs-badge--2 { top:46%; right:2%; }
.hs-badge--3 { bottom:12%; left:18%; }

/* — Slide 2: code card — */
.hs-code-card {
  width: 320px;
  background: #0D1117;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hs-code-card__bar {
  display: flex;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: #161B22;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hs-code-card__bar span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.hs-code-card__bar span:nth-child(1) { background: #FF5F57; }
.hs-code-card__bar span:nth-child(2) { background: #FFBD2E; }
.hs-code-card__bar span:nth-child(3) { background: #28CA41; }
.hs-code {
  display: block;
  padding: 1.25rem 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #C9D1D9;
  white-space: pre;
}
.hs-code .kw { color: #FF7B72; }
.hs-code .fn { color: #D2A8FF; }
.hs-code .str { color: #A5F3C5; }

/* — Slide 3: AI rings — */
.hs-ai {
  position: relative;
  width: 260px; height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-ai__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(129,140,248,.35);
  animation: hs-spin linear infinite;
}
.hs-ai__ring--1 { width:260px; height:260px; animation-duration:22s; }
.hs-ai__ring--2 { width:190px; height:190px; animation-duration:16s; animation-direction:reverse; border-color:rgba(99,102,241,.4); }
.hs-ai__ring--3 { width:120px; height:120px; animation-duration:10s; border-color:rgba(139,92,246,.5); }
.hs-ai__core {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-white);
  box-shadow: 0 0 32px rgba(99,102,241,.5);
  z-index: 1;
}
@keyframes hs-spin { to { transform: rotate(360deg); } }

/* — Slide 4: chart bars — */
.hs-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 220px;
  padding: 0 1rem;
}
.hs-chart__bar {
  width: 28px;
  height: var(--h);
  background: rgba(255,255,255,.12);
  border-radius: 6px 6px 0 0;
  transition: background 0.3s;
  position: relative;
}
.hs-chart__bar--hi { background: rgba(245,158,11,.7); }
.hs-chart::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.1);
}

/* Navigation arrows */
.hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s;
}
.hero-slider__btn:hover { background: rgba(255,255,255,.18); }
.hero-slider__btn--prev { left: 1.5rem; }
.hero-slider__btn--next { right: 1.5rem; }

/* Dots */
.hero-slider__dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.hero-slider__dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.hero-slider__dot.is-active {
  width: 28px;
  background: var(--color-teal);
}

@media (max-width: 768px) {
  .hero-slider { height: auto; min-height: 520px; }
  .hero-slide__inner { grid-template-columns: 1fr; gap: 0; padding: 4rem 1.25rem 5rem; }
  .hero-slide__visual { display: none; }
  .hero-slide__desc { max-width: 100%; }
  .hero-slider__btn { display: none; }
}
@media (max-width: 480px) {
  .hero-slide__title { font-size: 1.6rem; }
}

/* =============================================
   Expertise Bar
   ============================================= */
.expertise-bar {
  background: #0A1220;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0 2.5rem;
}
.expertise-bar__title {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.75rem;
}
.expertise-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: #94A3B8;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: color 0.2s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}
.expertise-item:last-child { border-right: none; }
.expertise-item:hover {
  color: var(--color-teal);
  text-decoration-color: var(--color-teal);
}
.expertise-item__icon {
  width: 36px;
  height: 36px;
  color: var(--color-teal);
  flex-shrink: 0;
}
.expertise-item:hover .expertise-item__icon { color: var(--color-teal); opacity: 0.85; }

@media (max-width: 900px) {
  .expertise-bar__inner { grid-template-columns: repeat(3, 1fr); }
  .expertise-item:nth-child(3n) { border-right: none; }
}
@media (max-width: 500px) {
  .expertise-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .expertise-item:nth-child(2n) { border-right: none; }
  .expertise-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.07); }
}

/* =============================================
   Stats / compteurs
   ============================================= */
.stats {
  background: var(--color-blue);
  padding: 3rem 0;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats__item {
  color: var(--color-white);
}
.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}
.stats__suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  vertical-align: super;
}
.stats__label {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* =============================================
   Section Qui sommes-nous (homepage)
   ============================================= */
.team-intro {
  background: var(--color-navy);
  padding: 6rem 0;
}
.team-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.team-intro__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1E293B;
}
.team-intro__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.team-intro__photo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  color: #64748B;
  font-size: 0.9rem;
}
.team-intro__photo-placeholder span { font-size: 3rem; }
.team-intro__content { color: var(--color-white); }
.team-intro__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  color: var(--color-white);
}
.team-intro__accent { color: var(--color-teal); }
.team-intro__content p {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.team-intro__content p strong { color: var(--color-white); }
.btn--outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn--outline-white:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .team-intro__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =============================================
   Services
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.service-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--color-blue);
  line-height: 1;
}
.service-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--color-navy);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.65;
}

/* =============================================
   Portfolio preview
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
  color: inherit;
}
.project-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.project-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #E2E8F0;
}
.project-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .project-card__image img { transform: scale(1.04); }
.project-card__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
}
.project-card__sector {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: rgba(15,23,42,.75);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.project-card__body { padding: 1.25rem; }
.project-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
}
.project-card__result {
  font-size: 0.85rem;
  color: var(--color-slate);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.project-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  background: var(--color-bg);
  color: var(--color-slate);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #E2E8F0;
}

/* =============================================
   Processus
   ============================================= */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.65;
}
.process-step__arrow {
  font-size: 1.5rem;
  color: #CBD5E1;
  padding-top: 1.1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .process-step { padding: 0; max-width: 360px; width: 100%; }
  .process-step__arrow { transform: rotate(90deg); padding-top: 0; }
}

/* =============================================
   Témoignages
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-navy);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-card__photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__photo--placeholder {
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-navy);
}
.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--color-slate);
}

/* =============================================
   Pourquoi nous choisir
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--color-bg);
  border: 1px solid #E2E8F0;
}
.why-item__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.why-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}
.why-item p {
  font-size: 0.88rem;
  color: var(--color-slate);
  line-height: 1.65;
}

/* =============================================
   CTA Final
   ============================================= */
.cta-final {
  background: var(--color-navy);
  padding: 5rem 0;
  text-align: center;
  color: var(--color-white);
}
.cta-final__inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--color-white);
}
.cta-final__inner p {
  font-size: 1.05rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
}
.btn--white:hover { opacity: 0.9; }
.btn--whatsapp {
  background: #25D366;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn--whatsapp:hover { opacity: 0.9; }

/* =============================================
   Page hero (pages intérieures)
   ============================================= */
.page-hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 3.5rem 0 3rem;
}
.page-hero__inner h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin: 0.75rem 0 0.75rem;
  color: var(--color-white);
}
.page-hero__inner > p {
  font-size: 1.05rem;
  color: #94A3B8;
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748B;
}
.breadcrumb a { color: #94A3B8; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb span[aria-hidden] { color: #475569; }

/* =============================================
   Services — page complète
   ============================================= */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-full-card {
  background: var(--color-bg);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.service-full-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.service-full-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-full-card__icon { font-size: 2.25rem; flex-shrink: 0; color: var(--color-blue); line-height: 1; }
.service-full-card__title {
  font-size: 1.2rem;
  color: var(--color-navy);
}
.service-full-card__desc {
  font-size: 0.95rem;
  color: var(--color-slate);
  line-height: 1.7;
}

/* CTA intermédiaire */
.inline-cta {
  background: var(--color-blue);
  padding: 2.5rem 0;
}
.inline-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.inline-cta__inner h2 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}
.inline-cta__inner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
}
.inline-cta .btn--primary {
  background: var(--color-white);
  color: var(--color-blue);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .inline-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   Accordéon FAQ
   ============================================= */
.accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.accordion__item {
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  transition: color var(--transition);
}
.accordion__trigger:hover { color: var(--color-blue); }
.accordion__trigger[aria-expanded="true"] { color: var(--color-blue); }

.accordion__icon {
  display: block;
  width: 18px; height: 18px;
  flex-shrink: 0;
  position: relative;
}
.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.accordion__icon::before { width: 18px; height: 2px; top: 8px; left: 0; }
.accordion__icon::after  { width: 2px; height: 18px; top: 0; left: 8px; }

.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion__panel {
  display: none;
  padding: 0 1.4rem 1.25rem;
}
.accordion__panel.open { display: block; }
.accordion__panel p {
  font-size: 0.92rem;
  color: var(--color-slate);
  line-height: 1.75;
}

/* =============================================
   À propos
   ============================================= */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-mission__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
}
.about-mission__text p {
  font-size: 0.95rem;
  color: var(--color-slate);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-mission__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-mission__slogan {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-mission__slogan span {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-navy);
  opacity: 0.12;
  line-height: 1;
}
.about-mission__slogan span:nth-child(1) { opacity: 0.25; }
.about-mission__slogan span:nth-child(2) { opacity: 0.5; }
.about-mission__slogan span:nth-child(3) { opacity: 1; color: var(--color-blue); }

@media (max-width: 768px) {
  .about-mission { grid-template-columns: 1fr; gap: 2rem; }
  .about-mission__visual { display: none; }
}

/* Valeurs */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-item {
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.value-item__icon { font-size: 2rem; margin-bottom: 0.85rem; }
.value-item h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--color-navy); }
.value-item p { font-size: 0.88rem; color: var(--color-slate); line-height: 1.65; }

/* Équipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover {
  box-shadow: 0 8px 32px rgba(15,23,42,0.10);
  transform: translateY(-4px);
}
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--color-teal);
}
.team-card__photo--placeholder {
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}
.team-card__name { font-size: 1.05rem; font-weight: 700; color: var(--color-navy); margin-bottom: 0.25rem; }
.team-card__role { font-size: 0.85rem; color: var(--color-blue); font-weight: 600; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.82rem; color: var(--color-slate); line-height: 1.6; }

/* Timeline */
.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #E2E8F0;
}
.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -1.625rem;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid #CBD5E1;
}
.timeline__item--current .timeline__marker {
  border-color: var(--color-blue);
  background: var(--color-blue);
}
.timeline__year {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  margin-bottom: 0.35rem;
}
.timeline__content h3 {
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}
.timeline__content p {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.65;
}

/* =============================================
   Portfolio — liste avec filtres
   ============================================= */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid #E2E8F0;
  background: var(--color-white);
  color: var(--color-slate);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}
.filter-btn.active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.project-card__link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue);
  transition: gap var(--transition);
}
.portfolio-empty {
  text-align: center;
  color: var(--color-slate);
  padding: 3rem 0;
  font-size: 0.95rem;
}
/* card hidden by JS filter */
.project-card[hidden] { display: none; }

/* =============================================
   Portfolio — page détail
   ============================================= */
.project-hero {
  position: relative;
  background: var(--color-navy);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.project-hero__image {
  position: absolute;
  inset: 0;
}
.project-hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.project-hero__image--placeholder {
  background: linear-gradient(135deg, #1E293B, #0F172A);
}
.project-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.95) 30%, rgba(15,23,42,.4));
}
.project-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
  color: var(--color-white);
}
.project-hero__content .breadcrumb { margin-bottom: 1rem; }
.project-hero__sector {
  display: inline-block;
  background: rgba(59,130,246,.2);
  border: 1px solid rgba(59,130,246,.4);
  color: #93C5FD;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.project-hero__content h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.project-hero__client {
  font-size: 0.9rem;
  color: #94A3B8;
}

.project-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .project-detail { grid-template-columns: 1fr; }
  .project-detail__sidebar { order: -1; }
}

.project-result-banner {
  background: linear-gradient(135deg, var(--color-teal), #059669);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.project-result-banner__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.75);
  display: block;
  margin-bottom: 0.35rem;
}
.project-result-banner__value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.project-detail__section { margin-bottom: 2rem; }
.project-detail__section h2 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.project-detail__section p {
  font-size: 0.95rem;
  color: var(--color-slate);
  line-height: 1.75;
}

.project-sidebar-card {
  background: var(--color-bg);
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.project-sidebar-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-slate);
  margin-bottom: 0.85rem;
}
.project-sidebar-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag--lg { font-size: 0.8rem; padding: 0.3rem 0.75rem; }

.project-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.project-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.5rem;
}
.project-info-list li span { color: var(--color-slate); }
.project-info-list li strong { color: var(--color-navy); text-align: right; }

/* =============================================
   Markdown content renderer
   ============================================= */
.markdown-content { font-size: 0.95rem; color: var(--color-slate); line-height: 1.85; }
.markdown-content p { margin-bottom: 1.1rem; }
.markdown-content p:last-child { margin-bottom: 0; }
.markdown-content h2,
.markdown-content h3 { color: var(--color-navy); margin: 1.6rem 0 0.6rem; font-family: var(--font-heading); }
.markdown-content h2 { font-size: 1.15rem; }
.markdown-content h3 { font-size: 1rem; }
.markdown-content ul,
.markdown-content ol { padding-left: 1.4rem; margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.markdown-content li { line-height: 1.65; }
.markdown-content strong { color: var(--color-navy); font-weight: 600; }
.markdown-content em { font-style: italic; }
.markdown-content blockquote {
  border-left: 3px solid var(--color-blue);
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  color: var(--color-navy);
  background: rgba(59,130,246,.05);
  border-radius: 0 6px 6px 0;
}
.markdown-content hr { border: none; border-top: 1px solid #E2E8F0; margin: 1.5rem 0; }

/* =============================================
   Service — page détail
   ============================================= */
.service-hero {
  position: relative;
  background: var(--color-navy);
  padding: 4rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(59,130,246,.18) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 100%, rgba(16,185,129,.12) 0%, transparent 55%);
  pointer-events: none;
}
.service-hero__inner {
  position: relative;
  z-index: 1;
}
.service-hero .breadcrumb { justify-content: center; margin-bottom: 2rem; }
.service-hero__icon {
  font-size: 3.5rem;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.service-hero__icon .bi { font-size: 3.5rem; }
.service-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 0.85rem;
}
.service-hero__tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.service-hero__cta { margin-top: 0.5rem; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail__sidebar { order: -1; }
}

.service-detail__section { margin-bottom: 2.5rem; }
.service-detail__section h2 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #E2E8F0;
}
.service-detail__section p {
  font-size: 0.95rem;
  color: var(--color-slate);
  line-height: 1.8;
}

/* Gains block — section pleine largeur, 2 colonnes */
.service-gains-section { padding-top: 0; }
.service-gains-block {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 4rem;
  align-items: center;
}
.service-gains-block h2 {
  font-size: 1.35rem;
  color: var(--color-navy);
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #E2E8F0;
}
.service-gains-block__visual {
  position: relative;
}
.gains-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 40px rgba(59,130,246,.12));
}
@media (max-width: 860px) {
  .service-gains-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-gains-block__visual { order: -1; }
}

/* SVG animations */
.gains-line {
  animation: gainsLineDraw 1.2s .3s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes gainsLineDraw {
  to { stroke-dashoffset: 0; }
}

.gains-area {
  animation: gainsAreaFade .8s .9s ease forwards;
}
@keyframes gainsAreaFade {
  to { opacity: 1; }
}

.gains-dot {
  animation: gainsDotPop .35s .45s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes gainsDotPop {
  0%   { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

.gains-badge {
  animation: gainsBadgeIn .4s ease forwards;
}
@keyframes gainsBadgeIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.gains-arrow {
  animation: gainsBadgeIn .4s ease forwards;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--color-slate);
  line-height: 1.5;
}
.service-features li .bi-check-circle-fill {
  color: var(--color-teal);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.service-sidebar-cta {
  background: var(--color-navy);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.service-sidebar-cta__icon {
  font-size: 2rem;
  color: var(--color-blue);
  margin-bottom: 0.85rem;
  line-height: 1;
}
.service-sidebar-cta h3 {
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.service-sidebar-cta p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.btn--full { width: 100%; justify-content: center; margin-bottom: 0.6rem; }

.service-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-nav-list li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--color-navy);
  border-bottom: 1px solid #F1F5F9;
  transition: color var(--transition);
  text-decoration: none;
}
.service-nav-list li:last-child a { border-bottom: none; }
.service-nav-list li a .bi { color: var(--color-blue); font-size: 1rem; }
.service-nav-list li a:hover { color: var(--color-blue); }

/* Lien "En savoir plus" sur les cards services (page liste) */
.service-full-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.service-full-card__link:hover { gap: 0.6rem; }

/* Service card cliquable (homepage) */
.service-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-top: 0.75rem;
  transition: gap var(--transition);
}
.service-card--link:hover .service-card__more { gap: 0.5rem; }
.service-card--link:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-3px); }

/* ── Process Journey (animated timeline on service detail) ── */
.process-journey {
  position: relative;
  padding-top: 1rem;
}

/* Track (horizontal connecting line, desktop) */
.process-journey__track {
  position: absolute;
  top: calc(1rem + 1.375rem); /* center of the 2.75rem marker */
  left: calc(50% / var(--pj-cols, 5) );
  right: calc(50% / var(--pj-cols, 5) );
  height: 3px;
  background: #E2E8F0;
  border-radius: 2px;
  overflow: hidden;
  pointer-events: none;
}
.process-journey__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(.4,0,.2,1);
}

/* Steps list */
.process-journey__steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  gap: 0.5rem;
}

/* Individual step */
.pj-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.3,.64,1);
}
.pj-step.is-active { opacity: 1; transform: translateY(0); }

/* Marker circle */
.pj-step__marker {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: background .35s ease, border-color .35s ease,
              box-shadow .35s ease, transform .45s cubic-bezier(.34,1.56,.64,1);
}
.pj-step.is-active .pj-step__marker {
  background: var(--color-blue);
  border-color: var(--color-blue);
  box-shadow: 0 0 0 5px rgba(59,130,246,.18);
  transform: scale(1.12);
}

/* Number inside marker */
.pj-step__num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #94A3B8;
  transition: color .3s ease, opacity .2s ease;
  line-height: 1;
}
.pj-step.is-active .pj-step__num { color: #fff; }

/* SVG checkmark (last step only, revealed on success) */
.pj-step__check {
  width: 1.1rem; height: 1.1rem;
  stroke: #fff;
  position: absolute;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: opacity .25s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}

/* Card content */
.pj-step__card h3 {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 0.35rem;
  transition: color .3s ease;
  line-height: 1.35;
}
.pj-step__card p {
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0;
  transition: color .3s ease;
}
.pj-step.is-active .pj-step__card h3 { color: var(--color-navy); }
.pj-step.is-active .pj-step__card p  { color: var(--color-slate); }

/* ── Last step: SUCCESS state ── */
.pj-step--last.is-success .pj-step__marker {
  background: var(--color-teal);
  border-color: var(--color-teal);
  box-shadow: 0 0 0 6px rgba(16,185,129,.2), 0 0 28px rgba(16,185,129,.3);
  animation: pjSuccessPulse 2s ease-in-out infinite;
}
.pj-step--last.is-success .pj-step__num  { opacity: 0; pointer-events: none; }
.pj-step--last.is-success .pj-step__check {
  opacity: 1;
  transform: scale(1) rotate(0);
  stroke-dashoffset: 0;
  transition: opacity .25s .1s ease,
              transform .4s .1s cubic-bezier(.34,1.56,.64,1),
              stroke-dashoffset .35s .15s ease;
}
.pj-step--last.is-success .pj-step__card h3 { color: var(--color-teal); }

@keyframes pjSuccessPulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(16,185,129,.2), 0 0 20px rgba(16,185,129,.2); }
  50%      { box-shadow: 0 0 0 12px rgba(16,185,129,.08), 0 0 40px rgba(16,185,129,.35); }
}

/* ── Success banner ── */
.pj-success {
  text-align: center;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
  position: relative;
}
.pj-success.is-visible { opacity: 1; transform: translateY(0); }

.pj-success__label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-teal);
  margin: 0;
}

/* Sparkles */
.pj-success__sparkles {
  position: relative;
  height: 48px;
  margin-bottom: 0.5rem;
}
.pj-success__sparkles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  top: 50%; left: 50%;
}
.pj-success.is-visible .pj-success__sparkles span { animation: pjSparkle .9s ease forwards; }
.pj-success.is-visible .pj-success__sparkles span:nth-child(1) { width:10px;height:10px;background:var(--color-teal);    animation-delay:.05s;--tx:-70px;--ty:-20px; }
.pj-success.is-visible .pj-success__sparkles span:nth-child(2) { width:8px; height:8px; background:var(--color-blue);    animation-delay:.15s;--tx: 70px;--ty:-20px; }
.pj-success.is-visible .pj-success__sparkles span:nth-child(3) { width:12px;height:12px;background:#F59E0B;              animation-delay:.1s; --tx:-35px;--ty:-55px; }
.pj-success.is-visible .pj-success__sparkles span:nth-child(4) { width:7px; height:7px; background:var(--color-teal);    animation-delay:.2s; --tx: 35px;--ty:-55px; }
.pj-success.is-visible .pj-success__sparkles span:nth-child(5) { width:9px; height:9px; background:#F59E0B;              animation-delay:.0s; --tx:-90px;--ty:  5px; }
.pj-success.is-visible .pj-success__sparkles span:nth-child(6) { width:11px;height:11px;background:var(--color-blue);   animation-delay:.25s;--tx: 90px;--ty:  5px; }

@keyframes pjSparkle {
  0%   { opacity:1; transform:translate(-50%,-50%) scale(1); }
  80%  { opacity:.6; }
  100% { opacity:0; transform:translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0.2); }
}

/* Mobile: vertical timeline */
@media (max-width: 700px) {
  .process-journey__track { display: none; }
  .process-journey__steps { flex-direction: column; gap: 0; }
  .pj-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 1.5rem 0;
    position: relative;
  }
  .pj-step::after {
    content: '';
    position: absolute;
    left: calc(2.75rem / 2 - 1.5px);
    top: 2.75rem;
    bottom: 0;
    width: 3px;
    background: #E2E8F0;
    transition: background .4s ease;
  }
  .pj-step:last-child::after { display: none; }
  .pj-step.is-active::after { background: linear-gradient(to bottom, var(--color-blue) 0%, #E2E8F0 100%); }
  .pj-step--last.is-success::after { display: none; }
  .pj-step__marker { min-width: 2.75rem; margin-bottom: 0; margin-right: 1rem; flex-shrink: 0; }
  .pj-step__card { padding-top: 0.2rem; }
  .pj-step__card h3 { font-size: 0.95rem; }
  .pj-step__card p  { font-size: 0.85rem; }
}

/* Related projects on service detail */
.service-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-project-card {
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-project-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.09); transform: translateY(-3px); }
.service-project-card__img { height: 180px; overflow: hidden; }
.service-project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-project-card:hover .service-project-card__img img { transform: scale(1.04); }
.service-project-card__img--placeholder { background: linear-gradient(135deg, #1E293B, var(--color-navy)); }
.service-project-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.service-project-card__sector {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-blue);
}
.service-project-card__body h3 { font-size: 1rem; color: var(--color-navy); margin: 0; }
.service-project-card__result {
  font-size: 0.825rem;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  margin: 0;
}
.service-project-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: auto; padding-top: 0.5rem; }

/* Related testimonials on service detail */
.service-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-testimonial-card {
  background: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-testimonial-card__quote .bi-quote {
  font-size: 2rem;
  color: var(--color-blue);
  opacity: .3;
  line-height: 1;
}
.service-testimonial-card__text {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.service-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #F1F5F9;
}
.service-testimonial-card__photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.service-testimonial-card__photo--placeholder {
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.service-testimonial-card__author strong { display: block; font-size: 0.875rem; color: var(--color-navy); }
.service-testimonial-card__author span { font-size: 0.775rem; color: var(--color-slate); }

/* =============================================
   Page 404
   ============================================= */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.error-page__inner {
  text-align: center;
}
.error-page__code {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800;
  color: #E2E8F0;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-page__inner h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.error-page__inner p {
  font-size: 1rem;
  color: var(--color-slate);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   Formulaire de contact
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-form-wrap h2,
.contact-info h2 {
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 1.75rem;
}

/* Champs */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}
.required { color: var(--color-blue); margin-left: 2px; }
.optional { font-weight: 400; color: var(--color-slate); font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-navy);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }

.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: #EF4444;
}
.form-error {
  font-size: 0.8rem;
  color: #EF4444;
  font-weight: 500;
}

.btn--full { width: 100%; text-align: center; }

/* Coordonnées */
.contact-info__items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon {
  font-size: 1.3rem;
  width: 42px; height: 42px;
  background: var(--color-bg);
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info__item h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}
.contact-info__item a {
  font-size: 0.9rem;
  color: var(--color-blue);
  transition: opacity var(--transition);
}
.contact-info__item a:hover { opacity: 0.75; }
.contact-info__item p { font-size: 0.85rem; color: var(--color-slate); margin-top: 0.15rem; }

.contact-wa-btn { margin-top: 0.5rem; justify-content: center; }

/* =============================================
   Page confirmation contact
   ============================================= */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.success-page__inner { text-align: center; max-width: 500px; margin: 0 auto; }
.success-page__icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-page__inner h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.success-page__inner p {
  font-size: 1rem;
  color: var(--color-slate);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.success-page__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   Project detail — lien projet en ligne
   ============================================= */

/* Bouton hero (grand, dans l'image) */
.project-hero__live-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.7rem 1.4rem;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(16,185,129,.4);
}
.project-hero__live-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,.5);
}
.project-hero__live-btn i { font-size: 1rem; }

/* Bouton sidebar (collant en scroll) */
.project-sidebar-live-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--color-teal), #059669);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(16,185,129,.35);
  transition: opacity var(--transition), transform var(--transition),
              box-shadow var(--transition);
  margin-bottom: 0.25rem;
}
.project-sidebar-live-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16,185,129,.45);
}
.project-sidebar-live-btn i { font-size: 1rem; }

/* =============================================
   Project detail — logo client
   ============================================= */
.project-sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.project-client-logo {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

/* =============================================
   Project detail — Comment nous avons procédé
   Narrative step-by-step vertical timeline
   ============================================= */

/* Keyframes */
@keyframes ppc-marker-pop {
  0%   { transform: scale(0.2) rotate(-25deg); }
  55%  { transform: scale(1.22) rotate(6deg); }
  78%  { transform: scale(0.9) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes ppc-marker-pulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(16,185,129,.2), 0 0 22px rgba(16,185,129,.3); }
  50%      { box-shadow: 0 0 0 9px rgba(16,185,129,.1), 0 0 36px rgba(16,185,129,.5); }
}
@keyframes ppc-section-glow {
  0%   { box-shadow: inset 0 0 0   0 rgba(16,185,129,0); }
  35%  { box-shadow: inset 0 0 120px 0 rgba(16,185,129,.1); }
  100% { box-shadow: inset 0 0 60px  0 rgba(16,185,129,.04); }
}
@keyframes ppc-sparkle {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0.3); }
}
@keyframes ppc-done-in {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

/* ── Section shell ── */
.project-process-section {
  background: var(--color-navy);
  padding: 5rem 0 4rem;
  transition: box-shadow 1.5s ease;
}
.project-process-section.is-complete {
  animation: ppc-section-glow 2.5s ease forwards;
}

/* Section header */
.ppc-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.ppc-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.ppc-header p { font-size: 0.95rem; color: rgba(255,255,255,.5); }

/* ── Journey container ── */
.ppc-journey {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

/* Vertical track (the line behind markers) */
.ppc-journey__track {
  position: absolute;
  left: 1.25rem;              /* half of 2.5rem marker */
  top: 1.5rem;                /* start at center of first marker */
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  transform: translateX(-50%);
  overflow: hidden;
}
.ppc-journey__fill {
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--color-teal), #34D399);
  border-radius: 2px;
  transition: height 0.55s cubic-bezier(.4,0,.2,1);
}

/* ── Individual step ── */
.ppc-step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}
.ppc-step:last-of-type { padding-bottom: 0; }

/* ── Marker circle ── */
.ppc-step__marker {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background  0.4s ease,
              border-color 0.4s ease,
              box-shadow   0.4s ease;
}

/* Activated marker */
.ppc-step.is-active .ppc-step__marker {
  background: linear-gradient(135deg, var(--color-teal), #059669);
  border-color: transparent;
  box-shadow: 0 0 0 5px rgba(16,185,129,.2), 0 0 22px rgba(16,185,129,.4);
  animation: ppc-marker-pop 0.52s cubic-bezier(.34,1.56,.64,1) forwards;
}
/* Intermediate steps pulse while journey is still running */
.ppc-step.is-active:not(.ppc-step--last):not(.is-done) .ppc-step__marker {
  animation: ppc-marker-pop  0.52s cubic-bezier(.34,1.56,.64,1) forwards,
             ppc-marker-pulse 1.4s  0.55s ease-in-out infinite;
}

/* Number label */
.ppc-step__num {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  transition: color 0.3s ease, opacity 0.3s ease;
  line-height: 1;
  position: relative; z-index: 1;
}
.ppc-step.is-active .ppc-step__num { color: var(--color-white); }

/* SVG checkmark (last step success only) */
.ppc-step__check {
  width: 1.05rem;
  height: 1.05rem;
  stroke: var(--color-white);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.4);
  opacity: 0;
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
  transition: opacity 0.35s 0.1s ease,
              transform 0.45s 0.1s cubic-bezier(.34,1.56,.64,1),
              stroke-dashoffset 0.4s 0.15s ease;
}
.ppc-step--last.is-done .ppc-step__num  { opacity: 0; }
.ppc-step--last.is-done .ppc-step__check {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  stroke-dashoffset: 0;
}
.ppc-step--last.is-done .ppc-step__marker {
  animation: ppc-marker-pop 0.5s cubic-bezier(.34,1.56,.64,1) forwards,
             pjSuccessPulse  2s 0.5s ease-in-out infinite !important;
  background: linear-gradient(135deg, var(--color-teal), #059669);
  border-color: transparent;
}

/* ── Step card (slides in from right) ── */
.ppc-step__card {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity  0.42s ease,
              transform 0.42s cubic-bezier(.22,.68,0,1.1),
              background 0.25s ease,
              border-color 0.25s ease;
}
.ppc-step.is-active .ppc-step__card {
  opacity: 1;
  transform: none;
}
.ppc-step.is-active .ppc-step__card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(16,185,129,.35);
}

/* Ghost number inside the card */
.ppc-step__card::after {
  content: attr(data-num);
  position: absolute;
  right: 0.75rem;
  bottom: -0.75rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-white);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.ppc-step.is-active .ppc-step__card:hover::after { opacity: 0.08; }

/* Card text */
.ppc-step__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  transition: color 0.35s ease;
}
.ppc-step__card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.25);
  line-height: 1.7;
  margin: 0;
  transition: color 0.35s ease;
}
.ppc-step.is-active .ppc-step__card h3 { color: var(--color-white); }
.ppc-step.is-active .ppc-step__card p  { color: rgba(255,255,255,.65); }

/* ── Success banner ── */
.ppc-done {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  opacity: 0;
  pointer-events: none;
}
.ppc-done.is-visible {
  animation: ppc-done-in 0.55s 0.1s cubic-bezier(.22,.68,0,1.15) both;
  pointer-events: auto;
}

.ppc-done__sparkles {
  position: relative;
  height: 52px;
  margin-bottom: 0.5rem;
}
.ppc-done__sparkles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  top: 50%; left: 50%;
}
.ppc-done.is-visible .ppc-done__sparkles span { animation: ppc-sparkle 1s ease forwards; }
.ppc-done.is-visible .ppc-done__sparkles span:nth-child(1) { width:11px;height:11px;background:var(--color-teal); animation-delay:.05s;--tx:-80px;--ty:-18px; }
.ppc-done.is-visible .ppc-done__sparkles span:nth-child(2) { width: 9px;height: 9px;background:var(--color-blue); animation-delay:.18s;--tx: 80px;--ty:-18px; }
.ppc-done.is-visible .ppc-done__sparkles span:nth-child(3) { width:13px;height:13px;background:#FBBF24;          animation-delay:.10s;--tx:-38px;--ty:-58px; }
.ppc-done.is-visible .ppc-done__sparkles span:nth-child(4) { width: 8px;height: 8px;background:var(--color-teal); animation-delay:.22s;--tx: 38px;--ty:-58px; }
.ppc-done.is-visible .ppc-done__sparkles span:nth-child(5) { width:10px;height:10px;background:#FBBF24;          animation-delay:.00s;--tx:-100px;--ty:  5px; }
.ppc-done.is-visible .ppc-done__sparkles span:nth-child(6) { width:12px;height:12px;background:var(--color-blue); animation-delay:.28s;--tx: 100px;--ty:  5px; }

.ppc-done__label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-teal);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .ppc-journey { padding: 0; }
  .ppc-step { gap: 1.25rem; padding-bottom: 2rem; }
  .ppc-step__card { padding: 1rem 1.1rem; }
  .ppc-step__card h3 { font-size: 0.95rem; }
}

/* =============================================
   Project detail — Résultats obtenus
   ============================================= */
@keyframes prb-float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-30px) scale(1.1); }
}
@keyframes prb-float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-25px,20px) scale(1.08); }
}
@keyframes prb-float3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(15px,25px) scale(1.06); }
}
@keyframes trophy-pulse {
  0%,100% { transform: scale(1) rotate(-4deg); }
  50%      { transform: scale(1.1) rotate(4deg); }
}
@keyframes result-card-in {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.project-results-section {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
  padding: 5rem 0;
}

/* Animated blurry orbs in background */
.project-results-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.prb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
}
.prb-orb--1 {
  width: 420px; height: 420px;
  background: var(--color-blue);
  top: -120px; left: -80px;
  animation: prb-float1 9s ease-in-out infinite;
}
.prb-orb--2 {
  width: 320px; height: 320px;
  background: var(--color-teal);
  bottom: -80px; right: 10%;
  animation: prb-float2 11s ease-in-out infinite;
}
.prb-orb--3 {
  width: 200px; height: 200px;
  background: #818CF8;
  top: 40%; right: 25%;
  animation: prb-float3 13s ease-in-out infinite;
}

.project-results-inner { position: relative; z-index: 1; }

.project-results-header {
  text-align: center;
  margin-bottom: 3rem;
}
.project-results-trophy {
  font-size: 2.75rem;
  color: #FBBF24;
  margin-bottom: 0.75rem;
  animation: trophy-pulse 3s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(251,191,36,.4));
}
.project-results-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.project-results-header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.6);
}

.project-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
}

/* Cards start hidden — JS adds .is-visible */
.project-result-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(30px) scale(.97);
  transition: opacity 0.5s ease, transform 0.5s ease,
              background 0.2s ease, border-color 0.2s ease;
}
.project-result-card.is-visible {
  opacity: 1;
  transform: none;
}
.project-result-card.is-visible:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(16,185,129,.5);
  transform: translateY(-3px);
}

.project-result-card__check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), #059669);
  color: var(--color-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(16,185,129,.4);
  margin-top: 0.1rem;
}
.project-result-card__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 640px) {
  .project-results-section { padding: 3.5rem 0; }
  .project-results-grid { grid-template-columns: 1fr; }
}

/* =============================================
   Project detail — Témoignage client
   ============================================= */
.project-testimonial-section { background: var(--color-white); }

.project-testimonial-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  position: relative;
}

.project-testimonial-block__quote-icon {
  font-size: 3rem;
  color: var(--color-blue);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.project-testimonial-block__text {
  font-size: 1.05rem;
  color: var(--color-navy);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  border: none;
  padding: 0;
}

.project-testimonial-block__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.project-testimonial-block__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.project-testimonial-block__photo--initials {
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-testimonial-block__info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.project-testimonial-block__info strong {
  font-size: 0.95rem;
  color: var(--color-navy);
}
.project-testimonial-block__info span {
  font-size: 0.8rem;
  color: var(--color-slate);
}
