*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vc-paper);
  color: var(--vc-ink);
  font-family: var(--vc-font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--vc-cyan);
  outline-offset: 3px;
  border-radius: var(--vc-radius-xs);
}

h1, h2, h3, h4 {
  font-family: var(--vc-font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.45rem); }

p { margin: 0; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--vc-pad);
  top: -100px;
  z-index: 300;
  padding: 10px 16px;
  background: var(--vc-navy);
  color: var(--vc-on-dark);
  border-radius: var(--vc-radius-sm);
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(100% - 2 * var(--vc-pad), var(--vc-max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vc-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vc-gold);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--vc-gold);
}

/* Buttons */
.vc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 0;
  cursor: pointer;
  border-radius: var(--vc-radius-pill);
  font-family: var(--vc-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.35s var(--vc-ease-brand), border-color 0.35s, color 0.35s;
}

.vc-btn--primary {
  background: var(--vc-cyan);
  color: var(--vc-navy-x);
}

.vc-btn--primary:hover {
  background: var(--vc-cyan-on-dark);
}

.vc-btn--ghost {
  border: 1.5px solid var(--vc-line);
  background: var(--vc-paper);
  color: var(--vc-ink);
}

.vc-btn--ghost:hover {
  border-color: var(--vc-navy);
}

.vc-btn--on-dark {
  background: var(--vc-cyan);
  color: var(--vc-navy-x);
}

.vc-btn--paper {
  background: var(--vc-paper);
  color: var(--vc-navy);
}

.vc-btn--paper:hover {
  background: var(--vc-cyan-on-dark);
  color: var(--vc-navy-x);
}

.vc-btn--ghost-on-dark {
  border: 1.5px solid rgba(247, 249, 252, 0.32);
  color: var(--vc-on-dark);
  background: transparent;
}

.vc-btn--ghost-on-dark:hover {
  border-color: var(--vc-cyan);
  background: rgba(14, 180, 194, 0.12);
}

/* Progress */
.vc-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 200;
  background: var(--vc-navy);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* Nav — dropped from the top of the viewport for readability */
.site-header {
  position: fixed;
  top: max(48px, env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0 14px;
  transition: background 0.4s var(--vc-ease-brand), box-shadow 0.4s, padding 0.4s, top 0.4s;
}

.site-header.is-stuck,
.site-header.is-inner {
  top: 0;
  background: rgba(247, 249, 252, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--vc-line);
  padding: calc(48px + 16px + env(safe-area-inset-top, 0px)) 0 14px;
  box-shadow: 0 8px 28px -24px rgba(12, 18, 48, 0.45);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  height: 42px;
  width: auto;
}

.site-logo__white { display: block; }
.site-logo__color { display: none; }

.site-header.is-stuck .site-logo__white,
.site-header.is-inner .site-logo__white {
  display: none;
}

.site-header.is-stuck .site-logo__color,
.site-header.is-inner .site-logo__color {
  display: block;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--vc-font-display);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav__list {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--vc-font-display);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav .menu-item-has-children {
  position: relative;
}

.site-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  vertical-align: middle;
  opacity: 0.65;
}

.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  min-width: 240px;
  margin: 0;
  padding: 10px 0 8px;
  list-style: none;
  background: var(--vc-paper);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm);
  box-shadow: 0 16px 48px -20px rgba(12, 18, 48, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--vc-ease-brand), visibility 0.25s;
  z-index: 120;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav .sub-menu .menu-item {
  margin: 0;
}

.site-nav .sub-menu a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
  color: var(--vc-ink);
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
  color: var(--vc-navy);
  background: var(--vc-paper-2);
}

.site-header:not(.is-stuck):not(.is-inner) .site-nav .site-nav__list > li > a {
  color: var(--vc-on-dark-muted);
}

.site-header:not(.is-stuck):not(.is-inner) .site-nav .site-nav__list > li > a:hover,
.site-header:not(.is-stuck):not(.is-inner) .site-nav .site-nav__list > li > a:focus-visible {
  color: var(--vc-on-dark);
}

.site-header.is-stuck .site-nav .site-nav__list > li > a,
.site-header.is-inner .site-nav .site-nav__list > li > a {
  color: var(--vc-muted);
}

.site-header.is-stuck .site-nav .site-nav__list > li > a:hover,
.site-header.is-stuck .site-nav .site-nav__list > li > a:focus-visible,
.site-header.is-inner .site-nav .site-nav__list > li > a:hover,
.site-header.is-inner .site-nav .site-nav__list > li > a:focus-visible {
  color: var(--vc-navy);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: var(--vc-radius-sm);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--vc-on-dark);
  border-radius: 2px;
}

.site-header.is-stuck .nav-toggle span,
.site-header.is-inner .nav-toggle span {
  background: var(--vc-ink);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--vc-paper);
    border-bottom: 1px solid var(--vc-line);
    padding: 16px var(--vc-pad) 24px;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list,
  .site-nav ul { flex-direction: column; gap: 14px; }
  .site-header:not(.is-stuck):not(.is-inner) .site-nav .site-nav__list > li > a {
    color: var(--vc-ink);
  }
  .site-nav .menu-item-has-children > a::after {
    float: right;
    margin-top: 8px;
  }
  .site-nav .sub-menu {
    position: static;
    transform: none;
    min-width: 0;
    margin-top: 8px;
    padding: 0 0 0 14px;
    background: transparent;
    border: none;
    border-left: 2px solid var(--vc-line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .site-nav .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }
  .site-nav .sub-menu a {
    padding: 8px 0 8px 12px;
    white-space: normal;
  }
}

/* Hero news */
.vc-hero {
  position: relative;
  min-height: 100svh;
  background: var(--vc-navy-x);
  color: var(--vc-on-dark);
  overflow: hidden;
}

.vc-hero__viewport {
  position: relative;
  min-height: 100svh;
}

.vc-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--vc-ease-brand);
}

.vc-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.vc-hero__media {
  position: absolute;
  inset: 0;
}

.vc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: var(--vc-media-fit, cover);
  object-position: var(--vc-media-position, center center);
  transform: scale(1.04);
  transition: transform 10s linear;
}

.vc-hero__slide.is-active .vc-hero__media img {
  animation: vc-cover 12s var(--vc-ease-brand) forwards;
}

@keyframes vc-cover {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.vc-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 46, 0.52) 0%,
    rgba(10, 14, 46, 0.12) 36%,
    rgba(10, 14, 46, 0.78) 100%
  );
}

.vc-hero__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--vc-nav-h) + 56px) 0 88px;
}

.vc-hero__content h2 {
  max-width: 16ch;
  margin-top: 14px;
  color: var(--vc-on-dark);
}

.vc-hero__excerpt {
  margin-top: 18px;
  max-width: 48ch;
  color: var(--vc-on-dark-muted);
  font-size: 1.05rem;
}

.vc-hero__cta {
  margin-top: 28px;
}

.vc-hero__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-hero__dot {
  appearance: none;
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 249, 252, 0.4);
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}

.vc-hero__dot.is-active {
  background: var(--vc-cyan);
}

.vc-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(247, 249, 252, 0.28);
  border-radius: 50%;
  background: rgba(10, 14, 46, 0.38);
  color: var(--vc-on-dark);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}

.vc-hero__arrow svg {
  width: 20px;
  height: 20px;
}

.vc-hero__arrow:hover {
  background: rgba(10, 14, 46, 0.62);
  border-color: var(--vc-cyan);
}

.vc-hero__arrow--prev { left: max(16px, var(--vc-pad)); }
.vc-hero__arrow--next { right: max(16px, var(--vc-pad)); }

@media (max-width: 700px) {
  .vc-hero__arrow {
    width: 40px;
    height: 40px;
  }
  .vc-hero__arrow--prev { left: 10px; }
  .vc-hero__arrow--next { right: 10px; }
}

.vc-hero__empty {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--vc-pad);
  text-align: center;
}

/* Activities */
.lead {
  color: var(--vc-muted);
}

.vc-section {
  padding-block: clamp(72px, 9vw, 128px);
}

.vc-section__head {
  max-width: 40rem;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.vc-section__head h2 {
  margin-top: 16px;
}

.vc-section__head .lead {
  margin-top: 16px;
  color: var(--vc-muted);
}

.vc-screens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vc-screen {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--vc-radius-md);
  background: var(--vc-navy-d);
  color: var(--vc-on-dark);
}

.vc-screen__glass {
  position: absolute;
  inset: 0;
}

.vc-screen__glass img {
  width: 100%;
  height: 100%;
  object-fit: var(--vc-media-fit, cover);
  object-position: var(--vc-media-position, center center);
  transform: scale(1.03);
  transition: transform 1.1s var(--vc-ease-brand);
}

.vc-screen:hover .vc-screen__glass img {
  transform: scale(1.08);
}

.vc-screen__glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 46, 0.08) 0%,
    rgba(10, 14, 46, 0.12) 40%,
    rgba(10, 14, 46, 0.86) 100%
  );
}

.vc-screen__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px 18px 24px;
}

.vc-screen__copy h3 {
  color: var(--vc-on-dark);
  font-size: 1.12rem;
}

.vc-screen__copy p {
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--vc-on-dark-muted);
}

@media (max-width: 1000px) {
  .vc-screens {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
  }
  .vc-screen {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: start;
  }
}

/* KPIs */
.vc-kpis {
  padding-block: clamp(56px, 7vw, 92px);
  background: var(--vc-paper-2);
  border-block: 1px solid var(--vc-line);
}

.vc-kpis__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.vc-kpi {
  padding: 4px 28px;
  border-right: 1px solid var(--vc-line);
}

.vc-kpi:first-child { padding-left: 0; }
.vc-kpi:last-child {
  padding-right: 0;
  border-right: 0;
}

.vc-kpi__n {
  font-family: var(--vc-font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--vc-navy);
}

.vc-kpi__n i {
  font-style: normal;
  color: var(--vc-cyan);
  font-weight: 600;
}

.vc-kpi p {
  margin-top: 12px;
  max-width: 20ch;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--vc-muted);
}

@media (max-width: 800px) {
  .vc-kpis__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
  }
  .vc-kpi {
    padding: 0 16px 0 0;
    border-right: 0;
  }
  .vc-kpi:nth-child(odd) { padding-left: 0; }
}

/* Method */
.vc-method {
  background: var(--vc-paper-2);
  border-block: 1px solid var(--vc-line);
}

.vc-method__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 72px);
}

.vc-method__stage {
  position: sticky;
  top: calc(var(--vc-nav-h) + 12px);
  height: min(66vh, 540px);
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  background: var(--vc-navy-d);
}

.vc-method__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--vc-media-fit, cover);
  object-position: var(--vc-media-position, center center);
  clip-path: inset(0 0 100% 0);
  transform: scale(1.08);
  transition: clip-path 1s var(--vc-ease-brand), transform 1.4s var(--vc-ease-brand);
}

.vc-method__stage img.is-on {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.vc-method__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 16px;
  border-radius: var(--vc-radius-pill);
  background: rgba(10, 14, 46, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 249, 252, 0.16);
  color: var(--vc-on-dark);
  font-family: var(--vc-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 52px 0;
  min-height: 34vh;
  border-top: 1px solid var(--vc-line);
  opacity: 0.34;
  transition: opacity 0.5s var(--vc-ease-brand);
}

.vc-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 2px;
  width: 0;
  background: var(--vc-navy);
  transition: width 0.7s var(--vc-ease-brand);
}

.vc-step.is-active {
  opacity: 1;
}

.vc-step.is-active::before {
  width: 100%;
}

.vc-step__no {
  font-family: var(--vc-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--vc-navy);
  padding-top: 6px;
}

.vc-step.is-active .vc-step__no {
  color: var(--vc-cyan);
}

.vc-step h3 {
  margin-bottom: 8px;
}

.vc-step p {
  color: var(--vc-muted);
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .vc-method__grid {
    grid-template-columns: 1fr;
  }
  .vc-method__stage {
    position: relative;
    top: auto;
    height: min(42vh, 320px);
    margin-bottom: 20px;
  }
  .vc-step {
    opacity: 1;
    min-height: 0;
    padding: 28px 0;
  }
}

/* Team */
.vc-team__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.vc-mate__photo {
  aspect-ratio: 3 / 3.6;
  border-radius: var(--vc-radius-md);
  overflow: hidden;
  background: var(--vc-paper-3);
}

.vc-mate__photo img {
  width: 100%;
  height: 100%;
  object-fit: var(--vc-media-fit, cover);
  object-position: var(--vc-media-position, top center);
  transition: transform 1s var(--vc-ease-brand);
}

.vc-mate:hover .vc-mate__photo img {
  transform: scale(1.05);
}

.vc-mate h3 {
  margin-top: 14px;
  font-size: 0.97rem;
}

.vc-mate p {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--vc-muted);
}

@media (max-width: 1000px) {
  .vc-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .vc-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Logos marquee */
.vc-logos {
  padding-block: 48px 56px;
  background: var(--vc-paper-2);
  border-block: 1px solid var(--vc-line);
  overflow: hidden;
}

.vc-logos .eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.vc-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #0c1230 8%, #0c1230 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #0c1230 8%, #0c1230 92%, transparent);
}

.vc-marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: vc-marquee 48s linear infinite;
}

.vc-marquee__set {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.vc-marquee:hover .vc-marquee__track,
.vc-marquee:focus-within .vc-marquee__track {
  animation-play-state: paused;
}

.vc-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--vc-paper);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-md);
  padding: 10px 20px 10px 12px;
  white-space: nowrap;
  transition: transform 0.4s var(--vc-ease-brand), border-color 0.4s;
}

.vc-chip:hover {
  transform: translateY(-3px);
  border-color: var(--vc-navy);
}

.vc-chip img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.vc-chip b {
  font-family: var(--vc-font-display);
  font-weight: 600;
  font-size: 0.92rem;
}

@keyframes vc-marquee {
  to { transform: translateX(-50%); }
}

/* CTA */
.vc-cta {
  position: relative;
  background:
    radial-gradient(70% 80% at 12% 120%, rgba(14, 180, 194, 0.16), transparent 55%),
    radial-gradient(50% 60% at 92% -10%, rgba(147, 126, 69, 0.18), transparent 50%),
    var(--vc-navy);
  color: var(--vc-on-dark);
  text-align: center;
  overflow: hidden;
}

.vc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(247, 249, 252, 0.07) 1px, transparent 1.2px);
  background-size: 18px 18px;
  opacity: 0.45;
}

.vc-cta__inner {
  position: relative;
  z-index: 1;
}

.vc-cta .eyebrow {
  color: var(--vc-gold);
}

.vc-cta h2 {
  color: var(--vc-on-dark);
}

.vc-cta .lead {
  margin: 18px auto 0;
  max-width: 46ch;
  color: var(--vc-on-dark-muted);
}

.vc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.vc-cta__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
  text-align: left;
}

.vc-cta__facts > div {
  padding: 20px 22px;
  border: 1px solid rgba(247, 249, 252, 0.16);
  border-radius: var(--vc-radius-md);
  background: rgba(10, 14, 46, 0.28);
}

.vc-cta__facts span {
  display: block;
  font-family: var(--vc-font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vc-gold);
}

.vc-cta__facts strong {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--vc-on-dark);
}

@media (max-width: 760px) {
  .vc-cta__facts {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--vc-navy);
  color: var(--vc-on-dark-muted);
  padding: 56px 0 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.site-footer .site-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin: 0 0 18px;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(247, 249, 252, 0.18);
  color: var(--vc-on-dark);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.site-footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer__social a:hover {
  border-color: var(--vc-cyan);
  background: rgba(14, 180, 194, 0.14);
  color: var(--vc-cyan-on-dark);
}

.site-footer h4 {
  color: var(--vc-on-dark);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li { margin-top: 8px; }

.site-footer a:hover { color: var(--vc-cyan-on-dark); }

.site-footer__base {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 249, 252, 0.13);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* Content pages / news */
.page-main {
  padding: calc(var(--vc-nav-h) + 48px) 0 80px;
}

.page-main .entry-header {
  margin-bottom: 28px;
}

.page-main .entry-meta {
  margin-top: 10px;
  color: var(--vc-muted);
  font-size: 0.92rem;
}

.entry-content > * + * { margin-top: 1em; }

.entry-content a {
  color: var(--vc-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--vc-radius-md);
  overflow: hidden;
  background: var(--vc-paper-2);
  border: 1px solid var(--vc-line);
}

.news-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--vc-navy-d);
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  padding: 18px 18px 22px;
}

.news-card__body h3 {
  margin-top: 6px;
}

.news-card__body p {
  margin-top: 8px;
  color: var(--vc-muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
}

.single-hero {
  aspect-ratio: 16 / 9;
  max-height: 62vh;
  overflow: hidden;
  border-radius: var(--vc-radius-lg);
  margin-bottom: 28px;
  background: var(--vc-navy-d);
}

.single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.vc-after-entry {
  margin-top: 40px;
}

.error-404 {
  min-height: 70svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--vc-nav-h) + 40px) var(--vc-pad) 80px;
}

.error-404 img {
  width: 88px;
  margin: 0 auto 24px;
}

/* Reveal / split (maquette motion, quieter travel) */
.vc-rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--vc-ease-brand), transform 0.85s var(--vc-ease-brand);
}

.vc-rv.is-in {
  opacity: 1;
  transform: none;
}

.vc-rv[data-d="1"] { transition-delay: 0.08s; }
.vc-rv[data-d="2"] { transition-delay: 0.16s; }
.vc-rv[data-d="3"] { transition-delay: 0.24s; }

.vc-w {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.32em);
  transition: opacity 0.7s var(--vc-ease-brand), transform 0.7s var(--vc-ease-brand), filter 0.7s;
}

.vc-split:not(.is-in) {
  visibility: hidden;
}

.vc-split.is-in {
  visibility: visible;
}

.vc-split.is-in .vc-w {
  opacity: 1;
  filter: none;
  transform: none;
}

/* Métier pages */
.vc-metier-hero {
  position: relative;
  min-height: clamp(520px, 72svh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--vc-navy-x);
  color: var(--vc-on-dark);
}

.vc-metier-hero__media {
  position: absolute;
  inset: 0;
}

.vc-metier-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vc-metier-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 46, 0.42) 0%,
    rgba(10, 14, 46, 0.18) 40%,
    rgba(10, 14, 46, 0.86) 100%
  );
}

.vc-metier-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--vc-nav-h) + 32px) 0 clamp(56px, 8vw, 96px);
}

.vc-metier-hero__content h1 {
  max-width: 14ch;
  margin-top: 14px;
  color: var(--vc-on-dark);
}

.vc-metier-hero__content .lead {
  margin-top: 18px;
  max-width: 52ch;
  color: var(--vc-on-dark-muted);
}

.vc-metier-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vc-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Métier — usages (sticky image + scroll steps) */
.vc-usages {
  background: var(--vc-paper-2);
  border-block: 1px solid var(--vc-line);
}

.vc-usages__proof {
  margin-top: 22px;
  font-family: var(--vc-font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--vc-navy);
}

.vc-usages__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 72px);
}

.vc-usages__stage {
  position: sticky;
  top: calc(var(--vc-nav-h) + 12px);
  height: min(66vh, 540px);
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  background: var(--vc-navy-d);
}

.vc-usages__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--vc-media-fit, cover);
  object-position: var(--vc-media-position, center center);
  background: var(--vc-media-bg, transparent);
  clip-path: inset(0 0 100% 0);
  transform: scale(1.08);
  transition: clip-path 1s var(--vc-ease-brand), transform 1.4s var(--vc-ease-brand);
}

.vc-usages__stage img.is-on {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.vc-usages__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 16px;
  border-radius: var(--vc-radius-pill);
  background: rgba(10, 14, 46, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 249, 252, 0.16);
  color: var(--vc-on-dark);
  font-family: var(--vc-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-usage-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 52px 0;
  min-height: 38vh;
  border-top: 1px solid var(--vc-line);
  opacity: 0.34;
  scroll-snap-align: start;
  transition: opacity 0.5s var(--vc-ease-brand);
}

.vc-usages__steps {
  scroll-snap-type: y proximity;
}

.vc-usage-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 2px;
  width: 0;
  background: var(--vc-navy);
  transition: width 0.7s var(--vc-ease-brand);
}

.vc-usage-step.is-active {
  opacity: 1;
}

.vc-usage-step.is-active::before {
  width: 100%;
}

.vc-usage-step__no {
  font-family: var(--vc-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--vc-navy);
  padding-top: 6px;
}

.vc-usage-step.is-active .vc-usage-step__no {
  color: var(--vc-cyan);
}

.vc-usage-step h3 {
  margin-bottom: 8px;
}

.vc-usage-step p {
  color: var(--vc-muted);
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .vc-usages__grid {
    grid-template-columns: 1fr;
  }
  .vc-usages__stage {
    position: relative;
    top: auto;
    height: min(42vh, 320px);
    margin-bottom: 20px;
  }
  .vc-usage-step {
    opacity: 1;
    min-height: 0;
    padding: 28px 0;
  }
}

/* Queue call demo — CSS screen, silent */
.vc-queue-demo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.vc-queue-demo__copy .vc-btn {
  margin-top: 28px;
}

.vc-queue-demo__stage {
  display: flex;
  justify-content: center;
}

.vc-philips {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  background: var(--vc-navy-d);
}

.vc-philips img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--vc-media-fit, cover);
  object-position: var(--vc-media-position, center center);
}

.vc-philips__screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding: clamp(20px, 4vw, 36px);
  background: linear-gradient(
    180deg,
    rgba(10, 14, 46, 0.18) 0%,
    rgba(10, 14, 46, 0.22) 42%,
    rgba(10, 14, 46, 0.82) 100%
  );
  text-align: left;
  color: var(--vc-on-dark);
}

.vc-philips__counter {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-cyan-on-dark);
}

.vc-philips__number {
  margin: 0;
  font-family: var(--vc-font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--vc-on-dark);
}

.vc-philips__number.is-tick {
  opacity: 0.35;
}

@media (prefers-reduced-motion: reduce) {
  .vc-philips__number.is-tick {
    opacity: 1;
  }
}

.vc-philips__msg {
  margin: 0;
  font-size: 0.95rem;
  color: var(--vc-on-dark-muted);
}

@media (max-width: 980px) {
  .vc-queue-demo__grid {
    grid-template-columns: 1fr;
  }
}

/* Craft — content / code */
.vc-craft {
  background: var(--vc-paper-2);
  border-block: 1px solid var(--vc-line);
}

.vc-craft__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.vc-craft__card {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-lg);
  background: var(--vc-paper);
}

.vc-craft__label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--vc-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vc-cyan);
}

.vc-craft__card h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.vc-craft__card p {
  margin-top: 12px;
  color: var(--vc-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* App demo — paper to tool */
.vc-app-demo__intro {
  max-width: 56ch;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.vc-app-demo__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.vc-app-demo__kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--vc-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vc-cyan);
}

.vc-app-demo__side-title {
  margin: 0 0 16px;
  font-family: var(--vc-font-display);
  font-weight: 600;
  color: var(--vc-ink);
}

.vc-app-demo__paper,
.vc-app-demo__app {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-lg);
  background: var(--vc-paper);
}

.vc-app-demo__paper {
  transition: opacity 0.35s var(--vc-ease-switch), transform 0.35s var(--vc-ease-switch);
}

.vc-app-demo__paper.is-hidden {
  opacity: 0.35;
  transform: scale(0.98);
}

.vc-app-demo__sheets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.vc-app-demo__sheet {
  padding: 14px 16px;
  border: 1px dashed var(--vc-line);
  border-radius: var(--vc-radius-sm);
  background: var(--vc-paper-2);
  font-size: 0.92rem;
  color: var(--vc-muted);
  transform: rotate(calc(var(--sheet-tilt, 0deg)));
}

.vc-app-demo__sheet[data-d="0"] {
  --sheet-tilt: -1.2deg;
}

.vc-app-demo__sheet[data-d="1"] {
  --sheet-tilt: 0.8deg;
}

.vc-app-demo__sheet[data-d="2"] {
  --sheet-tilt: -0.5deg;
}

.vc-app-demo__device {
  padding: clamp(16px, 2vw, 22px);
  border-radius: var(--vc-radius-md);
  background: var(--vc-paper-2);
  border: 1px solid var(--vc-line);
}

.vc-app-demo__form {
  display: grid;
  gap: 14px;
}

.vc-app-demo__form label {
  display: grid;
  gap: 6px;
}

.vc-app-demo__form label span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vc-muted);
}

.vc-app-demo__form input,
.vc-app-demo__form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm);
  background: var(--vc-paper);
  font: inherit;
  color: var(--vc-ink);
}

.vc-app-demo__form .vc-btn {
  margin-top: 6px;
  justify-self: start;
}

.vc-app-demo__success-title {
  margin: 0 0 8px;
  font-family: var(--vc-font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--vc-navy);
}

.vc-app-demo__success p {
  margin: 0 0 18px;
  color: var(--vc-muted);
  font-size: 0.95rem;
}

/* Proof — featured cases */
.vc-proof__list {
  display: grid;
  gap: clamp(40px, 8vw, 72px);
}

.vc-proof__case {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.vc-proof__media {
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  min-height: min(280px, 40vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 20px);
}

.vc-proof__media img {
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  object-fit: var(--vc-media-fit, contain);
  object-position: var(--vc-media-position, center center);
}

.vc-proof__body h3 {
  margin-top: 10px;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

.vc-proof__quote {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.vc-proof__quote p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--vc-ink);
}

.vc-proof__quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 22px;
}

.vc-proof__quote footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--vc-radius-xs);
  background: var(--vc-paper-2);
}

.vc-proof__quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
}

.vc-proof__quote footer span {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--vc-muted);
}

@media (max-width: 980px) {
  .vc-craft__grid,
  .vc-app-demo__grid,
  .vc-proof__case {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vc-app-demo__paper {
    transition: none;
  }
  .vc-app-demo__paper.is-hidden {
    opacity: 0.65;
    transform: none;
  }
}

.vc-usage {
  padding: 24px 22px;
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-md);
  background: var(--vc-paper);
}

.vc-usage__no {
  font-family: var(--vc-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--vc-cyan);
}

.vc-usage h3 {
  margin-top: 12px;
  font-size: 1.05rem;
}

.vc-usage p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--vc-muted);
}

.vc-software {
  background: var(--vc-paper-2);
  border-block: 1px solid var(--vc-line);
}

.vc-software__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.vc-software__brand {
  margin-top: 18px;
}

.vc-software__logo {
  display: block;
  width: auto;
  max-width: min(100%, 220px);
}

.vc-software__logo--horizontal {
  height: clamp(28px, 4vw, 36px);
}

.vc-software__logo--square {
  display: none;
  height: clamp(52px, 10vw, 72px);
}

.vc-software__brand + .vc-split {
  margin-top: 14px;
}

.vc-software__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.vc-software__list li {
  position: relative;
  padding-left: 22px;
  color: var(--vc-muted);
}

.vc-software__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vc-gold);
}

.vc-software__shot {
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  padding: clamp(12px, 2vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(320px, 42vh);
}

.vc-software__shot img {
  width: 100%;
  height: auto;
  max-height: min(520px, 58vh);
}

/* Media frame — object-fit + background (block editor) */
.vc-media-frame {
  background: var(--vc-media-bg, transparent);
}

.vc-media-frame img {
  object-fit: var(--vc-media-fit, cover);
  object-position: var(--vc-media-position, center center);
}

.vc-media-frame--fill {
  position: absolute;
  inset: 0;
}

.vc-media-frame--fill img {
  width: 100%;
  height: 100%;
  max-height: none;
}

.vc-sector.vc-media-frame img {
  background: var(--vc-media-bg, var(--vc-navy-d));
}

.vc-case__media.vc-media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
}

.vc-case__media.vc-media-frame img {
  width: 100%;
  height: 100%;
}

.vc-sector-grid {
  display: grid;
  grid-template-columns: repeat(var(--vc-sector-cols, 4), minmax(0, 1fr));
  gap: calc(clamp(10px, 1.4vw, 16px) * var(--vc-sector-scale, 1));
}

.vc-sector {
  position: relative;
  overflow: hidden;
  border-radius: var(--vc-radius-md);
  background: var(--vc-navy-d);
  aspect-ratio: var(--vc-sector-ar, 16 / 10);
  max-height: min(var(--vc-sector-max-h, 200px), 32svh);
  width: 100%;
  min-height: 0;
}

.vc-sector img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: var(--vc-media-fit, cover);
  object-position: var(--vc-media-position, center center);
}

.vc-sector__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: calc(12px * var(--vc-sector-scale, 1)) calc(14px * var(--vc-sector-scale, 1));
  background: linear-gradient(180deg, transparent, rgba(10, 14, 46, 0.88));
  color: var(--vc-on-dark);
}

.vc-sector__copy h3 {
  color: var(--vc-on-dark);
  font-size: calc(0.95rem * var(--vc-sector-scale, 1));
  line-height: 1.25;
}

.vc-sector__copy p {
  margin-top: calc(4px * var(--vc-sector-scale, 1));
  font-size: calc(0.78rem * var(--vc-sector-scale, 1));
  line-height: 1.35;
  color: var(--vc-on-dark-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vc-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vc-case {
  display: flex;
  flex-direction: column;
  border-radius: var(--vc-radius-md);
  overflow: hidden;
  border: 1px solid var(--vc-line);
  background: var(--vc-paper);
  transition: border-color 0.35s, transform 0.35s var(--vc-ease-brand);
}

.vc-case:hover {
  border-color: var(--vc-navy);
  transform: translateY(-4px);
}

.vc-case__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--vc-navy-d);
}

.vc-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-case__body {
  padding: 18px 18px 22px;
}

.vc-case__body span {
  font-family: var(--vc-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vc-gold);
}

.vc-case__body h3 {
  margin-top: 8px;
}

.vc-case__body p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--vc-muted);
}

.vc-quotes {
  background: var(--vc-paper-2);
  border-block: 1px solid var(--vc-line);
}

.vc-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vc-quote {
  margin: 0;
  padding: 24px 22px;
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-md);
  background: var(--vc-paper);
}

.vc-quote p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--vc-ink);
}

.vc-quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.vc-quote footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--vc-radius-xs);
  background: var(--vc-paper-2);
}

.vc-quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
}

.vc-quote footer span {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--vc-muted);
}

.vc-faq-wrap {
  max-width: 48rem;
}

.vc-faq {
  display: grid;
  gap: 10px;
}

.vc-faq__item {
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm);
  background: var(--vc-paper);
  padding: 0 18px;
}

.vc-faq__item summary {
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--vc-font-display);
  font-weight: 600;
  list-style: none;
}

.vc-faq__item summary::-webkit-details-marker {
  display: none;
}

.vc-faq__item p {
  padding: 0 0 16px;
  color: var(--vc-muted);
  font-size: 0.95rem;
}

.vc-metier-news {
  background: var(--vc-paper-2);
  border-top: 1px solid var(--vc-line);
}

@media (max-width: 1000px) {
  .vc-usage-grid,
  .vc-case-grid,
  .vc-quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vc-software__grid {
    grid-template-columns: 1fr;
  }
  .vc-software__logo--horizontal {
    display: none;
  }
  .vc-software__logo--square {
    display: block;
  }
  .vc-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .vc-sector-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vc-usage-grid,
  .vc-case-grid,
  .vc-quote-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile — prevent clipped text/images in devtools & real devices */
@media (max-width: 760px) {
  :root {
    --vc-nav-h: 88px;
    --vc-pad: clamp(16px, 4.5vw, 24px);
  }

  h1, h2, h3 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .vc-split:not(.is-in) {
    visibility: visible;
  }

  .vc-split .vc-w,
  .vc-rv {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .site-header {
    top: env(safe-area-inset-top, 0px);
  }

  .site-header.is-stuck,
  .site-header.is-inner {
    padding: calc(10px + env(safe-area-inset-top, 0px)) 0 10px;
  }

  .vc-hero {
    min-height: 0;
  }

  .vc-hero__viewport {
    position: relative;
    min-height: clamp(480px, 88svh, 640px);
    height: clamp(480px, 88svh, 640px);
  }

  .vc-hero__slide {
    position: absolute;
    inset: 0;
    display: block;
    min-height: 0;
    height: 100%;
    max-height: none;
    overflow: hidden;
  }

  .vc-hero__media {
    position: absolute;
    inset: 0;
    flex: none;
    height: 100%;
  }

  .vc-hero__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    flex: none;
    min-height: 0;
    height: auto;
    justify-content: flex-end;
    padding: calc(var(--vc-nav-h) + 12px) 0 72px;
  }

  .vc-hero__content h2,
  .vc-hero__excerpt {
    max-width: none;
  }

  .vc-metier-hero {
    min-height: clamp(480px, 88svh, 640px);
  }

  .vc-metier-hero__content {
    padding-top: calc(var(--vc-nav-h) + 20px);
  }

  .vc-metier-hero__content h1,
  .vc-metier-hero__content .lead {
    max-width: none;
  }

  .vc-screens {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .vc-screen {
    flex: none;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    aspect-ratio: 9 / 14;
  }

  .vc-screen__copy {
    padding: 20px 16px 22px;
  }

  .vc-screen__copy p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .vc-method__stage img,
  .vc-usages__stage img {
    clip-path: none;
    transform: none;
    transition: opacity 0.45s var(--vc-ease-brand);
  }

  .vc-method__stage img:not(.is-on),
  .vc-usages__stage img:not(.is-on) {
    opacity: 0;
  }

  .vc-method__stage img.is-on,
  .vc-usages__stage img.is-on {
    opacity: 1;
  }

  .vc-method__stage,
  .vc-usages__stage {
    height: clamp(220px, 38svh, 320px);
  }

  .vc-kpi p {
    max-width: none;
  }

  .vc-cta .lead {
    max-width: none;
  }

  .vc-software__shot {
    min-height: 0;
  }

  .vc-software__shot img {
    max-height: none;
  }

  .page-main {
    padding-top: calc(var(--vc-nav-h) + 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vc-marquee__track { animation: none; }
  .vc-hero__slide { transition: none; }
  .vc-hero__slide.is-active .vc-hero__media img,
  .vc-screen__glass img,
  .vc-method__stage img,
  .vc-usages__stage img,
  .vc-mate__photo img { animation: none; transform: none; }
  .vc-chip { transition: none; }
  .vc-case { transition: none; }
  .vc-rv,
  .vc-w {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .vc-split {
    visibility: visible;
  }
  .vc-step,
  .vc-usage-step {
    opacity: 1;
  }
  .vc-method__stage img.is-on,
  .vc-usages__stage img.is-on {
    clip-path: none;
  }
}
