/* ==========================================================================
   SGO SAS — PROTOTYPE DE DESIGN
   Thème clair "Corporate Premium Panafricain"
   Fonts: Space Grotesk (display) / Inter (body) / JetBrains Mono (data,labels)
   ========================================================================== */

:root{
  /* Surfaces */
  --bg:            #FAFAF7;
  --bg-soft:       #F2F5F9;
  --surface:       #FFFFFF;
  --surface-line:  #E5E9F0;

  /* Marque */
  --navy:          #0F2542;
  --navy-deep:     #081627;
  --blue:          #1D4E89;
  --blue-bright:   #2E6FCB;
  --blue-tint:     #EAF1FB;
  --green:         #1E7A4F;
  --green-tint:    #E8F5EC;
  --orange:        #F2760F;
  --orange-tint:   #FDECDD;
  --gold:          #C9972A;
  --gold-tint:     #FBF1DD;

  /* Texte */
  --ink:           #131E31;
  --ink-soft:      #4C5A72;
  --ink-faint:     #8895AA;

  /* Typo */
  --f-display: 'Space Grotesk', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  /* Autres */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 1px 2px rgba(15,37,66,0.04), 0 12px 32px -12px rgba(15,37,66,0.14);
  --shadow-card-hover: 0 4px 10px rgba(15,37,66,0.06), 0 24px 48px -16px rgba(15,37,66,0.2);
  --container: 1280px;
  --ease: cubic-bezier(.22,.9,.32,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:var(--f-display);
  color:var(--navy);
  margin:0;
  letter-spacing:-0.01em;
}
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
img{ max-width:100%; display:block; }
svg{ display:block; }
button{ font-family:inherit; cursor:pointer; background:none; border:none; color:inherit; }
input{ font-family:inherit; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* film grain very subtle, adds premium print-like texture */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:9999;
  opacity:.025; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ eyebrow / labels ============ */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--f-mono); font-size:12px; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--blue-bright);
  margin-bottom:18px;
}
.eyebrow--dark{ color:var(--blue); }
.eyebrow__dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 4px var(--orange-tint);
}

.section-title{
  font-size:clamp(28px,3.4vw,42px);
  line-height:1.15;
  max-width:780px;
}
.section-lead{
  margin-top:16px;
  max-width:620px;
  color:var(--ink-soft);
  font-size:17px;
}
.section-head{ margin-bottom:56px; }
.section-head--center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-head--center .section-title{ margin-left:auto; margin-right:auto; }

/* ============ buttons ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 26px;
  border-radius:8px;
  font-family:var(--f-body); font-weight:600; font-size:14.5px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn--sm{ padding:10px 18px; font-size:13.5px; }
.btn--primary{
  background:var(--navy); color:#fff;
  box-shadow:0 10px 24px -10px rgba(15,37,66,.55);
}
.btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(15,37,66,.6); background:var(--blue); }
.btn--outline{
  background:transparent; color:var(--navy);
  border:1.5px solid var(--surface-line);
}
.btn--outline:hover{ border-color:var(--navy); transform:translateY(-2px); }
.btn--ghost{ color:var(--navy); border:1.5px solid transparent; }
.btn--ghost:hover{ background:var(--bg-soft); }
.btn--primary-inverse{ background:#fff; color:var(--navy); }
.btn--primary-inverse:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(0,0,0,.35); }
.btn--outline-inverse{ border:1.5px solid rgba(255,255,255,.4); color:#fff; }
.btn--outline-inverse:hover{ border-color:#fff; transform:translateY(-2px); }

.link-arrow{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:14.5px; color:var(--navy);
  position:relative;
}
.link-arrow svg{ transition:transform .3s var(--ease); }
.link-arrow:hover svg{ transform:translateX(4px); }

/* ============ HEADER ============ */
.header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(250,250,247,.72);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid rgba(15,37,66,.06);
  transition:background .3s ease, box-shadow .3s ease;
}
.header.is-scrolled{
  box-shadow:0 8px 30px -20px rgba(15,37,66,.3);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__logo{ height:38px; width:auto; }
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__text strong{ font-family:var(--f-display); font-size:14.5px; letter-spacing:.02em; color:var(--navy); }
.brand__text em{ font-style:normal; font-family:var(--f-mono); font-size:10px; letter-spacing:.1em; color:var(--ink-faint); text-transform:uppercase; }

.nav{ display:flex; align-items:center; gap:34px; }
.nav__link{
  font-size:14.5px; font-weight:500; color:var(--ink-soft);
  display:inline-flex; align-items:center; gap:5px;
  transition:color .2s ease;
}
.nav__link:hover{ color:var(--navy); }
.nav__link--trigger{ font-family:inherit; }
.nav__dropdown{ position:relative; }
.nav__dropdown::after{
  content:'';
  position:absolute; top:100%; left:0; right:0;
  height:14px;
}
.nav__dropdown svg{ transition:transform .25s ease; color:var(--ink-faint); }
.nav__dropdown:hover svg, .nav__dropdown.is-open svg{ transform:rotate(180deg); }
.nav__menu{
  position:absolute; top:calc(100% + 14px); left:0; right:auto; transform:translateY(4px);
  background:#fff; border:1px solid var(--surface-line); border-radius:12px;
  box-shadow:var(--shadow-card-hover);
  padding:10px; min-width:220px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav__dropdown:hover .nav__menu,
.nav__dropdown.is-open .nav__menu{ opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; }
.nav__menu a{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:8px; font-size:14px; color:var(--ink);
  transition:background .2s ease;
}
.nav__menu a:hover{ background:var(--bg-soft); }
.nav__menu-dot{ width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.dot--blue{ background:var(--blue-bright); }
.dot--green{ background:var(--green); }
.dot--orange{ background:var(--orange); }
.dot--leaf{ background:#4FA65A; }
.dot--gold{ background:var(--gold); }

.header__actions{ display:flex; align-items:center; gap:12px; }

/* Bouton "Espace client" — pointe vers login.html (espace de connexion des clients) */
.btn-client{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 18px;
  border-radius:8px;
  background:var(--navy); color:#fff;
  font-size:13.5px; font-weight:600;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease;
  box-shadow:0 8px 18px -10px rgba(15,37,66,.5);
}
.btn-client svg{ flex-shrink:0; }
.btn-client:hover{ background:var(--blue); transform:translateY(-1px); box-shadow:0 10px 22px -10px rgba(15,37,66,.55); }

.lang-switch{
  display:flex; align-items:center; gap:5px;
  font-family:var(--f-mono); font-size:12.5px; font-weight:500;
  padding:8px 10px; border-radius:6px; border:1px solid var(--surface-line);
  color:var(--ink-soft);
}
.lang-switch__active{ color:var(--navy); font-weight:700; }
.lang-switch:hover{ border-color:var(--navy); }

.burger{ display:none; flex-direction:column; gap:5px; width:22px; }
.burger span{ height:2px; background:var(--navy); border-radius:2px; transition:transform .3s ease, opacity .3s ease; }

/* ============ HERO ============ */
.hero{
  position:relative;
  padding:220px 0 140px;
  overflow:hidden;
  min-height:640px;
  display:flex; align-items:center;
}
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__scene{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(250,250,247,.55) 0%, rgba(250,250,247,.72) 55%, rgba(250,250,247,.94) 100%);
}
.hero__glow{
  position:absolute; border-radius:50%; filter:blur(90px);
}
.hero__glow--blue{ width:520px; height:520px; background:radial-gradient(circle, rgba(46,111,203,.14), transparent 70%); top:-160px; left:-120px; }
.hero__glow--green{ width:460px; height:460px; background:radial-gradient(circle, rgba(30,122,79,.1), transparent 70%); bottom:-180px; right:-100px; }

.hero__inner{
  position:relative; z-index:1;
  display:flex; justify-content:center;
}
.hero__copy{ max-width:760px; text-align:center; }
.hero__copy .eyebrow{ justify-content:center; }
.hero__title{
  font-size:clamp(34px,4.8vw,60px);
  line-height:1.06;
  color:var(--navy);
  margin-top:6px;
}
.hero__title span{
  background:linear-gradient(90deg, var(--blue-bright), var(--green));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero__subtitle{
  margin:22px auto 0;
  font-family:var(--f-display);
  font-size:19px; font-weight:500;
  color:var(--ink-soft);
  max-width:560px;
}
.hero__desc{
  margin:18px auto 0;
  max-width:560px;
  color:var(--ink-soft);
  font-size:16px;
}
.hero__ctas{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; justify-content:center; }
.hero__ctas--secondary{ margin-top:22px; gap:28px; justify-content:center; }

/* ---- Section carrousel 3D CSS (signature element, section dédiée) ---- */
.wheel-section{ padding:100px 0 90px; background:var(--bg-soft); overflow:hidden; }
.wheel-platform{ position:relative; width:100%; height:300px; display:flex; align-items:center; justify-content:center; }
.wheel-platform__shadow{
  position:absolute; bottom:36px; width:220px; height:34px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(15,37,66,.16), transparent 70%);
  filter:blur(4px);
}

.banner{
  width:132px; height:132px;
  position:relative;
  perspective:1400px;
}
.slider{
  width:100%; height:100%;
  position:absolute; top:0; left:0;
  transform-style:preserve-3d;
  transform:perspective(1400px);
  animation:autoRun 26s linear infinite;
}
@keyframes autoRun{
  from{ transform:perspective(1400px) rotateX(-10deg) rotateY(0deg); }
  to{ transform:perspective(1400px) rotateX(-10deg) rotateY(360deg); }
}
.slider .item{
  position:absolute; inset:0;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform:rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(210px);
}
.pillar-face{
  width:132px; height:132px; border-radius:20px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  background:#fff;
  border:1px solid var(--surface-line);
  box-shadow:0 16px 32px -14px rgba(15,37,66,.28), inset 0 1px 0 rgba(255,255,255,.8);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
/* icône façon "badge" arrondi teinté — même esprit que les cartes "Pourquoi nous choisir" */
.pillar-face__icon-wrap{
  width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:currentColor;
}
.pillar-face__icon-wrap svg{ width:22px; height:22px; color:#fff; }
.pillar-face__label{
  font-family:var(--f-mono); font-size:11px; font-weight:600; letter-spacing:.02em;
  text-align:center; line-height:1.35; color:var(--navy);
}
.pillar-face--blue{ background:linear-gradient(160deg,#fff, var(--blue-tint)); color:var(--blue-bright); }
.pillar-face--green{ background:linear-gradient(160deg,#fff, var(--green-tint)); color:var(--green); }
.pillar-face--leaf{ background:linear-gradient(160deg,#fff, #EEF8EA); color:#3F8C4B; }
.pillar-face--gold{ background:linear-gradient(160deg,#fff, var(--gold-tint)); color:var(--gold); }
.pillar-face--navy{ background:linear-gradient(160deg,#fff, #EAF0FA); color:var(--navy); }
.pillar-face--orange{ background:linear-gradient(160deg,#fff, var(--orange-tint)); color:var(--orange); }

.wheel-section__caption{
  margin-top:26px;
  text-align:center;
  font-family:var(--f-mono); font-size:12.5px; letter-spacing:.04em;
  color:var(--ink-faint);
}

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border-radius:20px; border:1.5px solid rgba(15,37,66,.2);
  display:flex; justify-content:center; padding-top:8px;
}
.scroll-cue span{ width:4px; height:8px; border-radius:2px; background:var(--navy); animation:cue 1.8s ease-in-out infinite; }
@keyframes cue{ 0%,100%{ transform:translateY(0); opacity:1;} 50%{ transform:translateY(10px); opacity:.3;} }

/* ============ STATS ============ */
.stats{ background:var(--navy); padding:44px 0; }
.stats__grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.stat{ text-align:center; }
.stat__num{
  display:block; font-family:var(--f-mono); font-size:34px; font-weight:600; color:#fff;
}
.stat__unit{ font-size:20px; color:var(--gold); }
.stat__label{
  display:block; margin-top:6px; font-size:13px; color:rgba(255,255,255,.6);
  letter-spacing:.02em;
}

/* ============ ABOUT ============ */
.about{ padding:120px 0; }
.about__grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:64px; align-items:start; }
.about__text{ margin-top:20px; color:var(--ink-soft); font-size:16.5px; max-width:560px; }

.mv-cards{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:34px; }
.mv-card{
  background:#fff; border:1px solid var(--surface-line); border-radius:var(--radius-md);
  padding:22px; box-shadow:var(--shadow-card);
}
.mv-card__tag{
  font-family:var(--f-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--blue-bright); font-weight:600;
}
.mv-card p{ margin-top:10px; font-size:14.5px; color:var(--ink-soft); line-height:1.55; }

.values{ display:flex; gap:0; margin-top:36px; border-top:1px solid var(--surface-line); }
.value{
  flex:1; padding:20px 4px 0; font-weight:600; font-size:14.5px; color:var(--navy);
  border-right:1px solid var(--surface-line);
}
.value:last-child{ border-right:none; }
.value span{
  display:block; font-family:var(--f-mono); font-size:12px; color:var(--orange); margin-bottom:10px; font-weight:600;
}

.ambition-card{
  position:relative; overflow:hidden;
  background:var(--navy); border-radius:var(--radius-lg);
  padding:44px 36px;
  color:#fff;
  box-shadow:0 30px 60px -24px rgba(15,37,66,.5);
}
.ambition-card__glow{
  position:absolute; width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,151,42,.35), transparent 70%);
  top:-100px; right:-80px; filter:blur(10px);
}
.ambition-card__kicker{
  position:relative; font-family:var(--f-mono); font-size:11px; letter-spacing:.14em;
  color:var(--gold); font-weight:600;
}
.ambition-card__quote{
  position:relative; margin-top:22px;
  font-family:var(--f-display); font-size:22px; line-height:1.42;
}
.ambition-card__foot{
  position:relative; margin-top:26px; padding-top:20px; border-top:1px solid rgba(255,255,255,.14);
  font-family:var(--f-mono); font-size:12.5px; color:rgba(255,255,255,.6);
}

/* ============ PILLARS (solutions) ============ */
.pillars{ padding:100px 0; background:var(--bg-soft); }
.pillar-cards{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.pillar-card{
  background:#fff; border-radius:var(--radius-lg); padding:34px;
  border:1px solid var(--surface-line);
  box-shadow:var(--shadow-card);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
  position:relative;
}
.pillar-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card-hover); }
.pillar-card__top{ display:flex; align-items:flex-start; justify-content:space-between; }
.pillar-card__icon{
  width:56px; height:56px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
}
.pillar-card__icon svg{ width:28px; height:28px; }
.pillar-card__num{ font-family:var(--f-mono); font-size:13px; color:var(--ink-faint); font-weight:600; }
.pillar-card h3{ margin-top:22px; font-size:24px; }
.pillar-card__desc{ margin-top:12px; color:var(--ink-soft); font-size:15px; line-height:1.6; }
.pillar-card__tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; margin-bottom:24px; }
.pillar-card__tags li{
  font-family:var(--f-mono); font-size:11.5px; padding:6px 11px; border-radius:20px;
  background:var(--bg-soft); color:var(--ink-soft); border:1px solid var(--surface-line);
}
.pillar-card--blue .pillar-card__icon{ background:var(--blue-tint); color:var(--blue-bright); }
.pillar-card--green .pillar-card__icon{ background:var(--green-tint); color:var(--green); }
.pillar-card--leaf .pillar-card__icon{ background:#EEF8EA; color:#3F8C4B; }
.pillar-card--gold .pillar-card__icon{ background:var(--gold-tint); color:var(--gold); }
.pillar-card--blue:hover{ border-color:var(--blue-bright); }
.pillar-card--green:hover{ border-color:var(--green); }
.pillar-card--leaf:hover{ border-color:#3F8C4B; }
.pillar-card--gold:hover{ border-color:var(--gold); }

/* ============ SOLUTIONS — bento asymétrique (texte+image, texte seul, image+texte empilés) ============ */
.bento-row{ display:grid; gap:24px; }
.bento-row--a{ grid-template-columns:1.7fr 1fr; }
.bento-row--b{ grid-template-columns:1fr 1.7fr; }
.bento-row + .bento-row{ margin-top:24px; }

/* carte texte + image côte à côte (SAYGOO / GBC) */
.bento-card--split{
  display:flex;
  background:#fff; border:1px solid var(--surface-line); border-radius:var(--radius-lg);
  overflow:hidden; min-height:300px;
  box-shadow:var(--shadow-card);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bento-card--split:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card-hover); }
.bento-card--split .bento-card__text{ flex:1 1 50%; padding:36px; display:flex; flex-direction:column; min-width:0; }
.bento-card--split .bento-card__media{ flex:1 1 50%; position:relative; min-width:0; background:var(--bg-soft); }
.bento-card--split .bento-card__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }

/* carte texte seule, fond teinté, sans image (Academy) */
.bento-card--plain{
  background:var(--gold-tint);
  border:1px solid rgba(201,151,42,.18);
  border-radius:var(--radius-lg);
  padding:36px;
  display:flex; flex-direction:column;
  min-height:300px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bento-card--plain:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card-hover); }
.bento-card--plain .bento-card__icon{ background:rgba(255,255,255,.7); }

/* carte image en haut / texte en bas (Agri) */
.bento-card--stacked{
  background:#fff; border:1px solid var(--surface-line); border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  display:flex; flex-direction:column;
}
.bento-card--stacked:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card-hover); }
.bento-card--stacked .bento-card__media{ position:relative; width:100%; aspect-ratio:16/10; background:var(--bg-soft); }
.bento-card--stacked .bento-card__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.bento-card--stacked .bento-card__text{ padding:30px 32px 34px; display:flex; flex-direction:column; flex:1; }

/* contenu texte commun — icône "badge" arrondi teinté (cohérent avec le carrousel et les actualités) */
.bento-card__icon{
  width:52px; height:52px; border-radius:14px;
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  flex-shrink:0;
}
.bento-card__icon svg{ width:24px; height:24px; }
.bento-card__text h3{ font-size:22px; }
.bento-card__text p{ margin-top:12px; color:var(--ink-soft); font-size:14.5px; line-height:1.6; flex:1; }
.bento-card__text .link-arrow{ margin-top:20px; }

.bento-card--blue .bento-card__icon{ background:var(--blue-tint); color:var(--blue-bright); }
.bento-card--orange .bento-card__icon{ background:var(--orange-tint); color:var(--orange); }
.bento-card--leaf .bento-card__icon{ background:#EEF8EA; color:#3F8C4B; }
.bento-card--gold .bento-card__icon{ background:rgba(255,255,255,.85); color:var(--gold); }

@media (max-width:1080px){
  .bento-row, .bento-row--a, .bento-row--b{ grid-template-columns:1fr; }
  .bento-card--split{ flex-direction:column; }
  .bento-card--split .bento-card__media{ min-height:220px; }
}

/* ============ WHY ============ */
.why{ padding:100px 0; }
.why__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--surface-line); border:1px solid var(--surface-line); border-radius:var(--radius-lg); overflow:hidden; }
.why__item{ background:#fff; padding:36px 32px; transition:background .3s ease; }
.why__item:hover{ background:var(--bg-soft); }
.why__item svg{ width:26px; height:26px; }
.why__item-icon{
  width:56px; height:56px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px; transition:transform .3s var(--ease);
}
.why__item:hover .why__item-icon{ transform:translateY(-3px) scale(1.04); }
.why__item--blue .why__item-icon{ background:var(--blue-tint); color:var(--blue-bright); }
.why__item--green .why__item-icon{ background:var(--green-tint); color:var(--green); }
.why__item--orange .why__item-icon{ background:var(--orange-tint); color:var(--orange); }
.why__item--gold .why__item-icon{ background:var(--gold-tint); color:var(--gold); }
.why__item--leaf .why__item-icon{ background:#EEF8EA; color:#3F8C4B; }
.why__item h4{ margin-top:18px; font-size:17px; }
.why__item p{ margin-top:8px; font-size:14.5px; color:var(--ink-soft); line-height:1.55; }

/* ============ SECTORS ============ */
.sectors{ padding:0 0 100px; }
.sectors__cloud{ display:flex; flex-wrap:wrap; gap:12px; }
.sectors__cloud span{
  font-family:var(--f-mono); font-size:13.5px; font-weight:500;
  padding:11px 20px; border-radius:30px;
  background:#fff; border:1px solid var(--surface-line); color:var(--navy);
  transition:all .25s ease;
}
.sectors__cloud span:hover{ background:var(--navy); color:#fff; border-color:var(--navy); transform:translateY(-2px); }

/* ============ PARTNERS ============ */
.partners{ padding:20px 0 100px; }
.partners__track{ overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.partners__row{
  display:flex; gap:64px; width:max-content;
  animation:marquee 32s linear infinite;
  padding:8px 0;
}
.partners__row span{
  font-family:var(--f-display); font-weight:600; font-size:19px; color:var(--ink-faint);
  white-space:nowrap; letter-spacing:.02em;
}
.partners__logo{
  height:28px; width:auto; object-fit:contain; border-radius:6px;
  opacity:.85; transition:opacity .25s ease;
}
.partners__row:hover .partners__logo{ opacity:1; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-100%);} }

/* ============ NEWS ============ */
.news{ padding:0 0 110px; }
.news__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.news-card{
  background:#fff; border:1px solid var(--surface-line); border-radius:var(--radius-md);
  padding:26px; box-shadow:var(--shadow-card);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor:pointer;
}
.news-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-card-hover); }
.news-card:focus-visible{ outline:2px solid var(--blue-bright); outline-offset:3px; }

/* ============ MODALE ACTUALITÉ ============ */
.news-modal{ position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center; padding:24px; opacity:0; pointer-events:none; transition:opacity .3s var(--ease); }
.news-modal.is-open{ opacity:1; pointer-events:auto; }
.news-modal__backdrop{ position:absolute; inset:0; background:rgba(8,22,39,.55); backdrop-filter:blur(3px); }
.news-modal__panel{
  position:relative; width:100%; max-width:640px; max-height:86vh; overflow-y:auto;
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-card-hover);
  transform:translateY(16px) scale(.98); opacity:0; transition:transform .35s var(--ease), opacity .35s var(--ease);
}
.news-modal.is-open .news-modal__panel{ transform:translateY(0) scale(1); opacity:1; }
.news-modal__close{
  position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:50%;
  background:var(--bg-soft); border:1px solid var(--surface-line); color:var(--ink);
  display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:2;
  transition:background .2s ease;
}
.news-modal__close:hover{ background:var(--surface-line); }
.news-modal__image{
  height:180px; border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  background:var(--bg-soft); color:var(--ink-faint);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  overflow:hidden;
}
.news-modal__image img{ width:100%; height:100%; object-fit:cover; }
.news-modal__image svg{ width:40px; height:40px; }
.news-modal__image--blue{ background:var(--blue-tint); color:var(--blue-bright); }
.news-modal__image--leaf{ background:#EEF8EA; color:#3F8C4B; }
.news-modal__image--gold{ background:var(--gold-tint); color:var(--gold); }
.news-modal__image--navy{ background:#EAF0FA; color:var(--navy); }
.news-modal__image span{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:.05em; text-transform:uppercase; }
.news-modal__body{ padding:30px 34px 36px; }
.news-modal__cat{
  font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--orange); font-weight:600;
}
.news-modal__title{ margin-top:10px; font-size:24px; line-height:1.3; }
.news-modal__date{ display:block; margin-top:10px; font-family:var(--f-mono); font-size:12px; color:var(--ink-faint); }
.news-modal__text{ margin-top:20px; display:flex; flex-direction:column; gap:14px; }
.news-modal__text p{ font-size:15px; line-height:1.7; color:var(--ink-soft); }
@media (max-width:640px){
  .news-modal__body{ padding:24px 22px 28px; }
  .news-modal__title{ font-size:20px; }
}
/* icône "badge" arrondi teinté (au lieu du grand bandeau) — cohérent avec le carrousel et les solutions */
.news-card__cover{
  width:52px; height:52px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.news-card__cover svg{ width:24px; height:24px; }
.news-card__cover--blue{ background:var(--blue-tint); color:var(--blue-bright); }
.news-card__cover--leaf{ background:#EEF8EA; color:#3F8C4B; }
.news-card__cover--gold{ background:var(--gold-tint); color:var(--gold); }
.news-card__cover--navy{ background:#EAF0FA; color:var(--navy); }

/* photo de couverture réelle (remplace le badge icône quand un article a une image) */
.news-card__photo{
  width:100%; aspect-ratio:16/10; border-radius:var(--radius-sm);
  overflow:hidden; margin-bottom:20px; background:var(--bg-soft);
}
.news-card__photo img{ width:100%; height:100%; object-fit:cover; display:block; }

.news-card__cat{
  font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--orange); font-weight:600;
}
.news-card h4{ margin-top:12px; font-size:17px; line-height:1.4; }
.news-card p{ margin-top:10px; font-size:14px; color:var(--ink-soft); line-height:1.55; }
.news-card__date{ display:block; margin-top:18px; font-family:var(--f-mono); font-size:12px; color:var(--ink-faint); }

/* ============ SERVICES ============ */
.services{ padding:0 0 100px; }
.services__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--surface-line); border:1px solid var(--surface-line); border-radius:var(--radius-lg); overflow:hidden; }
.service-item{
  background:#fff; padding:22px 20px;
  font-size:14.5px; font-weight:600; color:var(--navy);
  display:flex; align-items:center; gap:12px;
  transition:background .25s ease;
}
.service-item:hover{ background:var(--bg-soft); }
.service-item span{
  font-family:var(--f-mono); font-size:12px; font-weight:600; color:var(--orange);
}

/* ============ CONTACT ============ */
.contact{ padding:100px 0 120px; background:var(--bg-soft); }
.contact__grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:28px; align-items:start; }
.contact-form{
  background:#fff; border:1px solid var(--surface-line); border-radius:var(--radius-lg);
  padding:34px; box-shadow:var(--shadow-card);
  display:flex; flex-direction:column; gap:18px;
}
.contact-form__row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field label{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-faint); font-weight:600; }
.field input, .field select, .field textarea{
  border:1.5px solid var(--surface-line); border-radius:8px;
  padding:12px 14px; font-size:14.5px; color:var(--ink);
  background:var(--bg-soft);
  transition:border-color .2s ease, background .2s ease;
  resize:vertical;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--blue-bright); background:#fff;
}
.contact-form .btn{ align-self:flex-start; }

.contact-info{ display:flex; flex-direction:column; gap:20px; }
.contact-info__map{
  border-radius:var(--radius-md); overflow:hidden; position:relative;
  border:1px solid var(--surface-line); background:#fff;
}
.contact-info__map svg{ width:100%; height:auto; display:block; }
.contact-info__map span{
  position:absolute; bottom:10px; left:12px; right:12px;
  font-family:var(--f-mono); font-size:11px; color:var(--ink-soft);
  background:rgba(255,255,255,.85); padding:6px 10px; border-radius:6px;
}
.contact-info__list{ background:#fff; border:1px solid var(--surface-line); border-radius:var(--radius-md); padding:8px 24px; box-shadow:var(--shadow-card); }
.contact-info__list li{
  display:flex; flex-direction:column; gap:2px;
  padding:16px 0; border-bottom:1px solid var(--surface-line); font-size:14.5px;
}
.contact-info__list li:last-child{ border-bottom:none; }
.contact-info__list strong{ font-family:var(--f-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-faint); font-weight:600; }
.contact-info__list a{ color:var(--navy); font-weight:600; }
.contact-info__list a:hover{ color:var(--blue-bright); }
.contact-info__social{ display:flex; gap:10px; }
.contact-info__social a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--surface-line); background:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-mono); font-size:11px; font-weight:700; color:var(--navy);
  transition:all .2s ease;
}
.contact-info__social a:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }

/* ============ FOOTER ============ */
.footer{ background:var(--navy-deep); color:rgba(255,255,255,.7); padding:80px 0 0; }
.footer__grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1.3fr; gap:32px; padding-bottom:56px; }
.footer__logo{ height:36px; filter:brightness(0) invert(1); margin-bottom:16px; }
.footer__brand p{ font-size:14px; line-height:1.6; max-width:260px; color:rgba(255,255,255,.5); }
.footer__social{ display:flex; gap:10px; margin-top:20px; }
.footer__social a{
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center; transition:all .25s ease;
}
.footer__social a:hover{ background:#fff; color:var(--navy); border-color:#fff; }
.footer__col{ display:flex; flex-direction:column; gap:12px; }
.footer__col h5{ color:#fff; font-size:13px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:6px; font-family:var(--f-mono); }
.footer__col a{ font-size:14px; color:rgba(255,255,255,.55); transition:color .2s ease; }
.footer__col a:hover{ color:#fff; }
.footer__col--contact span{ font-size:14px; color:rgba(255,255,255,.55); }
.newsletter{ display:flex; margin-top:8px; border:1px solid rgba(255,255,255,.18); border-radius:8px; overflow:hidden; }
.newsletter input{ flex:1; background:transparent; border:none; padding:11px 12px; color:#fff; font-size:13px; outline:none; }
.newsletter input::placeholder{ color:rgba(255,255,255,.4); }
.newsletter button{ padding:0 16px; color:#fff; background:rgba(255,255,255,.08); }
.newsletter button:hover{ background:var(--blue-bright); }

.footer__bottom{ border-top:1px solid rgba(255,255,255,.1); padding:22px 0; }
.footer__bottom-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; color:rgba(255,255,255,.4); font-family:var(--f-mono); }

/* ============ SOLUTION PAGES (hero thématique par pôle) ============ */
.breadcrumb{
  position:relative; z-index:1;
  display:flex; align-items:center; gap:8px;
  font-family:var(--f-mono); font-size:12.5px; color:var(--ink-soft);
  margin-bottom:26px;
}
.breadcrumb a:hover{ color:var(--navy); }
.breadcrumb span{ color:var(--ink-faint); }

.solution-hero{ position:relative; padding:200px 0 90px; overflow:hidden; }
.solution-hero__bg{ position:absolute; inset:0; z-index:0; }
.solution-hero__scene{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.solution-hero__scrim{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(250,250,247,.97) 0%, rgba(250,250,247,.88) 34%, rgba(250,250,247,.5) 68%, rgba(250,250,247,.3) 100%);
}
.solution-hero__inner{ position:relative; z-index:1; max-width:640px; }

.solution-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 16px; border-radius:30px;
  font-family:var(--f-mono); font-size:12px; font-weight:600; letter-spacing:.03em;
  border:1px solid; margin-bottom:24px;
}
.solution-badge svg{ width:14px; height:14px; }
.solution-hero__title{ font-size:clamp(32px,4.6vw,50px); line-height:1.1; }
.solution-hero__tagline{
  font-family:var(--f-display); font-weight:600;
  font-size:clamp(22px,2.8vw,30px); line-height:1.25; margin-top:6px;
}
.solution-hero__desc{ margin-top:20px; max-width:560px; color:var(--ink-soft); font-size:16.5px; }
.solution-hero__ctas{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }

.theme-blue   .solution-badge{ background:var(--blue-tint); border-color:rgba(46,111,203,.25); color:var(--blue-bright); }
.theme-blue   .solution-hero__tagline{ color:var(--blue-bright); }
.theme-green  .solution-badge{ background:var(--green-tint); border-color:rgba(30,122,79,.25); color:var(--green); }
.theme-green  .solution-hero__tagline{ color:var(--green); }
.theme-orange .solution-badge{ background:var(--orange-tint); border-color:rgba(242,118,15,.28); color:var(--orange); }
.theme-orange .solution-hero__tagline{ color:var(--orange); }
.theme-leaf   .solution-badge{ background:#EEF8EA; border-color:rgba(63,140,75,.25); color:#3F8C4B; }
.theme-leaf   .solution-hero__tagline{ color:#3F8C4B; }
.theme-gold   .solution-badge{ background:var(--gold-tint); border-color:rgba(201,151,42,.3); color:var(--gold); }
.theme-gold   .solution-hero__tagline{ color:var(--gold); }

/* ---- processus (3 étapes) ---- */
.process{ padding:100px 0; background:var(--bg-soft); }
.process__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.process-step{
  background:#fff; border:1px solid var(--surface-line); border-radius:var(--radius-lg);
  padding:30px; box-shadow:var(--shadow-card); position:relative;
}
.process-step__num{
  font-family:var(--f-mono); font-size:13px; font-weight:700; color:var(--orange);
  display:inline-block; margin-bottom:16px;
}
.process-step h4{ font-size:18px; }
.process-step p{ margin-top:10px; font-size:14.5px; color:var(--ink-soft); line-height:1.6; }

/* ---- CTA finale pôle ---- */
.solution-cta{ background:linear-gradient(120deg, var(--navy), var(--navy-deep)); padding:70px 0; }
.solution-cta__inner{ display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.solution-cta h2{ color:#fff; font-size:clamp(24px,3vw,32px); max-width:460px; }
.solution-cta p{ color:rgba(255,255,255,.65); margin-top:10px; }
.solution-cta__actions{ display:flex; gap:14px; flex-wrap:wrap; }

@media (max-width:860px){
  .process__grid{ grid-template-columns:1fr; }
}
[data-reveal], [data-reveal-delay]{ opacity:0; transform:translateY(24px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal-delay]{ transition-delay:.15s; }
[data-reveal].is-visible, [data-reveal-delay].is-visible{ opacity:1; transform:translateY(0); }

/* ============ responsive ============ */
@media (max-width:1080px){
  .about__grid{ grid-template-columns:1fr; }
  .pillar-cards{ grid-template-columns:1fr; }
  .why__grid{ grid-template-columns:repeat(2,1fr); }
  .services__grid{ grid-template-columns:repeat(2,1fr); }
  .news__grid{ grid-template-columns:repeat(2,1fr); }
  .footer__grid{ grid-template-columns:1fr 1fr; }
  .stats__grid{ grid-template-columns:repeat(2,1fr); row-gap:28px; }
  .contact__grid{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .news__grid{ grid-template-columns:1fr; }
}
@media (max-width:860px){
  .nav{
    display:flex; flex-direction:column; align-items:flex-start; gap:4px;
    position:fixed; top:76px; left:0; right:0;
    background:#fff; border-bottom:1px solid var(--surface-line);
    padding:14px 24px 22px;
    transform:translateY(-12px); opacity:0; visibility:hidden; pointer-events:none;
    transition:transform .3s var(--ease), opacity .3s ease, visibility .3s;
    box-shadow:0 24px 40px -20px rgba(15,37,66,.2);
  }
  .nav--open{ transform:translateY(0); opacity:1; visibility:visible; pointer-events:auto; }
  .nav__link{ padding:10px 0; width:100%; }
  .nav__dropdown{ width:100%; }
  .nav__menu{
    position:static; transform:none; opacity:1; visibility:visible; pointer-events:none;
    box-shadow:none; border:none; padding:0 0 0 14px; min-width:0;
    max-height:0; overflow:hidden;
    transition:max-height .3s var(--ease);
  }
  .nav__dropdown.is-open .nav__menu,
  .nav__dropdown:focus-within .nav__menu{ pointer-events:auto; max-height:260px; }
  .header__actions .btn--ghost{ display:none; }
  .burger{ display:flex; }
  .burger.is-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .burger.is-active span:nth-child(2){ opacity:0; }
  .burger.is-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .why__grid{ grid-template-columns:1fr; }
  .mv-cards{ grid-template-columns:1fr; }
  .values{ flex-wrap:wrap; }
  .value{ flex:0 0 50%; border-right:none; padding-bottom:16px; }
  .btn-client span{ display:none; }
}
@media (max-width:560px){
  .hero{ padding:170px 0 80px; min-height:auto; }
  .hero__ctas{ flex-direction:column; align-items:stretch; }
  .hero__ctas .btn{ text-align:center; }
  .footer__grid{ grid-template-columns:1fr; }
  .lang-switch{ display:none; }
  .services__grid{ grid-template-columns:1fr; }
  .contact-form__row{ grid-template-columns:1fr; }
  .contact-form{ padding:24px; }
  .btn-client{ padding:10px 12px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .slider, .scroll-cue span, .partners__row{ animation:none !important; }
  [data-reveal], [data-reveal-delay]{ opacity:1; transform:none; transition:none; }
}

/* ============ BACK TO TOP ============ */
.back-to-top{
  position:fixed; right:24px; bottom:24px; z-index:500;
  width:46px; height:46px; border-radius:50%; border:none;
  background:var(--navy); color:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--navy-deep); }
.back-to-top svg{ width:18px; height:18px; }
@media (prefers-reduced-motion: reduce){
  .back-to-top{ transition:opacity .1s, visibility .1s; }
}
