﻿/* ============================================================================
   SINORFI V2 â€” Design system complet
   Toutes les couleurs passent par les variables de style.css (--s2-*)
   ============================================================================ */

/* â”€â”€ Reset â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--s2-font);
  background: var(--s2-bg);
  color: var(--s2-text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
ul, ol { list-style: none; }

/* â”€â”€ Skip link â”€â”€ */
.s2-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.s2-skip-link:focus {
  left: 0; top: 0;
  width: auto; height: auto;
  background: var(--s2-navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
}

/* â”€â”€ Container â”€â”€ */
.s2-container {
  width: 100%;
  max-width: var(--s2-container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================================
   ANNOUNCE BAR
   ============================================================================ */
.s2-announce {
  background: var(--s2-navy);
  color: rgba(255,255,255,.78);
  font-family: var(--s2-font-mono);
  font-size: 12px;
  letter-spacing: .02em;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.s2-announce__dot {
  width: 6px; height: 6px;
  background: var(--s2-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--s2-gold);
  flex-shrink: 0;
}
.s2-announce__link {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.s2-announce__link:hover { border-color: var(--s2-gold); }

/* ============================================================================
   NAVBAR
   ============================================================================ */
.s2-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--s2-line);
}
.s2-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 32px;
}

/* Logo */
.s2-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.s2-logo__img { height: 60px; width: auto; max-width: 220px; object-fit: contain; }

/* Links */
.s2-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.s2-nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--s2-text-2);
  transition: color .15s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.s2-nav-link:hover,
.s2-nav-link.active { color: var(--s2-navy); }
.s2-nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--s2-blue);
  border-radius: 1px;
}
.s2-nav-chevron {
  width: 12px; height: 12px;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.s2-nav-dropdown:hover .s2-nav-chevron,
.s2-nav-dropdown.s2-dropdown--open .s2-nav-chevron { transform: rotate(180deg); }

/* Dropdown â€” dark panel, premium slide + fade */
.s2-nav-dropdown { position: relative; }

/* Invisible bridge fills the gap between link and panel so mouse can move down without closing */
.s2-nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px; right: -20px;
  height: 16px;
  display: none;
}
.s2-nav-dropdown:hover::after,
.s2-nav-dropdown.s2-dropdown--open::after { display: block; }

.s2-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--s2-navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--s2-r-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.40), 0 4px 20px rgba(0,0,0,.22);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(.98);
  transform-origin: top left;
  transition: opacity .2s cubic-bezier(.4,0,.2,1),
              transform .2s cubic-bezier(.4,0,.2,1),
              visibility .2s;
  z-index: 300;
  pointer-events: none;
}
.s2-nav-dropdown:hover .s2-dropdown-panel,
.s2-nav-dropdown:focus-within .s2-dropdown-panel,
.s2-nav-dropdown.s2-dropdown--open .s2-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.s2-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  transition: background .12s ease, color .12s ease, padding-left .12s ease;
}
.s2-dropdown-item:hover { padding-left: 18px; }
.s2-dropdown-item:hover,
.s2-dropdown-item--active { background: rgba(255,255,255,.07); color: #fff; }

/* CTA + lang wrapper */
.s2-nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Language switch â€” same style as .s2-nav-cta */
.s2-nav-lang { display: flex; align-items: center; }
.s2-lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--s2-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.s2-lang-switch:hover { background: var(--s2-navy-3); transform: translateY(-1px); }

/* CTA */
.s2-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--s2-navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.s2-nav-cta:hover { background: var(--s2-navy-3); transform: translateY(-1px); }

/* Burger */
.s2-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.s2-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--s2-navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.s2-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.s2-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.s2-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.s2-mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--s2-line);
  background: #fff;
}
.s2-mobile-menu[aria-hidden="false"] { display: flex; }
.s2-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 24px;
  gap: 4px;
}
.s2-mobile-menu-inner ul,.s2-mobile-menu-inner .s2-mobile-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.s2-mobile-menu-inner li { list-style: none; }
.s2-mobile-menu-inner a {
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--s2-text-2);
  border-bottom: 1px solid var(--s2-line);
  transition: color .15s;
}
.s2-mobile-menu-inner a:hover { color: var(--s2-navy); }
.s2-mobile-cta {
  margin-top: 12px;
  background: var(--s2-navy) !important;
  color: #fff !important;
  border-radius: 8px;
  text-align: center;
  border-bottom: none !important;
  padding: 14px !important;
}

/* ============================================================================
   TYPE SYSTEM
   ============================================================================ */
.s2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--s2-font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--s2-blue);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.s2-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--s2-blue);
  flex-shrink: 0;
}
.s2-eyebrow--center { display: flex; justify-content: center; }
.s2-eyebrow--center::before { display: none; }
.s2-eyebrow--dark   { color: #67A4E0; }
.s2-eyebrow--dark::before { background: #67A4E0; }

.s2-h1 {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.026em;
  color: var(--s2-navy);
}
.s2-h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.022em;
  color: var(--s2-navy);
}
.s2-h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--s2-navy);
}
.s2-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--s2-text-2);
  font-weight: 400;
  max-width: 620px;
}
.s2-lede--center { margin-left: auto; margin-right: auto; text-align: center; }

.s2-section-head { text-align: center; margin-bottom: 64px; }
.s2-section-head .s2-lede { margin-top: 18px; }
.s2-section-cta   { text-align: center; margin-top: 48px; }

/* ============================================================================
   BUTTONS
   ============================================================================ */
.s2-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: transform .15s, background .2s, border-color .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.s2-btn svg { width: 15px; height: 15px; }

.s2-btn-primary {
  background: var(--s2-blue);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(27,110,194,.6);
}
.s2-btn-primary:hover { background: #1660B0; transform: translateY(-1px); box-shadow: 0 10px 24px -6px rgba(27,110,194,.7); }

.s2-btn-dark { background: var(--s2-navy); color: #fff; }
.s2-btn-dark:hover { background: var(--s2-navy-3); transform: translateY(-1px); }

.s2-btn-outline {
  background: transparent;
  color: var(--s2-navy);
  border: 1px solid var(--s2-line-2);
}
.s2-btn-outline:hover { border-color: var(--s2-navy); background: var(--s2-bg-2); }

.s2-btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.s2-btn-ghost-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); }

/* ============================================================================
   SECTIONS
   ============================================================================ */
.s2-sect { padding: var(--s2-sect-y) 0; position: relative; }
.s2-sect--alt  { background: var(--s2-bg-2); }
.s2-sect--dark {
  background: var(--s2-navy);
  color: #fff;
}
.s2-sect--dark .s2-h2,
.s2-sect--dark .s2-h3 { color: #fff; }
.s2-sect--dark .s2-lede { color: rgba(255,255,255,.7); }

/* ============================================================================
   TAGS / BADGES
   ============================================================================ */
.s2-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--s2-font-mono);
  font-size: 10px;
  color: var(--s2-blue);
  background: var(--s2-blue-soft);
  border: 1px solid var(--s2-blue-border);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}

/* ============================================================================
   BANNER â€” hero plein Ã©cran (Sopra Steria / Talan style)
   ============================================================================ */
.s2-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--s2-navy);
  overflow: hidden;
}

/* â”€â”€ Fond animÃ© â”€â”€ */
.s2-banner-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.s2-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 100%);
}

.s2-banner-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.s2-banner-glow--1 {
  width: 800px; height: 800px;
  top: -250px; right: -150px;
  background: radial-gradient(circle, rgba(27,110,194,.32) 0%, transparent 65%);
  animation: s2BannerDrift 20s ease-in-out infinite alternate;
}
.s2-banner-glow--2 {
  width: 600px; height: 600px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(46,133,224,.18) 0%, transparent 65%);
  animation: s2BannerDrift 26s ease-in-out infinite alternate-reverse;
}
.s2-banner-glow--3 {
  width: 500px; height: 500px;
  top: 35%; left: 25%;
  background: radial-gradient(circle, rgba(212,160,32,.08) 0%, transparent 65%);
  animation: s2BannerDrift 22s ease-in-out infinite alternate;
}
@keyframes s2BannerDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(50px,-30px) scale(1.1); }
  100% { transform: translate(-25px,20px) scale(0.93); }
}

/* â”€â”€ Contenu central â”€â”€ */
.s2-banner-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 100px;
}

/* Eyebrow */
.s2-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--s2-font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 40px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.s2-banner-pip {
  width: 6px; height: 6px;
  background: var(--s2-gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--s2-gold);
  animation: s2PipPulse 2.2s ease-in-out infinite;
}
@keyframes s2PipPulse {
  0%, 100% { box-shadow: 0 0 6px var(--s2-gold); }
  50%       { box-shadow: 0 0 18px var(--s2-gold), 0 0 36px rgba(212,163,42,.4); }
}

/* H1 */
.s2-banner-h1 {
  font-size: clamp(38px, 5.8vw, 84px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.032em;
  color: #fff;
  margin-bottom: 32px;
  max-width: 960px;
}
.s2-banner-h1-static {
  display: block;
  color: rgba(255,255,255,.88);
  margin-bottom: .12em;
}

/* â”€â”€ Rotateur de mots â”€â”€ */
.s2-banner-rotator {
  display: inline-block;
  overflow: hidden;
  height: 1.02em;
  vertical-align: bottom;
  position: relative;
}
.s2-rotator-track {
  display: flex;
  flex-direction: column;
  transition: transform .72s cubic-bezier(.22,1,.36,1);
}
.s2-rotator-word {
  display: block;
  line-height: 1.02;
  white-space: nowrap;
  color: var(--s2-gold);
}

/* Lede */
.s2-banner-lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.58);
  max-width: 620px;
  margin-bottom: 44px;
}

/* CTAs */
.s2-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* â”€â”€ Barre de preuves (absolue en bas) â”€â”€ */
.s2-banner-proofbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  z-index: 2;
  background: rgba(5,14,36,.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.s2-banner-proofbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.s2-banner-proof-item { display: flex; align-items: center; gap: 12px; }
.s2-banner-proof-ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.s2-banner-proof-ic svg { width: 15px; height: 15px; }
.s2-banner-proof-val {
  font-size: 14px; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.s2-banner-proof-lbl {
  font-family: var(--s2-font-mono);
  font-size: 10px; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .07em;
}

/* â”€â”€ Indicateur scroll â”€â”€ */
.s2-banner-scroll {
  position: absolute;
  bottom: 72px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
  opacity: .55;
  transition: opacity .3s;
}
.s2-banner-scroll:hover { opacity: .9; }
.s2-scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 11px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.s2-scroll-wheel {
  width: 3px; height: 6px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: s2WheelScroll 2s ease-in-out infinite;
}
@keyframes s2WheelScroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(9px); opacity: .2; }
}
.s2-scroll-label {
  font-size: 9px; color: rgba(255,255,255,.45);
  letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--s2-font-mono);
}

/* â”€â”€ Nav transparente sur le banner â”€â”€ */
.s2-navbar--transparent {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom-color: transparent !important;
}
.s2-navbar--transparent .s2-nav-links a,
.s2-navbar--transparent .s2-nav-actions a,
.s2-navbar--transparent .s2-logo-wordmark { color: rgba(255,255,255,.9) !important; }
.s2-navbar--transparent .s2-logo-dot { fill: var(--s2-gold) !important; }
.s2-navbar--transparent .s2-burger span { background: #fff !important; }
.s2-navbar--transparent .s2-nav-cta {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: #fff !important;
}
.s2-navbar--transparent .s2-lang-switch { color: rgba(255,255,255,.7) !important; }

/* ============================================================================
   LOGOS MARQUEE
   ============================================================================ */
.s2-clients {
  padding: 48px 0 56px;
  background: var(--s2-navy);
  overflow: hidden;
}
.s2-clients-label {
  text-align: center;
  font-family: var(--s2-font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.s2-clients-track-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.s2-clients-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: s2ClientsMarquee 40s linear infinite;
}
.s2-clients-track:hover { animation-play-state: paused; }
@keyframes s2ClientsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.s2-client-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 80px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  transition: background .25s, border-color .25s;
}
.s2-client-item:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}
.s2-client-item img {
  max-width: 100px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .7;
  transition: opacity .25s;
}
.s2-client-item:hover img { opacity: 1; }
.s2-client-item a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.s2-client-name {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  transition: color .25s;
}
.s2-client-item:hover .s2-client-name { color: #fff; }

/* ============================================================================
   SOLUTIONS GRID
   ============================================================================ */
.s2-sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.s2-sol-card {
  background: #fff;
  border: 1px solid var(--s2-line);
  border-radius: var(--s2-r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.s2-sol-card:hover {
  border-color: var(--s2-navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(11,30,68,.18);
}
.s2-sol-card--featured {
  background: var(--s2-navy);
  border-color: var(--s2-navy);
  color: #fff;
}
.s2-sol-card--featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(27,110,194,.3) 0%, transparent 70%);
  pointer-events: none;
}
.s2-sol-card--featured h3 { color: #fff; }
.s2-sol-card--featured p  { color: rgba(255,255,255,.72); }
.s2-sol-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--s2-blue-soft);
  color: var(--s2-blue);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.s2-sol-card--featured .s2-sol-icon { background: var(--s2-blue); color: #fff; }
.s2-sol-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--s2-navy);
  margin-bottom: 10px;
  letter-spacing: -.012em;
}
.s2-sol-card p {
  font-size: 14.5px;
  color: var(--s2-text-2);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.s2-sol-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--s2-blue);
  transition: gap .15s;
}
.s2-sol-link:hover { gap: 12px; }
.s2-sol-card--featured .s2-sol-link { color: #87BFF5; }
.s2-sol-link svg { width: 14px; height: 14px; }

/* ============================================================================
   SOLUTION DETAIL BLOCKS (homepage)
   ============================================================================ */
.s2-sol-blocks { padding-bottom: 8px; }

.s2-sol-block {
  padding: 72px 0;
  border-top: 1px solid var(--s2-line);
}
.s2-sol-block:last-child { border-bottom: 1px solid var(--s2-line); }

.s2-sol-block-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: center;
}
.s2-sol-block--reversed .s2-sol-block-inner {
  grid-template-columns: 1.35fr 1fr;
}
.s2-sol-block--reversed .s2-sol-block-visual { order: 2; }
.s2-sol-block--reversed .s2-sol-block-content { order: 1; }

/* Visual column */
.s2-sol-block-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.s2-sol-block-icon-wrap {
  width: 140px; height: 140px;
  border-radius: 32px;
  background: var(--s2-blue-soft);
  color: var(--s2-blue);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px -8px rgba(27,110,194,.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.s2-sol-block:hover .s2-sol-block-icon-wrap {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -8px rgba(27,110,194,.28);
}
.s2-sol-block-badge {
  font-family: var(--s2-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--s2-blue);
  background: var(--s2-blue-soft);
  padding: 5px 12px;
  border-radius: 20px;
}
.s2-sol-block-img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 24px 64px -16px rgba(0,0,0,.18);
}

/* â”€â”€ Device screenshot (MX-Edge) â€” premium â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-sol-devices-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 24px 16px;
}

/* Glow halo derriÃ¨re l'image */
.s2-sol-devices-img::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at 55% 50%, rgba(27,110,194,.28) 0%, rgba(27,110,194,.10) 50%, transparent 75%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
}

.s2-devices-screenshot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 0;
  /* lÃ©gÃ¨re inclinaison premium */
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transform-origin: center center;
  transition: transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,.22)) drop-shadow(0 8px 16px rgba(27,110,194,.15));
  animation: s2DevFloat 5s ease-in-out infinite;
}

.s2-devices-screenshot:hover {
  transform: perspective(900px) rotateY(-1deg) rotateX(0deg) scale(1.02);
  filter: drop-shadow(0 40px 56px rgba(0,0,0,.26)) drop-shadow(0 8px 20px rgba(27,110,194,.22));
}

@keyframes s2DevFloat {
  0%, 100% { transform: perspective(900px) rotateY(-4deg) rotateX(2deg) translateY(0px); }
  50%       { transform: perspective(900px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

/* Content column */
.s2-sol-block-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--s2-navy);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 8px 0 14px;
}
.s2-sol-block-desc {
  font-size: 16.5px;
  color: var(--s2-text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.s2-sol-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s2-sol-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--s2-text-2);
  line-height: 1.5;
}
.s2-sol-features-list li svg {
  color: var(--s2-blue);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================================
   EXPERTISE DETAIL BLOCKS (homepage) â€” mirror of sol-blocks, navy accent
   ============================================================================ */
.s2-exp-blocks { padding-bottom: 8px; }

.s2-exp-block {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.s2-sect--alt .s2-exp-block { border-top-color: rgba(11,30,68,.08); }
.s2-exp-block:last-child { border-bottom: 1px solid rgba(11,30,68,.08); }

.s2-exp-block-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: center;
}
.s2-exp-block--reversed .s2-exp-block-inner {
  grid-template-columns: 1.35fr 1fr;
}
.s2-exp-block--reversed .s2-exp-block-visual { order: 2; }
.s2-exp-block--reversed .s2-exp-block-content { order: 1; }

.s2-exp-block-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.s2-exp-block-icon-wrap {
  width: 140px; height: 140px;
  border-radius: 32px;
  background: var(--s2-navy);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px -8px rgba(11,30,68,.30);
  transition: transform .3s ease, box-shadow .3s ease;
}
.s2-exp-block:hover .s2-exp-block-icon-wrap {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -8px rgba(11,30,68,.40);
}
.s2-exp-block-badge {
  font-family: var(--s2-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--s2-navy);
  background: rgba(11,30,68,.08);
  padding: 5px 12px;
  border-radius: 20px;
}

.s2-exp-block-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--s2-navy);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 8px 0 14px;
}
.s2-exp-block-desc {
  font-size: 16.5px;
  color: var(--s2-text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ============================================================================
   EXPERTISES GRID
   ============================================================================ */
.s2-exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--s2-line);
  border-left: 1px solid var(--s2-line);
}
.s2-exp-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--s2-line);
  border-bottom: 1px solid var(--s2-line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .2s;
  cursor: default;
}
a.s2-exp-cell { cursor: pointer; }
.s2-exp-cell:hover { background: var(--s2-bg-2); }
.s2-exp-cell:hover .s2-exp-ic { background: var(--s2-navy); color: #fff; border-color: var(--s2-navy); }
.s2-exp-ic {
  width: 40px; height: 40px;
  border-radius: 9px;
  border: 1px solid var(--s2-line-2);
  background: #fff;
  color: var(--s2-blue);
  display: grid; place-items: center;
  transition: all .2s;
  flex-shrink: 0;
}
.s2-exp-ic svg { width: 18px; height: 18px; }
.s2-exp-cell h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--s2-navy);
  letter-spacing: -.005em;
  line-height: 1.25;
}
.s2-exp-cell p { font-size: 13.5px; color: var(--s2-text-2); line-height: 1.55; }

/* ============================================================================
   APPROACH
   ============================================================================ */
.s2-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.s2-approach-list { display: flex; flex-direction: column; gap: 24px; }
.s2-approach-item { display: flex; gap: 18px; align-items: flex-start; }
.s2-approach-num {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--s2-blue-soft);
  border: 1px solid var(--s2-blue-border);
  color: var(--s2-blue);
  font-family: var(--s2-font-mono);
  font-weight: 600;
  font-size: 13px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.s2-approach-item h3 { font-size: 17px; margin-bottom: 4px; color: var(--s2-navy); font-weight: 600; }
.s2-approach-item p  { font-size: 14.5px; color: var(--s2-text-2); line-height: 1.6; }

.s2-approach-quote {
  background: var(--s2-bg-3);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--s2-line);
  position: relative;
}
.s2-approach-quote::before {
  content: '"';
  position: absolute;
  top: 8px; left: 24px;
  font-size: 110px;
  font-weight: 700;
  color: var(--s2-blue-soft);
  font-family: var(--s2-font);
  line-height: 1;
}
.s2-approach-quote p {
  font-size: 19px;
  color: var(--s2-navy);
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  margin-bottom: 24px;
  letter-spacing: -.005em;
}
.s2-approach-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--s2-line);
}
.s2-approach-quote-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--s2-navy);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-family: var(--s2-font-mono);
  font-size: 13px;
  flex-shrink: 0;
}
.s2-approach-quote-author strong { display: block; font-size: 14px; color: var(--s2-navy); font-weight: 600; }
.s2-approach-quote-author span   { font-size: 12px; color: var(--s2-text-3); font-family: var(--s2-font-mono); }

/* ============================================================================
   SERVICES GRID (dark bg)
   ============================================================================ */
.s2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-left: 1px solid rgba(255,255,255,.1);
}
.s2-service-cell {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.s2-service-cell:hover { background: rgba(255,255,255,.04); }
.s2-service-num {
  font-family: var(--s2-font-mono);
  font-size: 11px;
  color: #67A4E0;
  letter-spacing: .12em;
  font-weight: 500;
}
.s2-service-cell h3 { font-size: 22px; color: #fff; font-weight: 600; letter-spacing: -.012em; margin-bottom: 6px; }
.s2-service-cell p  { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================================
   STATS STRIP
   ============================================================================ */
.s2-stats-strip {
  background: var(--s2-bg-2);
  border-top: 1px solid var(--s2-line);
  border-bottom: 1px solid var(--s2-line);
  padding: 40px 0;
}
.s2-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.s2-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px;
  border-right: 1px solid var(--s2-line);
}
.s2-stat:last-child { border-right: none; }
.s2-stat-val {
  font-size: 38px;
  font-weight: 600;
  color: var(--s2-navy);
  letter-spacing: -.025em;
  line-height: 1;
}
.s2-stat-unit { color: var(--s2-blue); }
.s2-stat-label { font-size: 14px; color: var(--s2-text-2); line-height: 1.4; }

/* ============================================================================
   SECTORS GRID
   ============================================================================ */
.s2-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.s2-sector-card {
  background: #fff;
  border: 1px solid var(--s2-line);
  border-radius: var(--s2-r-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.s2-sector-card:hover { border-color: var(--s2-navy); transform: translateY(-2px); }
.s2-sector-ic {
  width: 52px; height: 52px;
  background: var(--s2-navy);
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.s2-sector-ic svg { width: 24px; height: 24px; }
.s2-sector-card h3 { margin-bottom: 8px; font-size: 17px; color: var(--s2-navy); font-weight: 600; }
.s2-sector-card p  { font-size: 13.5px; color: var(--s2-text-2); line-height: 1.55; }

/* ============================================================================
   CONTACT BAND
   ============================================================================ */
.s2-contact-band {
  background: var(--s2-navy);
  color: #fff;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.s2-contact-band::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,110,194,.18) 0%, transparent 60%);
  pointer-events: none;
}
.s2-contact-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.s2-contact-band-inner .s2-h2 { color: #fff; margin-bottom: 16px; }
.s2-contact-band-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.s2-contact-band-meta {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 28px;
}
.s2-contact-band-meta h4 {
  font-family: var(--s2-font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.s2-contact-band-meta ul { display: flex; flex-direction: column; gap: 14px; }
.s2-contact-band-meta li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.s2-contact-band-meta svg { width: 18px; height: 18px; color: #67A4E0; flex-shrink: 0; margin-top: 2px; }
.s2-contact-band-meta strong { color: #fff; display: block; margin-bottom: 2px; font-weight: 600; }

/* ============================================================================
   PAGE HERO (sous-pages)
   ============================================================================ */
.s2-page-hero {
  background: var(--s2-bg-2);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--s2-line);
}
.s2-page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--s2-blue-soft) 0%, transparent 60%);
  pointer-events: none;
}
.s2-page-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.s2-page-hero h1 { margin-bottom: 24px; }
.s2-page-hero .s2-lede { font-size: 19px; margin-bottom: 32px; }
.s2-page-hero-actions { display: flex; gap: 12px; margin-top: 32px; }
.s2-page-hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--s2-line);
}
.s2-page-hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.s2-page-hero-meta-val  { font-size: 26px; font-weight: 600; color: var(--s2-navy); letter-spacing: -.02em; }
.s2-page-hero-meta-label { font-family: var(--s2-font-mono); font-size: 11px; color: var(--s2-text-3); letter-spacing: .06em; text-transform: uppercase; }

/* Breadcrumbs */
.s2-crumbs {
  font-family: var(--s2-font-mono);
  font-size: 12px;
  color: var(--s2-text-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s2-crumbs a { color: var(--s2-text-3); transition: color .15s; }
.s2-crumbs a:hover { color: var(--s2-navy); }
.s2-crumbs-sep { opacity: .5; }
.s2-crumbs-here { color: var(--s2-blue); }

/* Hero illustration (CPT pages) */
.s2-hero-illustration {
  background: var(--s2-navy);
  border-radius: 18px;
  aspect-ratio: 5 / 6;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.s2-hero-illustration::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: 40px 40px;
}
.s2-hero-illustration-glyph {
  position: relative;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.08);
  border-radius: 24px;
  display: grid; place-items: center;
  color: rgba(255,255,255,.8);
}
.s2-hero-illustration-glyph--blue { background: var(--s2-blue); color: #fff; }
.s2-hero-illustration-glyph svg { width: 56px; height: 56px; }
.s2-hero-illustration-glyph::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(27,110,194,.3);
  border-radius: 30px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.s2-footer {
  background: var(--s2-navy);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}
.s2-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.s2-footer-brand-col { max-width: 380px; }
.s2-footer .s2-logo { margin-bottom: 18px; }
.s2-footer .s2-logo__img { filter: brightness(0) invert(1); }
.s2-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 24px;
}
.s2-footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.s2-footer-badge {
  font-family: var(--s2-font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.s2-footer-social { display: flex; gap: 10px; }
.s2-footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.s2-footer-social a:hover { background: var(--s2-blue); border-color: var(--s2-blue); }
.s2-footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,.85); }

.s2-footer-col h4 {
  font-family: var(--s2-font-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.s2-footer-col ul,.s2-footer-col .s2-footer-nav { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.s2-footer-col li { list-style: none; }
.s2-footer-col a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .15s; }
.s2-footer-col a:hover { color: #fff; }
.s2-footer-legal .s2-footer-legal-list { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.s2-footer-legal li { list-style: none; }
.s2-footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.s2-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.s2-footer-contact svg { color: #67A4E0; flex-shrink: 0; margin-top: 1px; }
.s2-footer-contact a { color: rgba(255,255,255,.7); }
.s2-footer-contact a:hover { color: #fff; }

.s2-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.s2-footer-legal { display: flex; gap: 20px; }
.s2-footer-legal a { color: rgba(255,255,255,.5); transition: color .15s; }
.s2-footer-legal a:hover { color: #fff; }

/* ============================================================================
   BLOG
   ============================================================================ */
.s2-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.s2-blog-card {
  background: #fff;
  border: 1px solid var(--s2-line);
  border-radius: var(--s2-r-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.s2-blog-card:hover { border-color: var(--s2-navy); transform: translateY(-2px); box-shadow: 0 16px 40px -16px rgba(11,30,68,.15); }
.s2-blog-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.s2-blog-card-body { padding: 24px 28px 28px; }
.s2-blog-card-meta { font-family: var(--s2-font-mono); font-size: 11px; color: var(--s2-text-3); letter-spacing: .06em; margin-bottom: 12px; }
.s2-blog-card-title { font-size: 18px; font-weight: 600; color: var(--s2-navy); line-height: 1.3; margin-bottom: 12px; }
.s2-blog-card-title a { color: inherit; }
.s2-blog-card-title a:hover { color: var(--s2-blue); }
.s2-blog-card-excerpt { font-size: 14px; color: var(--s2-text-2); line-height: 1.6; margin-bottom: 20px; }
.s2-pagination { margin-top: 48px; display: flex; justify-content: center; }
.s2-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================================
   PROSE (page content)
   ============================================================================ */
.s2-prose { max-width: 780px; }
.s2-prose h2 { font-size: 28px; font-weight: 600; color: var(--s2-navy); margin: 48px 0 16px; letter-spacing: -.015em; }
.s2-prose h3 { font-size: 20px; font-weight: 600; color: var(--s2-navy); margin: 36px 0 12px; }
.s2-prose p  { font-size: 16px; color: var(--s2-text-2); line-height: 1.75; margin-bottom: 20px; }
.s2-prose ul, .s2-prose ol { margin: 0 0 20px 24px; }
.s2-prose li { font-size: 16px; color: var(--s2-text-2); line-height: 1.7; margin-bottom: 8px; }
.s2-prose ul { list-style: disc; }
.s2-prose ol { list-style: decimal; }
.s2-prose strong { color: var(--s2-navy); font-weight: 600; }
.s2-prose a { color: var(--s2-blue); text-decoration: underline; text-underline-offset: 3px; }
.s2-prose a:hover { color: var(--s2-navy); }
.s2-prose blockquote {
  border-left: 3px solid var(--s2-blue);
  padding: 16px 24px;
  background: var(--s2-blue-soft);
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
  font-size: 18px;
  color: var(--s2-navy);
  font-style: italic;
}
.s2-post-nav { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--s2-line); }

/* ============================================================================
   REVEAL ANIMATION
   ============================================================================ */
.s2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
.s2-reveal.s2-in { opacity: 1; transform: none; }

/* ============================================================================
   RESPONSIVE â€” TABLET  (â‰¤ 1100px)
   ============================================================================ */
@media (max-width: 1100px) {
  :root { --s2-sect-y: 96px; }

  /* Nav */
  .s2-nav-links { gap: 20px; }

  /* Hero */
  .s2-home-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .s2-home-hero-visual { max-width: 480px; margin: 0 auto; }

  /* Sections grids */
  .s2-sol-grid      { grid-template-columns: repeat(2, 1fr); }
  .s2-exp-grid      { grid-template-columns: repeat(2, 1fr); }
  .s2-services-grid { grid-template-columns: repeat(2, 1fr); }
  .s2-sectors-grid  { grid-template-columns: repeat(2, 1fr); }
  .s2-approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .s2-stats-inner   { grid-template-columns: repeat(2, 1fr); }
  .s2-stat          { border-right: none; padding: 0; }

  /* Sol/Exp blocks */
  .s2-sol-block-inner,
  .s2-sol-block--reversed .s2-sol-block-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .s2-sol-block { padding: 56px 0; }
  .s2-exp-block-inner,
  .s2-exp-block--reversed .s2-exp-block-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .s2-exp-block { padding: 56px 0; }

  /* Device screenshot â€” tablet */
  .s2-sol-devices-img { padding: 16px 0 16px 8px; }
  .s2-devices-screenshot { max-width: 420px; }

  /* Footer, contact */
  .s2-footer-grid        { grid-template-columns: 1fr 1fr; }
  .s2-contact-band-inner { grid-template-columns: 1fr; gap: 36px; }
  .s2-page-hero-inner    { grid-template-columns: 1fr; gap: 48px; }
  .s2-blog-grid          { grid-template-columns: repeat(2, 1fr); }
  .s2-contact-grid       { grid-template-columns: 1fr; }
}

/* ============================================================================
   RESPONSIVE â€” MOBILE  (â‰¤ 720px)
   ============================================================================ */
@media (max-width: 720px) {
  :root { --s2-sect-y: 56px; }

  .s2-container { padding: 0 16px; }

  /* â”€â”€ Nav â”€â”€ */
  .s2-nav-links { display: none; }
  .s2-nav-cta   { display: none; }
  .s2-burger    { display: flex; }

  /* â”€â”€ Banner mobile â”€â”€ */
  .s2-banner-inner { padding-top: 100px; padding-bottom: 120px; }
  .s2-banner-h1 { font-size: clamp(30px, 8vw, 46px); letter-spacing: -.02em; }
  .s2-banner-eyebrow { font-size: 10px; padding: 6px 14px; margin-bottom: 28px; }
  .s2-banner-lede { font-size: 14px; margin-bottom: 32px; }
  .s2-banner-actions .s2-btn { font-size: 13px; padding: 10px 18px; }
  .s2-banner-proofbar-inner { gap: 20px; justify-content: flex-start; padding: 0 4px; }
  .s2-banner-proof-val { font-size: 13px; }
  .s2-banner-scroll { display: none; }

  /* â”€â”€ Clients marquee â”€â”€ */
  .s2-clients { padding: 28px 0 36px; }
  .s2-client-item { width: 100px; height: 56px; }
  .s2-client-item img { max-width: 70px; max-height: 28px; }

  /* â”€â”€ Titres de sections â”€â”€ */
  .s2-h2           { font-size: clamp(22px, 6vw, 32px); }
  .s2-section-head { margin-bottom: 32px; }

  /* â”€â”€ Sol / Exp blocks : 2 colonnes conservÃ©es â”€â”€ */
  .s2-sol-block,
  .s2-exp-block { padding: 36px 0; }

  .s2-sol-block-inner,
  .s2-sol-block--reversed .s2-sol-block-inner,
  .s2-exp-block-inner,
  .s2-exp-block--reversed .s2-exp-block-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }

  /* Visuel toujours en premier colonne, contenu en second */
  .s2-sol-block--reversed .s2-sol-block-visual  { order: -1; }
  .s2-sol-block--reversed .s2-sol-block-content { order: 1; }
  .s2-exp-block--reversed .s2-exp-block-visual  { order: -1; }
  .s2-exp-block--reversed .s2-exp-block-content { order: 1; }

  .s2-sol-block-icon-wrap,
  .s2-exp-block-icon-wrap { width: 72px; height: 72px; border-radius: 16px; }
  .s2-sol-block-icon-wrap svg,
  .s2-exp-block-icon-wrap svg { width: 32px; height: 32px; }

  .s2-sol-block-title,
  .s2-exp-block-title { font-size: 16px; margin-bottom: 6px; }
  .s2-sol-block-desc,
  .s2-exp-block-desc  { font-size: 12px; line-height: 1.55; margin-bottom: 12px;
                         display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .s2-sol-features-list { display: none; } /* masquÃ© sur mobile â€” trop dense */
  .s2-sol-block-content .s2-btn,
  .s2-exp-block-content .s2-btn { font-size: 12px; padding: 8px 14px; }

  /* Device screenshot â€” mobile */
  .s2-sol-devices-img { padding: 12px 0; justify-content: flex-start; }
  .s2-devices-screenshot {
    max-width: 100%;
    transform: perspective(600px) rotateY(-2deg) rotateX(1deg);
    animation: none;
  }

  /* â”€â”€ Stats strip â”€â”€ */
  .s2-stats-strip { padding: 36px 0; }
  .s2-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .s2-stat-val    { font-size: 28px; }
  .s2-stat-label  { font-size: 12px; }

  /* â”€â”€ Services / Sectors â”€â”€ */
  .s2-sol-grid      { grid-template-columns: 1fr; }
  .s2-exp-grid      { grid-template-columns: 1fr; }
  .s2-services-grid { grid-template-columns: 1fr; }
  .s2-sectors-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .s2-sector-card   { padding: 18px 16px; gap: 12px; }

  /* â”€â”€ Approach â”€â”€ */
  .s2-approach-grid { grid-template-columns: 1fr; gap: 36px; }

  /* â”€â”€ Contact band â”€â”€ */
  .s2-contact-band { padding: 48px 0; }
  .s2-contact-band-inner { grid-template-columns: 1fr; gap: 28px; }
  .s2-contact-band-cta { flex-direction: column; gap: 10px; }
  .s2-contact-band-cta .s2-btn { width: 100%; justify-content: center; }

  /* â”€â”€ Footer â”€â”€ */
  .s2-footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .s2-footer        { padding: 44px 0 20px; }
  .s2-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .s2-footer-legal  { flex-wrap: wrap; gap: 10px; }

  /* â”€â”€ Misc â”€â”€ */
  .s2-gc-partner, .s2-gc-intl, .s2-gc-expertise, .s2-gc-mobile { display: none; }
  .s2-page-hero     { padding: 48px 0 36px; }
  .s2-page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .s2-blog-grid     { grid-template-columns: 1fr; }
  .s2-form-row      { grid-template-columns: 1fr; }
  .s2-contact-grid  { grid-template-columns: 1fr; }
}

/* â”€â”€ TrÃ¨s petit Ã©cran (â‰¤ 400px) â”€â”€ */
@media (max-width: 400px) {
  .s2-home-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .s2-home-hero-visual { max-width: 260px; margin: 0 auto; }
  .s2-hero-h1 { font-size: 26px; }
  .s2-sol-block-inner,
  .s2-sol-block--reversed .s2-sol-block-inner,
  .s2-exp-block-inner,
  .s2-exp-block--reversed .s2-exp-block-inner { grid-template-columns: 1fr; }
  .s2-devices-screenshot { transform: none; }
}

/* ============================================================================
   CONTACT PAGE
   ============================================================================ */
.s2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

/* Form */
.s2-form { display: flex; flex-direction: column; gap: 20px; }
.s2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.s2-form-field { display: flex; flex-direction: column; gap: 6px; }
.s2-form-label { font-size: 13px; font-weight: 600; color: var(--s2-text); letter-spacing: .02em; }
.s2-req { color: var(--s2-blue); }
.s2-form-input,
.s2-form-select,
.s2-form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--s2-font);
  font-size: 14px;
  color: var(--s2-text);
  background: var(--s2-bg);
  border: 1.5px solid var(--s2-line-2);
  border-radius: var(--s2-r);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.s2-form-input:focus,
.s2-form-select:focus,
.s2-form-textarea:focus {
  border-color: var(--s2-blue);
  box-shadow: 0 0 0 3px var(--s2-blue-soft);
}
.s2-form-textarea { resize: vertical; min-height: 140px; }
.s2-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.s2-form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--s2-blue); }
.s2-form-consent span { font-size: 13px; color: var(--s2-text-2); line-height: 1.5; }

/* Offices sidebar */
.s2-contact-offices { padding-top: 8px; }
.s2-office-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.s2-office-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--s2-bg-2);
  border: 1px solid var(--s2-line);
  border-radius: var(--s2-r-lg);
}
.s2-office-flag { font-size: 24px; line-height: 1; flex-shrink: 0; }
.s2-office-city { font-weight: 700; font-size: 15px; color: var(--s2-navy); margin-bottom: 4px; }
.s2-office-addr { font-size: 13px; color: var(--s2-text-2); line-height: 1.6; }
.s2-office-phone { display: inline-block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--s2-blue); }
.s2-office-phone:hover { color: var(--s2-navy); }
.s2-contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--s2-text-2);
}
.s2-contact-email svg { color: var(--s2-blue); flex-shrink: 0; }
.s2-contact-email a { color: var(--s2-navy); font-weight: 600; }
.s2-contact-email a:hover { color: var(--s2-blue); }

@media (max-width: 1100px) {
  .s2-contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================================================
   SERVICE PAGES  (sp- prefix)  â€” IBM Maximo Integration et pages services
   ============================================================================ */

/* â”€â”€ Variables locales â”€â”€ */
:root {
  --sp-navy:    #060e24;
  --sp-navy-2:  #0b1a3e;
  --sp-blue:    var(--s2-blue);
  --sp-gold:    var(--s2-gold);
  --sp-teal:    #0d9488;
  --sp-purple:  #7c3aed;
  --sp-green:   var(--s2-green);
  --sp-radius:  16px;
}

/* â”€â”€ Backgrounds tech â”€â”€ */
.sp-tech-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.sp-tech-grid--faint {
  opacity: .4;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
}
.sp-tech-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(27,110,194,.08) 49%, rgba(27,110,194,.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(27,110,194,.06) 49%, rgba(27,110,194,.06) 51%, transparent 52%);
  background-size: 120px 120px;
  animation: spGridShift 20s linear infinite;
}
@keyframes spGridShift {
  from { background-position: 0 0; }
  to   { background-position: 120px 120px; }
}
.sp-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px);
}
.sp-glow--1 { width:700px; height:700px; top:-200px; right:-100px;  background:radial-gradient(circle, rgba(27,110,194,.3) 0%,transparent 65%); animation:spGlowDrift 18s ease-in-out infinite alternate; }
.sp-glow--2 { width:500px; height:500px; bottom:-100px; left:-80px;  background:radial-gradient(circle, rgba(46,133,224,.18) 0%,transparent 65%); animation:spGlowDrift 24s ease-in-out infinite alternate-reverse; }
.sp-glow--3 { width:400px; height:400px; top:35%; left:30%;           background:radial-gradient(circle, rgba(212,160,32,.07) 0%,transparent 65%); animation:spGlowDrift 22s ease-in-out infinite alternate; }
.sp-glow--4 { width:600px; height:600px; top:0; left:50%; transform:translateX(-50%); background:radial-gradient(circle, rgba(27,110,194,.2) 0%,transparent 65%); animation:spGlowDrift 20s ease-in-out infinite alternate; }
.sp-glow--5 { width:400px; height:400px; bottom:0; right:0;           background:radial-gradient(circle, rgba(212,160,32,.1) 0%,transparent 65%); animation:spGlowDrift 16s ease-in-out infinite alternate-reverse; }
@keyframes spGlowDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px,-30px) scale(1.08); }
  100% { transform: translate(-20px,20px) scale(.94); }
}

/* â”€â”€ Section base â”€â”€ */
.sp-section {
  position: relative;
  padding: var(--s2-sect-y) 0;
}
.sp-section--dark {
  background: var(--sp-navy);
  overflow: hidden;
}
.sp-dark-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.sp-section--light { background: var(--s2-bg-2); }

.sp-section-head { text-align: center; margin-bottom: 64px; }
.sp-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--s2-navy);
  line-height: 1.1;
  margin-bottom: 18px;
}
.sp-h2--white { color: #fff; }
.sp-section-lede { font-size: 17px; line-height: 1.7; color: var(--s2-text-2); max-width: 600px; margin: 0 auto; }
.sp-section-lede--muted { color: rgba(255,255,255,.55); }

.sp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--s2-font-mono); font-size: 11px;
  color: var(--s2-blue); letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px;
}
.sp-eyebrow--blue { color: var(--s2-blue); }
.sp-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sp-gold); flex-shrink: 0;
  box-shadow: 0 0 8px var(--sp-gold);
  animation: s2PipPulse 2s ease-in-out infinite;
}

/* â”€â”€ Delay helper for reveal â”€â”€ */
.s2-reveal[style*="--d"] { transition-delay: var(--d, 0s); }

/* ============================================================================
   HERO
   ============================================================================ */
.sp-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--sp-navy); overflow: hidden;
  padding: 120px 0 80px;
}
.sp-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.sp-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}

/* H1 */
.sp-hero-h1 {
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -.03em; color: #fff;
  margin-bottom: 24px;
}
.sp-hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #67A4E0 0%, var(--sp-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-hero-lede {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.62); max-width: 520px;
  margin-bottom: 36px;
}
.sp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Trust strip */
.sp-hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
}
.sp-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,.55);
  font-family: var(--s2-font-mono); letter-spacing: .04em;
}
.sp-trust-item svg { color: rgba(255,255,255,.45); flex-shrink: 0; }
.sp-trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,.12); }

/* Glow button */
.sp-btn-glow {
  box-shadow: 0 0 0 0 rgba(27,110,194,.5);
  transition: box-shadow .3s ease, transform .2s ease;
}
.sp-btn-glow:hover {
  box-shadow: 0 0 0 8px rgba(27,110,194,.12), 0 8px 24px rgba(27,110,194,.35);
  transform: translateY(-2px);
}
.sp-btn-glow--lg:hover {
  box-shadow: 0 0 0 12px rgba(27,110,194,.1), 0 12px 32px rgba(27,110,194,.4);
}

/* Scroll cue */
.sp-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: .4; transition: opacity .3s; z-index: 2; text-decoration: none;
}
.sp-scroll-cue:hover { opacity: .8; }
.sp-scroll-mouse {
  width: 20px; height: 30px;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 10px;
  display: flex; justify-content: center; padding-top: 5px;
}
.sp-scroll-wheel {
  width: 3px; height: 5px; background: rgba(255,255,255,.7);
  border-radius: 2px; animation: s2WheelScroll 2s ease-in-out infinite;
}

/* ============================================================================
   DASHBOARD MOCKUP
   ============================================================================ */
.sp-hero-visual { position: relative; }

.sp-dashboard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.06) inset;
}

/* Header */
.sp-dash-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sp-dash-logo {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: #fff;
}
.sp-dash-logo-icon { color: var(--sp-gold); font-size: 14px; }
.sp-dash-header-right { display: flex; align-items: center; gap: 10px; }
.sp-dash-syncing { color: rgba(255,255,255,.4); display: flex; align-items: center; }
.sp-dash-syncing svg { width: 13px; height: 13px; animation: spSpin 3s linear infinite; }
@keyframes spSpin { to { transform: rotate(360deg); } }
.sp-dash-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sp-blue); color: #fff;
  font-size: 8px; font-weight: 700;
  display: grid; place-items: center;
}

/* Body */
.sp-dash-body { display: flex; }

/* Sidebar */
.sp-dash-sidebar {
  width: 100px; padding: 10px 0;
  border-right: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.sp-dash-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 6px; cursor: pointer;
  border-left: 2px solid transparent;
  transition: background .2s, border-color .2s;
}
.sp-dash-nav-item:hover { background: rgba(255,255,255,.04); }
.sp-dash-nav-item.is-active {
  background: rgba(27,110,194,.15);
  border-left-color: var(--sp-blue);
}
.sp-dash-nav-ic { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1; }
.sp-dash-nav-label { font-size: 8.5px; color: rgba(255,255,255,.35); font-family: var(--s2-font-mono); text-align: center; }
.sp-dash-nav-item.is-active .sp-dash-nav-ic,
.sp-dash-nav-item.is-active .sp-dash-nav-label { color: #67A4E0; }

/* Main */
.sp-dash-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 12px; }

/* KPI row */
.sp-dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.sp-kpi {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; padding: 8px 10px;
}
.sp-kpi-val { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2; }
.sp-kpi-lbl { font-size: 8.5px; color: rgba(255,255,255,.4); font-family: var(--s2-font-mono); margin: 2px 0; }
.sp-kpi-trend { font-size: 8px; font-weight: 600; font-family: var(--s2-font-mono); }
.sp-kpi-trend--up   { color: #34d399; }
.sp-kpi-trend--down { color: #f87171; }

/* Chart */
.sp-dash-chart { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 10px; }
.sp-chart-title { font-size: 9px; color: rgba(255,255,255,.45); font-family: var(--s2-font-mono); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.sp-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.sp-chart-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; height: 100%; justify-content: flex-end; }
.sp-chart-bar {
  width: 100%; background: linear-gradient(to top, var(--sp-blue), rgba(46,133,224,.4));
  border-radius: 3px 3px 0 0;
  height: var(--bh, 50%);
  animation: spBarGrow .8s ease-out forwards;
  transform-origin: bottom;
}
@keyframes spBarGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.sp-chart-month { font-size: 7.5px; color: rgba(255,255,255,.3); font-family: var(--s2-font-mono); }

/* Status */
.sp-dash-status { display: flex; align-items: center; gap: 6px; font-size: 8.5px; color: rgba(255,255,255,.35); font-family: var(--s2-font-mono); }
.sp-status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sp-status-dot--green { background: #34d399; box-shadow: 0 0 6px #34d399; animation: s2LivePulse 2s ease-in-out infinite; }
.sp-status-dot--blue  { background: #60a5fa; box-shadow: 0 0 6px #60a5fa; animation: s2LivePulse 2.4s ease-in-out infinite; }

/* Floating cards */
.sp-float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.7);
}
.sp-float-card strong { display: block; font-size: 11px; font-weight: 700; color: var(--s2-navy); }
.sp-float-card span   { font-size: 10px; color: var(--s2-text-2); display: block; }
.sp-float-card--1 { bottom: -20px; left: -20px; animation: s2GFloat 5s ease-in-out infinite alternate; }
.sp-float-card--2 { top: -14px; right: -14px; animation: s2GFloat 6s ease-in-out infinite alternate-reverse; }
.sp-float-ic {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.sp-float-ic--green { background: rgba(52,211,153,.15); color: #059669; }
.sp-float-ic--green svg { width: 14px; height: 14px; }
.sp-float-ic--blue  { background: rgba(27,110,194,.1); color: var(--sp-blue); font-size: 13px; }

/* ============================================================================
   CHALLENGES â€” glassmorphism cards
   ============================================================================ */
.sp-challenges-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.sp-challenge-card {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--sp-radius);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 0 rgba(255,255,255,.8) inset;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  position: relative; overflow: hidden;
}
.sp-challenge-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,110,194,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.sp-challenge-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.sp-challenge-card:hover::before { opacity: 1; }
.sp-challenge-ic {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 20px;
}
.sp-challenge-ic--blue   { background: rgba(27,110,194,.1); color: var(--sp-blue); }
.sp-challenge-ic--gold   { background: rgba(212,160,32,.12); color: #b48910; }
.sp-challenge-ic--teal   { background: rgba(13,148,136,.1); color: var(--sp-teal); }
.sp-challenge-ic--purple { background: rgba(124,58,237,.1); color: var(--sp-purple); }
.sp-challenge-title {
  font-size: 16px; font-weight: 700; color: var(--s2-navy);
  margin-bottom: 12px; line-height: 1.3;
}
.sp-challenge-desc { font-size: 14px; line-height: 1.65; color: var(--s2-text-2); }

/* ============================================================================
   SERVICES GRID
   ============================================================================ */
.sp-services-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--sp-radius);
  overflow: hidden;
}
.sp-service-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.sp-service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sp-blue), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.sp-service-card:hover { background: rgba(255,255,255,.04); }
.sp-service-card:hover::after { transform: scaleX(1); }
.sp-service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sp-service-num { font-family: var(--s2-font-mono); font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .08em; }
.sp-service-ic { color: var(--sp-blue); opacity: .8; }
.sp-service-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.sp-service-desc  { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.sp-service-arrow { color: var(--sp-blue); opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; display: block; }
.sp-service-card:hover .sp-service-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================================
   BENEFITS â€” compteurs
   ============================================================================ */
.sp-benefits { background: var(--s2-bg); }
.sp-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--s2-line);
  border: 1px solid var(--s2-line);
  border-radius: var(--sp-radius);
  overflow: hidden;
}
.sp-benefit {
  background: #fff; padding: 40px 32px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  transition: background .3s;
}
.sp-benefit:hover { background: var(--s2-blue-soft); }
.sp-benefit-ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 4px;
}
.sp-benefit-ic--blue   { background: rgba(27,110,194,.1); color: var(--sp-blue); }
.sp-benefit-ic--teal   { background: rgba(13,148,136,.1); color: var(--sp-teal); }
.sp-benefit-ic--green  { background: rgba(26,133,86,.1);  color: var(--sp-green); }
.sp-benefit-ic--gold   { background: rgba(212,160,32,.1); color: #b48910; }
.sp-benefit-ic--purple { background: rgba(124,58,237,.1); color: var(--sp-purple); }
.sp-benefit-ic--navy   { background: rgba(11,30,68,.08);  color: var(--s2-navy); }
.sp-benefit-val {
  font-size: clamp(36px, 4vw, 52px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1;
  color: var(--s2-navy);
  background: linear-gradient(135deg, var(--s2-navy) 0%, var(--sp-blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-benefit-lbl { font-size: 14px; line-height: 1.5; color: var(--s2-text-2); }

/* ============================================================================
   TIMELINE
   ============================================================================ */
.sp-timeline {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 40px;
}
.sp-timeline-item { display: flex; gap: 20px; }
.sp-timeline-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.sp-timeline-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(27,110,194,.15);
  border: 1px solid rgba(27,110,194,.3);
  color: #67A4E0;
  font-size: 12px; font-weight: 800;
  font-family: var(--s2-font-mono);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.sp-timeline-item:hover .sp-timeline-num {
  background: rgba(27,110,194,.3);
  border-color: rgba(27,110,194,.6);
}
.sp-timeline-line {
  width: 1px; flex: 1; min-height: 24px;
  background: linear-gradient(to bottom, rgba(27,110,194,.3), transparent);
  margin-top: 6px;
}
.sp-timeline-content { padding-top: 10px; }
.sp-timeline-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sp-timeline-desc  { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.5); }

/* ============================================================================
   WHY SINORFI
   ============================================================================ */
.sp-why-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start;
}
.sp-why-lede { font-size: 18px; line-height: 1.7; color: var(--s2-text); margin-bottom: 32px; }
.sp-why-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.sp-why-check {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--s2-text); font-weight: 500;
}
.sp-check-ic {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(27,110,194,.1); color: var(--sp-blue);
  display: grid; place-items: center; flex-shrink: 0;
}

/* Stats panel */
.sp-why-stats {
  background: var(--s2-navy);
  border-radius: var(--sp-radius);
  padding: 2px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  overflow: hidden;
}
.sp-why-stat {
  background: rgba(255,255,255,.04);
  padding: 28px 24px;
  transition: background .3s;
}
.sp-why-stat:hover { background: rgba(27,110,194,.12); }
.sp-why-stat-val {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800; color: #fff;
  letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 6px;
}
.sp-why-stat-unit { font-size: .6em; color: rgba(255,255,255,.5); font-weight: 500; }
.sp-why-stat-lbl  { font-size: 12px; color: rgba(255,255,255,.45); font-family: var(--s2-font-mono); letter-spacing: .04em; }

/* ============================================================================
   FAQ
   ============================================================================ */
.sp-faq-wrap { max-width: 780px; margin: 0 auto; }
.sp-faq { margin-top: 0; }
.sp-faq-item {
  border-bottom: 1px solid var(--s2-line);
}
.sp-faq-item:first-child { border-top: 1px solid var(--s2-line); }
.sp-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--s2-navy);
  line-height: 1.4; transition: color .2s;
}
.sp-faq-q:hover { color: var(--sp-blue); }
.sp-faq-chevron { flex-shrink: 0; color: var(--s2-text-3); transition: transform .35s cubic-bezier(.22,1,.36,1), color .2s; }
.sp-faq-chevron svg { width: 18px; height: 18px; display: block; }
.sp-faq-q[aria-expanded="true"] .sp-faq-chevron { transform: rotate(180deg); color: var(--sp-blue); }
.sp-faq-q[aria-expanded="true"] { color: var(--sp-blue); }

.sp-faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .3s;
}
.sp-faq-a.is-open { max-height: 400px; padding-bottom: 20px; }
.sp-faq-a p { font-size: 15px; line-height: 1.75; color: var(--s2-text-2); }

/* ============================================================================
   CTA FINAL
   ============================================================================ */
.sp-cta-final {
  position: relative; overflow: hidden;
  background: var(--sp-navy);
  padding: 100px 0;
}
.sp-cta-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.sp-cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
}
.sp-cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--s2-font-mono); font-size: 11px;
  color: rgba(255,255,255,.6); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); padding: 6px 16px;
  border-radius: 999px; letter-spacing: .1em; text-transform: uppercase;
}
.sp-cta-h2 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 700;
  color: #fff; letter-spacing: -.025em; line-height: 1.1;
  max-width: 700px;
}
.sp-cta-lede { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 540px; }
.sp-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.sp-cta-trust {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.4);
  font-family: var(--s2-font-mono); letter-spacing: .05em;
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,.06);
}

/* ============================================================================
   RESPONSIVE â€” SERVICE PAGES
   ============================================================================ */
@media (max-width: 1100px) {
  .sp-hero-inner          { grid-template-columns: 1fr; gap: 48px; }
  .sp-hero-visual         { display: none; }
  .sp-hero                { min-height: auto; padding: 120px 0 64px; }
  .sp-challenges-grid     { grid-template-columns: repeat(2, 1fr); }
  .sp-services-grid       { grid-template-columns: repeat(2, 1fr); }
  .sp-timeline            { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .sp-why-grid            { grid-template-columns: 1fr; gap: 48px; }
  .sp-benefits-grid       { grid-template-columns: repeat(2, 1fr); }
  .sp-dash-kpis           { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .sp-hero-h1             { font-size: clamp(28px, 7.5vw, 40px); }
  .sp-hero-lede           { font-size: 15px; }
  .sp-hero-actions        { flex-direction: column; }
  .sp-hero-actions .s2-btn { width: 100%; justify-content: center; }
  .sp-hero-trust          { display: none; }
  .sp-section-head        { margin-bottom: 40px; }
  .sp-h2                  { font-size: clamp(24px, 6.5vw, 34px); }
  .sp-challenges-grid     { grid-template-columns: 1fr; }
  .sp-services-grid       { grid-template-columns: 1fr; }
  .sp-timeline            { grid-template-columns: 1fr; gap: 32px; }
  .sp-benefits-grid       { grid-template-columns: 1fr; }
  .sp-why-stats           { grid-template-columns: repeat(2, 1fr); }
  .sp-cta-actions         { flex-direction: column; align-items: stretch; }
  .sp-cta-actions .s2-btn { justify-content: center; }
  .sp-faq-q               { font-size: 14px; }
}

/* ============================================================================
   MEGA MENU â€” Premium enterprise navigation (Linear / Vercel / IBM style)
   PrÃ©fixe : s2-nav-*, s2-mega-*, s2-drop-*, s2-sol-*, s2-res-*, s2-mob-*
   ============================================================================ */

/* â”€â”€ Navbar base override â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-navbar { overflow: visible; }

/* â”€â”€ Nav list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.s2-nav-item { position: relative; }

/* â”€â”€ Nav button (trigger) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color .14s ease, background .14s ease;
  white-space: nowrap;
  line-height: 1;
  font-family: inherit;
}
.s2-nav-btn:hover,
.s2-nav-item.s2-is-open > .s2-nav-btn {
  color: #111827;
  background: rgba(0,0,0,.045);
}
.s2-nav-chevron {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform .2s cubic-bezier(.4,0,.2,1), color .14s;
}
.s2-nav-btn:hover .s2-nav-chevron { color: #6b7280; }
.s2-nav-item.s2-is-open > .s2-nav-btn .s2-nav-chevron { transform: rotate(180deg); color: #6b7280; }

/* â”€â”€ Mega panel â€” base (position:fixed, spans viewport width) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mega {
  position: fixed;
  top: 88px;           /* overridden by JS on resize/scroll */
  left: 0;
  right: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity .2s cubic-bezier(.4,0,.2,1),
    transform .2s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.s2-mega.s2-mega--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* â”€â”€ Inner container (constrained to design width) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mega-inner {
  max-width: var(--s2-container, 1280px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-top: 2px solid #e5e7eb;
  border-radius: 0 0 16px 16px;
  box-shadow:
    0 24px 64px rgba(0,0,0,.09),
    0 6px 20px rgba(0,0,0,.05);
  overflow: hidden;
  padding: 28px 32px 0;
}

/* â”€â”€ Wide services mega (4-col) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mega--wide .s2-mega-inner { padding-bottom: 0; }
.s2-mega-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.s2-mega-col {
  padding: 0 20px 24px;
  border-right: 1px solid rgba(0,0,0,.055);
}
.s2-mega-col:first-child { padding-left: 0; }
.s2-mega-col:last-child  { padding-right: 0; border-right: none; }

.s2-mega-col-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9ca3af;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.055);
}
.s2-col-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dc, #2563eb);
  flex-shrink: 0;
}
.s2-mega-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }

/* â”€â”€ Mega item (icon + title + desc) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  text-decoration: none;
  transition: background .14s ease, transform .14s ease;
}
.s2-mega-item:hover {
  background: rgba(37,99,235,.05);
  transform: translateX(3px);
}
.s2-mega-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ib, rgba(37,99,235,.1));
  color: var(--ic, #2563eb);
  flex-shrink: 0;
}
.s2-mega-item-body { display: flex; flex-direction: column; gap: 1px; }
.s2-mega-item-title {
  font-size: 13px;
  font-weight: 550;
  color: #111827;
  line-height: 1.25;
}
.s2-mega-item-desc {
  font-size: 11.5px;
  color: #9ca3af;
  line-height: 1.25;
}

/* â”€â”€ Mega footer bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mega-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  margin-top: 4px;
  border-top: 1px solid rgba(0,0,0,.055);
}
.s2-mega-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: gap .15s ease, color .14s;
}
.s2-mega-footer-cta:hover { gap: 10px; color: #1d4ed8; }
.s2-mega-footer-link {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color .14s;
}
.s2-mega-footer-link:hover { color: #111827; }

/* â”€â”€ Solutions mega â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mega--solutions .s2-mega-inner { padding: 24px 32px 0; }
.s2-mega-sol-head { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.055); }
.s2-mega-sol-kicker {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #2563eb;
  margin-bottom: 3px;
}
.s2-mega-sol-tagline { font-size: 13px; color: #6b7280; margin: 0; }

.s2-mega-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 4px;
}
.s2-sol-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.s2-sol-card:hover {
  background: #f8faff;
  border-color: rgba(37,99,235,.12);
  box-shadow: 0 2px 12px rgba(37,99,235,.06);
}
.s2-sol-card--ai {
  border-color: rgba(245,158,11,.18);
  background: rgba(255,251,235,.5);
}
.s2-sol-card--ai:hover {
  background: #fffbeb;
  border-color: rgba(245,158,11,.35);
  box-shadow: 0 2px 12px rgba(245,158,11,.1);
}
.s2-sol-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--sc);
  color: var(--ic);
  flex-shrink: 0;
}
.s2-sol-body { flex: 1; min-width: 0; }
.s2-sol-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}
.s2-sol-sub {
  display: block;
  font-size: 11.5px;
  color: #9ca3af;
  margin-top: 2px;
}
.s2-ai-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px 5px;
  border-radius: 4px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.4;
}
.s2-mega-sol-arrow {
  color: #d1d5db;
  flex-shrink: 0;
  transition: color .14s, transform .14s;
}
.s2-sol-card:hover .s2-mega-sol-arrow { color: #2563eb; transform: translateX(3px); }

/* â”€â”€ Ressources mega â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mega--ressources .s2-mega-inner { padding: 22px 32px 22px; }
.s2-mega-res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.s2-res-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 13px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .14s;
}
.s2-res-card:hover { background: rgba(0,0,0,.03); }
.s2-res-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(0,0,0,.04);
  color: var(--rc, #2563eb);
  flex-shrink: 0;
  transition: background .14s;
}
.s2-res-card:hover .s2-res-icon { background: rgba(0,0,0,.07); }
.s2-res-body { flex: 1; }
.s2-res-title { display: block; font-size: 13px; font-weight: 600; color: #111827; margin-bottom: 3px; }
.s2-res-desc  { font-size: 11.5px; color: #9ca3af; }

/* â”€â”€ Dropdown small (secteurs / Ã  propos) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: -8px;
  min-width: 226px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.10), 0 4px 14px rgba(0,0,0,.055);
  padding: 6px;
  z-index: 201;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-7px) scale(.98);
  transform-origin: top left;
  transition:
    opacity .18s cubic-bezier(.4,0,.2,1),
    transform .18s cubic-bezier(.4,0,.2,1);
}
.s2-nav-item.s2-is-open .s2-drop {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.s2-drop-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background .12s, color .12s, padding-left .12s ease;
}
.s2-drop-item:hover { background: rgba(0,0,0,.045); color: #111827; padding-left: 14px; }
.s2-drop-item--cta  { color: #2563eb; font-weight: 600; }
.s2-drop-item--cta:hover { background: rgba(37,99,235,.06); color: #1d4ed8; }
.s2-drop-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  flex-shrink: 0;
  transition: color .12s;
}
.s2-drop-item:hover .s2-drop-icon,
.s2-drop-item--cta  .s2-drop-icon { color: currentColor; }
.s2-drop-sep { height: 1px; background: rgba(0,0,0,.06); margin: 5px 4px; }

/* â”€â”€ Mega backdrop â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mega-backdrop {
  position: fixed;
  top: 88px;           /* overridden by JS */
  left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.s2-mega-backdrop.s2-bd--on {
  opacity: 1;
  pointer-events: auto;
}

/* â”€â”€ Burger override â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-burger { padding: 8px; }
.s2-burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform .26s cubic-bezier(.4,0,.2,1), opacity .18s, width .18s;
  transform-origin: center;
}
.s2-burger[aria-expanded="true"] .s2-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.s2-burger[aria-expanded="true"] .s2-burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.s2-burger[aria-expanded="true"] .s2-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â”€â”€ Mobile menu â€” fullscreen slide-in â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-mobile-menu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999 !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border-top: none !important;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
  visibility: hidden;
}
/* override old aria-hidden rule */
.s2-mobile-menu[aria-hidden="false"],
.s2-mobile-menu.s2-mob--open {
  transform: translateX(0) !important;
  visibility: visible !important;
}

.s2-mob-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  flex-shrink: 0;
}
.s2-mob-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0,0,0,.045);
  border: none;
  cursor: pointer;
  color: #374151;
  transition: background .14s;
  font-family: inherit;
}
.s2-mob-close:hover { background: rgba(0,0,0,.08); }

.s2-mob-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 16px;
}
.s2-mob-nav { display: flex; flex-direction: column; }

/* Mobile accordion sections */
.s2-mob-sec { border-bottom: 1px solid rgba(0,0,0,.06); }
.s2-mob-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color .12s;
}
.s2-mob-trigger:hover,
.s2-mob-trigger[aria-expanded="true"] { color: #2563eb; }
.s2-mob-chev {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.s2-mob-trigger[aria-expanded="true"] .s2-mob-chev { transform: rotate(180deg); }

.s2-mob-sub {
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.s2-mob-sub[hidden] { display: none; }
.s2-mob-sub.s2-sub--open {
  display: flex !important;
  padding-bottom: 12px;
}
.s2-mob-group { margin-bottom: 6px; }
.s2-mob-glabel {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #9ca3af;
  padding: 8px 8px 4px;
}
.s2-mob-link {
  display: block;
  padding: 9px 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  border-radius: 7px;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.s2-mob-link:hover { background: rgba(37,99,235,.06); color: #2563eb; }

.s2-mob-ft {
  padding: 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  flex-shrink: 0;
}
.s2-mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: var(--s2-navy);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s;
}
.s2-mob-cta:hover { background: #1e3a8a; }

/* â”€â”€ Desktop vs Mobile visibility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 1025px) {
  .s2-nav-list  { display: flex; }
  .s2-nav-links-wrap { display: none !important; }
  .s2-burger    { display: none !important; }
}
@media (max-width: 1024px) {
  .s2-nav-list  { display: none !important; }
  .s2-nav-cta   { display: none; }
  .s2-burger    { display: flex !important; flex-direction: column; gap: 5px; }
}
@media (max-width: 768px) {
  .s2-nav-inner { height: 64px; }
}

/* â”€â”€ Transparent navbar variant â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s2-navbar--transparent .s2-nav-btn           { color: rgba(255,255,255,.85); }
.s2-navbar--transparent .s2-nav-btn:hover,
.s2-navbar--transparent .s2-nav-item.s2-is-open > .s2-nav-btn { background: rgba(255,255,255,.1); color: #fff; }
.s2-navbar--transparent .s2-nav-chevron       { color: rgba(255,255,255,.5); }
.s2-navbar--transparent .s2-nav-cta           { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.s2-navbar--transparent .s2-nav-cta:hover     { background: rgba(255,255,255,.22); }
.s2-navbar--transparent .s2-burger-bar        { background: rgba(255,255,255,.9); }
.s2-navbar--transparent .s2-lang-switch       { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); }

/* ============================================================================
   CONTACT MAP â€” Section localisation interactive (Leaflet + CartoDB Positron)
   PrÃ©fixe : cmap-*
   ============================================================================ */

/* â”€â”€ Section container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cmap-section {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #e8edf3;       /* fallback avant chargement tiles */
}

/* â”€â”€ Map background (Leaflet target) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cmap-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Reveal animation: start slightly scaled + faded */
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .6s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.cmap-section.cmap-visible .cmap-map-bg {
  opacity: 1;
  transform: scale(1);
}

/* â”€â”€ Left-to-right gradient overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cmap-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.92) 36%,
    rgba(255,255,255,.38) 58%,
    transparent 72%
  );
  pointer-events: none;
}

/* â”€â”€ Layout wrapper (constrains to container width) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cmap-layout {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--s2-container, 1280px);
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* â”€â”€ Floating info card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cmap-card {
  width: 370px;
  flex-shrink: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.13),
    0 6px 20px rgba(0,0,0,.07),
    inset 0 1px 0 rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.07);
  /* Reveal: slide from left */
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1) .25s,
              transform .55s cubic-bezier(.22,1,.36,1) .25s;
}
.cmap-section.cmap-visible .cmap-card {
  opacity: 1;
  transform: translateX(0);
}

/* Eyebrow */
.cmap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #2563eb;
  margin-bottom: 12px;
}
.cmap-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
  flex-shrink: 0;
}

/* City heading */
.cmap-city {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--s2-navy, #060e24);
  line-height: 1.05;
  margin-bottom: 14px;
}
.cmap-city sup {
  font-size: .45em;
  vertical-align: super;
  letter-spacing: 0;
}

/* Address */
.cmap-address {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13.5px;
  color: #374151;
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.45;
}
.cmap-address svg { flex-shrink: 0; margin-top: 2px; color: #9ca3af; }

/* Details list */
.cmap-details {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.cmap-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #374151;
}
.cmap-details a {
  color: inherit;
  transition: color .12s;
}
.cmap-details a:hover { color: #2563eb; }
.cmap-detail-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6b7280;
}

/* Actions */
.cmap-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cmap-btn-dir { gap: 7px; }

/* Badge */
.cmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 5px 12px;
}
.cmap-badge svg { color: #2563eb; }

/* â”€â”€ Custom Leaflet marker â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cmap-pin {
  position: relative;
  width: 44px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cmap-pin-ring {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(27,110,194,.18);
  top: 0;
  animation: cmap-pulse 2.4s ease-out infinite;
}
.cmap-pin-body {
  width: 40px;
  height: 40px;
  background: var(--s2-navy, #060e24);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(6,14,36,.4), 0 2px 6px rgba(6,14,36,.2);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cmap-pin-body svg {
  transform: rotate(45deg);
}
.cmap-pin-tail {
  width: 8px;
  height: 10px;
  background: var(--s2-navy, #060e24);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin-top: -2px;
  position: relative;
  z-index: 0;
}
.cmap-pin:hover .cmap-pin-body {
  transform: rotate(-45deg) translateY(-3px);
  box-shadow: 0 10px 28px rgba(6,14,36,.5);
}

@keyframes cmap-pulse {
  0%   { transform: scale(.7); opacity: .6; }
  60%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* â”€â”€ Leaflet popup override â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cmap-leaflet-popup .leaflet-popup-content-wrapper {
  background: var(--s2-navy, #060e24);
  border: none;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  padding: 0;
}
.cmap-leaflet-popup .leaflet-popup-tip {
  background: var(--s2-navy, #060e24);
}
.cmap-leaflet-popup .leaflet-popup-content { margin: 0; }
.cmap-popup {
  padding: 14px 16px;
  color: #fff;
  min-width: 160px;
}
.cmap-popup strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.cmap-popup p {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin: 0 0 10px;
  line-height: 1.5;
}
.cmap-popup-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #60a5fa;
  text-decoration: none;
  transition: color .12s;
}
.cmap-popup-link:hover { color: #93c5fd; }

/* â”€â”€ Leaflet zoom control override â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.12) !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.leaflet-control-zoom a {
  background: #fff !important;
  border: none !important;
  color: #374151 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  transition: background .12s !important;
}
.leaflet-control-zoom a:hover { background: #f3f4f6 !important; color: #111 !important; }
.leaflet-control-zoom-in  { border-bottom: 1px solid #f3f4f6 !important; }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .cmap-card { width: 340px; padding: 32px 28px; }
  .cmap-city { font-size: 30px; }
}

@media (max-width: 768px) {
  .cmap-section {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .cmap-map-bg {
    position: relative !important;
    inset: auto !important;
    height: 280px;
    opacity: 1 !important;
    transform: none !important;
  }
  .cmap-gradient { display: none; }
  .cmap-layout {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    transform: none !important;
    max-width: 100% !important;
    padding: 32px 20px;
    background: #fff;
  }
  .cmap-card {
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .cmap-actions { flex-direction: column; }
  .cmap-actions .s2-btn { width: 100%; justify-content: center; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CAS CLIENTS â€” Archive grid & single KPIs
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Archive grid */
.s2-cas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* Card */
.s2-cas-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--s2-border, #e5e7eb);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.s2-cas-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  transform: translateY(-3px);
}

/* Thumbnail */
.s2-cas-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--s2-bg-alt, #f3f4f6);
}
.s2-cas-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.s2-cas-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 24px;
  flex: 1;
}
.s2-cas-card-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.s2-cas-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--s2-navy, #0c1b33);
  margin: 0;
}
.s2-cas-card-excerpt {
  font-size: .875rem;
  color: var(--s2-text-muted, #6b7280);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.s2-cas-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--s2-blue, #1d6aff);
  margin-top: 4px;
}

/* Tags on single hero */
.s2-cas-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

/* KPI band on single */
.s2-cas-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
  padding: 20px 0;
}
.s2-cas-kpi-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--s2-blue, #1d6aff);
  line-height: 1;
}
.s2-cas-kpi-label {
  font-size: .875rem;
  color: var(--s2-text-muted, #6b7280);
  margin-top: 8px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SEARCH RESULTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.s2-search-results { display: flex; flex-direction: column; gap: 0; }
.s2-search-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--s2-border, #e5e7eb);
}
.s2-search-item:last-child { border-bottom: none; }
.s2-search-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.s2-search-item-date { font-size: .8125rem; color: var(--s2-text-muted, #6b7280); }
.s2-search-item-title { font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; }
.s2-search-item-title a { color: var(--s2-navy, #0c1b33); text-decoration: none; }
.s2-search-item-title a:hover { color: var(--s2-blue, #1d6aff); }
.s2-search-item-excerpt { font-size: .9rem; color: var(--s2-text-muted, #6b7280); margin: 0 0 10px; }
.s2-search-item-link { font-size: .875rem; font-weight: 600; color: var(--s2-blue, #1d6aff); text-decoration: none; }
.s2-search-empty { max-width: 560px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT FORM â€” messages success / error
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.s2-form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 20px 22px;
  color: #166534;
}
.s2-form-success p { margin: 0; font-size: .9375rem; }
.s2-form-success svg { flex-shrink: 0; margin-top: 2px; }
.s2-form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 14px 18px;
  color: #991b1b;
  font-size: .875rem;
  margin-bottom: 16px;
}

/* Tag outline variant */
.s2-tag--outline {
  background: transparent;
  border: 1px solid currentColor;
  color: var(--s2-text-muted, #6b7280);
}

/* ================================================================
   HOMEPAGE PREMIUM — redesign tokens & components
   ================================================================ */
:root {
  --hp-ink:      #050E1F;
  --hp-dark:     #0B1E44;
  --hp-card:     #0D2050;
  --hp-card-hov: #122560;
  --hp-border:   rgba(255,255,255,.08);
  --hp-border-hov: rgba(27,110,194,.5);
  --hp-blue:     #1B6EC2;
  --hp-blue-lt:  #4A90D9;
  --hp-em:       #D4A020;
  --hp-em-lt:    #E8B835;
  --hp-text:     #F1F5F9;
  --hp-muted:    #94A3B8;
  --hp-light:    #F0F5FF;
  --hp-light-alt:#E8EFFE;
  --hp-on-light: #0B1E44;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  min-height: 100vh;
  background: #F3F4FD;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.hp-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .15;
}
/* ── BACKGROUND BLOBS ──────────────────────────────────────── */
.hp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.hp-blob--1 {
  width: 720px;
  height: 640px;
  background: radial-gradient(circle at 40% 40%,
    rgba(165,162,245,.68) 0%,
    rgba(180,175,255,.28) 55%,
    transparent 100%
  );
  top: -220px;
  left: -200px;
  animation: hp-blob-a 24s ease-in-out infinite;
}
.hp-blob--2 {
  width: 900px;
  height: 820px;
  background: radial-gradient(circle at 55% 50%,
    rgba(148,186,252,.58) 0%,
    rgba(170,200,255,.22) 60%,
    transparent 100%
  );
  bottom: -350px;
  right: -260px;
  animation: hp-blob-b 30s ease-in-out infinite;
}
.hp-blob--3 {
  width: 500px;
  height: 450px;
  background: radial-gradient(circle,
    rgba(215,200,255,.52) 0%,
    rgba(200,185,255,.18) 60%,
    transparent 100%
  );
  top: 8%;
  right: 8%;
  animation: hp-blob-c 19s ease-in-out infinite;
}
.hp-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80,90,160,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
@keyframes hp-blob-a {
  0%   { transform: translate(0,0) scale(1); border-radius: 50%; }
  25%  { transform: translate(40px, 35px) scale(1.06); border-radius: 56% 44% 60% 40%; }
  50%  { transform: translate(65px, 50px) scale(1.10); border-radius: 62% 38% 55% 45%; }
  75%  { transform: translate(30px, 20px) scale(1.04); border-radius: 44% 56% 48% 52%; }
  100% { transform: translate(0,0) scale(1); border-radius: 50%; }
}
@keyframes hp-blob-b {
  0%   { transform: translate(0,0) scale(1); border-radius: 50%; }
  30%  { transform: translate(-55px,-40px) scale(1.05); border-radius: 58% 42% 64% 36%; }
  60%  { transform: translate(-75px,-65px) scale(1.09); border-radius: 42% 58% 38% 62%; }
  100% { transform: translate(0,0) scale(1); border-radius: 50%; }
}
@keyframes hp-blob-c {
  0%   { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 50%; }
  40%  { transform: translate(30px,-40px) scale(.92) rotate(8deg); border-radius: 55% 45% 42% 58%; }
  70%  { transform: translate(50px,-60px) scale(.88) rotate(15deg); border-radius: 45% 55% 58% 42%; }
  100% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 50%; }
}

.hp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hp-em);
  margin-bottom: 24px;
}
.hp-pip {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-em);
  box-shadow: 0 0 8px var(--hp-em);
  animation: hp-pip-pulse 2s ease-in-out infinite;
}
@keyframes hp-pip-pulse {
  0%,100% { opacity:1; box-shadow:0 0 8px var(--hp-em); }
  50%      { opacity:.5; box-shadow:0 0 16px var(--hp-em); }
}

.hp-hero-h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--hp-text);
  margin-bottom: 24px;
}
.hp-hero-h1-static { display: block; }
.hp-hero-rotator {
  display: block;
  color: var(--hp-em);
  overflow: hidden;
  line-height: 1.15;
  height: 1.15em;
}
.hp-rotator-track {
  display: block;
  animation: hp-rotate 8s cubic-bezier(.4,0,.2,1) infinite;
}
.hp-rotator-word {
  display: block;
  line-height: 1.15;
  height: 1.15em;
  white-space: nowrap;
}
@keyframes hp-rotate {
  0%,20%   { transform: translateY(0); }
  25%,45%  { transform: translateY(-1.15em); }
  50%,70%  { transform: translateY(-2.3em); }
  75%,95%  { transform: translateY(-3.45em); }
  100%     { transform: translateY(0); }
}

.hp-hero-lede {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--hp-muted);
  margin-bottom: 40px;
  max-width: 520px;
}
.hp-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hp-ghost-btn {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.hp-ghost-btn:hover { color: #fff; border-color: #fff; }
.hp-ghost-btn--sm { font-size: .875rem; }

/* ── TRUST ROW ──────────────────────────────────────────────── */
.hp-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 32px;
}
.hp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(148,163,184,.85);
  font-family: 'IBM Plex Mono', monospace;
}
.hp-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-blue);
  box-shadow: 0 0 6px rgba(27,110,194,.8);
  flex-shrink: 0;
}
.hp-trust-dot--gold { background: var(--hp-em); box-shadow: 0 0 6px rgba(212,160,32,.8); }
.hp-trust-sep { color: rgba(148,163,184,.3); user-select: none; font-size: .9rem; }

/* ── HERO VISUAL ─────────────────────────────────────────────── */
.hp-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── ORBITAL STAGE ───────────────────────────────────────────── */
.hp-orb-stage {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

/* ── ATMOSPHERIC HALOS ───────────────────────────────────────── */
.hp-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hp-halo--a {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(27,110,194,.16) 0%, transparent 58%);
  animation: hp-halo-pulse 6s ease-in-out infinite;
}
.hp-halo--b {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(27,110,194,.24) 0%, transparent 55%);
  animation: hp-halo-pulse 4.5s ease-in-out infinite;
  animation-delay: -1.5s;
}
.hp-halo--c {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(27,110,194,.34) 0%, transparent 60%);
  animation: hp-halo-pulse 3.5s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes hp-halo-pulse {
  0%,100% { opacity: .65; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.08); }
}

/* ── ROTATING LIGHT BEAMS ────────────────────────────────────── */
.hp-beams {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  pointer-events: none;
}
.hp-beam {
  position: absolute;
  width: 1px;
  height: 260px;
  top: -260px;
  left: -0.5px;
  transform-origin: bottom center;
  background: linear-gradient(to top,
    rgba(27,110,194,.5),
    rgba(0,196,255,.22) 55%,
    transparent
  );
}
.hp-beam--1 { animation: hp-beam-rot 22s linear infinite; }
.hp-beam--2 { animation: hp-beam-rot 22s linear infinite; animation-delay: -7.3s; opacity: .55; }
.hp-beam--3 { animation: hp-beam-rot 22s linear infinite; animation-delay: -14.6s; opacity: .3; height: 190px; top: -190px; }
.hp-beam--4 { animation: hp-beam-rot 22s linear infinite; animation-delay: -11s; opacity: .18; height: 330px; top: -330px; background: linear-gradient(to top, rgba(212,160,32,.28), transparent); }
@keyframes hp-beam-rot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── ORBITAL RINGS ───────────────────────────────────────────── */
.hp-orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(27,110,194,.35);
}
.hp-orb-ring--1 {
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  transform: rotateX(72deg) rotateZ(18deg);
  border-color: rgba(27,110,194,.42);
  box-shadow: 0 0 14px rgba(27,110,194,.16);
}
.hp-orb-ring--2 {
  width: 290px;
  height: 290px;
  margin: -145px 0 0 -145px;
  transform: rotateX(65deg) rotateZ(-28deg);
  border-color: rgba(212,160,32,.32);
  box-shadow: 0 0 12px rgba(212,160,32,.12);
}
.hp-orb-ring--3 {
  width: 205px;
  height: 205px;
  margin: -102px 0 0 -102px;
  transform: rotateX(78deg) rotateZ(52deg);
  border-color: rgba(255,255,255,.2);
}

.hp-orb-run {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
}
.hp-orb-ring--1 .hp-orb-run { animation: hp-orb-run 14s  linear infinite; }
.hp-orb-ring--2 .hp-orb-run { animation: hp-orb-run 9s   linear infinite; }
.hp-orb-ring--3 .hp-orb-run { animation: hp-orb-run 5.5s linear infinite; }
.hp-orb-run--rev             { animation-direction: reverse !important; }
@keyframes hp-orb-run {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hp-orb-node {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-orb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hp-orb-dot--cyan {
  background: #00C4FF;
  box-shadow: 0 0 0 3px rgba(0,196,255,.2), 0 0 10px rgba(0,196,255,.95), 0 0 22px rgba(0,196,255,.45);
}
.hp-orb-dot--gold {
  background: #D4A020;
  box-shadow: 0 0 0 3px rgba(212,160,32,.2), 0 0 10px rgba(212,160,32,.95), 0 0 22px rgba(212,160,32,.45);
}
.hp-orb-dot--white {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 2px rgba(255,255,255,.15), 0 0 8px rgba(255,255,255,.85);
}

/* ── CENTRAL SPHERE ──────────────────────────────────────────── */
.hp-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 180px;
  height: 180px;
}
.hp-sphere-glow {
  position: absolute;
  inset: -54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,110,194,.42) 0%, transparent 62%);
  animation: hp-sphere-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hp-sphere-pulse {
  0%,100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.1); }
}
.hp-sphere-surface {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 33% 28%,
    #AADEFF 0%,
    #5DB8F5 5%,
    #2B82E5 13%,
    #145DB5 26%,
    #0A3068 50%,
    #061832 75%,
    #030F20 100%
  );
  box-shadow:
    0 0 0 1px rgba(170,222,255,.1),
    0 0 44px rgba(27,110,194,.72),
    0 0 88px rgba(27,110,194,.36),
    0 0 180px rgba(27,110,194,.14);
  overflow: hidden;
}
.hp-sphere-spec {
  position: absolute;
  width: 56px;
  height: 38px;
  top: 18%;
  left: 21%;
  background: radial-gradient(ellipse, rgba(255,255,255,.78) 0%, rgba(255,255,255,.32) 38%, transparent 70%);
  border-radius: 50%;
  filter: blur(5px);
  animation: hp-spec-float 5s ease-in-out infinite;
}
@keyframes hp-spec-float {
  0%,100% { opacity: .82; transform: scale(1) translate(0,0); }
  50%      { opacity: 1;   transform: scale(1.06) translate(2px,-2px); }
}
.hp-sphere-rim {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 72%, rgba(0,196,255,.22) 0%, transparent 44%),
    radial-gradient(circle at 28% 80%, rgba(27,110,194,.16) 0%, transparent 38%);
}

/* ── FLOATING DATA NODES ─────────────────────────────────────── */
.hp-float-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4,11,26,.78);
  border: 1px solid rgba(27,110,194,.26);
  border-radius: 100px;
  padding: 7px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.05);
  white-space: nowrap;
  z-index: 10;
}
.hp-float-node--1 { top: 7%;   right: 2%;  animation: hp-fn-float-a 7s ease-in-out infinite; }
.hp-float-node--2 { top: 50%;  left: 0;    animation: hp-fn-float-b 8s ease-in-out infinite; animation-delay: -2.5s; }
.hp-float-node--3 { bottom: 9%; right: 4%;  animation: hp-fn-float-c 6s ease-in-out infinite; animation-delay: -4.5s; }
@keyframes hp-fn-float-a {
  0%,100% { transform: translateY(0) translateX(0); }
  38%      { transform: translateY(-9px) translateX(4px); }
  72%      { transform: translateY(5px) translateX(-3px); }
}
@keyframes hp-fn-float-b {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}
@keyframes hp-fn-float-c {
  0%,100% { transform: translateY(0) translateX(0); }
  42%      { transform: translateY(7px) translateX(-5px); }
  78%      { transform: translateY(-5px) translateX(3px); }
}
.hp-fn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hp-blue);
  box-shadow: 0 0 7px rgba(27,110,194,.9);
  flex-shrink: 0;
  animation: hp-fn-blink 2.8s ease-in-out infinite;
}
.hp-fn-dot--gold { background: var(--hp-em); box-shadow: 0 0 7px rgba(212,160,32,.9); }
@keyframes hp-fn-blink {
  0%,100% { box-shadow: 0 0 7px rgba(27,110,194,.9); }
  50%      { box-shadow: 0 0 14px rgba(27,110,194,1), 0 0 26px rgba(27,110,194,.5); }
}
.hp-fn-label {
  font-size: .7rem;
  font-family: 'IBM Plex Mono', monospace;
  color: rgba(148,163,184,.9);
  letter-spacing: .04em;
}

@media (prefers-reduced-motion: reduce) {
  .hp-halo--a, .hp-halo--b, .hp-halo--c { animation: none; }
  .hp-beam--1, .hp-beam--2, .hp-beam--3, .hp-beam--4 { animation: none; }
  .hp-orb-run { animation: none; }
  .hp-sphere-glow, .hp-sphere-spec { animation: none; }
  .hp-float-node { animation: none; }
  .hp-fn-dot { animation: none; }
  .hp-blob--1, .hp-blob--2, .hp-blob--3 { animation: none; }
  .hp-pip { animation: none; }
}

.hp-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hp-scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.hp-scroll-wheel {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255,255,255,.5);
  animation: hp-scroll-anim 1.8s ease-in-out infinite;
}
@keyframes hp-scroll-anim {
  0%   { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(10px); }
}

/* ── LIGHT HERO OVERRIDES ────────────────────────────────────── */
.hp-hero .hp-hero-h1               { color: #0A1A3C; }
.hp-hero .hp-hero-lede             { color: #3B5070; }
.hp-hero .hp-ghost-btn             { color: rgba(10,26,60,.62); border-bottom-color: rgba(10,26,60,.22); }
.hp-hero .hp-ghost-btn:hover       { color: #0A1A3C; border-bottom-color: rgba(10,26,60,.7); }
.hp-hero .hp-trust-item            { color: rgba(55,75,115,.75); }
.hp-hero .hp-trust-sep             { color: rgba(55,75,115,.3); }
.hp-scroll-mouse                   { border-color: rgba(10,26,60,.22); }
.hp-scroll-wheel                   { background: rgba(10,26,60,.35); }
.hp-orb-ring--3                    { border-color: rgba(100,130,190,.3); }
.hp-sphere-surface {
  background: radial-gradient(circle at 33% 28%,
    rgba(255,255,255,.95) 0%,
    rgba(210,225,255,.82) 7%,
    rgba(155,188,250,.66) 18%,
    rgba(95,142,235,.52) 35%,
    rgba(60,108,210,.36) 55%,
    rgba(38,80,185,.22) 75%,
    rgba(22,58,160,.12) 100%
  );
  box-shadow:
    0 0 0 1px rgba(100,150,255,.18),
    0 0 44px rgba(80,130,220,.35),
    0 0 88px rgba(80,130,220,.18),
    0 0 180px rgba(80,130,220,.08);
}
.hp-sphere-glow {
  background: radial-gradient(circle, rgba(100,140,230,.26) 0%, transparent 62%);
}
.hp-float-node {
  background: rgba(255,255,255,.78);
  border-color: rgba(100,130,200,.22);
  box-shadow: 0 8px 28px rgba(80,100,160,.18), inset 0 1px 0 rgba(255,255,255,.9);
}
.hp-fn-label { color: rgba(25,45,85,.85); }

/* ── CLIENTS ────────────────────────────────────────────────── */
.hp-clients { background: var(--hp-light); }
.hp-clients-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 28px;
}
.hp-clients .s2-client-item img { filter: grayscale(1) brightness(.5); opacity: .7; transition: filter .3s, opacity .3s; }
.hp-clients .s2-client-item:hover img { filter: grayscale(0) brightness(1); opacity: 1; }

/* ── SECTION HEADERS ────────────────────────────────────────── */
.hp-sect-head { max-width: 640px; margin-bottom: 56px; }
.hp-sect-head--center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hp-blue-lt);
  margin-bottom: 16px;
}
.hp-eyebrow--center { display: block; text-align: center; }
.hp-eyebrow--light  { color: var(--hp-em-lt); }
.hp-h2 {
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--hp-on-light);
  margin-bottom: 16px;
}
.hp-h2--center { text-align: center; }
.hp-h2--light  { color: var(--hp-text); }
.hp-lede {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}
.hp-lede--center { text-align: center; }
.hp-lede--muted  { color: var(--hp-muted); }
.hp-sect-footer { text-align: center; margin-top: 48px; }

/* ── SOLUTIONS ECOSYSTEM ────────────────────────────────────── */
.hp-solutions {
  padding: 100px 0;
  background: var(--hp-light);
}
.hp-sol-ecosystem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
  align-items: start;
}
.hp-sol-featured {
  grid-row: span 2;
  background: linear-gradient(145deg, #091830 0%, #0D2248 100%);
  border: 1px solid rgba(27,110,194,.35);
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.hp-sol-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,110,194,.7), transparent);
}
.hp-sol-featured:hover {
  border-color: rgba(27,110,194,.8);
  box-shadow: 0 8px 48px rgba(27,110,194,.25);
}
.hp-sol-featured-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hp-em);
  background: rgba(212,160,32,.12);
  border: 1px solid rgba(212,160,32,.35);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 32px;
  align-self: flex-start;
}
.hp-sol-featured-ic {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(37,99,235,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-blue-lt);
  margin-bottom: 24px;
}
.hp-sol-featured-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin-bottom: 10px;
}
.hp-sol-featured-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hp-sol-featured-desc {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--hp-muted);
  margin-bottom: 28px;
  flex: 1;
}
.hp-sol-featured-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-sol-featured-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(241,245,249,.75);
}
.hp-sol-featured-feats li svg { color: var(--hp-em); flex-shrink: 0; }
.hp-sol-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--hp-blue-lt);
  text-decoration: none;
  align-self: flex-start;
  padding: 12px 22px;
  border: 1px solid rgba(27,110,194,.4);
  border-radius: 10px;
  transition: background .2s, border-color .2s, color .2s;
}
.hp-sol-featured-cta:hover {
  background: rgba(27,110,194,.18);
  border-color: var(--hp-blue-lt);
  color: #fff;
}

.hp-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hp-sol-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.hp-sol-card:hover {
  border-color: var(--hp-blue);
  box-shadow: 0 4px 24px rgba(27,110,194,.12);
  transform: translateY(-3px);
}
.hp-sol-card-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27,110,194,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-blue);
  margin-bottom: 16px;
}
.hp-sol-card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 8px;
}
.hp-sol-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-on-light);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.hp-sol-card-desc {
  font-size: .875rem;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 20px;
  flex: 1;
}
.hp-sol-card-link {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--hp-blue);
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: color .2s;
}
.hp-sol-card-link:hover { color: #1D4ED8; text-decoration: underline; }

/* ── EXPERTISES ─────────────────────────────────────────────── */
.hp-expertises {
  padding: 100px 0;
  background: #fff;
}
.hp-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-exp-card {
  background: var(--hp-light);
  border: 1px solid #DDE5F0;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.hp-exp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hp-blue), var(--hp-em));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.hp-exp-card:hover {
  border-color: #B8C8E8;
  box-shadow: 0 8px 32px rgba(27,110,194,.12);
  transform: translateY(-4px);
}
.hp-exp-card:hover::after { transform: scaleX(1); }
.hp-exp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hp-exp-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(27,110,194,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-blue);
}
.hp-exp-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hp-blue);
  background: rgba(27,110,194,.1);
  border-radius: 4px;
  padding: 4px 9px;
}
.hp-exp-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hp-on-light);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.hp-exp-desc {
  font-size: .875rem;
  line-height: 1.65;
  color: #64748B;
  flex: 1;
  margin-bottom: 24px;
}
.hp-exp-arrow {
  color: var(--hp-blue);
  align-self: flex-end;
  transition: transform .2s;
}
.hp-exp-card:hover .hp-exp-arrow { transform: translateX(4px); }

/* ── APPROACH ───────────────────────────────────────────────── */
.hp-approach {
  padding: 100px 0;
  background: var(--hp-light-alt);
}
.hp-approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hp-steps { display: flex; flex-direction: column; gap: 0; }
.hp-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #D1D9ED;
}
.hp-step:last-child { border-bottom: none; }
.hp-step-num {
  font-size: .75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .05em;
  color: var(--hp-blue);
  background: rgba(27,110,194,.12);
  border-radius: 8px;
  padding: 6px 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hp-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-on-light);
  margin-bottom: 6px;
}
.hp-step-body p { font-size: .9rem; color: #64748B; line-height: 1.6; margin: 0; }

.hp-approach-quote {
  background: var(--hp-dark);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.hp-approach-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--hp-blue), var(--hp-em));
}
.hp-quote-mark {
  font-size: 6rem;
  line-height: .8;
  color: var(--hp-blue);
  opacity: .3;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.hp-quote-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(241,245,249,.9);
  font-style: italic;
  margin: 0 0 32px;
  quotes: none;
}
.hp-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hp-quote-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-em));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9375rem;
  color: #fff;
  flex-shrink: 0;
}
.hp-quote-meta strong { display: block; font-size: .9375rem; color: var(--hp-text); font-weight: 700; }
.hp-quote-meta span   { display: block; font-size: .8125rem; color: var(--hp-muted); margin-top: 2px; }

/* ── SERVICES ───────────────────────────────────────────────── */
.hp-services {
  padding: 100px 0;
  background: var(--hp-ink);
}
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--hp-border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
}
.hp-service-cell {
  padding: 40px 36px;
  background: var(--hp-card);
  transition: background .25s;
}
.hp-service-cell:hover { background: var(--hp-card-hov); }
.hp-service-num {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hp-em);
  margin-bottom: 16px;
}
.hp-service-cell h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.hp-service-cell p {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--hp-muted);
  margin: 0;
}

/* ── STATS ──────────────────────────────────────────────────── */
.hp-stats {
  background: linear-gradient(135deg, #0B1E44 0%, #091630 100%);
  border-top: 1px solid rgba(27,110,194,.25);
  border-bottom: 1px solid rgba(27,110,194,.25);
  padding: 80px 0;
}
.hp-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}
.hp-stat {
  text-align: center;
}
.hp-stat-val {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--hp-text);
  margin-bottom: 12px;
}
.hp-stat-unit {
  font-size: .55em;
  font-weight: 600;
  color: var(--hp-em);
  margin-left: 3px;
}
.hp-stat-label {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--hp-muted);
}
.hp-stat + .hp-stat {
  border-left: 1px solid var(--hp-border);
  padding-left: 48px;
}

/* ── SECTORS ────────────────────────────────────────────────── */
.hp-sectors {
  padding: 100px 0;
  background: var(--hp-light);
}
.hp-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-sector-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.hp-sector-card:hover {
  border-color: var(--hp-blue);
  box-shadow: 0 4px 20px rgba(27,110,194,.12);
  transform: translateY(-3px);
}
.hp-sector-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(27,110,194,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-blue);
}
.hp-sector-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--hp-on-light);
  letter-spacing: -.01em;
}
.hp-sector-card p {
  font-size: .84375rem;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
}

/* ── CONTACT BAND ───────────────────────────────────────────── */
.hp-contact {
  padding: 100px 0;
  background: var(--hp-dark);
  position: relative;
  overflow: hidden;
}
.hp-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hp-blue) 40%, var(--hp-em) 60%, transparent 100%);
}
.hp-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hp-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hp-contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hp-contact-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(27,110,194,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-blue-lt);
  flex-shrink: 0;
}
.hp-contact-list strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--hp-text); margin-bottom: 2px; }
.hp-contact-list span  { font-size: .8125rem; color: var(--hp-muted); line-height: 1.5; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hp-hero-inner     { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hp-orb-stage      { width: 380px; height: 380px; }
  .hp-orb-ring--1    { width: 300px; height: 300px; margin: -150px 0 0 -150px; }
  .hp-orb-ring--2    { width: 228px; height: 228px; margin: -114px 0 0 -114px; }
  .hp-orb-ring--3    { width: 160px; height: 160px; margin: -80px  0 0 -80px; }
  .hp-sphere         { width: 140px; height: 140px; }
  .hp-sphere-glow    { inset: -40px; }
  .hp-halo--a        { width: 380px; height: 380px; }
  .hp-halo--b        { width: 252px; height: 252px; }
  .hp-halo--c        { width: 140px; height: 140px; }
  .hp-beam           { height: 200px; top: -200px; }
  .hp-hero-h1        { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
  .hp-sol-ecosystem  { grid-template-columns: 1fr; }
  .hp-sol-featured   { grid-row: span 1; }
  .hp-sol-grid       { grid-template-columns: repeat(3, 1fr); }
  .hp-stats-inner    { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .hp-stat + .hp-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--hp-border); padding-top: 32px; }
}
@media (max-width: 900px) {
  .hp-exp-grid       { grid-template-columns: repeat(2,1fr); }
  .hp-approach-inner { grid-template-columns: 1fr; gap: 48px; }
  .hp-services-grid  { grid-template-columns: repeat(2,1fr); }
  .hp-contact-inner  { grid-template-columns: 1fr; gap: 48px; }
  .hp-sol-grid       { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hp-hero-visual    { display: none; }
}
@media (max-width: 640px) {
  .hp-hero-inner     { padding-top: 100px; padding-bottom: 60px; }
  .hp-sol-grid       { grid-template-columns: 1fr; }
  .hp-exp-grid       { grid-template-columns: 1fr; }
  .hp-services-grid  { grid-template-columns: 1fr; }
  .hp-sectors-grid   { grid-template-columns: repeat(2,1fr); }
  .hp-stats-inner    { grid-template-columns: repeat(2,1fr); gap: 24px; }
}
@media (max-width: 420px) {
  .hp-sectors-grid   { grid-template-columns: 1fr; }
}

