/* ============================================================
   pages.css — inline styles extracted from each HTML page
   ============================================================ */

/* === index.html === */
/* ----- Dark luminous hero ----- */
.hero-dark {
  position: relative;
  background: radial-gradient(
    135% 105% at 70% -8%,
    #17284f 0%,
    #0e1a3c 46%,
    #0b1531 100%
  );
  color: #fff;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(40px, 5vw, 72px));
  padding-bottom: clamp(96px, 11vw, 150px);
}
.hero-dark .grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(
    80% 75% at 60% 12%,
    #000 25%,
    transparent 78%
  );
  mask-image: radial-gradient(80% 75% at 60% 12%, #000 25%, transparent 78%);
}
.hero-dark .glow {
  position: absolute;
  top: -12%;
  right: 2%;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(2, 112, 238, 0.5), transparent 62%);
  filter: blur(60px);
  z-index: 0;
}
.hero-dark .glow2 {
  position: absolute;
  bottom: -34%;
  left: -8%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(80, 120, 255, 0.28),
    transparent 66%
  );
  filter: blur(70px);
  z-index: 0;
}
.hero-dark .wrap {
  position: relative;
  z-index: 2;
}
.hero-dark h1 {
  color: #fff;
}
.hero-dark .grad {
  background: linear-gradient(
    100deg,
    #8fc0ff,
    #2e86ff,
    #6e9bff,
    #8fc0ff,
    #2e86ff
  );
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.2s ease;
}
.hero-dark .grad:hover {
  animation: gradFlow 2.4s linear infinite;
}
@keyframes gradFlow {
  to {
    background-position: 300% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dark .grad:hover {
    animation: none;
  }
}
.hero-dark .lead {
  color: rgba(222, 230, 247, 0.82);
}
/* logos band inside dark hero */
.hero-logos {
  position: relative;
  z-index: 2;
  margin-top: clamp(60px, 8vw, 104px);
}
.hero-logos .ll {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(222, 230, 247, 0.46);
  margin-bottom: clamp(26px, 3vw, 38px);
}
.hero-logos-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.8vw, 58px);
  max-width: 100%;
}
.hlogo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.05;
  transition:
    opacity 0.22s ease,
    transform 0.3s ease;
  opacity: 0.82;
}
.hlogo:hover {
  opacity: 1;
}
.hlogo b {
  font-weight: 800;
}
.hlogo .lt {
  font-weight: 300;
}
.hlogo .sm {
  font-size: 0.58em;
  font-weight: 500;
  letter-spacing: 0.02em;
}
/* arc layout — center logos sit higher than the edges */
.hero-logos-row .hlogo:nth-child(1),
.hero-logos-row .hlogo:nth-child(5) {
  transform: translateY(34px);
}
.hero-logos-row .hlogo:nth-child(2),
.hero-logos-row .hlogo:nth-child(4) {
  transform: translateY(13px);
}
.hero-logos-row .hlogo:nth-child(3) {
  transform: translateY(0);
}
@media (max-width: 1120px) {
  .hero-logos-row {
    flex-wrap: wrap;
    gap: 30px 44px;
  }
  .hero-logos-row .hlogo {
    transform: none !important;
  }
  .hlogo {
    font-size: 1.2rem;
  }
}
.hero-flex {
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-flex {
    grid-template-columns: 1fr;
    gap: 44px;
    height: auto !important;
  }
}
.kicker-d {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  font-weight: 600;
  color: #cfe0ff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.kicker-d .dotg {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4da0ff;
  box-shadow: 0 0 10px 2px rgba(77, 160, 255, 0.8);
}
.hero-dark .btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 14px 36px -10px rgba(2, 112, 238, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.hero-dark .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -12px rgba(2, 112, 238, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.hero-dark .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}
.hero-dark .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.trust-strip {
  position: relative;
  background-color: transparent;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(48px, 7vw, 96px);
}
.trust-strip .stat .lbl {
  color: var(--slate-600);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-row .stat {
  padding: 0 16px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.trust-row .stat:first-child {
  padding: 0 16px;
  border-left: 0;
}
.trust-row .stat .num {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.trust-row .stat .lbl {
  font-size: 0.9rem;
}
@media (max-width: 680px) {
  .trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 26px 0;
  }
  .trust-row .stat:nth-child(odd) {
    border-left: 0;
  }
}
/* product mock window */
.winC {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #0e1830, #0a1124);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 50px 110px -36px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(120, 170, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.winC::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(
    60% 100% at 30% 0%,
    rgba(2, 112, 238, 0.25),
    transparent 70%
  );
  pointer-events: none;
}
.winC-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.winC-bar i {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: block;
}
.winC-bar .addr {
  margin-left: 11px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(200, 210, 235, 0.55);
}
.appC {
  display: grid;
  grid-template-columns: 60px 1fr;
  height: 360px;
  position: relative;
}
.appC-rail {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.appC-rail .lg {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand-gradient);
  box-shadow: 0 4px 16px rgba(2, 112, 238, 0.5);
}
.appC-rail .ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}
.appC-rail .ic.on {
  background: rgba(2, 112, 238, 0.3);
  box-shadow: 0 0 0 1px rgba(110, 170, 255, 0.4);
}
.appC-main {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.appC-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.appC-top h6 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.appC-top .pillm {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: #5be6a0;
  background: rgba(91, 230, 160, 0.12);
  padding: 5px 11px;
  border-radius: 999px;
}
.kpisC {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 16px;
}
.kpiC {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.03);
}
.kpiC .k {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(190, 200, 225, 0.6);
}
.kpiC .v {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 4px;
}
.kpiC .d {
  font-size: 0.6rem;
  color: #5be6a0;
  font-weight: 600;
  margin-top: 2px;
}
.chartcardC {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: rgba(255, 255, 255, 0.02);
}
.chartcardC .ct {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.chartcardC .ct b {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}
.chartcardC .ct em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.6rem;
  color: rgba(190, 200, 225, 0.5);
}
.chartC {
  flex: 1;
  min-height: 0;
}
.fchipC {
  position: absolute;
  z-index: 4;
  border-radius: 13px;
  padding: 11px 15px;
  font-size: 0.84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(20, 32, 60, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.6);
}
.fchipC .pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #5be6a0;
  box-shadow: 0 0 0 0 rgba(91, 230, 160, 0.6);
  animation: paC 2s infinite;
}
@keyframes paC {
  0% {
    box-shadow: 0 0 0 0 rgba(91, 230, 160, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(91, 230, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(91, 230, 160, 0);
  }
}
.fchipC.c1 {
  top: -18px;
  left: -26px;
}
.fchipC.c2 {
  bottom: 24px;
  right: -22px;
}
.fchipC.c2 svg {
  width: 17px;
  height: 17px;
  color: #8fc0ff;
}
@media (max-width: 520px) {
  .fchipC {
    display: none;
  }
}
.hero-dark {
  border-bottom: 0;
}
/* ----- Light-mode variant of the hero app-window mockup (flips with the site theme) ----- */
.winC,
.winC-bar,
.winC-bar i,
.winC-bar .addr,
.appC-rail,
.appC-rail .ic,
.appC-top h6,
.kpiC,
.kpiC .v,
.kpiC .k,
.chartcardC,
.chartcardC .ct b,
.chartcardC .ct em,
.fchipC {
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}
[data-theme="light"] .winC {
  background: linear-gradient(180deg, #ffffff, #f4f8fe);
  border-color: var(--line);
  box-shadow:
    0 40px 90px -40px rgba(10, 30, 70, 0.32),
    0 0 0 1px rgba(10, 30, 70, 0.04);
}
[data-theme="light"] .winC::before {
  background: radial-gradient(
    60% 100% at 30% 0%,
    rgba(2, 112, 238, 0.12),
    transparent 70%
  );
}
[data-theme="light"] .winC-bar {
  border-bottom-color: var(--line);
}
[data-theme="light"] .winC-bar i {
  background: rgba(10, 30, 70, 0.14);
}
[data-theme="light"] .winC-bar .addr {
  color: var(--slate-500);
}
[data-theme="light"] .appC-rail {
  border-right-color: var(--line);
}
[data-theme="light"] .appC-rail .ic {
  background: var(--paper-2);
  border: 1px solid var(--line);
}
[data-theme="light"] .appC-rail .ic.on {
  background: rgba(2, 112, 238, 0.12);
  box-shadow: 0 0 0 1px rgba(2, 112, 238, 0.28);
}
[data-theme="light"] .appC-top h6 {
  color: var(--ink);
}
[data-theme="light"] .kpiC {
  border-color: var(--line);
  background: var(--paper-2);
}
[data-theme="light"] .kpiC .v {
  color: var(--ink);
}
[data-theme="light"] .kpiC .k {
  color: var(--slate-500);
}
[data-theme="light"] .kpiC .d {
  color: #1b9e63;
}
[data-theme="light"] .appC-top .pillm {
  color: #1b9e63;
  background: rgba(27, 158, 99, 0.1);
}
[data-theme="light"] .chartcardC {
  border-color: var(--line);
  background: var(--paper-2);
}
[data-theme="light"] .chartcardC .ct b {
  color: var(--ink);
}
[data-theme="light"] .chartcardC .ct em {
  color: var(--slate-500);
}
[data-theme="light"] .fchipC {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 16px 40px -16px rgba(10, 30, 70, 0.28);
}
[data-theme="light"] .fchipC.c2 svg {
  color: var(--blue-500);
}
/* mid-page dark section — bridges from white (above) and into bg-soft (below) */
.ia-bridge {
  padding-block: clamp(96px, 9vw, 128px) !important;
  background: radial-gradient(
    125% 120% at 82% -10%,
    #17284f 0%,
    #0e1a3c 46%,
    #0b1531 100%
  );
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.logo-slot {
  height: 60px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--paper-2);
}
.logo-slot span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate-400);
}
@media (max-width: 760px) {
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.exp-card {
  display: block;
}
.ia-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .ia-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.stat-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.stat-card svg {
  width: 26px;
  height: 26px;
  color: #7fb6ff;
  margin-bottom: 16px;
}
.stat-card .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, #9dc4ff, #0270ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card .lbl {
  display: block;
  color: var(--slate-300);
  margin-top: 8px;
  font-size: 0.95rem;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}
.step-n {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-500);
}
.step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--brand-gradient);
}
.case-res {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.case-res span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
}
.quote-card {
  padding: 38px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--blue-500);
  opacity: 0.25;
  margin-bottom: 10px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--brand-gradient-soft);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(2, 112, 238, 0.14);
}
.avatar svg {
  width: 24px;
  height: 24px;
}

/* === a-propos.html === */
.story {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) {
  .story {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === services.html === */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
#sur-mesure,
#ia,
#saas,
#data {
  padding-block: clamp(44px, 5.5vw, 76px);
}
.svc-block.rev > div:first-child {
  order: 2;
}
@media (max-width: 900px) {
  .svc-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .svc-block.rev > div:first-child {
    order: 0;
  }
}

/* === methode.html === */
.phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phase {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.phase:last-child {
  border-bottom: 1px solid var(--line);
}
.phase-n {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.phase .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.phase .chip svg {
  width: 13px;
  height: 13px;
  color: var(--blue-500);
}
@media (max-width: 680px) {
  .phase {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .phase-n {
    font-size: 2.2rem;
  }
}

/* === contact.html === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.access-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 440px;
  background: var(--paper-2);
}
.map-card iframe {
  min-height: 440px;
  height: 100%;
  filter: grayscale(0.15);
}
.access-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.access-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.access-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--brand-gradient-soft);
  color: var(--blue-500);
  border: 1px solid rgba(2, 112, 238, 0.14);
}
.access-ico svg {
  width: 24px;
  height: 24px;
}
.access-item h4 {
  margin-bottom: 3px;
  font-size: 1.05rem;
}
.access-item p {
  color: var(--slate-600);
  font-size: 0.94rem;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
  .map-card {
    min-height: 320px;
  }
  .map-card iframe {
    min-height: 320px;
  }
}

/* === carrieres.html === */
.jobs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  border-top: 1px solid var(--line);
  transition: padding 0.2s;
}
.job:last-child {
  border-bottom: 1px solid var(--line);
}
.job:hover {
  padding-left: 14px;
}
.job-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--blue-500);
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.job:hover .job-arrow {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
}

/* === insights.html === */
.feat-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 24px;
}
.art-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--slate-500);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}
.art-cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-500);
  font-weight: 500;
}
@media (max-width: 820px) {
  .feat-article {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === realisations.html === */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Josefin+Sans:wght@400;500;600&display=swap");
.prod {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.prod.rev > div:first-child {
  order: 2;
}
@media (max-width: 900px) {
  .prod {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .prod.rev > div:first-child {
    order: 0;
  }
}
/* Logik — identité produit (UI Kit Logik) */
#logik {
  --lk-violet: #7c3bed;
  --lk-pink: #f04299;
  --lk-grad: linear-gradient(100deg, #7c3bed, #f04299);
}
.logik-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.lk-dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(100deg, #7c3bed, #f04299);
  box-shadow: 0 5px 16px rgba(124, 59, 237, 0.45);
}
#logik h2 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}
#logik .lead,
#logik .checklist {
  font-family: "Josefin Sans", system-ui, sans-serif;
}
#logik .eyebrow {
  color: #7c3bed;
}
#logik .eyebrow::before {
  background: #7c3bed;
}
#logik .checklist .ck {
  background: rgba(124, 59, 237, 0.12);
  color: #7c3bed;
  border-color: rgba(124, 59, 237, 0.28);
}
#logik .btn-primary {
  background: linear-gradient(100deg, #7c3bed, #f04299);
  border-color: transparent;
  box-shadow: 0 14px 30px -10px rgba(124, 59, 237, 0.6);
}
#logik .btn-primary:hover {
  box-shadow: 0 18px 40px -10px rgba(124, 59, 237, 0.7);
}
.browser {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0f1c3c;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.browser-bar > span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--slate-300);
}
.browser-url {
  margin-left: 14px;
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate-400);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  padding: 5px 12px;
}
/* Fakturis */
.fakturis-bg {
  background: #0d1b2a;
  position: relative;
  overflow: hidden;
}
.fakturis-bg::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(232, 184, 75, 0.18),
    transparent 65%
  );
  filter: blur(50px);
}
.fakturis-bg .wrap {
  position: relative;
  z-index: 1;
}
.fakturis-bg .eyebrow::before {
  background: #e8b84b;
}
.fakturis-bg .fa-list .ck {
  background: rgba(232, 184, 75, 0.16);
  color: #e8b84b;
  border-color: rgba(232, 184, 75, 0.3);
}
.fakturis-bg .fa-list li {
  color: #c8d3e0;
}
.fakturis-bg .fa-list li + li {
  border-color: rgba(255, 255, 255, 0.1);
}
.fakturis-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  width: fit-content;
}
.fm-bar {
  height: 2px;
  width: 100%;
  background: #e8b84b;
}
.fm-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 2.6rem;
  line-height: 1;
  padding-left: 0.42em;
}
.fm-dark .fm-name {
  color: #fffef7;
}
.fm-tri {
  display: flex;
  height: 3px;
  width: 100%;
}
.fm-tri i {
  flex: 1;
}
.fm-tri i:nth-child(1) {
  background: #002395;
}
.fm-tri i:nth-child(2) {
  background: #ededed;
}
.fm-tri i:nth-child(3) {
  background: #ed2939;
}
.fa-btn {
  background: #e8b84b;
  color: #0d1b2a;
  font-weight: 600;
}
.fa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(232, 184, 75, 0.3);
}
.fa-ghost {
  background: transparent;
  color: #fffef7;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.fa-ghost:hover {
  border-color: #e8b84b;
  color: #e8b84b;
}
.fa-browser {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0d1b2a;
}
.fa-bar2 {
  background: #162d4a;
  border-color: rgba(255, 255, 255, 0.08);
}
.fa-bar2 > span {
  background: rgba(255, 255, 255, 0.25);
}
.fa-url {
  background: #0d1b2a;
  color: #8fa3b8;
  border-color: rgba(255, 255, 255, 0.12);
}
.fa-screen {
  min-height: 340px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(232, 184, 75, 0.05) 0 12px,
      transparent 12px 24px
    ),
    #0d1b2a;
  display: grid;
  place-items: center;
  position: relative;
  padding: 24px;
}
.fa-screen-tag {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #5e7493;
}
.fa-doc {
  background: #162d4a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.fa-doc-ref {
  font-family: "JetBrains Mono", var(--font-mono);
  font-size: 0.8rem;
  color: #8fa3bf;
  letter-spacing: 0.04em;
}
.fa-doc-amt {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fffef7;
  line-height: 1;
}
.fa-badge {
  align-self: flex-start;
  background: rgba(45, 106, 79, 0.2);
  color: #5fd19a;
  border: 1px solid rgba(45, 106, 79, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 4px;
}

/* === plan-du-site.html === */
.sm-grid {
  align-items: stretch;
}
.sm-grid .sm-node {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sm-node {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.sm-node:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-3px);
}
.sm-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sm-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-gradient-soft);
  color: var(--blue-500);
  border: 1px solid rgba(2, 112, 238, 0.14);
}
.sm-ico svg {
  width: 22px;
  height: 22px;
}
.sm-tt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sm-tt strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.sm-tt span {
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.45;
}
.sm-kids {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sm-kids a {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--slate-600);
  transition:
    background 0.15s,
    color 0.15s;
}
.sm-kids a:hover {
  background: var(--paper-2);
  color: var(--blue-500);
}
.sm-kids svg {
  width: 14px;
  height: 14px;
  color: var(--blue-500);
  flex-shrink: 0;
}
.sm-legal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.sm-legal a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.sm-legal a:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
}
.sm-legal svg {
  width: 18px;
  height: 18px;
  color: var(--blue-500);
}

/* === secteurs/finance.html, secteurs/industrie.html, secteurs/retail.html, secteurs/sante.html === */
/* (shared rules — identical across all four secteur pages) */
.sec-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .sec-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 760px) {
  [data-case] {
    grid-template-columns: 1fr !important;
  }
  [data-case] .ph {
    border-left: 0 !important;
    border-top: 1px solid var(--line) !important;
  }
}
.step-n {
  display: inline-block;
}
.app-shot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 30px 70px -28px rgba(2, 40, 110, 0.45),
    0 8px 24px rgba(10, 18, 38, 0.06);
  position: relative;
}
.app-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
.app-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.case-shot {
  border-left: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.case-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* === secteurs/retail.html (override for .case-shot background) === */
/* Note: retail uses a dark background for .case-shot; included here as a page-specific override */
/* The rule below only applies when retail's unique context is loaded — safe to include globally */
/* If you need strict isolation, move this to a retail-specific rule. */

/* === insights/*.html (shared article styles) === */
.article-head {
  max-width: 760px;
  margin-inline: auto;
}
.article-cat {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  font-weight: 500;
}
.article-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 0;
}
.article-standfirst {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-top: 20px;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.article-byline .av {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.article-byline .who b {
  font-size: 0.95rem;
  color: var(--ink);
  display: block;
}
.article-byline .who span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate-500);
}
.article-byline .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--slate-400);
}
.article-hero-img {
  margin: 36px auto 0;
  max-width: 1040px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 30px 70px -28px rgba(2, 40, 110, 0.45),
    0 8px 24px rgba(10, 18, 38, 0.06);
}
.article-hero-img img {
  display: block;
  width: 100%;
  height: auto;
}
.prose .lead-p {
  font-size: 1.12rem;
  color: var(--ink-2);
}
.pullquote {
  margin: 34px 0;
  padding: 6px 0 6px 28px;
  border-left: 3px solid var(--blue-500);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
}
.keytake {
  margin: 32px 0;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--brand-gradient-soft);
  border: 1px solid rgba(2, 112, 238, 0.18);
}
.keytake h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.keytake p {
  margin: 0;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.article-share {
  max-width: 760px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.article-share .lbl {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
}

/* === realisations/cas-*.html (shared case study styles) === */
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-top: 2px solid var(--line);
}
.meta-k {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.meta-v {
  font-weight: 600;
  color: var(--ink);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.app-frame {
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg, 0 30px 60px -20px rgba(10, 18, 38, 0.25));
}
.app-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.company {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .company {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.bs-card {
  border-radius: 18px;
  padding: 44px 34px;
  text-align: center;
}
.bs-logo-img {
  height: 96px;
  width: auto;
  display: block;
  margin-inline: auto;
}
.bs-tag {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.bs-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
}
.bs-fact .k {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bs-fact .l {
  color: var(--slate-600);
  font-size: 0.92rem;
  margin-top: 6px;
}

/* === realisations/cas-fakturis.html (Fakturis-specific case study styles) === */
.fakturis-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
