/* deskio-hero.css — hero dark "Vos applications. Partout." (référence screenshot 2026-07-17).
   Deskio : scène photo « Sans les murs » (parallaxe pointeur, respiration lumineuse).
   Ovastack réutilise le deck 3D animé : float, drift, tilt pointeur, dots pulsés.
   Fond hexagones WebGL via story-lines.js (opt-in data-story-lines). */

/* Fond de page sombre : reprend la main sur le fond clair de body.story-skin (story-system.css) */
body.solution-page--deskio {
  background: var(--solution-bg, #050a20);
}
body.solution-page--deskio .site-footer {
  border-top-color: var(--solution-line, rgba(156, 169, 255, 0.16));
  background: transparent;
}

/* Aligne le fil d’Ariane sur le bord gauche du logo Cloudbizz AI. */
@media (min-width: 761px) {
  .solution-page--deskio .page-breadcrumb--product {
    left: var(--deskio-breadcrumb-left, var(--cb-topbar-pad-x));
    transform: none;
  }
}

/* ===== Topbar dark deskio (sticky pleine largeur) ===== */
.deskio-topbar {
  position: sticky;
  top: 0;
  z-index: 160;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  width: 100%;
  min-height: var(--cb-topbar-h);
  padding: 0 var(--cb-topbar-pad-x);
  background: rgba(5, 10, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(146, 176, 216, 0.1);
}
.deskio-logo {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.solution-page--deskio .deskio-logo--cloudbizz .brand__logo-img {
  display: block;
  width: clamp(132px, 9.45vw, 158px);
  height: auto;
  filter: brightness(0) invert(1);
}

.deskio-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 64px;
  padding: 0 clamp(28px, 3vw, 52px);
  gap: clamp(22px, 2.6vw, 46px);
  border: 1px solid rgba(146, 176, 216, 0.2);
  border-radius: 16px;
  background: rgba(10, 18, 32, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.deskio-nav a {
  position: relative;
  color: rgba(226, 235, 250, 0.92);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  white-space: nowrap;
}
.deskio-nav a:hover { color: #fff; }
.deskio-nav a[aria-current="location"] { color: #fff; }
.deskio-nav a[aria-current="location"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: #b9dcfb;
}

.deskio-topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 26px);
}
.solution-page--deskio .deskio-topbar .language-select { margin: 0; }
.solution-page--deskio .deskio-topbar .language-select::after { display: none; }
.solution-page--deskio .deskio-topbar .language-select select {
  min-width: 82px;
  min-height: 48px;
  padding: 0 30px 0 18px;
  border: 1px solid rgba(146, 176, 216, 0.26);
  border-radius: 12px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6eefb' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 9 5 5 5-5'/%3E%3C/svg%3E") right 12px center / 12px no-repeat,
    rgba(10, 18, 32, 0.42);
  color: #e6eefb;
  font-weight: 600;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.deskio-login {
  color: rgba(228, 237, 252, 0.92);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.deskio-login:hover { color: #fff; }
.solution-page--deskio .deskio-try {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  color: #0a1626;
  background: #b9dcfb;
  box-shadow: 0 7px 24px rgba(76, 153, 218, 0.17);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solution-page--deskio .deskio-try:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(76, 153, 218, 0.28);
}
.deskio-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(146, 176, 216, 0.26);
  border-radius: 12px;
  background: rgba(10, 18, 32, 0.42);
  color: #e6eefb;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.deskio-menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.deskio-mobile-menu[hidden] { display: none; }
.deskio-mobile-menu {
  position: sticky;
  top: 72px;
  z-index: 155;
  display: grid;
  gap: 4px;
  padding: 14px clamp(24px, 5vw, 40px) 20px;
  background: rgba(5, 10, 20, 0.96);
  border-bottom: 1px solid rgba(146, 176, 216, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.deskio-mobile-menu a {
  padding: 12px 4px;
  color: rgba(230, 238, 251, 0.94);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(146, 176, 216, 0.1);
}
.deskio-mobile-menu a:last-child { border-bottom: 0; }
.deskio-mobile-menu a[aria-current="location"] {
  color: #fff;
  box-shadow: inset 3px 0 0 #b9dcfb;
}

/* Le topbar sticky recouvre le haut des sections ciblées par ancre */
.solution-page--deskio main section[id] { scroll-margin-top: 96px; }

/* ===== Section hero ===== */
.dh-hero {
  position: relative;
  min-height: max(772px, calc(100svh - 88px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5svh, 70px) 0 clamp(30px, 5svh, 56px);
  overflow: hidden;
  color: #e8effb;
  background:
    radial-gradient(circle at 70% 28%, rgba(64, 120, 255, 0.13), transparent 44%),
    radial-gradient(circle at 16% 72%, rgba(53, 105, 255, 0.11), transparent 38%),
    linear-gradient(180deg, #050a14 0%, #060c18 100%);
}
.dh-hero .story-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.4) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.4) 92%, transparent 100%);
}
.dh-hero__inner,
.dh-trust { position: relative; z-index: 1; }

.dh-hero__inner {
  --deck-scale: 1;
  width: min(calc(100% - 120px), 1537px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: calc(880px * var(--deck-scale)) minmax(0, 1fr);
  gap: clamp(36px, 3.6vw, 64px);
  align-items: center;
}

/* ===== Deck 3D ===== */
.dh-deck {
  position: relative;
  height: calc(640px * var(--deck-scale));
  perspective: 1000px;
}
.dh-deck__stack {
  position: relative;
  width: 880px;
  height: 640px;
  perspective: 1000px;
  transform-style: flat;
  transform-origin: left center;
  scale: var(--deck-scale);
  animation: dh-deck-float 8s ease-in-out infinite;
}

.dh-card {
  --deck-tilt-x: 0deg;
  --deck-tilt-y: 0deg;
  --deck-light-x: 28%;
  --deck-light-y: 12%;
  position: absolute;
  border: 1px solid rgba(139, 194, 232, 0.42);
  border-radius: 17px;
  color: #e8effb;
  background:
    radial-gradient(circle at var(--deck-light-x) var(--deck-light-y), rgba(91, 181, 230, 0.16), transparent 46%),
    linear-gradient(145deg, rgba(24, 48, 73, 0.94), rgba(6, 17, 32, 0.97));
  box-shadow:
    -5px 12px 30px rgba(7, 96, 145, 0.13),
    0 35px 70px rgba(0, 0, 0, 0.36),
    inset 4px 0 12px rgba(53, 180, 226, 0.14),
    inset 0 1px 0 rgba(231, 248, 255, 0.09);
  backdrop-filter: blur(19px) saturate(1.05);
  -webkit-backdrop-filter: blur(19px) saturate(1.05);
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: transform 160ms ease-out;
}

.dh-card--e {
  z-index: 1;
  top: 128px;
  left: -64px;
  width: 300px;
  height: 380px;
  padding: 38px 24px 24px;
  opacity: 0.68;
  transform: translate3d(0, 0, -300px) rotateX(var(--deck-tilt-x)) rotateY(calc(12deg + var(--deck-tilt-y)));
  animation: dh-card-in 0.9s ease 0.05s backwards, dh-card-drift 10.5s ease-in-out -3.6s infinite;
}
.dh-card--d {
  z-index: 2;
  top: 96px;
  left: 30px;
  width: 340px;
  height: 440px;
  padding: 40px 26px 24px;
  opacity: 0.76;
  transform: translate3d(0, 0, -240px) rotateX(var(--deck-tilt-x)) rotateY(calc(12deg + var(--deck-tilt-y)));
  animation: dh-card-in 0.9s ease 0.14s backwards, dh-card-drift 9.5s ease-in-out -2.4s infinite;
}
.dh-card--c {
  z-index: 3;
  top: 60px;
  left: 148px;
  width: 386px;
  height: 500px;
  padding: 44px 30px 26px;
  opacity: 0.84;
  transform: translate3d(0, 0, -180px) rotateX(var(--deck-tilt-x)) rotateY(calc(12deg + var(--deck-tilt-y)));
  animation: dh-card-in 0.9s ease 0.23s backwards, dh-card-drift 8.2s ease-in-out -5.1s infinite;
}
.dh-card--b {
  z-index: 4;
  top: 30px;
  left: 276px;
  width: 412px;
  height: 552px;
  padding: 46px 30px 28px;
  opacity: 0.9;
  transform: translate3d(0, 0, -120px) rotateX(var(--deck-tilt-x)) rotateY(calc(12deg + var(--deck-tilt-y)));
  animation: dh-card-in 0.9s ease 0.32s backwards, dh-card-drift 7.4s ease-in-out -1.2s infinite;
}
.dh-card--front {
  z-index: 5;
  top: 26px;
  left: 400px;
  width: 470px;
  height: 588px;
  display: flex;
  flex-direction: column;
  padding: 42px 30px 30px 40px;
  pointer-events: auto;
  background:
    radial-gradient(circle at var(--deck-light-x) var(--deck-light-y), rgba(91, 181, 230, 0.17), transparent 45%),
    linear-gradient(145deg, rgba(20, 43, 68, 0.98), rgba(5, 15, 29, 0.985));
  box-shadow:
    -7px 14px 34px rgba(9, 113, 164, 0.17),
    0 42px 85px rgba(0, 0, 0, 0.48),
    inset 5px 0 14px rgba(67, 194, 232, 0.16),
    inset 0 1px 0 rgba(237, 250, 255, 0.12);
  transform: translate3d(0, 0, 0) rotateX(var(--deck-tilt-x)) rotateY(calc(16deg + var(--deck-tilt-y)));
  animation: dh-card-in 0.9s ease 0.4s backwards;
}

/* ===== Cartes arrière — contenu ===== */
.dh-card__name {
  margin: 0;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(232, 240, 252, 0.92);
}
.dh-card__tag {
  margin: 6px 0 0;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(170, 190, 218, 0.62);
}

/* Carte E — Partout, sur vos appareils */
.dh-card--e .dh-card__name { font-size: 15px; }
.dh-card--e .dh-card__tag { font-size: 12px; margin-top: 3px; }
.dh-devices {
  display: grid;
  justify-items: start;
  gap: 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.dh-devices li {
  position: relative;
  display: grid;
  place-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(122, 175, 216, 0.3);
  border-radius: 13px;
  background: rgba(9, 22, 40, 0.55);
}
.dh-devices svg {
  width: 44px;
  height: 38px;
  fill: none;
  stroke: #6ea8e8;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dh-devices i {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #63e64d;
  animation: dh-status-pulse-green 2.8s ease-in-out infinite;
}
.dh-devices li:nth-child(2) i { animation-delay: -0.9s; }
.dh-devices li:nth-child(3) i { animation-delay: -1.8s; }

/* Carte D — Deskio Enterprise (session skeleton) */
.dh-rows {
  display: grid;
  gap: 22px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.dh-rows li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.dh-rows i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(110, 168, 232, 0.3);
}
.dh-rows b {
  width: var(--w, 70%);
  height: 8px;
  border-radius: 5px;
  background: rgba(148, 177, 214, 0.2);
}

/* Carte C — Deskio Enterprise / Bureau dédié */
.dh-bloom {
  position: relative;
  height: 128px;
  margin-top: 26px;
  border: 1px solid rgba(122, 175, 216, 0.26);
  border-radius: 13px;
  overflow: hidden;
  background:
    radial-gradient(58px 52px at 36% 46%, rgba(72, 148, 255, 0.85), transparent 72%),
    radial-gradient(46px 44px at 52% 34%, rgba(56, 190, 255, 0.75), transparent 70%),
    radial-gradient(52px 48px at 56% 62%, rgba(28, 88, 220, 0.8), transparent 72%),
    radial-gradient(40px 40px at 30% 66%, rgba(120, 200, 255, 0.55), transparent 70%),
    linear-gradient(160deg, #071228 0%, #0a1c3a 100%);
}
.dh-bloom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 70px at 45% 50%, rgba(255, 255, 255, 0.14), transparent 70%);
}
.dh-specs {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.dh-specs li {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(122, 175, 216, 0.22);
  border-radius: 10px;
  background: rgba(5, 15, 29, 0.42);
  color: rgba(214, 227, 245, 0.9);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.dh-active {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: rgba(180, 232, 170, 0.9);
  font-size: 13px;
  font-weight: 600;
}
.dh-active i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #63e64d;
  animation: dh-status-pulse-green 2.8s ease-in-out -1.3s infinite;
}

/* Carte B — Deskio Business / Vos applications */
.dh-apps {
  display: grid;
  grid-template-columns: repeat(3, 64px);
  gap: 18px;
  margin-top: 30px;
}
.dh-apps span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(122, 175, 216, 0.28);
  border-radius: 14px;
  background: rgba(9, 22, 40, 0.6);
}
.dh-apps img { width: 38px; height: 38px; object-fit: contain; }
.dh-apps svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #7fc0f2;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dh-apps-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: rgba(178, 199, 226, 0.78);
  font-size: 13.5px;
  font-weight: 500;
}
.dh-apps-link svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dh-card--b { display: flex; flex-direction: column; }

/* ===== Carte frontale ===== */
.dh-card__title {
  margin: 0 0 18px;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: rgba(241, 246, 255, 0.96);
}
.dh-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dh-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 12px;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 6px 16px 6px 12px;
  border: 1px solid rgba(122, 175, 216, 0.26);
  border-radius: 12px;
  background: rgba(3, 12, 25, 0.29);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.dh-list li:hover {
  background: rgba(94, 185, 235, 0.065);
  box-shadow: inset 2px 0 0 rgba(107, 207, 247, 0.45);
}
.dh-list__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(122, 175, 216, 0.3);
  border-radius: 11px;
  background: rgba(9, 22, 40, 0.55);
  color: #9fc6ef;
  font-size: 17px;
  font-weight: 700;
}
.dh-list__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dh-list__meta {
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}
.dh-list__meta b {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(246, 249, 255, 0.96);
}
.dh-list__meta small {
  font-size: 13px;
  font-weight: 400;
  color: rgba(183, 199, 222, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
}
.dh-list__meta small::before { content: "— "; }

.dh-dot { width: 10px; height: 10px; justify-self: end; border-radius: 50%; }
.dh-dot--green {
  background: #63e64d;
  animation: dh-status-pulse-green 2.8s ease-in-out infinite;
}
.dh-dot--blue {
  background: #4da8ff;
  animation: dh-status-pulse-blue 2.8s ease-in-out infinite;
}
.dh-list li:nth-child(2) .dh-dot { animation-delay: -0.7s; }
.dh-list li:nth-child(3) .dh-dot { animation-delay: -1.3s; }
.dh-list li:nth-child(4) .dh-dot { animation-delay: -0.4s; }
.dh-list li:nth-child(5) .dh-dot { animation-delay: -1.9s; }

.solution-page--deskio .dh-search,
.ovastack-page .dh-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  margin-top: auto;
  padding: 0 20px;
  border: 1px solid rgba(122, 175, 216, 0.23);
  border-radius: 12px;
  background: rgba(3, 12, 25, 0.3);
  color: rgba(204, 219, 241, 0.9);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.solution-page--deskio .dh-search:hover,
.ovastack-page .dh-search:hover {
  border-color: rgba(122, 195, 240, 0.5);
  background: rgba(9, 25, 45, 0.5);
}
.dh-search svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: rgba(205, 226, 250, 0.92);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Copy ===== */
.dh-kicker {
  margin: 0 0 28px;
  color: rgba(206, 220, 240, 0.85);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: dh-rise 0.8s cubic-bezier(0.22, 0.7, 0.3, 1) 0.1s backwards;
}
.dh-copy h1 {
  font-family: var(--cb-display-font);
  margin: 0;
  font-size: clamp(44px, 4.35vw, 72px);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
  color: #f4f8ff;
  animation: dh-rise 0.8s cubic-bezier(0.22, 0.7, 0.3, 1) 0.2s backwards;
}
.dh-title__line { display: block; white-space: nowrap; }
.dh-copy h1 em {
  font-style: normal;
  font-weight: 300;
  background: var(--cb-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dh-lead {
  margin: 32px 0 0;
  color: rgba(203, 215, 234, 0.78);
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.55;
  animation: dh-rise 0.8s cubic-bezier(0.22, 0.7, 0.3, 1) 0.3s backwards;
}
.dh-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 42px;
  margin-top: 38px;
  animation: dh-rise 0.8s cubic-bezier(0.22, 0.7, 0.3, 1) 0.4s backwards;
}
.solution-page--deskio .dh-btn-primary,
.ovastack-page .dh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 226px;
  min-height: 60px;
  padding: 0 30px;
  border-radius: 9px;
  background: #b9dcfb;
  color: #0a1626;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 7px 24px rgba(76, 153, 218, 0.17);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solution-page--deskio .dh-btn-primary:hover,
.ovastack-page .dh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(76, 153, 218, 0.28);
}
.solution-page--deskio .dh-btn-ghost,
.ovastack-page .dh-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #b9d6ef;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.solution-page--deskio .dh-btn-ghost:hover,
.ovastack-page .dh-btn-ghost:hover { color: #e3f0fd; }
.dh-btn-ghost svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Bandeau de confiance ===== */
.dh-trust {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  width: min(calc(100% - 60px), 1240px);
  margin: clamp(44px, 7svh, 76px) auto 0;
  animation: dh-rise 0.8s cubic-bezier(0.22, 0.7, 0.3, 1) 0.55s backwards;
}
.dh-trust > span {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 48px;
  padding: 0 clamp(26px, 3.2vw, 56px);
  border-right: 1px solid rgba(135, 162, 194, 0.24);
  color: rgba(170, 186, 210, 0.75);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.dh-trust > span:last-child { border-right: 0; }
.dh-trust svg {
  width: 30px;
  height: 30px;
  flex: none;
  fill: none;
  stroke: rgba(140, 165, 196, 0.8);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dh-trust b { font-weight: 400; }

/* ===== Section Applications — « Vos applications. Votre environnement. » ===== */
.da-section {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 7svh, 84px) 0 clamp(56px, 8svh, 96px);
  color: #e8effb;
}
.da-inner {
  width: min(calc(100% - 120px), 1400px);
  margin: 0 auto;
}

.da-compat { width: min(100%, 1244px); margin: 0 auto; }
.da-compat__eyebrow {
  margin: 0 0 14px;
  padding-left: 28px;
  color: rgba(206, 220, 240, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.da-compat__band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  min-height: 64px;
  padding: 10px 28px;
  border: 1px solid rgba(139, 194, 232, 0.24);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(16, 33, 54, 0.65), rgba(6, 15, 28, 0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.da-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(233, 240, 250, 0.94);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.da-brand b { font-weight: 600; }
.da-brand--word b { font-weight: 700; font-size: 19px; }
.da-brand--odoo b { font-size: 21px; letter-spacing: -0.02em; }
.da-brand--more b { color: #6f9dff; font-weight: 500; }
.da-brand__icon { width: 26px; height: 26px; fill: none; stroke: #cfe2f6; stroke-width: 1.7; }
.da-ms { display: grid; grid-template-columns: 11px 11px; gap: 2px; }
.da-ms b { width: 11px; height: 11px; }
.da-ms b:nth-child(1) { background: #f25022; }
.da-ms b:nth-child(2) { background: #7fba00; }
.da-ms b:nth-child(3) { background: #00a4ef; }
.da-ms b:nth-child(4) { background: #ffb900; }

.da-tile {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
}
.da-tile--w { background: #2b7cd3; }
.da-tile--p { background: #1789d6; }
.da-tile--h { background: #7b5ff0; }
.da-tile--a { background: #27509f; }
.da-tile--excel { background: #1e7145; }
.da-tile--outlook { background: #0f6cbd; }
.da-tile--teams { background: #5b5fc7; }
.da-tile--onedrive { background: rgba(43, 136, 216, 0.14); }
.da-tile--onedrive svg { width: 22px; height: 22px; fill: #2b88d8; }
.da-tile--exact {
  background: rgba(227, 6, 19, 0.13);
  color: #f2453d;
  font-size: 17px;
  font-weight: 800;
}
.da-tile--odoo {
  background: rgba(113, 75, 103, 0.32);
  color: #d9a4c6;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.da-tile--wk {
  grid-template-columns: repeat(3, 7px);
  grid-auto-rows: 7px;
  gap: 2px;
  place-content: center;
  background: rgba(255, 255, 255, 0.06);
}
.da-tile--wk b { border-radius: 1.5px; }
.da-tile--wk b:nth-child(1) { background: #e5202e; }
.da-tile--wk b:nth-child(2) { background: #f47c30; }
.da-tile--wk b:nth-child(3) { background: #ffc04d; }
.da-tile--wk b:nth-child(4) { background: #a4cd58; }
.da-tile--wk b:nth-child(5) { background: #85bc20; }
.da-tile--wk b:nth-child(6) { background: #12a5b4; }
.da-tile--wk b:nth-child(7) { background: #409bd2; }
.da-tile--wk b:nth-child(8) { background: #007ac3; }
.da-tile--wk b:nth-child(9) { background: #1d4e9e; }
.da-tile--m365 { background: rgba(255, 255, 255, 0.07); }
.da-tile--m365 .da-ms { grid-template-columns: 8px 8px; }
.da-tile--m365 .da-ms b { width: 8px; height: 8px; }
.da-tile--pbi { background: rgba(242, 200, 17, 0.13); }
.da-tile--pbi svg { width: 20px; height: 20px; fill: #f2c811; }
.da-tile--sp { background: #036c70; }

.da-head { margin-top: clamp(44px, 6svh, 64px); }
.da-eyebrow {
  margin: 0 0 24px;
  color: rgba(148, 186, 236, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.da-head h2 {
  margin: 0;
  font-size: clamp(40px, 3.9vw, 64px);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
  color: #f4f8ff;
}
.da-title__line { display: block; }
.da-head h2 em {
  font-style: normal;
  font-weight: 300;
  background: var(--cb-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.da-lead {
  margin: 22px 0 0;
  color: rgba(203, 215, 234, 0.78);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.55;
}

.da-grid {
  display: grid;
  grid-template-columns: 372px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: clamp(36px, 5svh, 52px);
}

.da-catalog,
.da-options {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(139, 194, 232, 0.28);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(17, 34, 56, 0.6), rgba(6, 15, 28, 0.72));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(231, 248, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.da-catalog { padding: 30px 26px 26px; }
.da-options { padding: 30px 30px 24px; }
.da-catalog h3,
.da-options h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(240, 246, 255, 0.96);
}
.da-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.da-panel__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-style: normal;
}
.da-panel__icon--catalog { background: linear-gradient(150deg, #2f6bff, #38a6f0); }
.da-panel__icon--catalog svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.da-panel__icon--options {
  border: 1px solid rgba(123, 95, 240, 0.35);
  background: rgba(123, 95, 240, 0.16);
}
.da-panel__icon--options svg { width: 22px; height: 22px; fill: #9d8bff; }
.da-panel__meta { min-width: 0; }
.da-panel__lead {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(183, 199, 222, 0.7);
}
.da-catalog__list {
  display: grid;
  gap: 8px;
  margin: 20px 0 20px;
  padding: 0;
  list-style: none;
}
.da-catalog__list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(122, 175, 216, 0.24);
  border-radius: 11px;
  background: rgba(3, 12, 25, 0.32);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.da-catalog__list li:hover {
  background: rgba(94, 185, 235, 0.065);
  box-shadow: inset 2px 0 0 rgba(107, 207, 247, 0.45);
}
.da-catalog__list .da-tile { width: 34px; height: 34px; border-radius: 9px; }
.da-catalog__list li > b {
  min-width: 0;
  overflow: hidden;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(246, 249, 255, 0.96);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.da-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border: 1px solid rgba(150, 170, 195, 0.28);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.da-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  font-style: normal;
}
.da-pill--ok {
  color: #85e88f;
  border-color: rgba(99, 230, 77, 0.28);
  background: rgba(99, 230, 77, 0.08);
}
.da-pill--ok i {
  background: #63e64d;
  animation: dh-status-pulse-green 2.8s ease-in-out infinite;
}
.da-catalog__list li:nth-child(2n) .da-pill--ok i { animation-delay: -0.9s; }
.da-catalog__list li:nth-child(3n) .da-pill--ok i { animation-delay: -1.7s; }
.da-pill--prod {
  color: #7db4ff;
  border-color: rgba(83, 146, 255, 0.32);
  background: rgba(83, 146, 255, 0.1);
}
.da-pill--prod i { background: #5392ff; }
.da-pill--sql {
  color: #b7a5ff;
  border-color: rgba(139, 115, 255, 0.32);
  background: rgba(139, 115, 255, 0.1);
}
.da-pill--sql i { background: #8b73ff; }
.da-pill--demand {
  color: rgba(190, 204, 224, 0.75);
  background: rgba(150, 170, 195, 0.08);
}
.da-pill--demand i { background: rgba(150, 170, 195, 0.6); }
.solution-page--deskio .da-catalog__add {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  padding: 14px 16px;
  border: 1.5px dashed rgba(111, 157, 255, 0.4);
  border-radius: 12px;
  color: #6f9dff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.solution-page--deskio .da-catalog__add:hover {
  border-color: rgba(157, 188, 255, 0.6);
  background: rgba(111, 157, 255, 0.05);
}
.da-catalog__add-plus { font-size: 20px; line-height: 1.1; }
.da-catalog__add-meta { min-width: 0; }
.da-catalog__add-meta b { display: block; font-weight: 600; }
.da-catalog__add-meta small {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(183, 199, 222, 0.65);
}
.da-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(214, 227, 245, 0.88);
}
.da-group-label span { white-space: nowrap; }
.da-group-label__icon {
  flex: none;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: rgba(148, 186, 236, 0.9);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.da-ms--label { flex: none; grid-template-columns: 7px 7px; gap: 1.5px; }
.da-ms--label b { width: 7px; height: 7px; }
.da-group-label::after { margin-left: 6px; }
.da-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(122, 175, 216, 0.22);
}
.da-cards { display: grid; gap: 16px; }
.da-cards--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.da-cards--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.da-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 122px;
  padding: 16px;
  border: 1px solid rgba(122, 175, 216, 0.24);
  border-radius: 12px;
  background: rgba(3, 12, 25, 0.32);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.da-card:hover {
  background: rgba(94, 185, 235, 0.06);
  border-color: rgba(122, 195, 240, 0.4);
}
.da-card__top { display: flex; align-items: center; gap: 12px; min-width: 0; }
.da-card .da-tile { flex: none; width: 38px; height: 38px; border-radius: 10px; font-size: 17px; }
.da-card .da-tile--wk { grid-template-columns: repeat(3, 8px); grid-auto-rows: 8px; }
.da-card .da-tile--odoo { font-size: 11.5px; }
.da-card__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.da-card__meta b { font-size: 15.5px; font-weight: 600; line-height: 1.25; color: rgba(246, 249, 255, 0.96); }
.da-card__meta small {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(183, 199, 222, 0.68);
}
.da-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.da-card__price strong { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: #f3f8ff; }
.da-card__price small {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(170, 190, 218, 0.6);
}

.da-options__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(122, 175, 216, 0.18);
}
.da-options__cta p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 14.5px;
  color: rgba(203, 215, 234, 0.8);
}
.da-options__cta p svg { width: 20px; height: 20px; flex: none; fill: none; stroke: #6f9dff; stroke-width: 1.6; }
.solution-page--deskio .da-options__cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6f9dff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.solution-page--deskio .da-options__cta a:hover { color: #9dbcff; }
.da-options__cta a svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }

/* ===== Animations ===== */
@keyframes dh-deck-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
}
/* translate se compose avec le transform 3D (tilt) sans le remplacer */
@keyframes dh-card-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}
@keyframes dh-card-in {
  from { opacity: 0; }
}
@keyframes dh-rise {
  from { opacity: 0; translate: 0 22px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes dh-status-pulse-green {
  0%, 100% { box-shadow: 0 0 6px rgba(98, 235, 77, 0.28); }
  50% { box-shadow: 0 0 13px rgba(98, 235, 77, 0.62); }
}
@keyframes dh-status-pulse-blue {
  0%, 100% { box-shadow: 0 0 6px rgba(77, 168, 255, 0.28); }
  50% { box-shadow: 0 0 13px rgba(77, 168, 255, 0.62); }
}

/* ===== Responsive ===== */
@media (max-width: 1560px) {
  .dh-hero__inner { --deck-scale: 0.86; width: min(calc(100% - 88px), 1537px); }
}
@media (max-width: 1360px) {
  .dh-hero__inner { --deck-scale: 0.74; }
  .dh-copy h1 { font-size: clamp(44px, 4.6vw, 64px); }
}
@media (max-width: 1320px) {
  .deskio-topbar { grid-template-columns: auto 1fr auto; }
  .deskio-logo { justify-self: start; }
  .deskio-nav { display: none; }
  .deskio-menu-toggle { display: inline-flex; }
}
@media (max-width: 1320px) {
  .da-compat__band { flex-wrap: wrap; justify-content: center; }
  .da-cards--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1180px) {
  .da-inner { width: min(calc(100% - 48px), 760px); }
  .da-grid { grid-template-columns: minmax(0, 1fr); }
  .da-compat__eyebrow { padding-left: 0; }
  .dh-hero { min-height: 0; padding-top: 64px; }
  .dh-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    width: min(calc(100% - 48px), 640px);
    gap: 48px;
  }
  .dh-copy { order: 1; text-align: left; }
  .dh-deck { order: 2; height: auto; perspective: none; }
  .dh-deck__stack {
    width: 100%;
    height: auto;
    scale: none;
    animation: none;
  }
  .dh-card { display: none; }
  .dh-card--front {
    display: flex;
    position: static;
    width: 100%;
    height: auto;
    padding: 30px 22px 24px;
    transform: none;
    animation: dh-rise 0.8s cubic-bezier(0.22, 0.7, 0.3, 1) 0.45s backwards;
  }
  .dh-search { margin-top: 18px; }
  .dh-title__line { white-space: normal; }
  .dh-trust {
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 18px 0;
  }
  .dh-trust > span:nth-child(2n) { border-right: 0; }
}
@media (max-width: 760px) {
  .deskio-login { display: none; }
  .solution-page--deskio .deskio-try { min-height: 46px; padding: 0 18px; font-size: 15px; }
}
@media (max-width: 620px) {
  .da-inner { width: calc(100% - 36px); }
  .da-compat__band { padding: 14px 18px; gap: 14px 20px; }
  .da-cards--three,
  .da-cards--two { grid-template-columns: minmax(0, 1fr); }
  .da-card__meta small { white-space: normal; }
  .da-card__price small { max-width: none; }
  .da-options { padding: 24px 20px 20px; }
  .da-catalog { padding: 24px 20px 20px; }
  .da-options__cta { flex-wrap: wrap; }
  .deskio-topbar { gap: 10px; padding: 10px 14px; }
  .solution-page--deskio .deskio-topbar .deskio-try { display: none; }
  .deskio-menu-toggle { padding: 0 14px; }
  .dh-hero { padding-top: 52px; }
  .dh-hero__inner { width: calc(100% - 36px); }
  .dh-copy h1 { font-size: clamp(38px, 10.5vw, 48px); }
  .dh-list li { grid-template-columns: 34px minmax(0, 1fr) 12px; gap: 10px; padding: 6px 11px; }
  .dh-list__icon { width: 34px; height: 34px; font-size: 14px; }
  .dh-list__icon svg { width: 18px; height: 18px; }
  .dh-list__meta { flex-direction: column; gap: 2px; white-space: normal; }
  .dh-list__meta small::before { content: ""; }
  .dh-trust { grid-template-columns: minmax(0, 1fr); gap: 14px; justify-items: start; width: min(calc(100% - 48px), 360px); }
  .dh-trust > span { border-right: 0 !important; padding: 0; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .dh-deck__stack,
  .dh-card,
  .dh-kicker,
  .dh-copy h1,
  .dh-lead,
  .dh-actions,
  .dh-trust,
  .dh-devices i,
  .dh-active i,
  .dh-dot,
  .da-pill--ok i {
    animation: none !important;
  }
  .dh-card { transition: none; }
}

/* ===== Hero Deskio « Sans les murs » — référence 1672 × 941 ===== */
@keyframes dh-scene-in {
  from { opacity: 0; translate: 0 14px; }
  to { opacity: 1; translate: 0 0; }
}

@media (min-width: 1321px) {
  .solution-page--deskio .deskio-topbar {
    position: absolute;
    inset: 0 0 auto;
    grid-template-columns: auto 1fr auto;
    min-height: var(--cb-topbar-h);
    padding: 0 var(--cb-topbar-pad-x);
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .solution-page--deskio .deskio-logo {
    justify-self: start;
    margin-left: clamp(0px, calc(29.1vw - 219px), 333px);
  }
  .solution-page--deskio .deskio-logo--cloudbizz {
    line-height: 1;
    transform: none;
  }
  .solution-page--deskio .deskio-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    min-height: 48px;
    padding: 0;
    gap: 45px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translate(-55%, -50%);
  }
  .solution-page--deskio .deskio-topbar__actions {
    grid-column: 3;
    justify-self: end;
    width: auto;
    gap: 26px;
  }
  .solution-page--deskio .deskio-nav a,
  .solution-page--deskio .deskio-login { font-weight: 500; }
  .solution-page--deskio .deskio-login { margin-left: 20px; }
  .solution-page--deskio .deskio-topbar .language-select select {
    width: 79px;
    min-width: 79px;
    min-height: 46px;
  }
  .solution-page--deskio .deskio-topbar .deskio-try {
    width: 162px;
    min-height: 48px;
    padding: 0 24px;
  }
}

.solution-page--deskio .dh-hero {
  min-height: 100svh;
  height: 100svh;
  padding: 0;
  display: block;
  background:
    radial-gradient(circle at 74% 28%, rgba(36, 93, 174, 0.065), transparent 43%),
    linear-gradient(180deg, #010711 0%, #020914 100%);
}
.solution-page--deskio .dh-hero .story-lines {
  opacity: 0.28;
  mask-image: none;
  -webkit-mask-image: none;
}
.solution-page--deskio .dh-hero__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
}
.solution-page--deskio .dh-scene {
  position: absolute;
  z-index: 1;
  top: clamp(72px, 9.03svh, 94px);
  left: 0;
  width: min(53.83vw, 900px);
  aspect-ratio: 900 / 770;
  height: auto;
  margin: 0;
  pointer-events: none;
  animation: dh-scene-in 0.9s cubic-bezier(0.22, 0.7, 0.3, 1) 0.06s backwards;
}
.solution-page--deskio .dh-scene > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 0 0;
  translate: 0 0;
  scale: 1;
  animation: none;
  transition: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 96%, transparent 100%);
}
.solution-page--deskio .dh-scene::after { display: none; }

/* Panneau produit live DOM : recouvre la zone neutralisée du crop et reste traduisible. */
.solution-page--deskio .dh-workspace {
  position: absolute;
  z-index: 2;
  top: 22.0779%;
  left: 61.6667%;
  width: 29.3333%;
  height: 22.5974%;
  padding: 16px 15px 11px;
  overflow: hidden;
  border: 1px solid rgba(205, 224, 238, 0.37);
  border-radius: 11px;
  background: linear-gradient(145deg, #405567 0%, #2d4354 100%);
  color: #f4f7fa;
  box-shadow: 0 10px 28px rgba(3, 10, 18, 0.22);
  font-size: 10px;
}
.solution-page--deskio .dh-workspace > p {
  margin: 0 0 10px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
}
.solution-page--deskio .dh-workspace ul {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  border-top: 1px solid rgba(231, 241, 248, 0.14);
}
.solution-page--deskio .dh-workspace li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 7px;
  align-items: center;
  gap: 10px;
  min-height: 35px;
}
.solution-page--deskio .dh-workspace__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 3px;
}
.solution-page--deskio .dh-workspace__icon--horus {
  border: 1px solid rgba(213, 204, 255, 0.82);
  color: #fff;
  background: linear-gradient(145deg, #693cff, #24129b);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
.solution-page--deskio .dh-workspace__icon--microsoft {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: #111;
}
.solution-page--deskio .dh-workspace__icon--microsoft i:nth-child(1) { background: #f35325; }
.solution-page--deskio .dh-workspace__icon--microsoft i:nth-child(2) { background: #81bc06; }
.solution-page--deskio .dh-workspace__icon--microsoft i:nth-child(3) { background: #05a6f0; }
.solution-page--deskio .dh-workspace__icon--microsoft i:nth-child(4) { background: #ffba08; }
.solution-page--deskio .dh-workspace__icon--microsoft i {
  display: block;
  width: 100%;
  height: 100%;
}
.solution-page--deskio .dh-workspace__icon--desktop {
  color: rgba(247, 249, 250, 0.9);
  background: transparent;
}
.solution-page--deskio .dh-workspace__icon--desktop svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.solution-page--deskio .dh-workspace__meta {
  display: flex;
  align-items: baseline;
  min-width: 0;
  gap: 4px;
  white-space: nowrap;
}
.solution-page--deskio .dh-workspace__meta b {
  font-size: 10.7px;
  font-weight: 500;
}
.solution-page--deskio .dh-workspace__meta small {
  overflow: hidden;
  color: rgba(231, 237, 242, 0.72);
  font-size: 9.3px;
  font-weight: 400;
  text-overflow: ellipsis;
}
.solution-page--deskio .dh-workspace li > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62d72f;
  box-shadow: 0 0 9px rgba(98, 215, 47, 0.54);
}

.solution-page--deskio .dh-copy {
  position: absolute;
  z-index: 2;
  top: 239px;
  left: max(900px, calc(50% + 172.5px));
  width: min(550px, calc(100vw - max(900px, calc(50% + 172.5px)) - 44px));
}
.solution-page--deskio .dh-deskio-logo {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  display: inline-flex;
  align-items: baseline;
  color: #f2f6ff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}
.solution-page--deskio .dh-deskio-logo i {
  color: #5c7cff;
  font-style: normal;
}
.solution-page--deskio .dh-deskio-logo:focus-visible {
  outline: 2px solid #a9d8ff;
  outline-offset: 6px;
  border-radius: 3px;
}
.solution-page--deskio .dh-kicker {
  margin: 0 0 23px;
}
.solution-page--deskio .dh-copy h1 {
  font-size: 85px;
  line-height: var(--cb-display-leading);
}
.solution-page--deskio .dh-lead {
  width: 550px;
  max-width: 100%;
  margin-top: 30px;
  font-size: 21.5px;
  line-height: 1.47;
}
.solution-page--deskio .dh-lead > span {
  display: block;
  white-space: nowrap;
}
.solution-page--deskio .dh-actions {
  gap: 24px 37px;
  margin-top: 27px;
}
.solution-page--deskio .dh-btn-primary {
  min-width: 245px;
  min-height: 66px;
  padding: 0 32px;
  background: linear-gradient(100deg, #c4e7ff 0%, #b7dcfd 52%, #a9d1f8 100%);
  font-size: 17px;
  font-weight: 700;
}
.solution-page--deskio .dh-btn-ghost {
  font-size: 17px;
}
.solution-page--deskio .dh-assurance {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 9px;
  margin: 36px 0 0;
  color: rgba(181, 193, 213, 0.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}
.solution-page--deskio .dh-assurance svg {
  width: 24px;
  height: 24px;
  margin-right: 3px;
  fill: none;
  stroke: #a9d8ff;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.solution-page--deskio .dh-assurance i {
  color: rgba(181, 193, 213, 0.7);
  font-style: normal;
}

.solution-page--deskio .dh-trust {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 23px;
  left: 0;
  display: grid;
  grid-template-columns: 29.632% 20.821% 26.252% 23.295%;
  width: 100%;
  max-width: none;
  height: 66px;
  margin: 0;
}
.solution-page--deskio .dh-trust > span {
  min-height: 66px;
  padding: 0;
  justify-content: flex-start;
  border-right-color: rgba(135, 162, 194, 0.26);
}
.solution-page--deskio .dh-trust > span:nth-child(1) { padding-left: 11.36vw; }
.solution-page--deskio .dh-trust > span:nth-child(2) { padding-left: 3.23vw; }
.solution-page--deskio .dh-trust > span:nth-child(3) { padding-left: 4vw; }
.solution-page--deskio .dh-trust > span:nth-child(4) { padding-left: 2.51vw; }
.solution-page--deskio .dh-trust svg {
  width: 36px;
  height: 36px;
  stroke: #91c7f1;
  stroke-width: 1.35;
}
.solution-page--deskio .dh-trust > span:nth-child(1) svg { width: 38px; }
.solution-page--deskio .dh-trust > span:nth-child(2) svg { width: 40px; }
.solution-page--deskio .dh-trust > span:nth-child(3) svg { width: 47px; }
.solution-page--deskio .dh-trust > span:nth-child(4) svg { width: 43px; }

@media (max-width: 1480px) and (min-width: 1181px) {
  .solution-page--deskio .dh-copy {
    top: clamp(210px, 25.8svh, 245px);
    left: 58.5vw;
    width: calc(41.5vw - 44px);
  }
  .solution-page--deskio .dh-copy h1 {
    font-size: clamp(64px, 5.15vw, 76px);
  }
  .solution-page--deskio .dh-lead {
    width: min(500px, 100%);
    font-size: clamp(18px, 1.35vw, 20px);
  }
}

@media (min-width: 1321px) {
  html[lang="en"] .solution-page--deskio .dh-copy h1 { font-size: clamp(72px, 4.8vw, 80px); }
  html[lang="nl-BE"] .solution-page--deskio .dh-copy h1 { font-size: clamp(72px, 4.9vw, 82px); }
}

@media (max-width: 1320px) {
  .solution-page--deskio .deskio-topbar {
    position: sticky;
  }
  .solution-page--deskio .dh-hero {
    height: auto;
    min-height: 0;
    padding: 64px 0 36px;
  }
  .solution-page--deskio .dh-hero__inner {
    position: relative;
    inset: auto;
    width: min(calc(100% - 48px), 760px);
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }
  .solution-page--deskio .dh-copy {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
    width: 100%;
  }
  .solution-page--deskio .dh-scene {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: 100%;
  }
  .solution-page--deskio .dh-copy h1 {
    font-size: clamp(54px, 7.3vw, 76px);
  }
  .solution-page--deskio .dh-lead { width: 570px; }
  .solution-page--deskio .dh-trust {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100% - 48px), 760px);
    height: auto;
    margin: 46px auto 0;
  }
  .solution-page--deskio .dh-trust > span {
    padding: 8px 28px !important;
  }
  .solution-page--deskio .dh-trust > span:nth-child(2n) { border-right: 0; }
}

@media (max-width: 620px) {
  .solution-page--deskio .dh-hero { padding-top: 48px; }
  .solution-page--deskio .dh-hero__inner { width: calc(100% - 36px); gap: 36px; }
  .solution-page--deskio .deskio-logo--cloudbizz .brand__logo-img { width: 126px; }
  .solution-page--deskio .dh-deskio-logo {
    bottom: calc(100% + 10px);
    font-size: 28px;
  }
  .solution-page--deskio .dh-kicker { margin-bottom: 20px; font-size: 12px; }
  .solution-page--deskio .dh-copy h1 { font-size: clamp(42px, 12vw, 52px); }
  .solution-page--deskio .dh-lead { margin-top: 24px; font-size: 17px; line-height: 1.55; }
  .solution-page--deskio .dh-lead > span { display: inline; white-space: normal; }
  .solution-page--deskio .dh-lead > span + span::before { content: " "; }
  .solution-page--deskio .dh-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 28px; }
  .solution-page--deskio .dh-btn-primary { width: 100%; min-width: 0; min-height: 58px; }
  .solution-page--deskio .dh-assurance { margin-top: 28px; font-size: 14px; }
  .solution-page--deskio .dh-scene { width: calc(100% + 36px); margin-left: -18px; }
  .solution-page--deskio .dh-workspace { padding: 7px 7px 4px; font-size: 6px; }
  .solution-page--deskio .dh-workspace > p { margin-bottom: 3px; font-size: 7.4px; white-space: nowrap; }
  .solution-page--deskio .dh-workspace ul { padding-top: 2px; }
  .solution-page--deskio .dh-workspace li { grid-template-columns: 12px minmax(0, 1fr) 4px; gap: 3px; min-height: 14px; }
  .solution-page--deskio .dh-workspace__icon { width: 12px; height: 12px; }
  .solution-page--deskio .dh-workspace__icon--horus { font-size: 8px; }
  .solution-page--deskio .dh-workspace__icon--microsoft { padding: 1px; }
  .solution-page--deskio .dh-workspace__icon--desktop svg { width: 12px; height: 12px; }
  .solution-page--deskio .dh-workspace__meta { gap: 2px; }
  .solution-page--deskio .dh-workspace__meta b { font-size: 5.5px; }
  .solution-page--deskio .dh-workspace__meta small { font-size: 5px; }
  .solution-page--deskio .dh-workspace li > i { width: 4px; height: 4px; }
  .solution-page--deskio .dh-trust {
    grid-template-columns: minmax(0, 1fr);
    width: min(calc(100% - 48px), 390px);
  }
  .solution-page--deskio .dh-trust > span {
    min-height: 52px;
    padding: 4px 0 !important;
    border-right: 0;
  }
}

@media (max-width: 380px) {
  .solution-page--deskio .dh-workspace li { min-height: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .solution-page--deskio .dh-scene { animation: none !important; }
}

/* ============================================================
   Deskio — section « Comment fonctionne Deskio ? » (dkp)
   Refonte fidèle maquette 20260719.
   ============================================================ */

.solution-page--deskio .dkp .go-section-head {
  max-width: 1120px;
}

.solution-page--deskio .dkp .go-accent {
  background: linear-gradient(92deg, #c7b8ff 0%, #8b5ffb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dkp__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px clamp(24px, 2.6vw, 42px);
  margin-top: clamp(40px, 4.4vw, 62px);
}

/* Subgrid : aligne tête / visuel / liste entre cartes quel que soit
   le nombre de lignes des titres traduits. */
.dkp__step {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid rgba(158, 152, 255, .16);
  border-radius: 26px;
  background: linear-gradient(168deg, rgba(28, 30, 78, .62), rgba(12, 14, 44, .88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 24px 54px rgba(2, 4, 18, .38);
}

.dkp__step-head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dkp__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8a68ff, #5f3ff0);
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(105, 76, 250, .45), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.dkp__step-head h3 {
  display: flex;
  align-items: center;
  min-height: 2.44em;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.22;
  letter-spacing: -.015em;
  font-weight: 800;
}

.dkp__visual {
  position: relative;
  border: 1px solid rgba(163, 168, 255, .13);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 12, 38, .55), rgba(13, 16, 48, .72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.dkp__visual > svg {
  display: block;
  width: 100%;
  height: auto;
}

.dkp__visual text {
  font-family: var(--font-family, 'Cerebri Sans'), Inter, system-ui, sans-serif;
}

/* Connecteur lumineux entre les cartes, centré sur la hauteur du visuel. */
.dkp__step:not(:last-child) .dkp__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + clamp(22px, 2vw, 30px) + 1px);
  width: clamp(24px, 2.6vw, 42px);
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(139, 118, 255, .1), rgba(139, 118, 255, .5), rgba(139, 118, 255, .1));
}

.dkp__step:not(:last-child) .dkp__visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + clamp(22px, 2vw, 30px) + 1px + clamp(24px, 2.6vw, 42px) / 2);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #8f74ff;
  box-shadow: 0 0 0 4px rgba(139, 107, 255, .16), 0 0 16px rgba(139, 107, 255, .85);
}

.dkp__step ul {
  display: grid;
  gap: 13px;
  margin: 4px 0 2px;
  padding: 0 2px;
  list-style: none;
}

.dkp__step li {
  position: relative;
  margin: 0;
  padding-left: 23px;
  color: #c3c8ea;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}

.dkp__step li::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8b76ff;
  box-shadow: 0 0 10px rgba(139, 118, 255, .8);
}

.dkp__bottom {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  gap: clamp(20px, 2.2vw, 32px);
  margin-top: clamp(28px, 3vw, 44px);
}

.dkp__banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 34px) clamp(24px, 2.8vw, 40px);
  border: 1px solid rgba(158, 152, 255, .16);
  border-radius: 26px;
  background: linear-gradient(168deg, rgba(28, 30, 78, .58), rgba(12, 14, 44, .86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 24px 54px rgba(2, 4, 18, .34);
}

.dkp__badge {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(74px, 5.6vw, 92px);
  height: clamp(74px, 5.6vw, 92px);
  border-radius: 24px;
  border: 1px solid rgba(164, 140, 255, .5);
  background: linear-gradient(150deg, rgba(124, 92, 252, .3), rgba(24, 20, 70, .35));
  box-shadow: 0 14px 34px rgba(94, 66, 245, .28), inset 0 1px 0 rgba(255, 255, 255, .14);
  color: #ded5ff;
}

.dkp__badge svg {
  width: clamp(36px, 2.7vw, 44px);
  height: clamp(36px, 2.7vw, 44px);
  stroke-width: 1.9;
}

.dkp__note-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.38;
  letter-spacing: -.015em;
  font-weight: 800;
}

.dkp__banner svg.dkp__wave {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 46%;
  max-width: 440px;
  height: auto;
  fill: none;
  stroke: #8b6bff;
  transform: translateY(-50%);
  pointer-events: none;
}

.dkp__aside-text {
  margin: 0;
  color: #c6cbec;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .dkp__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dkp__step:not(:last-child) .dkp__visual::before,
  .dkp__step:not(:last-child) .dkp__visual::after { display: none; }
  .dkp__bottom { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .dkp__steps { grid-template-columns: 1fr; }
  .dkp__step-head h3 { min-height: 0; }
  .dkp__banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .dkp__wave { display: none; }
}

/* ============================================================
   Deskio — harmonisation typographique avec la hero.
   Les titres display et les leads consomment l'échelle globale ;
   les labels et titres de cartes conservent leur graisse d'interface.
   ============================================================ */

.solution-page--deskio .da-head h2,
.solution-page--deskio .dkp .go-section-head h2,
.solution-page--deskio .go-packs .go-section-head h2,
.solution-page--deskio .go-diagnostic h2 {
  font-family: var(--cb-display-font);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
}

.solution-page--deskio .da-head h2,
.solution-page--deskio .dkp .go-section-head h2,
.solution-page--deskio .go-packs .go-section-head h2 {
  color: var(--cb-display-ink-dark);
  font-size: var(--cb-title-section);
}

.solution-page--deskio .go-diagnostic h2 {
  font-size: var(--cb-title-cta);
}

.solution-page--deskio .da-head h2 em,
.solution-page--deskio .dkp .go-section-head h2 .go-accent,
.solution-page--deskio .go-packs .go-section-head h2 .go-accent {
  background: var(--cb-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: inherit;
}

.solution-page--deskio .da-eyebrow {
  color: var(--cb-eyebrow-ink-dark);
  font-size: var(--cb-eyebrow-size);
  font-weight: var(--cb-eyebrow-weight);
  letter-spacing: var(--cb-eyebrow-tracking);
}

.solution-page--deskio .da-lead,
.solution-page--deskio .dkp .go-section-head > p:not(.go-story-pill),
.solution-page--deskio .go-packs .go-section-head > p:last-child {
  color: var(--cb-lead-ink-dark);
  font-family: var(--cb-display-font);
  font-size: var(--cb-lead-section);
  font-weight: var(--cb-lead-weight);
  letter-spacing: var(--cb-lead-tracking);
  line-height: 1.3;
}
