/* ============================================================
   SOLUPREST — Design tokens & base
   ============================================================ */
/* Couleur active animable au scroll (charte par section) */
@property --accent   { syntax: "<color>"; inherits: true; initial-value: #15B9EC; }
@property --accent-2 { syntax: "<color>"; inherits: true; initial-value: #7ACDF4; }

:root {
  /* Accent de section — piloté au scroll sur la landing (défaut = bleu charte) */
  --accent: #15B9EC;
  --accent-2: #7ACDF4;                                              /* teinte 75 % de la couleur active */
  --accent-deep: color-mix(in srgb, var(--accent) 70%, #06243a);
  --accent-soft: var(--accent-2);
  --accent-ink:  color-mix(in srgb, var(--accent) 58%, #062033);    /* version lisible : texte/boutons sur blanc */

  /* Palette de marque officielle (SOLUPREST-Fiche-couleurs) */
  --c-bleu:#15B9EC;   --c-bleu-2:#7ACDF4;      /* À propos      */
  --c-vert:#94C11F;   --c-vert-2:#B3CF60;      /* Réalisations  */
  --c-teal:#20AC97;   --c-teal-2:#77C0B1;      /* Produits      */
  --c-orange:#F9B233; --c-orange-2:#FCC66F;    /* Solutions     */
  --c-rose:#EA557D;   --c-rose-2:#F0899F;      /* Actualités    */
  --c-violet:#95568A; --c-violet-2:#AD7EA6;    /* Contact       */
  --c-neutre:#434341;                          /* texte / logo  */

  /* Neutrals — cool-toned */
  --navy-900: #050d1f;
  --navy-850: #081530;
  --navy-800: #0a1c3e;
  --navy-700: #112a55;
  --ink: #0c1830;
  --slate: #51618a;
  --slate-soft: #7d8bae;

  --bg: #ffffff;
  --bg-soft: #f3f6fc;
  --bg-tint: #eaf0fb;
  --line: #e1e9f6;
  --line-strong: #cdd8ee;

  /* Fonts */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --radius: 16px;
  --radius-lg: 26px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(12,24,48,.06), 0 2px 6px rgba(12,24,48,.05);
  --shadow-md: 0 10px 30px -10px rgba(13,40,90,.22);
  --shadow-lg: 0 30px 70px -24px rgba(13,40,90,.40);
  --shadow-glow: 0 18px 50px -12px color-mix(in srgb, var(--accent) 55%, transparent);

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
  transition: --accent .55s var(--ease), --accent-2 .55s var(--ease); }
@media (prefers-reduced-motion: reduce) { html { transition: none; } }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: color-mix(in srgb, var(--accent) 28%, transparent); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Section rhythm */
.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; }
.section--dark { background: var(--navy-900); color: #dce6fb; }
.section--soft { background: var(--bg-soft); }

/* Eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section--dark .kicker { color: var(--accent-2); }

.display { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h-xl { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-lg { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--slate); line-height: 1.62; }
.section--dark .lede { color: #9fb2da; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--accent-ink); color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px -14px color-mix(in srgb, var(--accent) 70%, transparent); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.section--dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.section--dark .btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }
.btn-arrow { transition: transform .35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Cards */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Image placeholder fallback (striped) */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(31,91,255,.07) 0 12px, rgba(31,91,255,.02) 12px 24px),
    var(--bg-tint);
  border: 1px dashed var(--line-strong);
  display: grid; place-items: center;
  color: var(--slate-soft); font-family: ui-monospace, "SF Mono", monospace; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase;
}

image-slot { border-radius: var(--radius); overflow: hidden; }

/* Utility */
.grid { display: grid; gap: 24px; }
.flex { display: flex; }
.eyebrow-dot { width:7px;height:7px;border-radius:50%;background:var(--accent-2);box-shadow:0 0 0 4px color-mix(in srgb,var(--accent-2) 25%,transparent); }
.divider { height:1px; background: var(--line); border:0; }


/* ============================================================
   SOLUPREST — layout & component styles
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.nav--scrolled {
  background: color-mix(in srgb, #fff 86%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(13,40,90,.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { color: var(--accent); display: inline-flex; }
/* Monogramme officiel : cercles = couleur active (currentColor), carrés = neutre */
.logo-mono { height: 28px; width: auto; color: var(--accent); display: block; transition: color .55s var(--ease); }
.logo-mono-dark { fill: var(--c-neutre); }
.logo-word { font-family: var(--font-head); font-weight: 800; font-size: 21px; letter-spacing: -.01em; line-height: 1; }
.logo-word .lw-solu  { color: var(--accent); transition: color .55s var(--ease); }
.logo-word .lw-prest { color: var(--c-neutre); }
/* Logo sur fond foncé (sections sombres uniquement — le footer est clair) */
.section--dark .logo-word .lw-prest { color: #fff; }
.section--dark .logo-mono-dark { fill: rgba(255,255,255,.85); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a {
  font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: var(--slate);
  padding: 9px 14px; border-radius: 999px; position: relative; transition: color .25s, background .25s;
}
.nav-links > a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links > a.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch button { border: 0; background: transparent; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: var(--slate); padding: 5px 11px; border-radius: 999px; transition: .25s; }
.lang-switch button.on { background: var(--accent); color: #fff; }
.nav-cta { padding: 11px 20px; font-size: 14px; }
.nav-mobile-cta { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.burger.x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.x span:nth-child(2) { opacity: 0; }
.burger.x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; padding: 0; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grad { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(31,91,255,.35), transparent 60%),
    radial-gradient(80% 70% at 0% 110%, rgba(40,211,224,.16), transparent 55%),
    linear-gradient(180deg, rgba(5,13,31,.2), rgba(5,13,31,.78) 88%);
}
.hero-inner { position: relative; z-index: 3; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px; padding-bottom: 80px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(6px);
  font-family: var(--font-head); font-size: 13px; font-weight: 500; color: #bfd0f7; }
.hero h1 { color: #fff; max-width: 17ch; margin-top: 26px; }
.hero h1 .grad { background: linear-gradient(100deg, var(--accent-soft), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: #aebfe3; max-width: 56ch; margin-top: 24px; font-size: clamp(1.05rem,1.4vw,1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 46px; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); font-family: var(--font-head); font-size: 13.5px; color: #cdd9f5; }
.hero-pill .eyebrow-dot { width: 6px; height: 6px; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: #7e90bd; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-head); }
.hero-scroll .line { width: 1px; height: 38px; background: linear-gradient(var(--accent-2), transparent); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* Floating glass stat card on hero */
.hero-floatcard { position: absolute; right: 28px; bottom: 88px; z-index: 4; display: flex; gap: 10px; }
@media (max-width: 980px){ .hero-floatcard{ display:none; } }
.glass-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px);
  border-radius: 16px; padding: 16px 20px; min-width: 120px; }
.glass-stat .v { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: #fff; }
.glass-stat .l { font-size: 12px; color: #9fb2da; margin-top: 4px; }

/* ---------- SERVICES GRID ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.svc-card { padding: 30px; border-radius: var(--radius); cursor: pointer; overflow: hidden; position: relative; }
.svc-card .svc-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 22px; transition: transform .4s var(--ease); }
.svc-card:hover .svc-ic { transform: scale(1.08) rotate(-4deg); }
.svc-card h3 { font-size: 1.28rem; }
.svc-tag { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }
.svc-card p { color: var(--slate); margin-top: 12px; font-size: 15px; }
.svc-more { margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; gap: 7px; align-items: center; transition: gap .3s, color .3s; }
.svc-card:hover .svc-more { gap: 12px; color: var(--accent); }
.svc-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, color-mix(in srgb,var(--accent) 8%,transparent), transparent 50%); opacity: 0; transition: opacity .4s; }
.svc-card:hover::after { opacity: 1; }

/* ---------- STATS BAND ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 20px; }
.stat .v { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.4rem); color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.section--dark .stat .v { color: #fff; }
.stat .l { color: var(--slate); margin-top: 12px; font-size: 14px; }
.section--dark .stat .l { color: #9fb2da; }

/* ---------- PROCESS ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.proc-card { padding: 32px; border-radius: var(--radius); position: relative; background: var(--bg); border: 1px solid var(--line); }
.proc-n { font-family: var(--font-head); font-weight: 800; font-size: 56px; line-height: 1; color: var(--bg-tint); letter-spacing: -.04em; }
.proc-ic { position: absolute; top: 32px; right: 32px; width: 46px; height: 46px; border-radius: 12px; background: var(--accent); color: #fff; display: grid; place-items: center; }
.proc-card h3 { font-size: 1.3rem; margin-top: 14px; }
.proc-card p { color: var(--slate); margin-top: 12px; }

/* ---------- CTA BAND ---------- */
.ctaband { background: var(--navy-850); color: #fff; position: relative; overflow: hidden; }
.ctaband-inner { padding: clamp(56px,8vw,96px) 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 36px; position: relative; z-index: 2; }
.ctaband-glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 75% 50%, rgba(31,91,255,.4), transparent 60%); z-index: 1; }
.ctaband-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-900); color: #c4d3f0; padding-top: 72px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; }
.footer-tag { color: #8a9dc8; margin-top: 20px; font-size: 14.5px; max-width: 38ch; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; font-size: 14.5px; }
.footer-contact a:hover { color: var(--accent-2); }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col > a { display: block; color: #9fb2da; font-size: 14.5px; padding: 6px 0; transition: color .25s; }
.footer-col > a:hover { color: #fff; }
.footer-cta-col p { color: #8a9dc8; font-size: 14px; margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #7e90bd; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: #fff; }

/* ---------- PAGE HERO (inner) ---------- */
.pagehero { position: relative; background: var(--navy-900); color: #fff; padding: 150px 0 80px; overflow: hidden; }
.pagehero-bg { position: absolute; inset: 0; background:
  radial-gradient(80% 90% at 85% -20%, rgba(31,91,255,.4), transparent 55%),
  radial-gradient(60% 80% at 0% 120%, rgba(40,211,224,.12), transparent 50%);
}
.pagehero-bg::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px; mask: radial-gradient(70% 70% at 50% 30%, #000, transparent 80%); }
.pagehero-inner { position: relative; z-index: 2; }
.pagehero .display { color: #fff; }
.pagehero .lede { color: #aebfe3; }

/* ---------- GENERIC two-col ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--shadow-lg); }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.feature-list .fi { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: var(--bg-tint); color: var(--accent); display: grid; place-items: center; margin-top: 2px; }
.feature-list strong { font-family: var(--font-head); display: block; font-size: 15.5px; }
.feature-list span { color: var(--slate); font-size: 14.5px; }
ul.feature-list { padding: 0; margin-top: 30px; }

/* ---------- SOLUTIONS list ---------- */
.sol-list { display: flex; flex-direction: column; gap: 16px; margin-top: 50px; }
.sol-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 26px; align-items: center; padding: 28px 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg); transition: .4s var(--ease); }
.sol-row:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateX(6px); }
.sol-tag { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); padding: 8px 0; }
.sol-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--bg-tint); color: var(--accent); display: grid; place-items: center; }
.sol-row h3 { font-size: 1.35rem; }
.sol-row p { color: var(--slate); margin-top: 8px; font-size: 15px; max-width: 60ch; }
.sol-go { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--accent); transition: .35s var(--ease); }
.sol-row:hover .sol-go { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- REFERENCES ---------- */
.ref-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.ref-card { padding: 30px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); transition: .4s var(--ease); }
.ref-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ref-logo { height: 64px; border-radius: 12px; margin-bottom: 20px; }
.ref-card h3 { font-size: 1.15rem; }
.ref-card .sec { color: var(--slate); font-size: 13.5px; margin-top: 6px; }

/* ---------- NEWS ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.news-card { border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); overflow: hidden; transition: .4s var(--ease); display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-img { aspect-ratio: 16/10; }
.news-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-meta { display: flex; gap: 12px; align-items: center; font-size: 12.5px; color: var(--slate-soft); font-family: var(--font-head); }
.news-cat { color: var(--accent); font-weight: 600; }
.news-card h3 { font-size: 1.18rem; }
.news-card p { color: var(--slate); font-size: 14.5px; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-tint); color: var(--accent); display: grid; place-items: center; flex: 0 0 auto; }
.contact-item .ct { font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-soft); }
.contact-item .cv { font-size: 16px; margin-top: 3px; }
.form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); font-family: var(--font-body); font-size: 15px; background: var(--bg-soft); transition: .25s; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); display: grid; place-items: center; margin: 0 auto 20px; }

/* ---------- MISC ---------- */
.lead-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; }
.tag-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--bg-tint); color: var(--accent); font-family: var(--font-head); font-size: 12.5px; font-weight: 600; }
.page-fade { animation: pageFade .55s var(--ease); }
@keyframes pageFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1040px){
  .svc-grid, .process-grid, .ref-grid, .news-grid { grid-template-columns: repeat(2,1fr); }
  .split, .contact-grid, .lead-2col { grid-template-columns: 1fr; gap: 36px; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px){
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 16px 24px 28px; box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .4s var(--ease); border-top: 1px solid var(--line); }
  .nav-links.open { transform: none; }
  .nav-links > a { padding: 14px 8px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-mobile-cta { display: block; margin-top: 18px; }
  .nav-mobile-cta .btn { width: 100%; justify-content: center; }
  .nav-cta { display: none; }
  .burger { display: flex; }
}
@media (max-width: 560px){
  .svc-grid, .process-grid, .ref-grid, .news-grid, .stats-band, .footer-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .sol-row { grid-template-columns: 1fr; gap: 12px; }
  .sol-go { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}


/* ============================================================
   SOLUPREST — Version CLAIRE (light & airy, même bleu)
   Reuses base tokens/btn/nav/reveal from styles.css + layout.css
   ============================================================ */

:root {
  --clair-bg: #ffffff;
  --clair-soft: color-mix(in srgb, var(--accent) 6%, #ffffff);   /* suit la couleur de page */
  --clair-tint: color-mix(in srgb, var(--accent) 14%, #ffffff);
  --clair-line: #e6edf8;
}

body { background: var(--clair-bg); }

/* page entrance — animation page par page */
.clair-page > * { opacity: 0; animation: clairUp .7s var(--ease) forwards; }
.clair-page > *:nth-child(1){ animation-delay: .02s; }
.clair-page > *:nth-child(2){ animation-delay: .10s; }
.clair-page > *:nth-child(3){ animation-delay: .18s; }
.clair-page > *:nth-child(4){ animation-delay: .26s; }
.clair-page > *:nth-child(5){ animation-delay: .34s; }
.clair-page > *:nth-child(n+6){ animation-delay: .40s; }
@keyframes clairUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce){ .clair-page > * { opacity: 1; animation: none; } }

/* thin animated accent line under nav on each page load */
.clair-topline { position: fixed; top: 76px; left: 0; height: 2px; z-index: 60; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  transform-origin: left; animation: lineGrow 1.1s var(--ease) forwards; }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- HERO (clair) ---------- */
.chero { position: relative; overflow: hidden; background:
  radial-gradient(120% 90% at 85% -10%, var(--clair-tint), transparent 55%),
  linear-gradient(180deg, #ffffff 0%, var(--clair-soft) 100%); }
.chero-net { position: absolute; inset: 0; opacity: .9; }
.chero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  padding-top: 150px; padding-bottom: 96px; }
.chero h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); color: var(--ink); }
.chero h1 .grad { background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.chero .lede { margin-top: 22px; max-width: 52ch; }
.chero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.chero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.chero-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--clair-line); box-shadow: var(--shadow-sm);
  font-family: var(--font-head); font-size: 13.5px; color: var(--slate); }

/* hero visual card */
.chero-visual { position: relative; }
.chero-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--clair-line); aspect-ratio: 4/3.3; background: #fff; }
/* globe libre, sans carré, posé sur le fond clair */
.chero-globe-free { position: relative; height: min(60vh, 540px); background: transparent; }
.chero-globe-free canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.chero-badge { position: absolute; display: flex; align-items: center; gap: 11px; padding: 13px 17px; border-radius: 15px;
  background: #fff; border: 1px solid var(--clair-line); box-shadow: var(--shadow-md); }
.chero-badge.b-a { top: -22px; left: -24px; animation: floaty 6s ease-in-out infinite; }
.chero-badge.b-b { bottom: -20px; right: -18px; animation: floaty 7s ease-in-out infinite reverse; }
.chero-badge .bi { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)); flex: 0 0 auto; }
.chero-badge .bi.alt { background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.chero-badge .bv { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); }
.chero-badge .bl { font-size: 11.5px; color: var(--slate-soft); }
@media (max-width: 980px){
  .chero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 128px; }
  .chero-badge { display: none; }
}

/* ---------- light page hero (inner) ---------- */
.cph { position: relative; overflow: hidden; padding: 150px 0 64px;
  background: radial-gradient(100% 80% at 88% -20%, var(--clair-tint), transparent 50%), linear-gradient(180deg,#fff,var(--clair-soft)); }
.cph::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--clair-line) 1px, transparent 1px), linear-gradient(90deg, var(--clair-line) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .5; mask: radial-gradient(70% 80% at 70% 20%, #000, transparent 75%); }
.cph-inner { position: relative; z-index: 2; }
.cph .display { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ---------- soft sections ---------- */
.section--clairsoft { background: var(--clair-soft); }
.csplit { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.csplit-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.2; box-shadow: var(--shadow-md); border: 1px solid var(--clair-line); }

/* cards (clair) */
.cgrid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; width: 100%; }
.cgrid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 50px; width: 100%; }
.ccard { background: #fff; border: 1px solid var(--clair-line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; position: relative; overflow: hidden; }
.ccard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--accent) 35%, var(--clair-line)); }
.ccard .cic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; color: #fff; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: var(--shadow-glow); transition: transform .4s var(--ease); }
.ccard:hover .cic { transform: scale(1.08) rotate(-4deg); }
.ccard .ctag { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); }
.ccard h3 { font-size: 1.2rem; margin-top: 7px; }
.ccard p { color: var(--slate); margin-top: 11px; font-size: 14.5px; }
.ccard .cmore { margin-top: 15px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--accent); display: inline-flex; gap: 7px; align-items: center; transition: gap .3s; }
.ccard:hover .cmore { gap: 12px; }

/* numbered process (clair) */
.cproc { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.cproc-card { background: #fff; border: 1px solid var(--clair-line); border-radius: var(--radius); padding: 30px; position: relative; box-shadow: var(--shadow-sm); }
.cproc-n { font-family: var(--font-head); font-weight: 800; font-size: 52px; line-height: 1; color: var(--clair-tint); letter-spacing: -.04em; }
.cproc-ic { position: absolute; top: 30px; right: 30px; width: 44px; height: 44px; border-radius: 12px; background: var(--accent); color: #fff; display: grid; place-items: center; }
.cproc-card h3 { margin-top: 12px; font-size: 1.22rem; }
.cproc-card p { color: var(--slate); margin-top: 10px; }

/* stats (clair) */
.cstats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cstat { text-align: center; padding: 26px 16px; background: #fff; border: 1px solid var(--clair-line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.cstat .v { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--accent); line-height: 1; letter-spacing: -.03em; }
.cstat .l { color: var(--slate); margin-top: 10px; font-size: 13.5px; }

/* sol rows reuse .sol-row from layout.css (already light) */

/* CTA (clair) — light blue band */
.cta-clair { background: linear-gradient(120deg, var(--clair-tint), #fff); border-top: 1px solid var(--clair-line); border-bottom: 1px solid var(--clair-line); }
.cta-clair-inner { padding: clamp(48px,7vw,84px) 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; }
.cta-clair h2 { max-width: 18ch; }
.cta-clair .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* footer (clair) */
.cfooter { background: #fff; border-top: 1px solid var(--clair-line); padding-top: 64px; color: var(--slate); }
.cfooter-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.cfooter-tag { margin-top: 18px; font-size: 14.5px; max-width: 38ch; color: var(--slate); }
.cfooter-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; font-size: 14.5px; }
.cfooter-contact a:hover { color: var(--accent); }
.cfooter h4 { font-family: var(--font-head); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.cfooter-col > a { display: block; color: var(--slate); font-size: 14.5px; padding: 6px 0; }
.cfooter-col > a:hover { color: var(--accent); }
.cfooter-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; border-top: 1px solid var(--clair-line); font-size: 13px; color: var(--slate-soft); }
.cfooter-legal { display: flex; gap: 20px; }
.cfooter-legal a:hover { color: var(--accent); }

@media (max-width: 1040px){
  .cgrid-3, .cproc { grid-template-columns: repeat(2,1fr); }
  .csplit { grid-template-columns: 1fr; gap: 36px; }
  .cstats { grid-template-columns: repeat(2,1fr); }
  .cfooter-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .cgrid-3, .cgrid-2, .cproc, .cstats, .cfooter-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   SOLUPREST — bascule de langue FR/EN (rendu serveur, toggle JS)
   ============================================================ */
.t-en { display: none; }
html[data-lang="en"] .t-en { display: inline; }
html[data-lang="en"] .t-fr { display: none; }
/* variantes bloc */
.t-fr.block, .t-en.block { display: block; }
html[data-lang="en"] .t-en.block { display: block; }
html[data-lang="fr"] .t-en.block { display: none; }

/* ---------- Fiche éditoriale (contenu migré) ---------- */
.fiche-content { color: var(--ink); font-size: 16px; line-height: 1.75; }
.fiche-content p { margin: 0 0 16px; color: var(--slate); }
.fiche-content h2, .fiche-content h3 { font-family: var(--font-head); color: var(--ink); margin: 28px 0 12px; }
.fiche-content ul, .fiche-content ol { margin: 0 0 18px; padding-left: 22px; color: var(--slate); }
.fiche-content li { margin: 6px 0; }
.fiche-content a { color: var(--accent); }
.fiche-content img { border-radius: var(--radius); margin: 16px 0; max-width:100%; }
.fiche-content strong { color: var(--ink); }

/* ============================================================
   SOLUPREST — CTA devis unique (bouton flottant animé)
   ============================================================ */
/* dédoublonnage : on masque les "Demander un devis" redondants */
.nav-cta { display: none !important; }
.cta-clair .btn-primary,
.cfooter-col .btn-primary { display: none !important; }

/* bouton flottant unique */
.devis-fab {
  position: fixed; right: clamp(16px,3vw,28px); bottom: clamp(16px,3vw,28px); z-index: 95;
  box-shadow: var(--shadow-lg);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.devis-fab.is-hidden { opacity: 0; transform: translateY(18px) scale(.95); pointer-events: none; }

/* point blanc qui orbite autour du bouton (suit le contour arrondi) */
.devis-fab .orbit-dot {
  position: absolute; left: 0; top: 0; width: 9px; height: 9px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 10px 2px rgba(255,255,255,.85);
  offset-path: border-box; offset-distance: 0%; offset-anchor: center;
  animation: orbit 3.4s linear infinite;
}
@keyframes orbit { to { offset-distance: 100%; } }

/* fallback : navigateurs sans offset-path -> halo pulsé */
@supports not (offset-path: border-box) {
  .devis-fab .orbit-dot { display: none; }
  .devis-fab { animation: fabPulse 2.6s var(--ease) infinite; }
  @keyframes fabPulse { 0%,100%{ box-shadow: var(--shadow-lg);} 50%{ box-shadow: var(--shadow-lg), 0 0 0 9px color-mix(in srgb,var(--accent) 16%, transparent);} }
}
@media (prefers-reduced-motion: reduce){ .devis-fab .orbit-dot, .devis-fab { animation: none; } }

/* ============================================================
   OVERRIDE CTA v2 — pas de bouton flottant ; bouton animé DANS le footer
   ============================================================ */
.devis-fab { display: none !important; }                 /* on retire le flottant */
.cfooter-col .btn-primary {                               /* on réaffiche le bouton devis du footer */
  display: inline-flex !important; position: relative; overflow: visible;
}
/* point blanc qui orbite le bouton du footer (CTA unique animé) */
.cfooter-col .btn-primary::after {
  content: ""; position: absolute; left: 0; top: 0; width: 9px; height: 9px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 10px 2px rgba(255,255,255,.85);
  offset-path: border-box; offset-distance: 0%; offset-anchor: center;
  animation: orbit 3.4s linear infinite;
}
@supports not (offset-path: border-box) {
  .cfooter-col .btn-primary::after { display: none; }
  .cfooter-col .btn-primary { animation: fabPulse 2.6s var(--ease) infinite; }
}
@media (prefers-reduced-motion: reduce) { .cfooter-col .btn-primary::after, .cfooter-col .btn-primary { animation: none; } }

/* FIX bouton devis footer : annule l'héritage de .cfooter-col > a (couleur/padding/taille) */
.cfooter-col a.btn-primary {
  color: #fff !important;
  background: var(--accent) !important;
  display: inline-flex !important;
  align-items: center; gap: 10px;
  width: auto !important;
  padding: 13px 24px !important;
  font-size: 14.5px !important;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 999px !important;
  box-shadow: var(--shadow-glow);
}
.cfooter-col a.btn-primary:hover { color:#fff !important; transform: translateY(-2px); }

/* ---------- Références par secteur (logos clients) ---------- */
.ref-cat { margin-top: 50px; }
.ref-cat:first-child { margin-top: 0; }
.ref-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 18px; }
@media (max-width:1040px){ .ref-grid{ grid-template-columns: repeat(3,1fr);} }
@media (max-width:680px){ .ref-grid{ grid-template-columns: repeat(2,1fr);} }
.ref-card { display:block; text-align:center; padding:22px 18px; }
.ref-card .ref-logo { height:60px; display:grid; place-items:center; margin-bottom:14px; }
.ref-card .ref-logo img { max-height:60px; max-width:100%; object-fit:contain; filter:grayscale(1); opacity:.75; transition:filter .3s,opacity .3s; }
.ref-card:hover .ref-logo img { filter:none; opacity:1; }
.ref-card h3 { font-size:1rem; }
.ref-card p { font-size:12.5px; color:var(--slate); margin-top:6px; }

/* ============================================================
   SOLUPREST — explorateur Solutions (switch thème / éditeur)
   ============================================================ */
.sol-explore { display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; margin-bottom:44px; }
.sol-explore h2 { font-size: clamp(1.4rem,2.4vw,2rem); }
.view-switch { position:relative; display:inline-flex; background:var(--bg-soft); border:1px solid var(--line); border-radius:999px; padding:5px; }
.view-switch .view-switch-ind { position:absolute; top:5px; left:5px; bottom:5px; width:calc(50% - 5px); background:var(--accent); border-radius:999px; box-shadow:var(--shadow-glow); transition:transform .45s var(--ease); z-index:0; }
.view-switch[data-active="editeur"] .view-switch-ind { transform:translateX(100%); }
.view-switch button { position:relative; z-index:1; border:0; background:transparent; font-family:var(--font-head); font-weight:600; font-size:14.5px; color:var(--slate); padding:11px 26px; border-radius:999px; cursor:pointer; transition:color .3s; min-width:140px; }
.view-switch button.on { color:#fff; }
.view-switch button:not(.on):hover { color:var(--ink); }
/* teaser : attire l'œil au chargement */
.view-switch.hint { animation: swPulse 1.4s var(--ease); }
@keyframes swPulse { 0%,100%{ box-shadow:none } 50%{ box-shadow:0 0 0 7px color-mix(in srgb,var(--accent) 20%,transparent) } }
.view-switch.hint .view-switch-ind { animation: swHint 1.4s var(--ease); }
@keyframes swHint { 0%{transform:none} 32%{transform:translateX(62%)} 64%{transform:none} 100%{transform:none} }
/* vues */
.solutions-views [data-view] { animation: fadeView .45s var(--ease); }
.solutions-views .view-hidden { display:none; }
@keyframes fadeView { from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:none;} }
/* recherche éditeur */
.sol-search-wrap { max-width:480px; margin:0 auto 28px; position:relative; }
.sol-search-wrap input { width:100%; padding:14px 18px 14px 46px; border-radius:999px; border:1px solid var(--line-strong); background:#fff; font-family:var(--font-body); font-size:15px; color:var(--ink); transition:.25s; }
.sol-search-wrap input:focus { outline:none; border-color:var(--accent); box-shadow:0 0 0 4px color-mix(in srgb,var(--accent) 14%,transparent); }
.sol-search-wrap::before { content:""; position:absolute; left:18px; top:50%; transform:translateY(-50%); width:16px; height:16px; background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2351618a' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4-4'/%3E%3C/svg%3E"); }
.editeur-grid .ccard .ctag { display:none; }

/* ============================================================
   Logos éditeurs (cartes solutions & fiche) — vrais logos câblés
   ============================================================ */
.ccard--logo { display: flex; flex-direction: column; }
.ccard-logo { display: flex; align-items: center; height: 44px; margin-bottom: 14px; }
.ccard-logo img { max-height: 44px; max-width: 150px; width: auto; object-fit: contain; }
.fiche-logo { display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 22px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.fiche-logo img { max-height: 60px; max-width: 220px; width: auto; object-fit: contain; display: block; }
/* Pages produit : illustration pleine largeur (vs .fiche-logo réservé aux logos) */
.fiche-illustration { display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 20px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.fiche-illustration img { max-width: 100%; max-height: 380px; width: auto; height: auto;
  object-fit: contain; display: block; }
/* Images intégrées au contenu importé (montages, badges) : jamais de débordement */
.fiche-content .t-fr img, .fiche-content .t-en img { max-width: 100%; height: auto; }

/* Logo image permutable par section (logos de catégorie de la charte) */
.brand-logo { height: 46px; width: auto; display: block; transform-origin: left center;
  transition: opacity .2s var(--ease), transform .3s var(--ease); }
/* zoom uniquement pour le logo "default" (accueil, sans GIF) — classe posée par initLogoHover */
.logo.logo-zoom .brand-logo { transform: scale(1.06); }
@media (max-width: 640px) { .brand-logo { height: 40px; } }

/* Rangée de mots-clés (section Engagement) */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ============================================================
   Actualités — filtre Par thème / Par éditeur + recherche
   ============================================================ */
.news-filter { display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:22px; flex-wrap:wrap; }
.news-search-toggle { width:46px; height:46px; border-radius:999px; border:1px solid var(--line); background:var(--bg-soft) no-repeat center/18px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2351618a' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4-4'/%3E%3C/svg%3E");
  cursor:pointer; transition:.2s; flex:0 0 auto; }
.news-search-toggle:hover { border-color:var(--accent); }
.news-search-toggle.on { border-color:var(--accent); background-color:color-mix(in srgb,var(--accent) 12%,#fff); }
.news-chips { display:flex; flex-wrap:wrap; gap:9px; justify-content:center; margin-bottom:34px; }
.nchip { border:1px solid var(--line); background:#fff; color:var(--slate); font-family:var(--font-head); font-weight:600; font-size:13px; padding:8px 16px; border-radius:999px; cursor:pointer; transition:background .2s,color .2s,border-color .2s; }
.nchip:hover { border-color:var(--accent); color:var(--ink); }
.nchip.on { background:var(--accent); border-color:var(--accent); color:#fff; }
.news-search-wrap { margin-bottom:30px; }

/* Références — filtre par secteur (réutilise .news-chips/.nchip) */
.ref-chips { margin: 28px 0 36px; justify-content: flex-start; }
.ref-cat-block + .ref-cat-block { margin-top: 50px; }
/* Espacement cohérent entre le bloc "réalisations" et le bloc "ils nous font confiance" */
.section:has(#rea-grid) { padding-bottom: clamp(48px, 6vw, 80px); }
.section:has(#ref-chips) { padding-top: clamp(48px, 6vw, 80px); }

/* Actualités : badge de langue source (distinguer FR/EN) */
.news-lang { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: .04em; padding: 2px 7px; border-radius: 999px; background: var(--bg-tint); color: var(--accent); margin-left: 2px; }

/* Pied de page : mot-symbole SOLUPREST (sans grille de points, couleur de marque fixe) */
.cfooter .foot-logo { font-size: 22px; letter-spacing: -.01em; }
.cfooter .foot-logo .lw-solu  { color: var(--c-bleu); }
.cfooter .foot-logo .lw-prest { color: var(--c-neutre); }

/* Page Société : frise chronologique + secteurs */
.soc-tl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; width: 100%; }
.soc-tl-item { position: relative; padding-top: 26px; border-top: 2px solid var(--clair-line); }
.soc-tl-item::before { content: ""; position: absolute; top: -8px; left: 0; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); }
.soc-tl-year { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--accent); }
.soc-tl-item h3 { font-size: 1.05rem; margin-top: 6px; }
.soc-tl-item p { color: var(--slate); font-size: 14px; margin-top: 6px; }
.soc-sectors { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.soc-sector { display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px; border: 1px solid var(--clair-line); background: #fff; font-family: var(--font-head); font-weight: 600; font-size: 14px; box-shadow: var(--shadow-sm); }
.soc-sector::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
@media (max-width: 800px) { .soc-tl { grid-template-columns: 1fr 1fr; } }

/* Références : barre de filtres des réalisations (réutilise .nchip) */
.rea-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 6px; }
.rea-card { display: flex; flex-direction: column; }
.rea-card .rea-tag { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); }
.rea-card h3 { font-size: 1.12rem; margin-top: 6px; }
.rea-card .rea-body p { font-size: 14px; color: var(--slate); margin-top: 9px; line-height: 1.5; }
.rea-card .rea-body strong { font-weight: 700; color: inherit; }
.rea-card .rea-result { margin-top: 14px; padding: 12px 14px; border-radius: 12px; background: var(--bg-tint); font-size: 14px; line-height: 1.5; border-left: 3px solid var(--accent); }
.rea-card .rea-result strong { color: var(--accent); }
