/* ══════════════════════════════════════════════════════════════
   WEDGE MANAGEMENT & TECHNOLOGY — Main Stylesheet
   Design: Refined Luxury / Editorial with geometric precision
   Palette: Deep teal #004d40, light #f8f6f1, white, charcoal
   ══════════════════════════════════════════════════════════════ */

:root {
  --green-deep:  #004d40;
  --green-mid:   #00695c;
  --green-light: #00897b;
  --green-pale:  #e0f2f1;
  --cream:       #f8f6f1;
  --charcoal:    #1a1a2e;
  --text:        #2d3748;
  --text-muted:  #718096;
  --white:       #ffffff;
  --border:      rgba(0,77,64,.12);
  --radius:      12px;
  --radius-lg:   24px;
  --shadow:      0 4px 24px rgba(0,77,64,.10);
  --shadow-lg:   0 12px 48px rgba(0,77,64,.18);
  --nav-h:       72px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
}

*, *::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(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ══════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 10px;     /* léger arrondi pour transformer la tuile carrée en badge */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,.85);
  transition: color .2s, background .2s;
  display: flex; align-items: center; gap: 4px;
}
.nav.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.nav.scrolled .nav-link:hover, .nav.scrolled .nav-link.active {
  color: var(--green-deep);
  background: var(--green-pale);
}
.caret { font-size: .7em; transition: transform .2s; }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .caret,
.nav-dropdown:focus-within .caret { transform: rotate(180deg); }

/* Pont invisible entre le lien Services et le sous-menu :
   permet au curseur de descendre vers le menu sans perdre le hover */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 18px;
  pointer-events: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after { pointer-events: auto; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  min-width: 230px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
  visibility: hidden;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  transition: opacity .25s, transform .25s, visibility 0s;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: .875rem;
  color: var(--text);
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.dropdown-menu li a:hover {
  background: var(--green-pale);
  color: var(--green-deep);
}

.btn-nav {
  margin-left: auto;
  padding: 10px 22px;
  background: var(--white);
  color: var(--green-deep);
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s, color .2s, transform .2s;
  white-space: nowrap;
}
.nav.scrolled .btn-nav {
  background: var(--green-deep);
  color: var(--white);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .35;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: #80cbc4;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--green-deep);
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.btn-primary.btn-large { padding: 18px 44px; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .4; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }

/* ══════════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--charcoal);
  padding: 32px 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.stat-num-row {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  white-space: nowrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #80cbc4;
  line-height: 1;
  margin-left: 2px;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}

/* ══════════════════════════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ══════════════════════════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════════════════════════ */
.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.intro-card-stack {
  position: relative;
  height: 320px;
}
.icard {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--green-deep);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform .3s;
}
.icard:hover { transform: translateY(-4px) !important; }
.icard-1 { top: 0; left: 0; width: 240px; transform: rotate(-2deg); }
.icard-2 { top: 90px; right: 0; width: 250px; transform: rotate(1.5deg); }
.icard-3 { bottom: 20px; left: 30px; width: 230px; transform: rotate(-1deg); }
.icard i {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-network::before { content: "⬡"; font-size: 1.1rem; }
.icon-tasks::before   { content: "☑"; font-size: 1.1rem; }
.icon-card::before    { content: "⊟"; font-size: 1.1rem; }

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID
   ══════════════════════════════════════════════════════════════ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--border);
  transition: color .3s;
}
.service-card:hover { background: var(--green-deep); }
.service-card:hover::before { color: rgba(255,255,255,.2); }

.sc-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-deep);
  transition: background .3s, color .3s;
  flex-shrink: 0;
}
.sc-icon svg { width: 24px; height: 24px; }
.service-card:hover .sc-icon { background: rgba(255,255,255,.15); color: var(--white); }

.sc-body { flex: 1; }
.sc-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  transition: color .3s;
  line-height: 1.3;
}
.sc-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color .3s;
}
.service-card:hover .sc-body h3,
.service-card:hover .sc-body p { color: rgba(255,255,255,.9); }
.service-card:hover .sc-body p { color: rgba(255,255,255,.7); }

.sc-arrow {
  font-size: 1.2rem;
  color: var(--green-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s, color .3s;
}
.service-card:hover .sc-arrow {
  opacity: 1;
  transform: translateX(0);
  color: rgba(255,255,255,.7);
}

/* ══════════════════════════════════════════════════════════════
   APPROACH
   ══════════════════════════════════════════════════════════════ */
.approach { background: var(--cream); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.approach-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.approach-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding .2s;
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 8px; }
.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-pale);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
  transition: color .2s;
}
.step:hover .step-num { color: var(--green-light); }
.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.step-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   FOUNDERS
   ══════════════════════════════════════════════════════════════ */
.founders { background: var(--white); }
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.founder-card {
  display: flex;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow .3s, transform .3s;
}
.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.founder-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.founder-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--green-pale);
}
.founder-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-deep);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.founder-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.founder-title {
  font-size: .8rem;
  color: var(--green-mid);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.founder-info blockquote {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--green-pale);
  padding-left: 16px;
  margin-bottom: 16px;
}
.founder-linkedin {
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: color .2s;
}
.founder-linkedin:hover { color: var(--green-deep); }

/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--green-deep);
  padding: 80px 32px;
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-inner .btn-primary {
  background: var(--white);
  color: var(--green-deep);
}
.cta-inner .btn-primary:hover { box-shadow: 0 8px 32px rgba(0,0,0,.25); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer { background: var(--charcoal); padding: 64px 0 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
/* Le bloc brand est aligné en haut comme les autres colonnes : pas de marge top, et marge bottom réduite */
.footer-brand { margin-top: -8px; }
.footer-logo {
  height: 160px;
  width: auto;
  margin: px 0 12px -12px; /* négatif pour rogner visuellement le padding résiduel et caler à gauche */
  display: block;
}
.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,.5); }
.footer-social svg { width: 16px; height: 16px; }

.footer-links h4, .footer-contact h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.footer-links ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links ul a:hover { color: var(--white); }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact ul li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: .5; }
.footer-contact ul a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact ul a:hover { color: var(--white); }

.btn-extranet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.btn-extranet:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-extranet svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 32px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  max-width: 1200px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGE LAYOUT (shared by all service pages)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--green-deep);
  padding: calc(var(--nav-h) + 60px) 32px 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-breadcrumb {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 1000px;
  line-height: 1.1;
  white-space: nowrap;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 32px;
}
.page-hero .btn-primary { background: var(--white); color: var(--green-deep); }

.page-section { padding: 80px 0; }
.page-section.bg-cream { background: var(--cream); }
.page-section.bg-white { background: var(--white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .3s, transform .3s, background .3s;
}
.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  background: var(--green-deep);
}
.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  transition: color .3s;
}
.info-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color .3s;
}
.info-card:hover h4 { color: var(--white); }
.info-card:hover p { color: rgba(255,255,255,.75); }

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.approach-item:last-child { border-bottom: none; }
.approach-num {
  width: 32px;
  height: 32px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}
.approach-item p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.65;
  padding-top: 4px;
}

.pills-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill-tag {
  padding: 9px 18px;
  border: 1.5px solid var(--green-pale);
  background: var(--green-pale);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-deep);
}

.page-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .founders-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-links, .nav-inner > .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; gap: 16px; }
  .nav-logo-img { height: 38px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open .nav-link { color: var(--text); width: 100%; }

  /* Sous-menu mobile : replié par défaut, déplié uniquement quand .mobile-open est ajouté */
  .nav-links.open .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    background: var(--cream);
    border-radius: var(--radius);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height .3s ease, opacity .2s ease, padding .3s ease, margin .3s ease;
  }
  .nav-links.open .nav-dropdown.mobile-open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 8px 8px 8px 16px;
    margin-top: 4px;
  }
  .nav-links.open .nav-dropdown .caret { transition: transform .3s; }
  .nav-links.open .nav-dropdown.mobile-open .caret { transform: rotate(180deg); }
  /* On désactive le pont desktop sur mobile */
  .nav-links.open .nav-dropdown::after { display: none; }
  .nav-links.open .btn-nav {
    display: inline-flex;
    background: var(--green-deep);
    color: var(--white);
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  /* HERO */
  .hero { min-height: auto; padding: 60px 0; }
  .hero-content { padding: 100px 20px 80px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); line-height: 1.12; }
  .hero-sub { font-size: .95rem; line-height: 1.65; margin-bottom: 32px; }
  .hero-sub br { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; width: 100%; padding: 14px 24px; }
  .hero-scroll { display: none; }

  /* STATS */
  .stats-bar { padding: 28px 0; }
  .stats-inner {
    justify-content: center;
    gap: 28px 32px;
    padding: 0 24px;
  }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 calc(50% - 16px); min-width: 130px; max-width: 220px; }
  .stat-num, .stat-suffix { font-size: 2.3rem; }
  .stat-suffix { font-size: 1.85rem; }
  .stat-label { font-size: .72rem; line-height: 1.35; }

  /* SECTIONS */
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 40px; }

  /* INTRO */
  .intro-card-stack { display: none; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; border-radius: var(--radius); }
  .service-card { padding: 32px 24px; }

  /* APPROACH */
  .approach-grid { gap: 32px; }
  .step { gap: 18px; padding: 22px 0; }
  .step-num { font-size: 1.4rem; }

  /* FOUNDERS */
  .founder-card { flex-direction: column; padding: 28px 22px; gap: 20px; text-align: center; }
  .founder-img-wrap { align-self: center; }
  .founder-img { width: 130px; height: 130px; }
  .founder-info blockquote { text-align: left; }

  /* CTA */
  .cta-band { padding: 60px 20px; }
  .cta-inner h2 { font-size: clamp(1.8rem, 6vw, 2.2rem); }

  /* FOOTER */
  .footer { padding: 48px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px 36px; }
  .footer-bottom { padding: 18px 20px; font-size: .72rem; }

  /* SERVICE PAGE HERO */
  .page-hero { padding: calc(var(--nav-h) + 36px) 20px 50px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); line-height: 1.15; white-space: normal; }
  .page-hero h1 br { display: none; }
  .page-hero p { font-size: .95rem; line-height: 1.65; margin-bottom: 24px; }

  .page-section { padding: 56px 0; }
  .page-section h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .info-card { padding: 26px 22px; }
  .approach-item { gap: 14px; padding: 18px 0; }
  .pill-tag { font-size: .75rem; padding: 8px 14px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 90px 16px 64px; }
  .hero-title { font-size: clamp(1.95rem, 11vw, 2.6rem); }
  .hero-sub { font-size: .9rem; }
  .hero-eyebrow { font-size: .72rem; letter-spacing: .14em; }

  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  .stats-inner { gap: 22px 18px; padding: 0 16px; }
  .stat-item { flex: 0 0 calc(50% - 9px); min-width: 0; }
  .stat-num, .stat-suffix { font-size: 2rem; }
  .stat-suffix { font-size: 1.6rem; }
  .stat-label { font-size: .68rem; }

  .nav-inner { padding: 0 16px; }
  .nav-logo-img { height: 34px; }

  .service-card { padding: 28px 20px; }
  .sc-icon { width: 42px; height: 42px; }
  .sc-icon svg { width: 22px; height: 22px; }

  .founder-card { padding: 24px 18px; }
  .founder-img { width: 116px; height: 116px; }

  .page-hero { padding: calc(var(--nav-h) + 28px) 16px 42px; }
  .page-hero h1 { font-size: clamp(1.7rem, 8vw, 2.1rem); }
  .page-hero p { font-size: .9rem; }

  .page-section { padding: 48px 0; }
  .info-card { padding: 22px 18px; }

  .cta-band { padding: 52px 16px; }
  .cta-inner h2 { font-size: 1.65rem; }
  .btn-primary.btn-large { padding: 14px 28px; font-size: .95rem; }

  .footer-inner { padding: 0 16px 32px; }
  .footer-bottom { padding: 16px; font-size: .68rem; line-height: 1.4; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
.anim-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.anim-up.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }
.anim-delay-5 { transition-delay: .5s; }
.anim-delay-6 { transition-delay: .6s; }
