:root {
  --navy-950: #06101f;
  --navy-900: #0a1c33;
  --navy-800: #12304f;
  --navy-700: #1b466f;
  --coral-500: #ff6b4a;
  --coral-600: #ef5738;
  --background: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #f1f3f5;
  --text-primary: #101828;
  --text-secondary: #667085;
  --text-tertiary: #98a2b3;
  --border: rgba(16, 24, 40, 0.09);
  --border-strong: rgba(16, 24, 40, 0.16);
  --border-dark: rgba(255, 255, 255, 0.1);
  --success: #16865b;
  --warning: #c26a21;
  --danger: #c64040;
  --display: "Manrope", "Inter", system-ui, sans-serif;
  --ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shell: 1320px;
  --pad: 32px;
  --header-h: 70px;
  --ease: cubic-bezier(0.22, 0.62, 0.24, 1);
  --ease-cinematic: cubic-bezier(0.2, 0.72, 0.22, 1);
  --motion-scene: 1300ms;
  --motion-layer: 780ms;
  --motion-detail: 560ms;
}


@property --cta-trace-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

svg {
  display: block;
}

ul,
ol,
dl,
dd {
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(255, 107, 74, 0.28);
}

:focus-visible {
  outline: 2px solid var(--coral-500);
  outline-offset: 3px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.grid-shell {
  position: relative;
}

.grid-shell::before,
.grid-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.grid-shell::before {
  left: var(--pad);
}

.grid-shell::after {
  right: var(--pad);
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 9px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--text-primary);
  text-decoration: none;
  transition: top 180ms ease;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.site-logo {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #fff;
  transition: height 200ms var(--ease), background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  height: 62px;
  border-bottom-color: var(--border-dark);
  background: rgba(7, 19, 33, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px -22px rgba(0, 0, 0, 0.8);
}

.site-header.is-light {
  border-bottom-color: rgba(16, 24, 40, 0.09);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px -28px rgba(16, 24, 40, 0.42);
}

.site-header.is-menu-open {
  border-bottom-color: var(--border-dark);
  background: var(--navy-950);
  color: #fff;
}

.header-inner {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 34px;
  height: var(--header-h);
  transition: height 200ms var(--ease);
}

.site-header.is-scrolled .header-inner {
  height: 62px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.main-nav a,
.login-link {
  color: #9fb0c3;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover,
.login-link:hover {
  color: #fff;
}

.site-header.is-light .main-nav a,
.site-header.is-light .login-link {
  color: #526174;
}

.site-header.is-light .main-nav a:hover,
.site-header.is-light .login-link:hover {
  color: var(--navy-950);
}

.site-header.is-menu-open .main-nav a,
.site-header.is-menu-open .login-link {
  color: #9fb0c3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease, box-shadow 180ms var(--ease);
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  padding: 9px 15px;
  font-size: 14px;
}

.button-large {
  padding: 14px 21px;
  font-size: 15px;
}

.button-coral {
  background: var(--coral-500);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-coral:hover {
  background: var(--coral-600);
  box-shadow: 0 10px 24px -16px rgba(239, 87, 56, 0.7);
}

.button-dark {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
  color: #eef3f8;
}

.button-dark:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 200ms var(--ease);
}

.site-header.is-light .nav-toggle span {
  background: var(--navy-950);
}

.site-header.is-menu-open .nav-toggle span {
  background: #fff;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  isolation: isolate;
  padding: calc(var(--header-h) + clamp(18px, 3.2svh, 34px)) var(--pad) max(20px, env(safe-area-inset-bottom));
  border: 0;
  background:
    radial-gradient(78% 48% at 100% 0%, rgba(255, 107, 74, 0.16), transparent 72%),
    linear-gradient(155deg, #071426 0%, var(--navy-950) 52%, #08192c 100%);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -10px, 0);
  pointer-events: none;
  transition:
    opacity 240ms ease-in,
    transform 320ms ease-in,
    visibility 0s linear 320ms;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 15%;
  right: -18%;
  width: clamp(220px, 46vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.22) 0%, rgba(255, 107, 74, 0.08) 42%, transparent 72%);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 700ms ease, transform 1200ms var(--ease-cinematic);
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  transition:
    opacity 340ms var(--ease-cinematic),
    transform 420ms var(--ease-cinematic),
    visibility 0s linear 0s;
}

.mobile-menu.is-open::before {
  opacity: 0.7;
  transform: scale(1);
}

.mobile-menu-main,
.mobile-menu-action {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.mobile-menu-main {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  justify-content: safe center;
}

.mobile-menu-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #b9c7d6;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 180ms ease-in, transform 220ms ease-in;
}

.mobile-menu-eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral-500);
  box-shadow: 0 0 14px rgba(255, 107, 74, 0.42);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: clamp(14px, 2.2svh, 22px);
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  padding: clamp(12px, 1.7svh, 16px) 2px;
  border-bottom: 1px solid var(--border-dark);
  color: #f4f7fb;
  font-family: var(--ui);
  text-decoration: none;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, opacity 180ms ease-in, transform 220ms ease-in;
}

.mobile-menu nav a:first-child {
  border-top: 1px solid var(--border-dark);
}

.mobile-menu-link-copy strong,
.mobile-menu-link-copy small {
  display: block;
}

.mobile-menu-link-copy strong {
  font-size: clamp(28px, 6.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.mobile-menu-link-copy small {
  margin-top: 5px;
  color: #91a3b6;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.35;
  transition: color 200ms ease;
}

.mobile-menu-link-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #bac8d7;
  transition: transform 240ms var(--ease), border-color 200ms ease, background-color 200ms ease, color 200ms ease;
}

.mobile-menu-link-icon svg,
.mobile-menu-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 107, 74, 0.36);
}

.mobile-menu nav a:hover .mobile-menu-link-copy small,
.mobile-menu nav a:focus-visible .mobile-menu-link-copy small {
  color: #b9c7d6;
}

.mobile-menu nav a:hover .mobile-menu-link-icon,
.mobile-menu nav a:focus-visible .mobile-menu-link-icon {
  border-color: rgba(255, 107, 74, 0.72);
  background: rgba(255, 107, 74, 0.12);
  color: var(--coral-500);
  transform: translateX(3px);
}

.mobile-menu nav a:active {
  background: rgba(255, 255, 255, 0.035);
}

.mobile-menu.is-open .mobile-menu-eyebrow,
.mobile-menu.is-open nav a,
.mobile-menu.is-open .mobile-menu-action {
  animation: mobileMenuItemIn 420ms var(--ease-cinematic) both;
}

.mobile-menu.is-open .mobile-menu-eyebrow { animation-delay: 80ms; }
.mobile-menu.is-open nav a:nth-child(1) { animation-delay: 120ms; }
.mobile-menu.is-open nav a:nth-child(2) { animation-delay: 165ms; }
.mobile-menu.is-open nav a:nth-child(3) { animation-delay: 210ms; }
.mobile-menu.is-open nav a:nth-child(4) { animation-delay: 255ms; }
.mobile-menu.is-open .mobile-menu-action { animation-delay: 310ms; }

@keyframes mobileMenuItemIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.mobile-menu-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: clamp(18px, 2.8svh, 28px);
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px -42px rgba(0, 0, 0, 0.86), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 180ms ease-in, transform 220ms ease-in;
}

.mobile-menu-action-copy strong,
.mobile-menu-action-copy span {
  display: block;
}

.mobile-menu-action-copy strong {
  color: #f4f7fb;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.mobile-menu-action-copy span {
  margin-top: 4px;
  color: #91a3b6;
  font-size: 13px;
  line-height: 1.4;
}

.mobile-menu-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: auto;
  min-width: 220px;
  min-height: 56px;
  margin: 0;
  padding: 10px 15px 10px 18px;
  border-radius: 10px;
  background: var(--coral-500);
  color: #fff;
  box-shadow: 0 16px 34px -22px rgba(255, 107, 74, 0.82), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.mobile-menu-cta > span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mobile-menu-cta > svg {
  flex: 0 0 auto;
  transition: transform 220ms var(--ease);
}

.mobile-menu-cta:hover,
.mobile-menu-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -20px rgba(239, 87, 56, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.mobile-menu-cta:hover > svg,
.mobile-menu-cta:focus-visible > svg {
  transform: translateX(3px);
}

.mobile-menu-cta:active {
  transform: scale(0.985);
}

@keyframes mobileCtaTrace {
  to { --cta-trace-angle: 360deg; }
}

@supports ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
  .mobile-menu-cta::before {
    --cta-trace-angle: 0deg;
    content: "";
    position: absolute;
    inset: -2px;
    padding: 1.5px;
    border-radius: 12px;
    background: conic-gradient(
      from var(--cta-trace-angle),
      transparent 0deg,
      transparent 286deg,
      rgba(255, 255, 255, 0.18) 304deg,
      rgba(255, 255, 255, 0.94) 328deg,
      transparent 350deg,
      transparent 360deg
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    animation: mobileCtaTrace 4.2s linear infinite;
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    padding-top: calc(var(--header-h) + 20px);
    padding-right: 20px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    padding-left: 20px;
  }

  .mobile-menu-link-copy strong {
    font-size: clamp(26px, 7.8vw, 32px);
  }

  .mobile-menu-link-copy small {
    font-size: 12.5px;
  }

  .mobile-menu-action {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
    border-radius: 16px;
  }

  .mobile-menu-cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1024px) and (max-height: 600px) {
  .mobile-menu {
    padding-top: calc(var(--header-h) + 8px);
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .mobile-menu-eyebrow,
  .mobile-menu-link-copy small,
  .mobile-menu-action-copy span {
    display: none;
  }

  .mobile-menu nav {
    margin-top: 0;
  }

  .mobile-menu nav a {
    min-height: 48px;
    padding-block: 8px;
  }

  .mobile-menu-link-copy strong {
    font-size: clamp(23px, 4.8vw, 28px);
  }

  .mobile-menu-link-icon {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-action {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    margin-top: 14px;
    padding: 10px 12px;
  }

  .mobile-menu-cta {
    width: auto;
    min-width: 200px;
    min-height: 50px;
  }
}

@media (max-width: 599px) and (max-height: 600px) {
  .mobile-menu-action {
    display: block;
  }

  .mobile-menu-action-copy {
    display: none;
  }

  .mobile-menu-cta {
    width: 100%;
    min-width: 0;
  }
}

/* ============================================================
   IMPIANTO SEZIONI — superfici, ritmo, tipografia
   Riferimento visivo: SaaS premium (Mercury, Stripe).
   Poche superfici, hairline discrete, molto respiro.
============================================================ */
:root {
  --section-y: clamp(88px, 8.5vw, 140px);
  --radius-lg: 18px;
  --radius-md: 13px;
  --radius-sm: 9px;
  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 18px 40px -32px rgba(16, 24, 40, 0.42);
  --shadow-mock: 0 1px 2px rgba(16, 24, 40, 0.05), 0 26px 56px -40px rgba(16, 24, 40, 0.5);
}

.section {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--background);
}

.section-solution,
.section-cargos,
.section-story {
  background: var(--surface);
}

.section-ai,
.section-cta {
  background: var(--navy-950);
  color: #eaf1f8;
}

/* Intestazione di sezione ------------------------------------ */
.section-head {
  max-width: 860px;
  margin-bottom: clamp(44px, 4.6vw, 72px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral-500);
}

.section-head h2 {
  margin-top: 20px;
  font-size: clamp(34px, 3.9vw, 52px);
  letter-spacing: -0.042em;
  line-height: 1.06;
}

.section-lead {
  max-width: 62ch;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
}

.section-ai .eyebrow {
  color: #9db3c8;
}

.section-ai .section-head h2,
.section-cta h2 {
  color: #fff;
}

.section-ai .section-lead {
  color: #8ba1b7;
}

/* Card di base ------------------------------------------------ */
.card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.card-label {
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card h3 {
  margin-top: 13px;
  font-size: clamp(19px, 1.55vw, 23px);
  letter-spacing: -0.032em;
  line-height: 1.18;
}

.card-text {
  margin-top: 11px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.58;
}

/* ============================================================
   PRIMITIVE DEI MOCK DI PRODOTTO
============================================================ */
.mock {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-mock);
  font-feature-settings: "tnum";
}

.mock > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--border);
  background: #fbfcfd;
}

.mock > header small {
  display: block;
  color: var(--text-tertiary);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mock > header strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.plate {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 2px 8px 2px 13px;
  border: 1px solid rgba(16, 24, 40, 0.24);
  border-radius: 4px;
  background: #fff;
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.55;
  white-space: nowrap;
}

.plate::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: linear-gradient(180deg, #1b466f, #12304f);
}

.state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
}

.state-live,
.state-ready {
  background: rgba(22, 134, 91, 0.1);
  color: var(--success);
}

.state-warning {
  background: rgba(194, 106, 33, 0.11);
  color: var(--warning);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 99px;
  background: var(--surface-soft);
  color: var(--text-secondary);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.chip-ok {
  background: rgba(22, 134, 91, 0.09);
  color: var(--success);
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.dot-live { background: var(--coral-500); }
.dot-ok { background: var(--success); }
.dot-warn { background: var(--warning); }
.dot-free { background: var(--success); }

.avatar {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ui-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 8px;
  background: var(--navy-900);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.ui-coral {
  background: var(--coral-500);
}

/* ============================================================
   IL PROBLEMA
============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
}

.pain-grid li {
  display: flex;
  gap: 14px;
  padding: 28px 26px;
  background: var(--surface);
}

.pain-mark {
  position: relative;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(198, 64, 64, 0.09);
}

.pain-mark::before,
.pain-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--danger);
  opacity: 0.75;
}

.pain-mark::before { transform: translate(-50%, -50%) rotate(45deg); }
.pain-mark::after { transform: translate(-50%, -50%) rotate(-45deg); }

.pain-grid p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.pain-verdict {
  max-width: 74ch;
  margin-top: clamp(38px, 3.4vw, 54px);
  color: var(--text-secondary);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.pain-verdict strong {
  display: block;
  margin-top: 6px;
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================================
   LA SOLUZIONE
============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
}

.pillar {
  padding: clamp(30px, 2.9vw, 44px);
  background: var(--surface);
}

.pillar-index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pillar h3 {
  max-width: 20ch;
  margin-top: 22px;
  font-size: clamp(21px, 1.8vw, 26px);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.pillar p {
  max-width: 48ch;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ============================================================
   FUNZIONI — bento
============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.feature-wide { grid-column: span 7; }
.feature-tall { grid-column: span 5; }
.feature-half { grid-column: span 6; }
.feature-small { grid-column: span 3; }

.feature-copy {
  padding: clamp(26px, 2.3vw, 34px) clamp(26px, 2.3vw, 34px) 0;
}

.feature-copy h3 {
  max-width: 22ch;
}

.feature-copy .card-text {
  max-width: 44ch;
}

.feature-visual {
  margin-top: auto;
  padding: clamp(24px, 2.2vw, 32px);
  padding-bottom: 0;
}

.feature-visual .mock {
  transform: translateY(1px);
  transition: transform 260ms var(--ease);
}

.feature:hover .feature-visual .mock {
  transform: translateY(-3px);
}

.feature-small {
  padding: clamp(24px, 2vw, 30px);
}

.feature-small h3 {
  font-size: 18px;
}

.feature-small .card-text {
  flex: 1 1 auto;
  font-size: 14px;
}

.card-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 550;
}

/* Mock: contratto -------------------------------------------- */
.mock-contract dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.mock-contract dl > div {
  padding: 14px 17px;
  background: var(--surface);
}

.mock-contract dt {
  color: var(--text-tertiary);
  font-size: 11px;
}

.mock-contract dd {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mock-contract footer {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 17px;
  border-top: 1px solid var(--border);
  background: #fbfcfd;
}

.mock-contract footer b {
  margin-right: auto;
  font-size: 13px;
}

/* Mock: OTP --------------------------------------------------- */
.mock-otp {
  padding: 28px 24px 26px;
  text-align: center;
}

.mock-otp > small {
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.otp-code {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.otp-code b {
  display: grid;
  width: 42px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0;
}

.otp-code b:last-child {
  border-color: rgba(22, 134, 91, 0.4);
  box-shadow: 0 0 0 3px rgba(22, 134, 91, 0.08);
}

.mock-otp > p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
}

/* Mock: flotta ------------------------------------------------ */
.mock-fleet {
  padding: 6px 0;
}

.fleet-line {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 13px 17px;
  border-bottom: 1px solid var(--border);
}

.fleet-line:last-child {
  border-bottom: 0;
}

.fleet-line > strong {
  font-size: 12.5px;
  font-weight: 600;
}

.fleet-line > strong small {
  display: block;
  margin-top: 2px;
  color: var(--text-tertiary);
  font-size: 10.5px;
  font-weight: 500;
}

.track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  height: 30px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(to right, transparent 0, transparent calc(14.2857% - 1px), var(--border) calc(14.2857% - 1px), var(--border) 14.2857%),
    var(--surface-soft);
}

.slot {
  display: flex;
  align-items: center;
  grid-column: var(--from) / var(--to);
  padding: 0 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.slot-out {
  background: rgba(255, 107, 74, 0.14);
  color: #b0422a;
}

.slot-free {
  border: 1px dashed rgba(22, 134, 91, 0.32);
  background: rgba(22, 134, 91, 0.05);
  color: var(--success);
}

/* Mock: scadenze ---------------------------------------------- */
.mock-alerts {
  padding: 6px 0;
}

.alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 16px 17px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.alert:last-child {
  border-bottom: 0;
}

.alert span {
  overflow: hidden;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alert b {
  color: var(--text-secondary);
  font-size: 11.5px;
  font-weight: 600;
}

/* ============================================================
   LAYOUT A DUE COLONNE (CaRGOS, chi siamo)
============================================================ */
.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(48px, 5.5vw, 88px);
  align-items: center;
}

.split-copy .section-lead {
  max-width: 46ch;
}

.split-copy h2 {
  margin-top: 20px;
  font-size: clamp(32px, 3.5vw, 46px);
  letter-spacing: -0.042em;
  line-height: 1.08;
}

.mini-steps {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--border);
}

.mini-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 14px;
  padding: 16px 18px;
  background: var(--background);
}

.mini-steps li > span {
  grid-row: 1 / 3;
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 650;
}

.mini-steps strong {
  font-size: 14px;
}

.mini-steps p {
  color: var(--text-secondary);
  font-size: 13px;
}

/* Mock: CaRGOS ------------------------------------------------ */
.mock-cargos dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.mock-cargos dl > div {
  min-width: 0;
  padding: 15px 16px;
  background: var(--surface);
}

.mock-cargos dt {
  color: var(--text-tertiary);
  font-size: 11px;
}

.mock-cargos dd {
  margin-top: 5px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-cargos footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  border-top: 1px solid var(--border);
  background: #fbfcfd;
}

.mock-cargos footer > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
}

/* ============================================================
   VERBALI · VEYCAR AI (scura)
============================================================ */
.ai-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ai-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100%, var(--shell));
  transform: translateX(-50%);
  border-right: 1px solid rgba(255, 255, 255, 0.045);
  border-left: 1px solid rgba(255, 255, 255, 0.045);
  background-image: linear-gradient(to right, transparent calc(33.333% - 1px), rgba(255, 255, 255, 0.032) calc(33.333% - 1px), rgba(255, 255, 255, 0.032) 33.333%, transparent 33.333%, transparent calc(66.666% - 1px), rgba(255, 255, 255, 0.032) calc(66.666% - 1px), rgba(255, 255, 255, 0.032) 66.666%, transparent 66.666%);
}

.section-ai .shell {
  position: relative;
  z-index: 1;
}

.ai-flow {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.1fr;
  gap: 20px;
}

.ai-step {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: #0b1b2f;
}

.ai-step-match {
  border-color: rgba(255, 107, 74, 0.28);
  background: linear-gradient(180deg, #0c1e34, #0a1a2d);
}

.ai-step > header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-dark);
}

.ai-step > header span {
  color: #62798f;
  font-size: 11px;
  font-weight: 650;
}

.ai-step > header strong {
  color: #eaf1f7;
  font-size: 14px;
}

.pdf-sheet {
  width: min(220px, 92%);
  margin: 28px auto 16px;
  padding: 22px 20px 16px;
  border-radius: var(--radius-sm);
  background: #f7f8fa;
  color: var(--text-primary);
  box-shadow: 0 24px 44px -32px rgba(0, 0, 0, 0.9);
}

.pdf-sheet > span,
.pdf-sheet > strong,
.pdf-sheet > small {
  display: block;
}

.pdf-sheet > span {
  color: var(--coral-600);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdf-sheet > strong {
  margin-top: 10px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pdf-sheet > small {
  color: var(--text-tertiary);
  font-size: 10px;
}

.pdf-sheet > div {
  height: 5px;
  margin-top: 13px;
  border-radius: 2px;
  background: #e1e5ea;
}

.pdf-sheet > div.short {
  width: 62%;
}

.pdf-sheet footer {
  margin-top: 22px;
  padding-top: 11px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 11px;
  text-align: right;
}

.ai-step > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: #6f8599;
  font-size: 11.5px;
}

.ai-step dl {
  margin-top: 6px;
}

.ai-step dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-dark);
}

.ai-step dt {
  color: #8196ab;
  font-size: 12px;
}

.ai-step dd {
  color: #e7eef5;
  font-size: 12.5px;
  font-weight: 600;
  text-align: right;
}

.match-score {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.match-score > span,
.match-score > strong {
  display: block;
}

.match-score > span {
  color: #7e94aa;
  font-size: 11px;
}

.match-score > strong {
  margin-top: 3px;
  color: #eaf1f7;
  font-size: 15px;
}

.match-score > i {
  display: block;
  height: 4px;
  margin-top: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.09);
}

.match-score > i b {
  display: block;
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: var(--success);
}

.match-contract {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(22, 134, 91, 0.26);
  border-radius: var(--radius-sm);
  background: rgba(22, 134, 91, 0.07);
}

.match-contract small,
.match-contract strong,
.match-contract span {
  display: block;
}

.match-contract small {
  color: #7aab97;
  font-size: 11px;
}

.match-contract strong {
  margin: 4px 0 10px;
  color: #fff;
  font-size: 16px;
}

.match-contract span {
  color: #a6b6c6;
  font-size: 11.5px;
}

.ai-step > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.ai-note {
  margin-top: 22px;
  color: #647b93;
  font-size: 12.5px;
}

/* ============================================================
   PRIMA / DOPO
============================================================ */
.compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.compare-col {
  padding: clamp(28px, 2.6vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.compare-before {
  background: var(--surface-soft);
}

.compare-after {
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.compare-col h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.compare-before h3 {
  color: var(--text-secondary);
}

.compare-col ul {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  background: var(--border);
}

.compare-col li {
  position: relative;
  padding: 15px 0 15px 32px;
  font-size: 14.5px;
  line-height: 1.5;
}

.compare-before li {
  background: var(--surface-soft);
  color: var(--text-secondary);
}

.compare-after li {
  background: var(--surface);
}

.compare-col li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.compare-before li::before {
  background: rgba(102, 112, 133, 0.14);
}

.compare-before li::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 5px;
  width: 8px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text-tertiary);
}

.compare-after li::before {
  background: rgba(22, 134, 91, 0.12);
}

.compare-after li::after {
  content: "";
  position: absolute;
  top: 24.5px;
  left: 5.5px;
  width: 7px;
  height: 3.5px;
  border-bottom: 1.6px solid var(--success);
  border-left: 1.6px solid var(--success);
  transform: rotate(-45deg);
}

/* ============================================================
   CHI SIAMO + FIDUCIA
============================================================ */
.split-story {
  align-items: start;
  padding-bottom: clamp(52px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
}

.story-points {
  display: grid;
  gap: 1px;
  align-self: center;
  background: var(--border);
}

.story-points li {
  position: relative;
  padding: 20px 0 20px 30px;
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.55;
}

.story-points li::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.6vw, 40px);
  margin-top: clamp(52px, 5vw, 80px);
}

.trust h3 {
  padding-top: 20px;
  border-top: 2px solid var(--navy-900);
  font-size: 17px;
  letter-spacing: -0.028em;
}

.trust p {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.58;
}

/* ============================================================
   CTA FINALE
============================================================ */
.section-cta {
  border-top: 1px solid var(--border-dark);
}

.cta-inner {
  max-width: 880px;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.cta-inner > p {
  max-width: 56ch;
  margin: 22px auto 0;
  color: #93a8bd;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.cta-note {
  margin-top: 26px;
  color: #607790;
  font-size: 13px;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  padding: clamp(56px, 5vw, 76px) 0 32px;
  border-top: 1px solid var(--border-dark);
  background: var(--navy-950);
  color: #8297ad;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, auto);
  gap: clamp(40px, 5vw, 88px);
  padding-bottom: 44px;
}

.footer-about {
  max-width: 340px;
}

.footer-about p {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-main nav {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  gap: 10px;
}

.footer-main nav strong {
  margin-bottom: 4px;
  color: #e2eaf2;
  font-size: 12.5px;
}

.footer-main nav a,
.footer-legal a,
.footer-bottom a {
  color: #8196ac;
  font-size: 12.5px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-main nav a:hover,
.footer-legal a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-legal {
  padding: 22px 0;
  border-top: 1px solid var(--border-dark);
  color: #5f768e;
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--border-dark);
  color: #5f768e;
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

/* ============================================================
   MOVIMENTO MISURATO
============================================================ */
[data-intro] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  transition-delay: calc(var(--delay, 0) * 65ms + 40ms);
}

html.is-ready [data-intro] {
  opacity: 1;
  transform: none;
}

.reveal,
[data-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 580ms var(--ease), transform 580ms var(--ease);
}

.reveal.is-in,
[data-stagger].is-in > * {
  opacity: 1;
  transform: none;
}

[data-stagger].is-in > *:nth-child(2) { transition-delay: 50ms; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: 100ms; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: 150ms; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: 200ms; }
[data-stagger].is-in > *:nth-child(6) { transition-delay: 250ms; }
[data-stagger].is-in > *:nth-child(7) { transition-delay: 300ms; }
[data-stagger].is-in > *:nth-child(8) { transition-delay: 350ms; }

html.no-js [data-intro],
html.no-js .reveal,
html.no-js [data-stagger] > * {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1280px) {
  :root {
    --pad: 28px;
  }

  .split {
    gap: 48px;
  }

  .mock-cargos dl {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-wide,
  .feature-tall,
  .feature-half {
    grid-column: span 12;
  }

  .feature-small {
    grid-column: span 6;
  }

  .split,
  .split-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-flow {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 460px;
  }
}

@media (max-width: 800px) {
  :root {
    --pad: 22px;
  }

  .section-head h2 {
    font-size: clamp(30px, 5.6vw, 40px);
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .compare {
    grid-template-columns: 1fr;
  }

  .fleet-line {
    grid-template-columns: 104px minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 20px;
    --header-h: 66px;
  }

  .site-logo {
    height: 28px;
  }

  .site-header.is-scrolled,
  .site-header.is-scrolled .header-inner {
    height: 60px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .section-lead {
    font-size: 16px;
  }

  .feature-small {
    grid-column: span 12;
  }

  .feature-grid,
  .compare,
  .ai-flow {
    gap: 14px;
  }

  .otp-code {
    gap: 6px;
  }

  .otp-code b {
    width: 100%;
    height: 46px;
    font-size: 19px;
  }

  .mock-contract dl,
  .mock-cargos dl {
    grid-template-columns: 1fr;
  }

  .mock-cargos footer,
  .mock-contract footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .fleet-line {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 340px) {
  :root {
    --pad: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-intro],
  .reveal,
  [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   HERO CINEMATICA — sequenza fotogrammi guidata dallo scroll
   Lo stage resta fisso (sticky) e i fotogrammi avanzano o
   tornano indietro con lo scroll, con inerzia morbida.
============================================================ */
.hero-cine {
  position: relative;
  height: 545vh;
  margin-top: calc(-1 * var(--header-h));
  background: #070f1e;
  overflow-anchor: none;
}

/* La scena post-hero con le tre slide resta nel markup ma, quando
   disattivata, non riserva scroll né altera la sequenza cinematica. */
.hero-cine[data-side-scene-enabled="false"] {
  height: 185vh;
}

/* Dopo la prima riproduzione la hero si compatta: tornando su si
   rivede solo il fotogramma iniziale, senza rigiocare la sequenza. */
.hero-cine.is-condensed {
  height: 150vh;
  height: 150svh;
}

.hero-cine-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #070f1e;
}

/* Copertura dei due frame tecnici usati per compattare la hero. La
   pagina può ricomporsi sotto, ma non può mai affiorare una sezione bianca. */
.hero-cine.is-realigning .hero-cine-sticky {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.hero-cine-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity var(--motion-layer) var(--ease-cinematic);
}

.hero-final-shell {
  position: absolute;
  z-index: 4;
  top: var(--dashboard-y, 19.1%);
  right: auto;
  left: var(--dashboard-x, 19.3%);
  width: var(--dashboard-w, 62%);
  height: var(--dashboard-h, 61.8%);
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  transform: translateY(0);
  pointer-events: none;
  transition:
    top var(--motion-scene) var(--ease-cinematic),
    left var(--motion-scene) var(--ease-cinematic),
    right var(--motion-scene) var(--ease-cinematic),
    width var(--motion-scene) var(--ease-cinematic),
    height var(--motion-scene) var(--ease-cinematic),
    transform var(--motion-scene) var(--ease-cinematic),
    opacity var(--motion-layer) var(--ease-cinematic);
}

/* Scrim in alto: mantiene leggibile la navigazione trasparente */
.hero-cine-sticky::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(6, 16, 31, 0.55) 0%, transparent 100%);
  pointer-events: none;
}

/* Fallback statico: ultimo fotogramma (dashboard) senza JS
   o con prefers-reduced-motion */
.hero-cine-fallback {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  pointer-events: none;
  will-change: opacity, transform;
  transition:
    transform var(--motion-scene) var(--ease-cinematic),
    opacity var(--motion-layer) var(--ease-cinematic);
  opacity: 0;
}

/* Il ritorno alla hero non deve mai mostrare la superficie chiara del
   PNG: visibility lo rimuove dal paint senza alterare la geometria. */
.hero-cine-fallback.is-return-suppressed {
  visibility: hidden;
  opacity: 0 !important;
  transition: none !important;
  will-change: auto;
}

.hero-slide-stage {
  position: absolute;
  inset: 0;
  perspective: 1400px;
}

.hero-product-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 7%, 0) scale(0.975);
  transform-origin: center;
  transition:
    opacity var(--motion-layer) var(--ease-cinematic),
    transform var(--motion-scene) var(--ease-cinematic);
  will-change: opacity, transform;
}

.hero-product-slide.is-before {
  transform: translate3d(0, -6%, 0) scale(0.985);
}

.hero-product-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-slide-filler {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 13% 1fr;
  overflow: hidden;
  border-radius: 13px;
  background: #f5f7fb;
  color: #17263b;
  font-size: clamp(8px, 0.58vw, 11px);
  box-shadow: inset 0 0 0 1px rgba(17, 34, 56, 0.1);
}

.hero-filler-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4.5%;
  padding: 12% 10%;
  border-right: 1px solid rgba(17, 34, 56, 0.08);
  background: #fbfcfe;
}

.hero-filler-sidebar > i {
  width: 54%;
  height: 4.5%;
  margin-bottom: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, #243e67 0 64%, var(--coral-500) 64%);
}

.hero-filler-sidebar > span {
  width: 78%;
  height: 3.4%;
  border-radius: 999px;
  background: #dce3ed;
}

.hero-filler-sidebar > span.is-current {
  width: 100%;
  height: 6.5%;
  background: #213b67;
  box-shadow: 0 7px 14px -9px rgba(22, 48, 85, 0.65);
}

.hero-filler-sidebar > b {
  width: 100%;
  height: 15%;
  margin-top: auto;
  border-radius: 7px;
  background: linear-gradient(145deg, #263f69, #182d50);
}

.hero-filler-workspace {
  min-width: 0;
  padding: 3.4% 4.5%;
}

.hero-filler-workspace > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-filler-workspace > header small,
.hero-filler-workspace > header strong {
  display: block;
}

.hero-filler-workspace > header small {
  color: #ff6b4a;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-filler-workspace > header strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 2.1em;
  letter-spacing: -0.04em;
}

.hero-filler-workspace > header em {
  padding: 0.7em 1.05em;
  border: 1px solid rgba(17, 34, 56, 0.09);
  border-radius: 999px;
  background: #fff;
  color: #65758a;
  font-size: 0.86em;
  font-style: normal;
  font-weight: 600;
}

.hero-filler-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
  margin-top: 3.4%;
}

.hero-filler-stats article {
  position: relative;
  overflow: hidden;
  min-height: 8.2em;
  padding: 1.35em;
  border: 1px solid rgba(17, 34, 56, 0.08);
  border-radius: 9px;
  background: #fff;
}

.hero-filler-stats article:first-child {
  background: linear-gradient(145deg, #253e68, #192f51);
  color: #fff;
}

.hero-filler-stats small,
.hero-filler-stats strong {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-filler-stats small {
  color: #8a9aae;
  font-size: 0.85em;
}

.hero-filler-stats article:first-child small {
  color: #aab9cb;
}

.hero-filler-stats strong {
  margin-top: 0.2em;
  font-family: var(--display);
  font-size: 2.5em;
  line-height: 1;
}

.hero-filler-stats article > i {
  position: absolute;
  right: -12%;
  bottom: -32%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 107, 74, 0.12);
}

.hero-filler-panel {
  margin-top: 2.4%;
  padding: 2.2%;
  border: 1px solid rgba(17, 34, 56, 0.08);
  border-radius: 10px;
  background: #fff;
}

.hero-filler-panel-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.2em;
  border-bottom: 1px solid rgba(17, 34, 56, 0.08);
}

.hero-filler-panel-head span {
  color: #8c9bad;
}

.hero-filler-panel li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1em;
  align-items: center;
  padding: 1.05em 0;
  border-bottom: 1px solid rgba(17, 34, 56, 0.06);
}

.hero-filler-panel li:last-child {
  border-bottom: 0;
}

.hero-filler-panel li > i {
  width: 1.9em;
  height: 1.9em;
  border-radius: 7px;
  background: rgba(255, 107, 74, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 107, 74, 0.15);
}

.hero-filler-panel li strong,
.hero-filler-panel li small {
  display: block;
}

.hero-filler-panel li small {
  margin-top: 0.15em;
  color: #8a99aa;
}

.hero-filler-panel li em {
  padding: 0.4em 0.7em;
  border-radius: 999px;
  background: #eef3f8;
  color: #49617b;
  font-size: 0.82em;
  font-style: normal;
}

.hero-data-map {
  position: relative;
  min-height: 40em;
  margin-top: 3.2%;
  overflow: hidden;
  border: 1px solid rgba(17, 34, 56, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 107, 74, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(28, 52, 82, 0.04) 1px, transparent 1px) 0 0 / 3.5em 3.5em,
    linear-gradient(rgba(28, 52, 82, 0.04) 1px, transparent 1px) 0 0 / 3.5em 3.5em,
    #fff;
}

.hero-data-core,
.hero-data-node {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(17, 34, 56, 0.09);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px -28px rgba(17, 34, 56, 0.5);
}

.hero-data-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 12em;
  height: 12em;
  place-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
}

.hero-data-core > i {
  width: 2.3em;
  height: 2.3em;
  margin: 0 auto 0.8em;
  border-radius: 9px;
  background: var(--coral-500);
  box-shadow: 0 0 0 0.8em rgba(255, 107, 74, 0.1);
}

.hero-data-core strong,
.hero-data-core small,
.hero-data-node small,
.hero-data-node strong,
.hero-data-node span {
  display: block;
}

.hero-data-core small,
.hero-data-node small,
.hero-data-node span {
  color: #8999ab;
}

.hero-data-node {
  width: 18em;
  padding: 1.3em 1.5em;
  border-radius: 9px;
}

.hero-data-node strong {
  margin: 0.25em 0;
  font-size: 1.1em;
}

.node-client { top: 12%; left: 7%; }
.node-contract { top: 10%; right: 7%; }
.node-vehicle { bottom: 10%; left: 8%; }
.node-docs { right: 8%; bottom: 12%; }

.data-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.68), rgba(37, 62, 104, 0.14));
}

.line-a { transform: rotate(-32deg); }
.line-b { transform: rotate(31deg); }
.line-c { transform: rotate(148deg); }

/* --- Seconda scena: copy a sinistra, prodotto a destra ------- */
.hero-side-scene {
  --side-w: min(58vw, 985px);
  --side-h: min(32.6vw, 554px);
  --side-right: clamp(18px, 3vw, 58px);
  position: absolute;
  inset: 0;
  z-index: 5;
  visibility: hidden;
  color: #f5f8fb;
  pointer-events: none;
}

.hero-side-scene::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(44vw, 760px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    radial-gradient(circle at 12% 76%, rgba(255, 107, 74, 0.13), transparent 34%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.7) 62%, transparent 100%);
  opacity: 0;
  transition: opacity 980ms var(--ease-cinematic) 260ms;
  pointer-events: none;
}

.hero-side-scene::after {
  content: "";
  position: absolute;
  top: 14%;
  bottom: 14%;
  left: clamp(18px, 2.8vw, 54px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18) 16%, rgba(255, 107, 74, 0.62) 52%, rgba(255, 255, 255, 0.1) 84%, transparent);
  opacity: 0;
  transition: opacity 760ms var(--ease-cinematic) 460ms;
  pointer-events: none;
}

.hero-side-copy {
  position: absolute;
  top: 50%;
  left: clamp(48px, 5.2vw, 100px);
  z-index: 2;
  width: min(31vw, 520px);
  opacity: 0;
  transform: translate3d(-34px, -45%, 0);
  transition:
    opacity 900ms var(--ease-cinematic) 320ms,
    transform 1240ms var(--ease-cinematic) 220ms;
}

.hero-side-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a9b8c9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-side-kicker span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
}

.hero-side-kicker i {
  width: 34px;
  height: 1px;
  background: var(--coral-500);
}

.hero-side-copy h2 {
  max-width: 10.5ch;
  margin-top: 22px;
  font-size: clamp(38px, 3.2vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: #fff;
}

.hero-side-lead {
  max-width: 46ch;
  margin-top: 20px;
  color: #aebdd0;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
}

.hero-side-features {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-side-features article {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 10px 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  opacity: 0.42;
  transform: translateX(0);
  transition:
    opacity 560ms var(--ease-cinematic),
    transform 760ms var(--ease-cinematic),
    background-color 560ms var(--ease-cinematic),
    padding-left 760ms var(--ease-cinematic);
}

.hero-side-features article::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--coral-500);
  box-shadow: 0 0 18px rgba(255, 107, 74, 0.42);
  transform: scaleY(0);
  transition: transform 760ms var(--ease-cinematic);
}

.hero-side-features article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.11), transparent 78%);
  opacity: 0;
  transition: opacity 620ms var(--ease-cinematic);
}

.hero-side-features article.is-active {
  padding-left: 14px;
  opacity: 1;
  transform: translateX(7px);
}

.hero-side-features article.is-active::before {
  transform: scaleY(1);
}

.hero-side-features article.is-active::after {
  opacity: 1;
}

.hero-side-features article > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--coral-500);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition:
    color 520ms var(--ease-cinematic),
    background-color 520ms var(--ease-cinematic),
    border-color 520ms var(--ease-cinematic),
    box-shadow 620ms var(--ease-cinematic);
}

.hero-side-features article.is-active > span {
  border-color: var(--coral-500);
  background: var(--coral-500);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(255, 107, 74, 0.1), 0 10px 24px -12px rgba(255, 107, 74, 0.75);
}

.hero-side-features strong,
.hero-side-features small {
  display: block;
}

.hero-side-features strong {
  color: #edf3f8;
  font-size: 13px;
  font-weight: 600;
}

.hero-side-features article:not(.is-active) strong {
  color: #9aabbd;
}

.hero-side-features small {
  margin-top: 2px;
  color: #71869d;
  font-size: 11px;
  line-height: 1.45;
}

.hero-side-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  pointer-events: auto;
}

.hero-side-link span {
  color: var(--coral-500);
  font-size: 17px;
  transition: transform 180ms var(--ease);
}

.hero-side-link:hover span {
  transform: translateX(4px);
}

.hero-side-frame-label,
.hero-side-progress {
  position: absolute;
  right: var(--side-right);
  z-index: 3;
  width: var(--side-w);
  opacity: 0;
  transition:
    opacity 760ms var(--ease-cinematic) 840ms,
    transform 1040ms var(--ease-cinematic) 760ms;
}

.hero-side-frame-label {
  top: calc(50% - min(16.3vw, 277px) - 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(8px);
  color: #8195aa;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-side-frame-label span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-side-frame-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.09);
}

.hero-side-frame-label b {
  color: #526a83;
  font: inherit;
}

.hero-side-progress {
  top: calc(50% + min(16.3vw, 277px) + 22px);
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  gap: 14px;
  align-items: center;
  transform: translateY(-8px);
  color: #6e8399;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-side-progress > i {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.hero-side-progress > i b {
  display: block;
  width: var(--side-progress, 0%);
  height: 100%;
  background: var(--coral-500);
  box-shadow: 0 0 12px rgba(255, 107, 74, 0.42);
  transition: width 300ms linear;
}

.hero-cine.is-video-complete .hero-cine-canvas {
  opacity: 0;
  transition-duration: 620ms;
  transition-timing-function: var(--ease-cinematic);
}

/* Senza scena laterale non c'è nulla da rivelare: il canvas resta
   pieno con il fotogramma (scuro) invece di dissolversi su uno sfondo
   vuoto. La sticky tiene comunque il frame 1 come base scura. */
.hero-cine[data-side-scene-enabled="false"].is-video-complete .hero-cine-canvas {
  opacity: 1;
}

.hero-cine[data-side-scene-enabled="false"].is-video-complete .hero-cine-sticky {
  background-color: #070f1e;
  background-image: url("hero/fotogrammi_1280/frame_000001.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-cine.is-video-complete .hero-final-shell {
  top: 50%;
  right: auto;
  left: calc(100% - min(58vw, 985px) - clamp(18px, 3vw, 58px));
  width: min(58vw, 985px);
  height: min(32.6vw, 554px);
  transform: translateY(-50%);
}

.hero-cine.is-video-complete .hero-final-shell .hero-cine-fallback {
  transform: scale(1);
}

.hero-cine.is-video-complete .hero-side-scene {
  visibility: visible;
}

.hero-cine.is-video-complete .hero-side-scene::before,
.hero-cine.is-video-complete .hero-side-scene::after {
  opacity: 1;
}

.hero-cine.is-video-complete .hero-side-copy {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.hero-cine.is-video-complete .hero-side-frame-label,
.hero-cine.is-video-complete .hero-side-progress {
  opacity: 1;
  transform: translateY(0);
}

.hero-cine.is-video-complete .hero-cine-veil,
.hero-cine.is-video-complete .hero-cine-copy,
.hero-cine.is-video-complete .hero-cine-hint {
  visibility: hidden;
  opacity: 0 !important;
}

/* Rientro dalla scena prodotto alla hero: prima avviene la fusione
   visiva, poi JS compatta la sezione quando il frame 1 è già pieno. */
.hero-cine.is-video-complete.is-returning .hero-cine-sticky,
.hero-cine.is-video-complete.is-consumed .hero-cine-sticky {
  background-color: #070f1e;
  background-image: url("hero/fotogrammi_1280/frame_000001.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-cine.is-video-complete.is-returning .hero-cine-canvas {
  opacity: 1;
  transition-duration: 900ms;
  transition-timing-function: var(--ease-cinematic);
}

.hero-cine.is-video-complete.is-returning .hero-final-shell {
  opacity: 0;
  transform: translateY(-50%) scale(0.978);
  transition:
    opacity 720ms var(--ease-cinematic),
    transform 980ms var(--ease-cinematic);
}

.hero-cine.is-video-complete.is-returning .hero-side-copy {
  opacity: 0;
  transform: translate3d(-18px, -50%, 0);
  transition:
    opacity 680ms var(--ease-cinematic),
    transform 900ms var(--ease-cinematic);
}

.hero-cine.is-video-complete.is-returning .hero-side-scene::before,
.hero-cine.is-video-complete.is-returning .hero-side-scene::after {
  opacity: 0;
  transition-duration: 760ms;
  transition-delay: 0ms;
}

.hero-cine.is-video-complete.is-returning .hero-side-frame-label,
.hero-cine.is-video-complete.is-returning .hero-side-progress {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 580ms var(--ease-cinematic),
    transform 760ms var(--ease-cinematic);
}

.hero-cine.is-video-complete.is-returning .hero-cine-veil,
.hero-cine.is-video-complete.is-returning .hero-cine-copy,
.hero-cine.is-video-complete.is-returning .hero-cine-hint {
  visibility: visible;
  opacity: 1 !important;
  transition: opacity 900ms var(--ease-cinematic);
}

.hero-cine.is-consumed .hero-final-shell {
  opacity: 0;
}

/* Dopo il primo completamento la sequenza non viene riprodotta al
   contrario: tornando sopra la soglia ricompaiono frame 1 e copy hero. */
.hero-cine.is-video-complete.is-consumed .hero-cine-canvas {
  opacity: 1;
}

.hero-cine.is-video-complete.is-consumed .hero-side-scene {
  visibility: hidden;
}

.hero-cine.is-video-complete.is-consumed .hero-side-copy {
  opacity: 0;
}

.hero-cine.is-video-complete.is-consumed .hero-cine-veil,
.hero-cine.is-video-complete.is-consumed .hero-cine-copy,
.hero-cine.is-video-complete.is-consumed .hero-cine-hint {
  visibility: visible;
  opacity: 1 !important;
}

html.no-js .hero-cine,
.hero-cine.is-static {
  height: 100vh;
  height: 100svh;
}

html.no-js .hero-cine-fallback,
.hero-cine.is-static .hero-cine-fallback {
  display: block;
  opacity: 1;
}

html.no-js .hero-cine-canvas,
.hero-cine.is-static .hero-cine-canvas {
  display: none;
}

/* --- Velo scuro: si dissolve avanzando con lo scroll -------- */
.hero-cine-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 11, 22, 0.82) 0%,
    rgba(5, 11, 22, 0.58) 46%,
    rgba(5, 11, 22, 0.84) 100%
  );
  opacity: 1;
  will-change: opacity;
  pointer-events: none;
}

/* Lo scrim per la nav resta sopra il velo ma sotto i testi */
.hero-cine-sticky::after {
  z-index: 2;
}

/* --- Copy in overlay ---------------------------------------- */
.hero-cine-copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 3;
  transform: translateY(-54%);
  text-align: center;
  color: #f5f8fb;
  will-change: opacity, transform;
}

.hero-cine-copy .eyebrow {
  color: #b9c6d6;
}

.hero-cine-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 0 10px 0.25em 0;
  border-radius: 2px;
  background: var(--coral-500);
  vertical-align: middle;
}

.hero-cine-copy h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(46px, 4.35vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
  text-shadow: 0 3px 34px rgba(3, 8, 16, 0.48);
}

.hero-cine-copy h1 > span {
  display: block;
}

.hero-cine-copy h1 em {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--coral-500);
  font-style: normal;
  white-space: nowrap;
  text-shadow: 0 3px 28px rgba(255, 107, 74, 0.18);
}

.hero-cine-copy h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.08em;
  left: 0;
  z-index: -1;
  height: 0.11em;
  border-radius: 999px;
  background: rgba(255, 107, 74, 0.3);
  transform: scaleX(0);
  transform-origin: left;
  animation: heroAccentLine 700ms var(--ease) 720ms forwards;
}

@keyframes heroAccentLine {
  to { transform: scaleX(1); }
}

.hero-cine-sub {
  max-width: 780px;
  margin: 28px auto 0;
  color: #c7d3e2;
  font-size: clamp(16px, 14px + 0.35vw, 19px);
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 1px 20px rgba(3, 8, 16, 0.58);
}

.hero-cine-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-cine-actions .button {
  min-height: 56px;
  gap: 14px;
  padding: 0 27px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
}

.hero-cine-actions .button > span {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

.hero-cine-actions .button-coral {
  box-shadow: 0 16px 34px -18px rgba(255, 85, 67, 0.82), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-cine-actions .button-coral:hover > span {
  transform: translateX(4px);
}

.hero-cine-actions .button-dark {
  border-color: rgba(225, 233, 243, 0.9);
  background: rgba(255, 255, 255, 0.94);
  color: #12233f;
  box-shadow: 0 16px 34px -24px rgba(0, 0, 0, 0.8);
}

.hero-cine-actions .button-dark:hover {
  border-color: #fff;
  background: #fff;
}

.hero-cine-actions .button-dark:hover > span {
  transform: translateY(3px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-cine-copy h1 em::after {
    transform: scaleX(1);
    animation: none;
  }
}

.hero-cine-note {
  margin-top: 20px;
  font-size: 13px;
  color: #93a7bf;
}

.hero-cine-note i {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 10px;
  border-radius: 50%;
  background: #5c6f85;
  vertical-align: middle;
}

.hero-cine-copy.is-gone {
  visibility: hidden;
}

/* --- Indicatore di scroll ----------------------------------- */
.hero-cine-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: #b9c6d6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  will-change: opacity;
  pointer-events: none;
}

.hero-cine-hint i {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(185, 198, 214, 0.28);
}

.hero-cine-hint i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, transparent 100%);
  transform: translateY(-100%);
  animation: heroHintDrop 2.4s var(--ease) infinite;
}

@keyframes heroHintDrop {
  0% { transform: translateY(-100%); }
  62% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* --- Statico (no-JS / reduced motion) ----------------------- */
html.no-js .hero-cine-veil,
.hero-cine.is-static .hero-cine-veil {
  opacity: 0.55;
}

html.no-js .hero-cine-hint,
.hero-cine.is-static .hero-cine-hint {
  display: none;
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 1024px) {
  .hero-cine {
    height: 470vh;
  }

  .hero-cine[data-side-scene-enabled="false"] {
    height: 200vh;
  }

  .hero-side-scene {
    --side-w: min(56vw, 650px);
    --side-h: min(31.5vw, 366px);
  }

  .hero-cine.is-video-complete .hero-final-shell {
    left: calc(100% - min(56vw, 650px) - clamp(18px, 3vw, 58px));
    width: min(56vw, 650px);
    height: min(31.5vw, 366px);
  }

  .hero-side-copy {
    left: clamp(24px, 4vw, 52px);
    width: 35vw;
  }

  .hero-side-copy h2 {
    font-size: clamp(34px, 3.5vw, 46px);
  }
}

@media (max-width: 768px) {
  .hero-cine {
    height: 500vh;
  }

  .hero-cine[data-side-scene-enabled="false"] {
    height: 260vh;
  }

  .hero-cine.is-condensed {
    height: 340vh;
    height: 340svh;
  }

  .hero-cine-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.6vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .hero-cine-copy {
    padding-inline: 14px;
  }

  .hero-cine-copy h1 > span {
    display: inline;
  }

  .hero-cine-copy h1 > span:not(:last-child)::after {
    content: " ";
  }

  .hero-cine-sub {
    max-width: 560px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-cine-actions {
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
  }

  .hero-cine-actions .button {
    width: min(320px, 100%);
    min-height: 54px;
  }

  .hero-cine-note i {
    margin: 0 7px;
  }

  .hero-side-scene {
    --side-w: calc(100vw - 20px);
    --side-h: calc(56.2vw - 11.24px);
    --side-right: 10px;
  }

  .hero-side-copy {
    top: auto;
    bottom: clamp(28px, 6svh, 62px);
    left: 22px;
    width: calc(100% - 44px);
    transform: translate3d(0, 18px, 0);
  }

  .hero-side-kicker {
    gap: 10px;
  }

  .hero-side-kicker span {
    width: 29px;
    height: 29px;
  }

  .hero-side-copy h2 {
    max-width: 18ch;
    margin-top: 16px;
    font-size: clamp(28px, 7.8vw, 38px);
    line-height: 1.04;
  }

  .hero-side-copy > p:not(.eyebrow) {
    margin-top: 13px;
  }

  .hero-side-lead {
    max-width: 38ch;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-side-features,
  .hero-side-frame-label {
    display: none;
  }

  .hero-side-progress {
    top: calc(clamp(88px, 12svh, 118px) + var(--side-h) + 18px);
    right: auto;
    left: 20px;
    display: grid;
    width: calc(100% - 40px);
    grid-template-columns: 28px minmax(70px, 1fr) minmax(0, auto);
    gap: 10px;
    font-size: 9px;
  }

  .hero-side-progress > span:last-child {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-side-link {
    margin-top: 16px;
  }

  .hero-side-copy h2,
  .hero-side-copy .hero-side-lead,
  .hero-side-copy .hero-side-kicker {
    transition:
      opacity 380ms var(--ease-cinematic),
      transform 520ms var(--ease-cinematic);
  }

  .hero-side-copy.is-copy-changing h2,
  .hero-side-copy.is-copy-changing .hero-side-lead,
  .hero-side-copy.is-copy-changing .hero-side-kicker {
    opacity: 0;
    transform: translate3d(0, 9px, 0);
  }

  .hero-cine.is-video-complete .hero-side-copy {
    transform: translate3d(0, 0, 0);
  }

  .hero-cine.is-video-complete .hero-final-shell {
    top: clamp(88px, 12svh, 118px);
    right: auto;
    left: 10px;
    bottom: auto;
    width: calc(100vw - 20px);
    height: calc(56.2vw - 11.24px);
    max-height: none;
    transform: none;
  }

  .hero-cine.is-video-complete.is-returning .hero-final-shell {
    transform: scale(0.978);
  }

  .hero-cine.is-video-complete.is-returning .hero-side-copy {
    transform: translate3d(0, -10px, 0);
  }
}

@media (max-width: 768px) and (max-height: 680px) {
  .hero-cine.is-video-complete .hero-final-shell {
    top: 76px;
  }

  .hero-side-progress {
    top: calc(76px + var(--side-h) + 12px);
  }

  .hero-side-copy {
    bottom: 18px;
  }

  .hero-side-copy h2 {
    margin-top: 12px;
    font-size: clamp(25px, 7vw, 32px);
  }

  .hero-side-copy > p:not(.eyebrow) {
    margin-top: 9px;
  }

  .hero-side-link {
    margin-top: 11px;
  }
}

/* ============================================================
   SECONDA SCENA IN CHIARO
   Quando la sequenza è conclusa lo stage passa su superficie
   chiara: il prodotto è già chiaro, la cornice smette di
   combatterlo e la pagina entra nel resto del sito senza salti.
   Le regole del rientro alla hero (.is-returning / .is-consumed)
   hanno specificità maggiore e restano scure.
============================================================ */
.hero-cine-sticky {
  transition: background-color var(--motion-layer) var(--ease-cinematic);
}

.hero-cine.is-video-complete .hero-cine-sticky {
  background-color: var(--background);
}

/* Lo scrim della nav si schiarisce insieme allo sfondo */
.hero-cine.is-video-complete .hero-cine-sticky::after {
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.95) 0%, rgba(247, 248, 250, 0) 100%);
}

/* Senza scena laterale non c'è schiarita: lo scrim resta scuro,
   niente alone bianco in cima alla hero a sequenza conclusa. */
.hero-cine[data-side-scene-enabled="false"].is-video-complete .hero-cine-sticky::after {
  background: linear-gradient(180deg, rgba(6, 16, 31, 0.55) 0%, transparent 100%);
}

/* Il prodotto guadagna una cornice: su chiaro serve un bordo */
.hero-cine.is-video-complete .hero-final-shell {
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(16, 24, 40, 0.07),
    0 40px 80px -48px rgba(16, 24, 40, 0.45);
}

.hero-cine.is-video-complete.is-returning .hero-final-shell,
.hero-cine.is-video-complete.is-consumed .hero-final-shell {
  border-radius: 0;
  box-shadow: none;
}

/* --- Colonna di testo ---------------------------------------- */
.hero-side-scene {
  color: var(--text-primary);
}

.hero-side-scene::before {
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.045) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(rgba(16, 24, 40, 0.045) 1px, transparent 1px) 0 0 / 88px 88px,
    radial-gradient(circle at 12% 76%, rgba(255, 107, 74, 0.09), transparent 34%);
}

.hero-side-scene::after {
  background: linear-gradient(180deg, transparent, rgba(16, 24, 40, 0.1) 16%, rgba(255, 107, 74, 0.55) 52%, rgba(16, 24, 40, 0.06) 84%, transparent);
}

.hero-side-kicker {
  color: var(--text-secondary);
}

.hero-side-kicker span {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.hero-side-copy h2 {
  color: var(--text-primary);
}

.hero-side-lead {
  color: var(--text-secondary);
}

.hero-side-features {
  border-top-color: var(--border);
}

.hero-side-features article {
  border-bottom-color: var(--border);
}

.hero-side-features article::before {
  box-shadow: 0 0 14px rgba(255, 107, 74, 0.3);
}

.hero-side-features article::after {
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.09), transparent 78%);
}

.hero-side-features article > span {
  border-color: var(--border-strong);
}

.hero-side-features article.is-active > span {
  border-color: var(--coral-500);
  box-shadow: 0 0 0 6px rgba(255, 107, 74, 0.09), 0 10px 22px -14px rgba(255, 107, 74, 0.85);
}

.hero-side-features strong {
  color: var(--text-primary);
}

.hero-side-features article:not(.is-active) strong {
  color: var(--text-secondary);
}

.hero-side-features small {
  color: var(--text-tertiary);
}

.hero-side-link {
  color: var(--navy-800);
}

/* --- Etichette di cornice ------------------------------------ */
.hero-side-frame-label {
  color: var(--text-tertiary);
}

.hero-side-frame-label i {
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.1);
}

.hero-side-frame-label b {
  color: var(--text-secondary);
}

.hero-side-progress {
  color: var(--text-tertiary);
}

.hero-side-progress > i {
  background: var(--border-strong);
}

.hero-side-progress > i b {
  box-shadow: none;
}

/* Su viewport strette la scena torna impilata: il testo resta
   comunque su superficie chiara. */
@media (max-width: 1024px) {
  .hero-cine.is-video-complete .hero-cine-sticky {
    background-color: var(--background);
  }
}

/* ============================================================
   VEYCAR · NUOVA ESPERIENZA DOPO LE TRE SLIDE
   Sistema editoriale e product-led. Tutte le regole restano
   isolate dal namespace vx- per non alterare la hero cinematica.
============================================================ */
:root {
  --vx-ink: #07111f;
  --vx-ink-soft: #10233a;
  --vx-paper: #f5f3ed;
  --vx-paper-cool: #f4f7fa;
  --vx-white: #ffffff;
  --vx-line: rgba(7, 17, 31, 0.11);
  --vx-line-dark: rgba(255, 255, 255, 0.12);
  --vx-muted: #5d6877;
  --vx-muted-dark: #94a4b7;
  --vx-coral: #ff6b4a;
  --vx-coral-deep: #e95435;
  --vx-blue: #4d8dff;
  --vx-green: #27aa79;
  --vx-amber: #e6a54b;
  --vx-editorial: var(--display);
  --vx-mono: "JetBrains Mono", ui-monospace, monospace;
  --vx-ease: cubic-bezier(0.22, 0.72, 0.22, 1);
  --vx-radius: 28px;
}

.vx-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 10vw, 160px) 0;
}

.vx-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--vx-muted);
  font-family: var(--vx-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vx-kicker > span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--vx-coral-deep);
  letter-spacing: 0.04em;
}

.vx-display {
  max-width: 1100px;
  color: var(--vx-ink);
  font-size: clamp(44px, 5.25vw, 76px);
  font-weight: 600;
  letter-spacing: -0.061em;
  line-height: 0.99;
}

.vx-display em {
  color: var(--vx-coral-deep);
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  letter-spacing: inherit;
}

.vx-lead {
  color: var(--vx-muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
}

.vx-body-copy {
  color: var(--vx-muted);
  font-size: 15px;
  line-height: 1.72;
}

.vx-heading {
  margin-bottom: clamp(56px, 7vw, 96px);
}

.vx-heading > .vx-kicker {
  margin-bottom: 26px;
}

.vx-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.vx-heading-row .vx-lead {
  max-width: 500px;
  padding-bottom: 5px;
}

.vx-heading-light .vx-display,
.vx-heading-light .vx-lead {
  color: #f5f8fb;
}

.vx-heading-light .vx-lead {
  color: #9cadc0;
}

.vx-heading-light .vx-kicker,
.vx-platform .vx-kicker,
.vx-compliance .vx-kicker,
.vx-cta .vx-kicker {
  color: #899caf;
}

.vx-heading-light .vx-kicker > span,
.vx-platform .vx-kicker > span,
.vx-compliance .vx-kicker > span,
.vx-cta .vx-kicker > span {
  color: #ff8267;
}

.vx-heading-centered {
  display: flex;
  max-width: 970px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vx-heading-centered .vx-display {
  max-width: 940px;
}

.vx-heading-centered .vx-lead {
  max-width: 700px;
  margin-top: 28px;
}

/* --- 02 · Tutto in un unico posto -------------------------- */
.vx-friction {
  overflow: hidden;
  padding-top: clamp(112px, 11vw, 176px);
  background:
    radial-gradient(60% 46% at 82% 35%, rgba(77, 141, 255, 0.09), transparent 72%),
    radial-gradient(48% 36% at 5% 85%, rgba(255, 107, 74, 0.08), transparent 72%),
    #f6f5f1;
}

.vx-friction::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(7, 17, 31, 0.034) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 17, 31, 0.034) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 78%);
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}

.vx-orbit {
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 107, 74, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.vx-orbit::before,
.vx-orbit::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(7, 17, 31, 0.055);
  border-radius: inherit;
}

.vx-orbit::after { inset: 26%; }
.vx-orbit-one { top: -300px; right: -180px; }

.vx-friction-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(540px, 1.24fr);
  align-items: center;
  gap: clamp(64px, 7vw, 118px);
}

.vx-friction-copy {
  display: block;
}

.vx-friction-copy .vx-kicker {
  margin-bottom: 27px;
}

.vx-friction-copy .vx-display {
  max-width: 650px;
  font-size: clamp(46px, 4.7vw, 68px);
}

.vx-friction-copy .vx-lead {
  max-width: 590px;
  margin-top: 30px;
}

.vx-friction-copy .vx-body-copy {
  max-width: 570px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.7;
}

.vx-order-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
}

.vx-order-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #314354;
  font-size: 14px;
  font-weight: 650;
}

.vx-order-assurance i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #dff2e9;
  color: #26805e;
  font-size: 12px;
}

.vx-order-stage {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: clamp(24px, 2.5vw, 38px);
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(65% 34% at 0 100%, rgba(77, 141, 255, 0.13), transparent 72%),
    radial-gradient(54% 32% at 100% 100%, rgba(255, 107, 74, 0.12), transparent 72%),
    rgba(236, 241, 245, 0.92);
  box-shadow: 0 34px 90px -64px rgba(7, 17, 31, 0.7), inset 0 1px rgba(255, 255, 255, 0.9);
  isolation: isolate;
}

.vx-order-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(22, 49, 75, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 49, 75, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 62%);
  mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

.vx-order-before {
  padding: 16px 18px 18px;
  border: 1px dashed rgba(7, 17, 31, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.vx-order-before > small {
  display: block;
  color: #778590;
  font-family: var(--vx-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-order-before > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.vx-order-before span {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #677582;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.vx-order-before i {
  color: #87949e;
  font-size: 18px;
}

.vx-order-bridge {
  position: relative;
  display: flex;
  height: 74px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #657685;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vx-order-bridge::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 107, 74, 0.5), transparent);
}

.vx-order-bridge i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 107, 74, 0.25);
  border-radius: 50%;
  background: #fff2ee;
  color: var(--vx-coral-deep);
  box-shadow: 0 8px 22px -15px rgba(233, 84, 53, 0.8);
  font-size: 13px;
}

.vx-order-bridge span {
  padding: 2px 7px;
  background: #edf1f4;
}

.vx-order-workspace {
  position: relative;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 58px -40px rgba(7, 17, 31, 0.72), inset 0 1px #fff;
}

.vx-order-workspace > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6ebef;
}

.vx-order-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vx-order-brand > i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #203a55, #0b1928);
  color: #fff;
  box-shadow: 0 15px 28px -20px rgba(7, 17, 31, 0.85);
  font-size: 21px;
}

.vx-order-brand small,
.vx-order-brand strong {
  display: block;
}

.vx-order-brand small {
  color: #8996a1;
  font-size: 11px;
}

.vx-order-brand strong {
  margin-top: 2px;
  color: #15283a;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.025em;
}

.vx-order-synced {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e7f4ed;
  color: #277a5b;
  font-size: 12px;
  font-weight: 700;
}

.vx-order-synced i { font-size: 16px; }

.vx-order-vehicle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #e4e9ed;
  border-radius: 17px;
  background: #f4f7f9;
}

.vx-order-vehicle > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #ffe9e3;
  color: var(--vx-coral-deep);
  font-size: 21px;
}

.vx-order-vehicle small,
.vx-order-vehicle strong {
  display: block;
}

.vx-order-vehicle small {
  color: #82909b;
  font-size: 11px;
  text-transform: uppercase;
}

.vx-order-vehicle strong {
  margin-top: 3px;
  color: #223647;
  font-size: 16px;
}

.vx-order-vehicle em {
  color: #657684;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.vx-order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 11px;
}

.vx-order-grid section {
  min-width: 0;
  min-height: 137px;
  padding: 16px;
  border: 1px solid #e5e9ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 13px 28px -27px rgba(7, 17, 31, 0.8);
}

.vx-order-grid section > header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7d8993;
}

.vx-order-grid section > header i {
  color: #506879;
  font-size: 18px;
}

.vx-order-grid section > header small { font-size: 12px; }

.vx-order-grid section > strong {
  display: block;
  margin-top: 14px;
  color: #1e3345;
  font-size: 16px;
}

.vx-order-grid section > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  color: #4b806b;
  font-size: 14px;
  font-weight: 600;
}

.vx-order-grid section > p i { font-size: 13px; }

.vx-order-workspace > footer {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 11px;
  padding: 13px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #13283d, #091522);
  color: #fff;
}

.vx-order-workspace > footer > span {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 11px;
  align-items: center;
}

.vx-order-workspace > footer i {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: span 2;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  color: #ff8a70;
  font-size: 18px;
}

.vx-order-workspace > footer small {
  color: #91a3b5;
  font-size: 11px;
}

.vx-order-workspace > footer strong {
  margin-top: 1px;
  font-size: 15px;
}

.vx-order-workspace > footer b {
  padding: 8px 12px;
  border: 1px solid rgba(106, 221, 170, 0.18);
  border-radius: 999px;
  background: rgba(39, 170, 121, 0.13);
  color: #8de1ba;
  font-size: 12px;
}

.vx-unified-map {
  position: relative;
  min-height: 700px;
  overflow: visible;
  background: radial-gradient(48% 42% at 50% 50%, rgba(255, 107, 74, 0.11), transparent 74%);
  isolation: isolate;
}

.vx-unified-map::before,
.vx-unified-map::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 17, 31, 0.075);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vx-unified-map::before { width: 61%; }
.vx-unified-map::after { width: 43%; border-style: dashed; }

.vx-unified-glow {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.14), rgba(77, 141, 255, 0.04) 45%, transparent 72%);
  filter: blur(16px);
  transform: translate(-50%, -50%);
}

.vx-unified-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.vx-unified-paths path {
  fill: none;
  stroke: rgba(61, 91, 117, 0.28);
  stroke-dasharray: 3 6;
  stroke-linecap: round;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.vx-unified-paths .is-flow {
  stroke: var(--vx-coral);
  stroke-dasharray: 5 95;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 4px rgba(255, 107, 74, 0.48));
  animation: vx-unified-flow 3.4s linear infinite;
}

.vx-unified-paths .is-flow:nth-of-type(4n) { animation-delay: -0.8s; }
.vx-unified-paths .is-flow:nth-of-type(6n) { animation-delay: -1.6s; }
.vx-unified-paths .is-flow:nth-of-type(8n) { animation-delay: -2.4s; }

@keyframes vx-unified-flow {
  to { stroke-dashoffset: -100; }
}

.vx-unified-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 286px;
  height: 360px;
  padding: 30px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.11);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(247, 249, 250, 0.97));
  box-shadow: 0 38px 75px -42px rgba(7, 17, 31, 0.72), 0 0 0 9px rgba(255, 255, 255, 0.42);
  color: #193043;
  transform: translate(-50%, -50%);
}

.vx-unified-core::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--vx-coral), #ff9b83);
}

.vx-unified-status {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  align-self: flex-start;
  border: 1px solid rgba(39, 170, 121, 0.14);
  border-radius: 999px;
  background: #e7f4ed;
  color: #287a5c;
  font-size: 12px;
  font-weight: 700;
}

.vx-unified-status > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69d5a3;
  box-shadow: 0 0 0 5px rgba(105, 213, 163, 0.11);
}

.vx-unified-core > small,
.vx-unified-core > strong,
.vx-unified-core > p { display: block; }

.vx-unified-core > small {
  margin-top: 22px;
  color: #84919c;
  font-size: 12px;
  text-transform: uppercase;
}

.vx-unified-core > strong {
  margin-top: 5px;
  font-family: var(--display);
  color: #172d40;
  font-size: clamp(22px, 2vw, 27px);
  letter-spacing: -0.04em;
}

.vx-unified-core > p {
  margin-top: 7px;
  color: #637482;
  font-size: 14px;
}

.vx-unified-core > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e2e7ea;
}

.vx-unified-core > div span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5f7180;
  font-size: 12px;
}

.vx-unified-core > div span i {
  color: #6dd4a5;
  font-size: 16px;
}

.vx-unified-core > div b {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffe8e2;
  color: var(--vx-coral-deep);
  font-size: 11px;
}

.vx-unified-node {
  position: absolute;
  z-index: 4;
  display: grid;
  width: min(222px, 31%);
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 4px;
}

.vx-unified-node > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: #405b70;
  box-shadow: 0 16px 34px -26px rgba(7, 17, 31, 0.8);
  font-size: 20px;
}

.vx-unified-node small,
.vx-unified-node strong,
.vx-unified-node em { display: block; }

.vx-unified-node small {
  color: #7f8c97;
  font-size: 11px;
}

.vx-unified-node strong {
  overflow: hidden;
  margin-top: 3px;
  color: #203547;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vx-unified-node em {
  margin-top: 5px;
  color: #557162;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.vx-unified-node em i {
  margin-right: 4px;
  color: var(--vx-green);
  font-size: 11px;
}

.vx-unified-client { top: 2%; left: 2%; }
.vx-unified-vehicle { top: 12%; right: 1%; }
.vx-unified-otp { top: 31%; left: 0; }
.vx-unified-deposit { top: 46%; right: -20px; }
.vx-unified-docs { bottom: 2%; left: 8%; }
.vx-unified-handover { right: 4%; bottom: 13%; }

.vx-unified-client > span,
.vx-unified-otp > span,
.vx-unified-handover > span {
  border-color: rgba(233, 84, 53, 0.16);
  background: rgba(255, 236, 231, 0.8);
  color: var(--vx-coral-deep);
}

.vx-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 5vw, 78px);
  margin-top: clamp(76px, 8vw, 118px);
}

.vx-principles article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 0;
}

.vx-principles article + article { border-left: 0; }

.vx-principles article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(233, 84, 53, 0.2);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: var(--vx-coral-deep);
  font-size: 18px;
}

.vx-principles strong,
.vx-principles p { display: block; }

.vx-principles strong {
  color: var(--vx-ink);
  font-size: 16px;
}

.vx-principles p {
  margin-top: 7px;
  color: var(--vx-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* --- 03 · Piattaforma -------------------------------------- */
.vx-platform {
  background:
    radial-gradient(70% 60% at 90% 15%, rgba(65, 126, 213, 0.12), transparent 68%),
    radial-gradient(55% 40% at 5% 90%, rgba(255, 107, 74, 0.08), transparent 72%),
    #07111f;
  color: #fff;
}

.vx-platform-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 78%, transparent);
}

/* La piattaforma non viene mostrata come un'altra dashboard: qui il
   prodotto segue il ciclo fisico dell'auto, dalla baia al rientro. */
.vx-rental-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
  padding: 23px 26px;
  border: 1px solid var(--vx-line-dark);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.vx-rental-route > span {
  display: grid;
  grid-template-columns: 12px auto;
  gap: 2px 9px;
  min-width: 0;
}

.vx-rental-route > span > i {
  grid-row: span 2;
  align-self: center;
  width: 9px;
  height: 9px;
  border: 1px solid #5d7187;
  border-radius: 50%;
}

.vx-rental-route > span.is-complete > i {
  border-color: var(--vx-green);
  background: var(--vx-green);
  box-shadow: 0 0 0 5px rgba(39, 170, 121, 0.1);
}

.vx-rental-route > span.is-current > i {
  border-color: var(--vx-coral);
  background: var(--vx-coral);
  box-shadow: 0 0 0 6px rgba(255, 107, 74, 0.12), 0 0 22px rgba(255, 107, 74, 0.35);
}

.vx-rental-route strong,
.vx-rental-route small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vx-rental-route strong {
  color: #d9e2eb;
  font-size: 10px;
}

.vx-rental-route small {
  color: #65798e;
  font-size: 7.5px;
}

.vx-rental-route > b {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
}

.vx-rental-route > b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 74, 0.7), transparent);
  transform: translateX(-100%);
  animation: vx-route-signal 4.8s var(--vx-ease) infinite;
}

@keyframes vx-route-signal {
  0%, 14% { transform: translateX(-100%); opacity: 0; }
  25%, 75% { opacity: 1; }
  88%, 100% { transform: translateX(100%); opacity: 0; }
}

.vx-journey-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.vx-journey-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--vx-radius);
  box-shadow: 0 42px 90px -65px rgba(0, 0, 0, 0.9);
}

.vx-journey-availability,
.vx-journey-return {
  grid-column: span 7;
}

.vx-journey-handover,
.vx-journey-drive {
  grid-column: span 5;
}

.vx-journey-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
  padding: clamp(30px, 4vw, 50px);
}

.vx-journey-copy h3 {
  max-width: 560px;
  margin-top: 21px;
  font-size: clamp(29px, 3vw, 43px);
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.vx-journey-copy > p:last-child {
  max-width: 520px;
  margin-top: 17px;
  font-size: 13.5px;
  line-height: 1.62;
}

.vx-journey-availability {
  background:
    radial-gradient(55% 52% at 96% 100%, rgba(77, 141, 255, 0.14), transparent 70%),
    #f2f5f7;
  color: var(--vx-ink);
}

.vx-journey-availability .vx-card-label,
.vx-journey-return .vx-card-label {
  color: #758392;
}

.vx-journey-availability .vx-journey-copy > p:last-child,
.vx-journey-return .vx-journey-copy > p:last-child {
  color: #617080;
}

.vx-parking-visual {
  position: absolute;
  right: 5%;
  bottom: -38px;
  left: 5%;
  overflow: hidden;
  border: 1px solid #d9e0e5;
  border-radius: 19px 19px 0 0;
  background: #fff;
  box-shadow: 0 28px 55px -38px rgba(7, 17, 31, 0.55);
  transform: perspective(1100px) rotateX(2deg);
  transform-origin: bottom center;
}

.vx-parking-head {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border-bottom: 1px solid #e5e9ec;
  color: #647484;
  font-size: 8.5px;
}

.vx-parking-head b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #82909e;
  font-size: 7px;
}

.vx-parking-head b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-green);
  box-shadow: 0 0 0 4px rgba(39, 170, 121, 0.09);
}

.vx-parking-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #f8fafb;
}

.vx-parking-lanes > div {
  position: relative;
  min-width: 0;
  min-height: 236px;
  padding: 16px 14px;
  border-right: 1px dashed #ced6dd;
  background-image: linear-gradient(180deg, rgba(7, 17, 31, 0.018), transparent 40%);
}

.vx-parking-lanes > div:last-child {
  border-right: 0;
}

.vx-parking-lanes span small,
.vx-parking-lanes span strong,
.vx-parking-lanes span em {
  display: block;
}

.vx-parking-lanes span small {
  color: #a0aab4;
  font-family: var(--vx-mono);
  font-size: 6.5px;
}

.vx-parking-lanes span strong {
  margin-top: 5px;
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vx-parking-lanes span em {
  margin-top: 2px;
  color: #8b97a3;
  font-family: var(--vx-mono);
  font-size: 6px;
  font-style: normal;
}

.vx-parking-lanes svg {
  position: absolute;
  top: 81px;
  left: 50%;
  width: 76%;
  fill: none;
  stroke: #7890a6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transform: translateX(-50%);
}

.vx-parking-lanes .is-booked svg {
  stroke: var(--vx-coral-deep);
}

.vx-parking-lanes .is-service svg {
  stroke: #9aa4ad;
  stroke-dasharray: 3 3;
}

.vx-parking-lanes > div > b {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e6f4ef;
  color: #1c805d;
  font-size: 6.5px;
}

.vx-parking-lanes .is-booked > b {
  background: #ffebe5;
  color: #c85136;
}

.vx-parking-lanes .is-service > b {
  background: #eceff1;
  color: #6d7984;
}

.vx-journey-handover {
  background:
    radial-gradient(85% 68% at 50% 100%, rgba(255, 107, 74, 0.22), transparent 70%),
    linear-gradient(145deg, #132941, #0a1828 72%);
  color: #fff;
}

.vx-journey-handover .vx-card-label,
.vx-journey-drive .vx-card-label {
  color: #8296aa;
}

.vx-journey-handover .vx-journey-copy > p:last-child,
.vx-journey-drive .vx-journey-copy > p:last-child {
  color: #99aabc;
}

.vx-key-visual {
  position: absolute;
  right: 7%;
  bottom: 28px;
  left: 7%;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(170px, 1.2fr);
  align-items: center;
  gap: 18px;
}

.vx-key-orbit {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.16), transparent 65%);
}

.vx-key-orbit > i {
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: vx-key-spin 18s linear infinite;
}

.vx-key-orbit > i:nth-child(2) {
  inset: 28%;
  border-style: solid;
  animation-direction: reverse;
}

@keyframes vx-key-spin {
  to { transform: rotate(360deg); }
}

.vx-key-orbit > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(6, 16, 31, 0.82);
  box-shadow: 0 20px 44px -22px #000, 0 0 0 8px rgba(255, 255, 255, 0.025);
  text-align: center;
  transform: rotate(-6deg);
}

.vx-key-orbit svg {
  width: 35px;
  margin-inline: auto;
  fill: none;
  stroke: var(--vx-coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.vx-key-orbit small {
  margin-top: 6px;
  color: #94a7b9;
  font-family: var(--vx-mono);
  font-size: 6px;
  text-transform: uppercase;
}

.vx-key-visual ul {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vx-key-visual li {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0bfce;
  font-size: 8px;
}

.vx-key-visual li i {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(39, 170, 121, 0.12);
}

.vx-key-visual li i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 5px;
  height: 3px;
  border-bottom: 1.5px solid #44ca96;
  border-left: 1.5px solid #44ca96;
  transform: rotate(-45deg);
}

.vx-journey-drive {
  background:
    radial-gradient(88% 65% at 15% 100%, rgba(77, 141, 255, 0.22), transparent 70%),
    #0c1b2d;
  color: #fff;
}

.vx-road-visual {
  position: absolute;
  right: 7%;
  bottom: 33px;
  left: 7%;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.vx-road-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #8ea1b4;
  font-size: 7px;
}

.vx-road-top span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.vx-road-top span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-green);
  box-shadow: 0 0 0 4px rgba(39, 170, 121, 0.09);
}

.vx-road-top b {
  color: #e5ebf1;
  font-family: var(--vx-mono);
  font-size: 7px;
}

.vx-road-map {
  position: relative;
  min-height: 148px;
  margin-top: 11px;
}

.vx-road-line {
  position: absolute;
  top: 70px;
  right: 18px;
  left: 18px;
  height: 25px;
  border-top: 2px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.vx-road-start,
.vx-road-end {
  position: absolute;
  top: 88px;
}

.vx-road-start { left: 5px; }
.vx-road-end { right: 5px; text-align: right; }

.vx-road-start::before,
.vx-road-end::before {
  content: "";
  position: absolute;
  top: -19px;
  width: 8px;
  height: 8px;
  border: 2px solid #738ba2;
  border-radius: 50%;
  background: #0c1b2d;
}

.vx-road-start::before { left: 0; }
.vx-road-end::before { right: 0; border-color: var(--vx-coral); }

.vx-road-start b,
.vx-road-start small,
.vx-road-end b,
.vx-road-end small {
  display: block;
}

.vx-road-start b,
.vx-road-end b {
  color: #dce5ed;
  font-family: var(--vx-mono);
  font-size: 7px;
}

.vx-road-start small,
.vx-road-end small {
  margin-top: 3px;
  color: #70859a;
  font-size: 6.5px;
}

.vx-road-car {
  position: absolute;
  z-index: 2;
  top: 35px;
  left: 46%;
  display: grid;
  width: 64px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #142b45;
  box-shadow: 0 13px 30px -14px #000, 0 0 0 7px rgba(77, 141, 255, 0.05);
  transform: translateX(-50%);
}

.vx-road-car svg {
  width: 46px;
  fill: none;
  stroke: #75a7ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.vx-road-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.vx-road-meta > span {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.vx-road-meta small,
.vx-road-meta strong {
  display: block;
}

.vx-road-meta small {
  color: #71869b;
  font-size: 6.5px;
}

.vx-road-meta strong {
  margin-top: 4px;
  color: #dbe4ec;
  font-size: 8px;
}

.vx-journey-return {
  background:
    radial-gradient(62% 75% at 100% 55%, rgba(39, 170, 121, 0.13), transparent 68%),
    #f3f5f3;
  color: var(--vx-ink);
}

/* Il rientro è mostrato com'è nel prodotto: la card di check-in
   con le rilevazioni registrate e la chiusura che rimette
   l'auto tra le prenotabili. */
.vx-return-visual {
  position: absolute;
  right: 4.5%;
  bottom: 30px;
  left: 4.5%;
}

.vx-return-app {
  overflow: hidden;
  border: 1px solid #dde5e0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 60px -45px rgba(18, 56, 42, 0.65);
}

.vx-return-app > header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #e7ede9;
}

.vx-return-app > header > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: #e5f4ee;
  color: #278764;
  font-size: 22px;
}

.vx-return-app > header small,
.vx-return-app > header strong {
  display: block;
}

.vx-return-app > header small {
  color: #75837b;
  font-size: 12px;
}

.vx-return-app > header strong {
  margin-top: 3px;
  color: #17372b;
  font-size: 16px;
}

.vx-return-app > header > b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e5f4ee;
  color: #1d5f45;
  font-size: 12px;
  font-weight: 700;
}

.vx-return-app > header > b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-green);
}

.vx-return-app > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #e7ede9;
}

.vx-return-app > ul li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 12px 20px;
  background: #fff;
}

.vx-return-app li > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #f0f4f2;
  color: #43584e;
  font-size: 19px;
}

.vx-return-app li small,
.vx-return-app li strong,
.vx-return-app li em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vx-return-app li small {
  color: #75837b;
  font-size: 11.5px;
}

.vx-return-app li strong {
  margin-top: 2px;
  color: #1d3529;
  font-size: 15px;
}

.vx-return-app li em {
  margin-top: 1px;
  color: #8d9a93;
  font-size: 11px;
  font-style: normal;
}

.vx-return-app > footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #e5f4ee;
  color: #1d5f45;
  font-size: 13px;
}

.vx-return-app > footer i {
  flex-shrink: 0;
  font-size: 17px;
}

.vx-return-app > footer strong {
  color: #14432f;
}

.vx-automotive-statement {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 40px;
  margin-top: 43px;
  padding-top: 32px;
  border-top: 1px solid var(--vx-line-dark);
}

.vx-automotive-statement > span {
  color: var(--vx-coral);
  font-family: var(--vx-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-automotive-statement p {
  max-width: 850px;
  color: #7f93a7;
  font-size: clamp(19px, 2.2vw, 29px);
  letter-spacing: -0.035em;
  line-height: 1.38;
}

.vx-automotive-statement strong {
  color: #e6edf4;
  font-weight: 600;
}

.vx-flow-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 28px;
  border: 1px solid var(--vx-line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.vx-flow-line > div {
  position: relative;
  min-width: 0;
  padding: 22px 20px;
}

.vx-flow-line > div + div {
  border-left: 1px solid var(--vx-line-dark);
}

.vx-flow-line > div::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vx-coral);
}

.vx-flow-line > div.is-active::before {
  width: 100%;
}

.vx-flow-line span,
.vx-flow-line strong,
.vx-flow-line small {
  display: block;
}

.vx-flow-line span {
  color: #60758c;
  font-family: var(--vx-mono);
  font-size: 9px;
}

.vx-flow-line strong {
  margin-top: 12px;
  color: #eaf0f6;
  font-size: 12px;
}

.vx-flow-line small {
  margin-top: 3px;
  overflow: hidden;
  color: #6f8297;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vx-flow-line .is-done span,
.vx-flow-line .is-active span {
  color: var(--vx-coral);
}

.vx-flow-line .is-done strong,
.vx-flow-line .is-active strong {
  color: #fff;
}

.vx-product-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--vx-radius);
  background: #eef2f6;
  box-shadow: 0 70px 120px -60px rgba(0, 0, 0, 0.88), 0 0 0 8px rgba(255, 255, 255, 0.025);
  color: var(--vx-ink);
}

.vx-product-tabs {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px 17px 20px;
  border-right: 1px solid #dfe5eb;
  background: #fafbfc;
}

.vx-product-tabs > p {
  margin: 0 12px 19px;
  color: #9ba6b3;
  font-family: var(--vx-mono);
  font-size: 8.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vx-product-tabs > button {
  display: grid;
  grid-template-columns: 21px 1fr auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 47px;
  padding: 0 12px;
  border-radius: 11px;
  color: #5d6d7e;
  font-size: 11.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.vx-product-tabs > button + button {
  margin-top: 4px;
}

.vx-product-tabs > button:hover {
  background: #f0f3f6;
  color: var(--vx-ink);
}

.vx-product-tabs > button.is-active {
  background: var(--vx-ink-soft);
  color: #fff;
  box-shadow: 0 10px 24px -15px rgba(7, 17, 31, 0.75);
}

.vx-product-tabs button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.vx-product-tabs button b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: #e6ebf0;
  color: #526171;
  font-size: 9px;
}

.vx-product-tabs button.is-active b {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.vx-product-tabs button > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vx-coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.12);
}

.vx-product-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 16px 8px 3px;
  border-top: 1px solid #e4e8ed;
}

.vx-product-user > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  background: #ffe4dc;
  color: #bc482f;
  font-size: 9px;
  font-weight: 700;
}

.vx-product-user strong,
.vx-product-user small {
  display: block;
}

.vx-product-user strong {
  font-size: 10px;
}

.vx-product-user small {
  color: #8b97a5;
  font-size: 8.5px;
}

.vx-product-main {
  min-width: 0;
  background: #eef2f6;
}

.vx-product-topbar {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 33px;
  border-bottom: 1px solid #dce2e8;
  background: rgba(255, 255, 255, 0.65);
  color: #728090;
  font-size: 9px;
}

.vx-product-topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vx-product-topbar > button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #e0e5ea;
  border-radius: 10px;
  background: #fff;
  color: #6f7e8e;
  cursor: pointer;
}

.vx-product-topbar svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.vx-product-panel {
  min-height: 696px;
  padding: 38px clamp(26px, 4.2vw, 62px) 52px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms var(--vx-ease), transform 260ms var(--vx-ease);
}

.vx-product-panel.is-active {
  opacity: 1;
  transform: none;
}

.vx-product-panel[hidden] {
  display: none;
}

.vx-panel-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.vx-panel-title small {
  display: block;
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-panel-title h3 {
  margin-top: 7px;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.05em;
}

.vx-panel-title > button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 14px;
  padding: 0 8px 0 17px;
  border-radius: 11px;
  background: var(--vx-ink-soft);
  color: #fff;
  font-size: 9.5px;
  font-weight: 600;
  cursor: pointer;
}

.vx-panel-title > button span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 15px;
}

.vx-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 35px;
}

.vx-stat-grid article {
  padding: 21px;
  border: 1px solid #dfe4e9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px -28px rgba(7, 17, 31, 0.6);
}

.vx-stat-grid span,
.vx-stat-grid strong,
.vx-stat-grid small {
  display: block;
}

.vx-stat-grid span {
  color: #73808f;
  font-size: 9px;
}

.vx-stat-grid strong {
  margin: 13px 0 16px;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.055em;
}

.vx-stat-grid small {
  color: #8b96a3;
  font-size: 8.5px;
}

.vx-stat-grid small i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
}

.vx-stat-grid .is-green { background: var(--vx-green); }
.vx-stat-grid .is-blue { background: var(--vx-blue); }
.vx-stat-grid .is-coral { background: var(--vx-coral); }

.vx-activity-card,
.vx-table-card,
.vx-fleet-board,
.vx-deadline-list {
  margin-top: 17px;
  overflow: hidden;
  border: 1px solid #dfe4e9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px -34px rgba(7, 17, 31, 0.65);
}

.vx-activity-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 23px;
  border-bottom: 1px solid #edf0f3;
}

.vx-activity-card > header strong {
  font-size: 11px;
}

.vx-activity-card > header button {
  color: #798695;
  font-size: 9px;
  cursor: pointer;
}

.vx-activity-row {
  display: grid;
  grid-template-columns: 42px 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 17px 23px;
}

.vx-activity-row + .vx-activity-row {
  border-top: 1px solid #edf0f3;
}

.vx-activity-row time {
  color: #83909d;
  font-family: var(--vx-mono);
  font-size: 8.5px;
}

.vx-activity-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
}

.vx-activity-icon.is-green { background: #e9f8f2; color: #168a61; }
.vx-activity-icon.is-blue { background: #ebf2ff; color: #3977db; }
.vx-activity-icon.is-amber { background: #fff5e5; color: #ba7721; }

.vx-activity-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.vx-activity-row strong,
.vx-activity-row small {
  display: block;
}

.vx-activity-row strong {
  font-size: 10px;
}

.vx-activity-row small {
  margin-top: 2px;
  color: #8a96a3;
  font-size: 8.5px;
}

.vx-status {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.vx-status.is-ready { background: #e8f7f1; color: #16835d; }
.vx-status.is-progress { background: #e9f1ff; color: #3f73ca; }
.vx-status.is-review { background: #fff1e5; color: #bc6a24; }
.vx-status.is-neutral { background: #edf0f3; color: #687686; }

.vx-table-card > header,
.vx-table-card > div {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.5fr 0.7fr;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
}

.vx-table-card > header {
  background: #f8fafb;
  color: #8a96a3;
  font-family: var(--vx-mono);
  font-size: 7.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vx-table-card > div {
  min-height: 69px;
  color: #627080;
  font-size: 9px;
}

.vx-table-card > div + div {
  border-top: 1px solid #edf0f3;
}

.vx-table-card > div > strong {
  color: var(--vx-ink);
  font-size: 9px;
}

.vx-fleet-board {
  padding-bottom: 12px;
}

.vx-fleet-days,
.vx-fleet-board > div:not(.vx-fleet-days) {
  display: grid;
  grid-template-columns: 130px repeat(5, 1fr);
  min-height: 76px;
  align-items: center;
}

.vx-fleet-days {
  min-height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid #e9edf1;
  background: #f8fafb;
  color: #8b97a4;
  font-size: 8px;
}

.vx-fleet-days b {
  font-weight: 500;
  text-align: center;
}

.vx-fleet-board > div:not(.vx-fleet-days) {
  position: relative;
  margin: 0 20px;
  border-bottom: 1px solid #edf0f3;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(20% - 1px), #edf0f3 calc(20% - 1px), #edf0f3 20%);
  background-position: 130px 0;
  background-size: calc(100% - 130px) 100%;
  background-repeat: no-repeat;
}

.vx-fleet-board > div > strong {
  font-size: 9px;
}

.vx-fleet-board > div > strong small {
  display: block;
  margin-top: 2px;
  color: #8a96a2;
  font-family: var(--vx-mono);
  font-size: 7.5px;
  font-weight: 500;
}

.vx-booking {
  display: flex;
  z-index: 2;
  grid-column: calc(var(--start) + 1) / span var(--length);
  grid-row: 1;
  height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.vx-booking.is-coral { background: #f06b4f; }
.vx-booking.is-blue { background: #5688e0; }
.vx-booking.is-green { background: #35a67c; }
.vx-booking.is-muted { background: #9ba5b0; }

.vx-deadline-list {
  padding: 0 22px;
}

.vx-deadline-list article {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 126px;
}

.vx-deadline-list article + article {
  border-top: 1px solid #edf0f3;
}

.vx-deadline-list time {
  display: grid;
  width: 50px;
  height: 57px;
  place-content: center;
  border: 1px solid #e2e6ea;
  border-radius: 12px;
  background: #f8fafb;
  text-align: center;
}

.vx-deadline-list time strong,
.vx-deadline-list time small {
  display: block;
}

.vx-deadline-list time strong {
  font-size: 18px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.vx-deadline-list time small {
  margin-top: 4px;
  color: #8995a2;
  font-family: var(--vx-mono);
  font-size: 7px;
}

.vx-deadline-list article > div span,
.vx-deadline-list article > div strong,
.vx-deadline-list article > div small {
  display: block;
}

.vx-deadline-list article > div span {
  color: var(--vx-coral-deep);
  font-size: 8px;
  font-weight: 700;
}

.vx-deadline-list article > div strong {
  margin-top: 3px;
  font-size: 11px;
}

.vx-deadline-list article > div small {
  margin-top: 3px;
  color: #8a96a3;
  font-size: 8.5px;
}

/* --- 04 · Capability bento --------------------------------- */
.vx-capabilities {
  background: #f8f8f6;
}

.vx-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.vx-bento-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  background: #fff;
  box-shadow: 0 28px 70px -58px rgba(7, 17, 31, 0.48);
}

.vx-bento-contracts,
.vx-bento-control {
  grid-column: span 7;
}

.vx-bento-fleet,
.vx-bento-finance {
  grid-column: span 5;
}

.vx-card-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding: clamp(30px, 4vw, 52px);
}

.vx-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #75808d;
  font-family: var(--vx-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vx-card-label span {
  color: var(--vx-coral-deep);
}

.vx-card-copy h3 {
  max-width: 570px;
  margin-top: 22px;
  font-size: clamp(27px, 3.1vw, 43px);
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.vx-card-copy > p:last-child {
  max-width: 540px;
  margin-top: 17px;
  color: var(--vx-muted);
  font-size: 14px;
  line-height: 1.62;
}

.vx-signature-ui {
  position: absolute;
  right: -6%;
  bottom: -20%;
  left: 7%;
  height: 390px;
  overflow: hidden;
  border: 1px solid #dce2e8;
  border-radius: 22px 22px 0 0;
  background: #f2f5f7;
  box-shadow: 0 24px 70px -35px rgba(7, 17, 31, 0.46);
  transform: rotate(-1.7deg);
}

.vx-signature-head {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #e1e6ea;
  background: #fff;
  color: #7a8795;
  font-size: 9px;
}

.vx-signature-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vx-signature-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-green);
}

.vx-signature-head b {
  color: var(--vx-ink);
  font-family: var(--vx-mono);
  font-size: 8px;
}

.vx-phone {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 186px;
  height: 270px;
  padding: 26px 20px;
  border: 6px solid var(--vx-ink);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 60px -25px rgba(7, 17, 31, 0.6);
  transform: translateX(-50%);
}

.vx-phone > span {
  color: var(--vx-coral-deep);
  font-size: 10px;
  font-weight: 800;
}

.vx-phone > small {
  display: block;
  margin-top: 35px;
  color: #808b97;
  font-size: 8px;
}

.vx-phone > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 9px;
}

.vx-phone > div b {
  display: grid;
  height: 35px;
  place-items: center;
  border: 1px solid #e0e5e9;
  border-radius: 8px;
  font-size: 11px;
}

.vx-phone > p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: #4e5f70;
  font-size: 8px;
}

.vx-phone > p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vx-green);
}

.vx-signature-route {
  position: absolute;
  right: 22px;
  bottom: 26px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #83909c;
  font-size: 7px;
}

.vx-signature-route i {
  flex: 1;
  height: 1px;
  margin: 0 9px;
  background: #dce2e6;
}

.vx-mini-fleet {
  position: absolute;
  right: 7%;
  bottom: 32px;
  left: 7%;
  padding: 19px 18px 16px;
  border: 1px solid #dde3e8;
  border-radius: 18px;
  background: #f7f9fa;
}

.vx-mini-fleet header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #e2e7eb;
  color: #6f7d8c;
  font-size: 8.5px;
}

.vx-mini-fleet header b {
  color: var(--vx-coral-deep);
  font-size: 8px;
}

.vx-mini-fleet > div {
  display: grid;
  grid-template-columns: 91px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 62px;
}

.vx-mini-fleet > div + div {
  border-top: 1px solid #e6eaee;
}

.vx-mini-fleet strong {
  font-size: 8px;
}

.vx-mini-fleet strong small {
  display: block;
  color: #8995a2;
  font-family: var(--vx-mono);
  font-size: 6.5px;
}

.vx-mini-fleet > div > i {
  position: relative;
  height: 22px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, #e5e9ed 0 1px, transparent 1px 20%);
}

.vx-mini-fleet > div > i b {
  position: absolute;
  top: 3px;
  left: var(--x);
  width: var(--w);
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(90deg, #ff795b, #ef5b3d);
}

.vx-mini-fleet > div > i b.is-free {
  background: #d8eee7;
}

.vx-bento-control {
  min-height: 590px;
  background: var(--vx-ink);
  color: #fff;
}

.vx-bento-control .vx-card-copy h3 {
  color: #fff;
}

.vx-bento-control .vx-card-copy > p:last-child {
  color: #9aabbd;
}

.vx-bento-control .vx-card-label {
  color: #8295a9;
}

.vx-radar {
  position: absolute;
  right: -30px;
  bottom: -195px;
  left: -30px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50% 50% 0 0;
  background: radial-gradient(circle at 50% 50%, rgba(41, 97, 147, 0.2), transparent 52%);
}

.vx-radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.vx-radar-ring.ring-a { width: 58%; aspect-ratio: 1; }
.vx-radar-ring.ring-b { width: 86%; aspect-ratio: 1; }

.vx-radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 42%;
  border-left: 1px solid rgba(255, 107, 74, 0.55);
  background: linear-gradient(100deg, rgba(255, 107, 74, 0.12), transparent 58%);
  transform-origin: left top;
  animation: vx-radar-sweep 8s linear infinite;
}

@keyframes vx-radar-sweep {
  to { transform: rotate(360deg); }
}

.vx-radar > b {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 88px;
  height: 88px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #10243b;
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: 13px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.vx-radar > b small {
  display: block;
  margin-top: 3px;
  color: #758aa0;
  font-family: var(--vx-mono);
  font-size: 6px;
  font-weight: 500;
  text-transform: uppercase;
}

.vx-radar-ping {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(16, 36, 59, 0.86);
  color: #aebdca;
  font-size: 7.5px;
  backdrop-filter: blur(9px);
}

.vx-radar-ping i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.1);
}

.vx-radar-ping.ping-a { top: 25%; left: 20%; }
.vx-radar-ping.ping-b { top: 35%; right: 15%; }
.vx-radar-ping.ping-c { top: 68%; right: 23%; }

.vx-ledger {
  position: absolute;
  right: 7%;
  bottom: 35px;
  left: 7%;
  overflow: hidden;
  border: 1px solid #dde3e8;
  border-radius: 17px;
  background: #fbfcfd;
}

.vx-ledger header,
.vx-ledger > div,
.vx-ledger footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
}

.vx-ledger header {
  border-bottom: 1px solid #e4e8ec;
  background: #fff;
  color: #697888;
  font-size: 8px;
}

.vx-ledger header b {
  color: #23875f;
  font-size: 7px;
}

.vx-ledger > div {
  color: #788592;
  font-size: 8px;
}

.vx-ledger > div + div {
  border-top: 1px solid #e8ecef;
}

.vx-ledger > div strong {
  color: #4d5b69;
  font-family: var(--vx-mono);
  font-size: 8px;
}

.vx-ledger footer {
  border-top: 1px solid #dfe4e8;
  background: var(--vx-ink-soft);
  color: #fff;
  font-size: 9px;
}

.vx-ledger footer strong {
  font-family: var(--vx-mono);
  font-size: 11px;
}

.vx-feature-index {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--vx-line);
}

.vx-feature-index > p {
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-feature-index > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.vx-feature-index span {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid var(--vx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #596675;
  font-size: 10px;
}

/* --- 05 · CaRGOS ------------------------------------------- */
.vx-compliance {
  background:
    radial-gradient(65% 80% at 88% 48%, rgba(39, 97, 158, 0.22), transparent 63%),
    #0b1727;
  color: #fff;
}

.vx-compliance::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 60%, transparent);
}

.vx-compliance-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(580px, 1.28fr);
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.vx-compliance-copy .vx-kicker {
  margin-bottom: 27px;
}

.vx-compliance-copy .vx-display {
  color: #f7f9fb;
  font-size: clamp(42px, 4.3vw, 64px);
}

.vx-compliance-copy .vx-lead {
  max-width: 580px;
  margin-top: 30px;
  color: #9bacbe;
}

.vx-check-list {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  border-top: 1px solid var(--vx-line-dark);
}

.vx-check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 23px 0;
  border-bottom: 1px solid var(--vx-line-dark);
}

.vx-check-list svg {
  width: 19px;
  fill: none;
  stroke: var(--vx-coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.vx-check-list span {
  color: #8396aa;
  font-size: 12.5px;
  line-height: 1.55;
}

.vx-check-list strong {
  display: block;
  margin-bottom: 3px;
  color: #edf2f7;
  font-size: 13px;
}

.vx-cargos-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.vx-cargos-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 144, 219, 0.22), rgba(79, 144, 219, 0.05) 43%, transparent 70%);
  transform: translate(-50%, -50%);
}

.vx-cargos-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 30px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #fff;
  color: #17293f;
  box-shadow: 0 60px 130px -55px #000, 0 30px 70px -40px rgba(6, 16, 31, 0.75);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
}

.vx-cargos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vx-cargos-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #14243a;
  font-family: var(--vx-editorial);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.vx-cargos-brand i {
  font-size: 19px;
}

.vx-cargos-badge {
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffe9e0;
  color: #e9603c;
  font-size: 11px;
  font-weight: 700;
}

.vx-cargos-sub {
  margin-top: 6px;
  color: #67758a;
  font-size: 13.5px;
}

.vx-cargos-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid #e4eaf1;
  border-radius: 12px;
  background: #f3f6fa;
  color: #4c5b6e;
  font-size: 12.5px;
}

.vx-cargos-note i {
  flex-shrink: 0;
  color: #22374f;
  font-size: 15px;
}

/* Le zone che cambiano tra "mai comunicato" e "inviato" si aprono
   e chiudono con il trucco grid-template-rows: 0fr → 1fr. */
.vx-cargos-fold {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.55s var(--vx-ease), opacity 0.4s var(--vx-ease);
}

.vx-cargos-fold > div {
  min-height: 0;
  overflow: hidden;
}

.vx-cargos-stage:not(.is-sent) .vx-cargos-fold-empty,
.vx-cargos-stage:not(.is-sent) .vx-cargos-fold-cta,
.vx-cargos-stage.is-sent .vx-cargos-fold-meta,
.vx-cargos-stage.is-sent .vx-cargos-fold-receipt {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* Il riavvio del ciclo torna allo stato iniziale con un taglio
   netto, senza riavvolgere le transizioni al contrario. */
.vx-cargos-stage.is-reset .vx-cargos-fold,
.vx-cargos-stage.is-reset .vx-cargos-toast {
  transition: none;
}

.vx-cargos-empty {
  padding-top: 18px;
  color: #9aa7b8;
  font-size: 13.5px;
}

.vx-cargos-sent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  color: #67758a;
  font-size: 13px;
}

.vx-cargos-sent-row b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e9edf4;
  color: #1c2c44;
  font-size: 12px;
  font-weight: 700;
}

.vx-cargos-sent-row b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1c2c44;
}

.vx-cargos-ref {
  margin-top: 9px;
  color: #8b98a9;
  font-size: 13px;
}

.vx-cargos-ref strong {
  color: #14243a;
  font-weight: 800;
}

.vx-cargos-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #17293f;
  font-size: 14px;
  font-weight: 700;
}

.vx-cargos-preview i {
  color: #45536a;
  font-size: 12px;
}

.vx-cargos-cta {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border-radius: 14px;
  background: linear-gradient(120deg, #fa9c72, #ee5f37);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 18px 36px -18px rgba(238, 95, 55, 0.65);
  transition: transform 0.18s var(--vx-ease), filter 0.3s var(--vx-ease);
}

.vx-cargos-stage.is-press .vx-cargos-cta {
  transform: scale(0.965);
  filter: brightness(0.94);
}

.vx-cargos-cta-label,
.vx-cargos-cta-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  grid-area: 1 / 1;
  transition: opacity 0.25s var(--vx-ease);
}

.vx-cargos-cta-label i {
  font-size: 16px;
}

.vx-cargos-cta-loading {
  opacity: 0;
}

.vx-cargos-stage.is-sending .vx-cargos-cta-label {
  opacity: 0;
}

.vx-cargos-stage.is-sending .vx-cargos-cta-loading {
  opacity: 1;
}

.vx-cargos-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: vx-cargos-spin 0.7s linear infinite;
}

@keyframes vx-cargos-spin {
  to { transform: rotate(360deg); }
}

.vx-cargos-receipt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 14px;
  background: #e9edf8;
  color: #2b3b58;
  font-size: 13px;
  line-height: 1.55;
}

.vx-cargos-receipt i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #22374f;
  font-size: 17px;
}

.vx-cargos-receipt strong {
  color: #14243a;
  font-weight: 800;
}

.vx-cargos-pointer {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  opacity: 0;
  filter: drop-shadow(0 6px 14px rgba(7, 17, 31, 0.45));
  pointer-events: none;
  translate: 0 0;
  transition: translate 1s var(--vx-ease), opacity 0.35s var(--vx-ease);
}

.vx-cargos-pointer svg {
  width: 22px;
  fill: #fff;
  stroke: #10233a;
  stroke-width: 1.5;
  transition: transform 0.15s var(--vx-ease);
}

.vx-cargos-stage.is-cursor .vx-cargos-pointer {
  opacity: 1;
}

.vx-cargos-stage.is-sent .vx-cargos-pointer {
  opacity: 0;
}

.vx-cargos-stage.is-press .vx-cargos-pointer svg {
  transform: scale(0.85) translate(1px, 1px);
}

.vx-cargos-click {
  position: absolute;
  z-index: 3;
  top: -22px;
  left: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  pointer-events: none;
}

.vx-cargos-stage.is-click .vx-cargos-click {
  animation: vx-cargos-ripple 0.5s var(--vx-ease);
}

@keyframes vx-cargos-ripple {
  0% { opacity: 0.7; transform: scale(0.25); }
  100% { opacity: 0; transform: scale(1); }
}

.vx-cargos-toast {
  position: absolute;
  z-index: 5;
  right: 3%;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 225px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(13, 32, 52, 0.91);
  box-shadow: 0 24px 55px -28px #000;
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--vx-ease), transform 0.45s var(--vx-ease);
}

.vx-cargos-stage.is-sent .vx-cargos-toast {
  opacity: 1;
  transform: none;
  transition-delay: 0.6s;
}

.vx-cargos-toast svg {
  width: 25px;
  height: 25px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(39, 170, 121, 0.13);
  fill: none;
  stroke: #4bd29e;
  stroke-width: 2;
}

.vx-cargos-toast strong,
.vx-cargos-toast small {
  display: block;
}

.vx-cargos-toast strong {
  color: #fff;
  font-size: 9px;
}

.vx-cargos-toast span {
  color: #91a3b5;
  font-size: 7.5px;
}

/* --- 06 · Intelligence ------------------------------------- */
.vx-intelligence {
  background:
    radial-gradient(38% 44% at 50% 62%, rgba(255, 107, 74, 0.09), transparent 74%),
    #f4f2ec;
}

.vx-ai-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vx-ai-connector {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 74, 0.35), rgba(77, 141, 255, 0.35), transparent);
}

.vx-ai-connector i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vx-coral);
  box-shadow: 0 0 18px var(--vx-coral);
  animation: vx-data-travel 5s var(--vx-ease) infinite;
}

@keyframes vx-data-travel {
  0%, 10% { left: 0; opacity: 0; }
  20%, 80% { opacity: 1; }
  90%, 100% { left: 100%; opacity: 0; }
}

.vx-ai-card {
  min-width: 0;
  min-height: 500px;
  padding: 21px;
  border: 1px solid var(--vx-line);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 70px -58px rgba(7, 17, 31, 0.65);
  backdrop-filter: blur(16px);
}

.vx-ai-card > header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 43px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7e9e9;
}

.vx-ai-card > header span {
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 7px;
}

.vx-ai-card > header strong {
  font-size: 10px;
}

.vx-ai-card > header i {
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf1f3;
  color: #72808d;
  font-size: 6.5px;
  font-style: normal;
  font-weight: 700;
}

.vx-pdf {
  position: relative;
  display: grid;
  width: 62%;
  aspect-ratio: 0.74;
  margin: 31px auto 22px;
  padding: 28px 22px;
  border: 1px solid #dde2e5;
  background: #f9f9f7;
  box-shadow: 8px 11px 0 #ebece9, 0 24px 45px -35px rgba(7, 17, 31, 0.62);
}

.vx-pdf small,
.vx-pdf b {
  display: block;
}

.vx-pdf small {
  color: #858f98;
  font-family: var(--vx-mono);
  font-size: 5.5px;
  letter-spacing: 0.06em;
}

.vx-pdf b {
  margin-top: 12px;
  font-size: 10px;
}

.vx-pdf div i {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 16px;
  background: #e1e3e3;
}

.vx-pdf div i + i {
  width: 80%;
  margin-top: 7px;
}

.vx-pdf div i:last-child {
  width: 55%;
}

.vx-pdf > span {
  position: absolute;
  right: -13px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--vx-coral);
  color: #fff;
  font-family: var(--vx-mono);
  font-size: 7px;
}

.vx-ai-card > footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #f5f7f8;
}

.vx-ai-card > footer svg {
  width: 18px;
  fill: none;
  stroke: #71808f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.vx-ai-card > footer strong,
.vx-ai-card > footer span {
  display: block;
}

.vx-ai-card > footer strong {
  font-size: 8px;
}

.vx-ai-card > footer span {
  color: #7e8a96;
  font-size: 7px;
}

.vx-ai-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 31px;
}

.vx-ai-data-grid > div {
  min-width: 0;
  padding: 15px;
  border: 1px solid #e2e6e8;
  border-radius: 11px;
  background: #fafbfb;
}

.vx-ai-data-grid span {
  display: block;
  color: #89949e;
  font-size: 7px;
}

.vx-ai-data-grid strong {
  display: block;
  margin-top: 5px;
  color: #344253;
  font-family: var(--vx-mono);
  font-size: 8px;
  font-weight: 600;
}

.vx-ai-read > footer {
  position: relative;
  display: block;
  height: 165px;
  margin-top: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f8f9, #eef2f4);
}

.vx-ai-read > footer::before {
  content: "";
  position: absolute;
  inset: 20px;
  background-image: linear-gradient(#dfe4e7 5px, transparent 5px);
  background-size: 100% 24px;
  opacity: 0.8;
}

.vx-scan-line {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 15px;
  left: 15px;
  height: 1px;
  background: var(--vx-coral);
  box-shadow: 0 0 14px rgba(255, 107, 74, 0.65);
  animation: vx-scan 3.8s var(--vx-ease) infinite;
}

@keyframes vx-scan {
  0%, 10% { transform: translateY(0); opacity: 0; }
  20%, 80% { opacity: 1; }
  90%, 100% { transform: translateY(112px); opacity: 0; }
}

.vx-ai-read > footer p {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 8px;
  background: #fff;
  color: #6d7b88;
  font-size: 6.5px;
}

.vx-ai-read > footer p i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vx-green);
}

.vx-match-score {
  margin-top: 31px;
  padding: 17px;
  border: 1px solid #dfe5e8;
  border-radius: 12px;
  background: #f8fafb;
}

.vx-match-score > span,
.vx-match-score > strong {
  display: block;
}

.vx-match-score > span {
  color: #84909c;
  font-size: 7px;
}

.vx-match-score > strong {
  margin-top: 4px;
  color: #23875f;
  font-size: 12px;
}

.vx-match-score > i {
  display: block;
  height: 5px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3e8ea;
}

.vx-match-score > i b {
  display: block;
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #49ba8d, #1f8c63);
}

.vx-match-contract {
  margin-top: 11px;
  padding: 19px;
  border: 1px solid #dfe4e7;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 15px 28px -27px rgba(7, 17, 31, 0.62);
}

.vx-match-contract small,
.vx-match-contract strong,
.vx-match-contract span {
  display: block;
}

.vx-match-contract small {
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 6.5px;
  text-transform: uppercase;
}

.vx-match-contract strong {
  margin: 8px 0 15px;
  font-size: 16px;
}

.vx-match-contract span {
  margin-top: 3px;
  color: #7c8995;
  font-size: 7.5px;
}

.vx-ai-match > footer {
  justify-content: space-between;
  margin-top: 11px;
}

.vx-ai-match > footer > span {
  color: #b76725;
  font-size: 7px;
  font-weight: 700;
}

.vx-ai-match > footer b {
  color: var(--vx-ink);
  font-size: 7px;
}

.vx-ai-match > footer em {
  color: var(--vx-coral-deep);
  font-size: 11px;
  font-style: normal;
}

.vx-ai-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 27px;
  color: #737f8b;
  font-size: 11px;
}

.vx-ai-disclaimer span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--vx-line);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 11px;
}

/* --- 07 · Shift board -------------------------------------- */
.vx-shift {
  background: #fff;
}

.vx-shift-board {
  overflow: hidden;
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  background: #f7f8f8;
  box-shadow: 0 30px 80px -68px rgba(7, 17, 31, 0.62);
}

.vx-shift-labels,
.vx-shift-board article {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;
}

.vx-shift-labels {
  min-height: 61px;
  border-bottom: 1px solid var(--vx-line);
  background: #fff;
}

.vx-shift-labels span {
  padding: 0 clamp(25px, 4vw, 55px);
  color: #89939e;
  font-family: var(--vx-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-shift-labels span:last-child {
  grid-column: 3;
  color: var(--vx-coral-deep);
}

.vx-shift-board article {
  min-height: 130px;
  padding: 0 clamp(25px, 4vw, 55px);
}

.vx-shift-board article + article {
  border-top: 1px solid var(--vx-line);
}

.vx-shift-board article > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vx-shift-board article > div > i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #b7bec5;
  box-shadow: 0 0 0 7px rgba(111, 124, 137, 0.08);
}

.vx-shift-board article > div:last-child > i {
  background: var(--vx-green);
  box-shadow: 0 0 0 7px rgba(39, 170, 121, 0.1);
}

.vx-shift-board small,
.vx-shift-board strong {
  display: block;
}

.vx-shift-board small {
  color: #909aa4;
  font-size: 9px;
}

.vx-shift-board strong {
  margin-top: 5px;
  color: #697582;
  font-size: clamp(12px, 1.2vw, 15px);
}

.vx-shift-board article > div:last-child strong {
  color: var(--vx-ink);
}

.vx-shift-board article > svg {
  width: 48px;
  justify-self: center;
  fill: none;
  stroke: #bbc3ca;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

/* --- 08 · Origin ------------------------------------------- */
.vx-origin {
  border-top: 1px solid var(--vx-line);
  background: var(--vx-paper);
}

.vx-origin-grid {
  display: grid;
  grid-template-columns: 0.3fr minmax(360px, 0.85fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(40px, 6vw, 90px);
}

.vx-origin-number {
  color: rgba(7, 17, 31, 0.065);
  font-family: var(--vx-editorial);
  font-size: clamp(110px, 14vw, 190px);
  line-height: 0.72;
}

.vx-origin-copy .vx-kicker {
  margin-bottom: 26px;
}

.vx-origin-copy .vx-display {
  font-size: clamp(41px, 4.2vw, 62px);
}

.vx-origin-copy .vx-lead {
  margin-top: 30px;
}

.vx-origin-copy .vx-body-copy {
  margin-top: 20px;
}

.vx-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--vx-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.vx-text-link span {
  color: var(--vx-coral-deep);
  transition: transform 180ms ease;
}

.vx-text-link:hover span {
  transform: translate(2px, -2px);
}

.vx-values {
  border-top: 1px solid var(--vx-line);
}

.vx-values article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 31px 0;
  border-bottom: 1px solid var(--vx-line);
}

.vx-values article > span {
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 9px;
}

.vx-values h3 {
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: -0.04em;
}

.vx-values p {
  max-width: 470px;
  margin-top: 10px;
  color: var(--vx-muted);
  font-size: 13.5px;
  line-height: 1.62;
}

/* --- CTA --------------------------------------------------- */
.vx-cta {
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(70% 90% at 50% 100%, rgba(255, 107, 74, 0.15), transparent 60%),
    linear-gradient(145deg, #0c1d31, #06101f 68%);
  color: #fff;
  text-align: center;
}

.vx-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
}

.vx-cta-rings,
.vx-cta-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vx-cta-rings {
  width: 870px;
  height: 870px;
}

.vx-cta-rings i:first-child { width: 69%; height: 69%; }
.vx-cta-rings i:nth-child(2) { width: 44%; height: 44%; }
.vx-cta-rings i:nth-child(3) { width: 14px; height: 14px; border-color: var(--vx-coral); background: rgba(255, 107, 74, 0.25); box-shadow: 0 0 50px var(--vx-coral); }

.vx-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vx-cta .vx-kicker {
  justify-content: center;
}

.vx-cta .vx-kicker > span {
  color: #ff927c;
}

.vx-cta .vx-display {
  max-width: 1060px;
  margin-top: 30px;
  color: #fff;
  font-size: clamp(48px, 6vw, 82px);
}

.vx-cta .vx-lead {
  max-width: 710px;
  margin-top: 30px;
  color: #9cadbf;
}

.vx-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 39px;
}

.vx-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 190ms ease, border-color 190ms ease, transform 190ms var(--vx-ease);
}

.vx-button:hover {
  transform: translateY(-2px);
}

.vx-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.vx-button-primary {
  background: var(--vx-coral);
  color: #fff;
  box-shadow: 0 18px 44px -20px rgba(255, 107, 74, 0.75);
}

.vx-button-primary:hover {
  background: #ff795b;
}

.vx-button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #e6edf4;
  backdrop-filter: blur(12px);
}

.vx-button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.vx-cta-assurance {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 28px;
}

.vx-cta-assurance span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #758a9f;
  font-size: 9.5px;
}

.vx-cta-assurance svg {
  width: 13px;
  fill: none;
  stroke: #4ec496;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* --- Footer ------------------------------------------------ */
.vx-footer {
  padding-top: 70px;
  background: #050d18;
  color: #8294a7;
}

.vx-footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(120px, 0.55fr));
  gap: clamp(38px, 5vw, 82px);
  padding-bottom: 57px;
}

.vx-footer-brand {
  max-width: 370px;
}

.vx-footer-brand p {
  margin-top: 21px;
  color: #718498;
  font-size: 13px;
  line-height: 1.65;
}

.vx-footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vx-footer-top nav strong {
  margin-bottom: 8px;
  color: #e6edf4;
  font-size: 11px;
}

.vx-footer a {
  color: #75889c;
  font-size: 11px;
  text-decoration: none;
  transition: color 180ms ease;
}

.vx-footer a:hover {
  color: #fff;
}

.vx-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #5f7184;
  font-size: 10px;
}

.vx-footer-meta a {
  flex: 0 0 auto;
  color: #91a3b6;
}

.vx-footer-meta a span {
  margin-left: 5px;
  color: var(--vx-coral);
}

.vx-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px 31px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #536679;
  font-size: 10px;
}

.vx-footer-bottom nav {
  display: flex;
  gap: 19px;
}

/* --- Responsive del nuovo sistema -------------------------- */
@media (max-width: 1180px) {
  .vx-friction-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
    gap: 55px;
  }

  .vx-unified-map { min-height: 650px; }

  .vx-unified-deposit { right: 0; }

  .vx-unified-node {
    width: min(205px, 31%);
    padding: 13px;
  }

  .vx-compliance-grid {
    grid-template-columns: minmax(330px, 0.78fr) minmax(500px, 1.22fr);
    gap: 55px;
  }

  .vx-origin-grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(400px, 1.1fr);
  }

  .vx-origin-number {
    display: none;
  }
}

@media (max-width: 960px) {
  .vx-section {
    padding-block: 96px;
  }

  .vx-heading-row,
  .vx-friction-grid,
  .vx-compliance-grid,
  .vx-origin-grid {
    grid-template-columns: 1fr;
  }

  .vx-friction-copy {
    display: block;
    max-width: 760px;
  }

  .vx-friction-copy .vx-lead {
    margin-top: 30px;
  }

  .vx-heading-row {
    gap: 27px;
  }

  .vx-heading-row .vx-lead,
  .vx-friction-copy .vx-lead,
  .vx-friction-copy .vx-body-copy,
  .vx-compliance-copy .vx-lead {
    max-width: 720px;
  }

  .vx-unified-map {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .vx-principles {
    margin-top: 60px;
  }

  .vx-product-shell {
    grid-template-columns: 168px minmax(0, 1fr);
    min-height: 700px;
  }

  .vx-product-panel {
    min-height: 636px;
  }

  .vx-bento-contracts,
  .vx-bento-control {
    grid-column: span 7;
  }

  .vx-bento-fleet,
  .vx-bento-finance {
    grid-column: span 5;
  }

  .vx-compliance-grid {
    gap: 60px;
  }

  .vx-compliance-copy {
    max-width: 700px;
  }

  .vx-cargos-stage {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .vx-ai-flow {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .vx-ai-card {
    min-height: 0;
  }

  .vx-ai-connector {
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, rgba(255, 107, 74, 0.4), rgba(77, 141, 255, 0.4), transparent);
  }

  .vx-ai-connector i {
    top: 0;
    left: -3px;
    animation: vx-data-travel-mobile 5s var(--vx-ease) infinite;
  }

  @keyframes vx-data-travel-mobile {
    0%, 10% { top: 0; opacity: 0; }
    20%, 80% { opacity: 1; }
    90%, 100% { top: 100%; opacity: 0; }
  }

  .vx-pdf {
    width: 230px;
  }

  .vx-origin-grid {
    gap: 62px;
  }

  .vx-footer-top {
    grid-template-columns: repeat(3, 1fr);
  }

  .vx-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .vx-display {
    font-size: clamp(38px, 9vw, 58px);
  }

  .vx-principles {
    grid-template-columns: 1fr;
  }

  .vx-principles article + article {
    border-top: 0;
    border-left: 0;
  }

  .vx-flow-line {
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .vx-flow-line::-webkit-scrollbar {
    display: none;
  }

  .vx-product-shell {
    display: block;
    min-height: 0;
  }

  .vx-product-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    overflow-x: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid #dfe5eb;
    scrollbar-width: none;
  }

  .vx-product-tabs::-webkit-scrollbar {
    display: none;
  }

  .vx-product-tabs > p,
  .vx-product-user {
    display: none;
  }

  .vx-product-tabs > button + button {
    margin-top: 0;
  }

  .vx-product-panel {
    min-height: 630px;
    padding: 30px 24px 38px;
  }

  .vx-stat-grid {
    gap: 8px;
  }

  .vx-stat-grid article {
    padding: 15px;
  }

  .vx-bento-contracts,
  .vx-bento-control,
  .vx-bento-fleet,
  .vx-bento-finance {
    grid-column: span 12;
  }

  .vx-bento-card {
    min-height: 560px;
  }

  .vx-feature-index {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vx-shift-labels,
  .vx-shift-board article {
    grid-template-columns: 1fr 42px 1fr;
  }

  .vx-shift-board article {
    padding-inline: 25px;
  }

  .vx-shift-board article > div {
    gap: 11px;
  }

  .vx-shift-board article > svg {
    width: 31px;
  }
}

@media (max-width: 560px) {
  .vx-section {
    padding-block: 78px;
  }

  .vx-kicker {
    font-size: 9px;
  }

  .vx-display {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.01;
  }

  .vx-lead {
    font-size: 16px;
  }

  .vx-friction-grid {
    gap: 50px;
  }

  .vx-unified-map {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 15px;
    border-radius: 24px;
  }

  .vx-unified-map::before,
  .vx-unified-map::after,
  .vx-unified-glow,
  .vx-unified-lines {
    display: none;
  }

  .vx-unified-core {
    position: relative;
    top: auto;
    left: auto;
    width: min(320px, 100%);
    height: auto;
    min-height: 340px;
    grid-column: 1 / -1;
    justify-self: center;
    padding: 30px;
    transform: none;
  }

  .vx-unified-node {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 110px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
  }

  .vx-unified-node > span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .vx-unified-node strong {
    font-size: 14px;
  }

  .vx-unified-node em {
    overflow: hidden;
    font-size: 11.5px;
    text-overflow: ellipsis;
  }

  .vx-principles article {
    padding-inline: 0;
  }

  .vx-heading {
    margin-bottom: 43px;
  }

  .vx-flow-line {
    margin-right: calc(-1 * var(--pad));
    border-right: 0;
    border-radius: 14px 0 0 14px;
  }

  .vx-product-shell {
    margin-inline: calc(-1 * var(--pad));
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .vx-product-tabs {
    grid-template-columns: repeat(4, minmax(106px, 1fr));
  }

  .vx-product-tabs > button {
    grid-template-columns: 18px 1fr auto;
    padding-inline: 10px;
  }

  .vx-product-panel {
    min-height: 650px;
    padding: 27px 18px 34px;
  }

  .vx-product-topbar {
    padding-inline: 18px;
  }

  .vx-panel-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .vx-panel-title > button {
    align-self: stretch;
    justify-content: space-between;
  }

  .vx-stat-grid {
    grid-template-columns: 1fr;
  }

  .vx-stat-grid article {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3px 15px;
  }

  .vx-stat-grid strong {
    grid-row: span 2;
    margin: 0;
  }

  .vx-activity-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding-inline: 14px;
  }

  .vx-activity-icon {
    display: none;
  }

  .vx-table-card {
    overflow-x: auto;
  }

  .vx-table-card > header,
  .vx-table-card > div {
    grid-template-columns: 110px 120px 170px 80px;
    width: 500px;
  }

  .vx-fleet-board {
    overflow-x: auto;
  }

  .vx-fleet-days,
  .vx-fleet-board > div:not(.vx-fleet-days) {
    width: 620px;
  }

  .vx-deadline-list {
    padding-inline: 13px;
  }

  .vx-deadline-list article {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .vx-deadline-list article > .vx-status {
    display: none;
  }

  .vx-card-copy {
    padding: 28px 25px;
  }

  .vx-card-copy h3 {
    font-size: 30px;
  }

  .vx-bento-card {
    min-height: 540px;
  }

  .vx-signature-ui {
    right: -30%;
    left: 2%;
  }

  .vx-mini-fleet,
  .vx-ledger {
    right: 18px;
    left: 18px;
  }

  .vx-bento-control {
    min-height: 560px;
  }

  .vx-radar {
    right: -150px;
    left: -150px;
  }

  .vx-radar-ping.ping-a { left: 28%; }
  .vx-radar-ping.ping-b { right: 28%; }
  .vx-radar-ping.ping-c { right: 35%; }

  .vx-compliance-grid {
    gap: 42px;
  }

  .vx-cargos-stage {
    min-height: 480px;
  }

  .vx-cargos-card {
    padding: 24px 20px 22px;
    transform: none;
  }

  .vx-cargos-toast {
    right: 0;
    bottom: 0;
  }

  .vx-ai-card {
    padding: 18px;
  }

  .vx-ai-disclaimer {
    align-items: flex-start;
    text-align: left;
  }

  .vx-shift-labels {
    grid-template-columns: 1fr 30px 1fr;
  }

  .vx-shift-labels span {
    padding-inline: 16px;
  }

  .vx-shift-board article {
    grid-template-columns: 1fr 25px 1fr;
    min-height: 152px;
    padding-inline: 16px;
  }

  .vx-shift-board article > div {
    align-items: flex-start;
  }

  .vx-shift-board article > div > i {
    width: 7px;
    height: 7px;
    margin-top: 5px;
  }

  .vx-shift-board strong {
    font-size: 11px;
    line-height: 1.35;
  }

  .vx-shift-board small {
    font-size: 7.5px;
  }

  .vx-shift-board article > svg {
    width: 20px;
  }

  .vx-origin-grid {
    gap: 48px;
  }

  .vx-values article {
    grid-template-columns: 35px 1fr;
  }

  .vx-cta {
    min-height: 700px;
  }

  .vx-cta .vx-display {
    font-size: clamp(39px, 11vw, 54px);
  }

  .vx-cta-actions,
  .vx-button {
    width: 100%;
  }

  .vx-cta-assurance {
    align-items: center;
    flex-direction: column;
    gap: 11px;
  }

  .vx-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 28px;
  }

  .vx-footer-brand {
    grid-column: 1 / -1;
  }

  .vx-footer-top nav:last-child {
    grid-column: 1 / -1;
  }

  .vx-footer-meta,
  .vx-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Responsive dedicato al racconto automotive della section 03. */
@media (max-width: 960px) {
  .vx-journey-availability,
  .vx-journey-return {
    grid-column: span 7;
  }

  .vx-journey-handover,
  .vx-journey-drive {
    grid-column: span 5;
  }

  .vx-key-visual {
    grid-template-columns: 1fr;
  }

  .vx-key-orbit {
    width: 160px;
    margin-inline: auto;
  }

  .vx-key-visual ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .vx-key-visual li:nth-child(odd) {
    padding-right: 8px;
  }

  .vx-return-visual {
    grid-template-columns: minmax(170px, 0.75fr) minmax(220px, 1.25fr);
    gap: 18px;
  }
}

@media (max-width: 780px) {
  .vx-rental-route {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    padding: 17px 11px;
  }

  .vx-rental-route > b {
    display: none;
  }

  .vx-rental-route > span {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .vx-rental-route > span > i {
    width: 8px;
    height: 8px;
  }

  .vx-rental-route strong {
    width: 100%;
    font-size: 7.5px;
  }

  .vx-rental-route small {
    display: none;
  }

  .vx-journey-availability,
  .vx-journey-handover,
  .vx-journey-drive,
  .vx-journey-return {
    grid-column: span 12;
  }

  .vx-journey-card {
    min-height: 610px;
  }

  .vx-key-visual {
    grid-template-columns: minmax(155px, 0.75fr) minmax(190px, 1.25fr);
  }

  .vx-key-orbit {
    width: auto;
    margin-inline: 0;
  }

  .vx-key-visual ul {
    display: block;
  }

  .vx-return-visual {
    grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1.2fr);
  }

  .vx-automotive-statement {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .vx-rental-route {
    margin-inline: calc(-1 * var(--pad));
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .vx-journey-grid {
    margin-inline: calc(-1 * var(--pad));
    gap: 11px;
  }

  .vx-journey-card {
    min-height: 590px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .vx-journey-copy {
    padding: 27px 20px;
  }

  .vx-journey-copy h3 {
    font-size: 29px;
  }

  .vx-parking-visual {
    right: 14px;
    left: 14px;
  }

  .vx-parking-lanes > div {
    min-height: 220px;
    padding-inline: 9px;
  }

  .vx-parking-lanes span strong {
    font-size: 7.5px;
  }

  .vx-parking-lanes span em {
    font-size: 5.5px;
  }

  .vx-parking-lanes svg {
    width: 88%;
  }

  .vx-parking-lanes > div > b {
    right: 6px;
    left: 6px;
    padding-inline: 3px;
    font-size: 5.5px;
    text-align: center;
  }

  .vx-key-visual {
    right: 18px;
    left: 18px;
    grid-template-columns: 135px 1fr;
    gap: 14px;
  }

  .vx-key-orbit > span {
    width: 68px;
    height: 68px;
    border-radius: 23px;
  }

  .vx-key-orbit svg {
    width: 29px;
  }

  .vx-key-visual li {
    min-height: 39px;
    font-size: 7px;
  }

  .vx-road-visual {
    right: 18px;
    left: 18px;
  }

  .vx-return-visual {
    right: 16px;
    left: 16px;
  }

  .vx-automotive-statement {
    margin-top: 34px;
  }
}

/* Section 03 primitives: one concrete Phosphor language for every vehicle state. */
#soluzione .vx-journey-card .vx-card-label {
  font-size: 11px;
  letter-spacing: 0.055em;
}

#soluzione .vx-parking-head > span,
#soluzione .vx-parking-head b {
  display: flex;
  align-items: center;
  gap: 9px;
}
#soluzione .vx-parking-head > span > i {
  color: var(--vx-coral-deep);
  font-size: 17px;
}
#soluzione .vx-parking-lanes .vx-vehicle-icon {
  position: absolute;
  top: 92px;
  left: 50%;
  color: #718aa0;
  font-size: 58px;
  line-height: 1;
  transform: translateX(-50%);
}
#soluzione .vx-parking-lanes .is-booked .vx-vehicle-icon { color: var(--vx-coral-deep); }
#soluzione .vx-parking-lanes .is-service .vx-vehicle-icon { color: #8e9ba6; }
#soluzione .vx-parking-lanes > div > b > i { font-size: 15px; }

#soluzione .vx-key-stage {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 44px -32px #000;
}
#soluzione .vx-key-stage > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 107, 74, 0.3);
  border-radius: 16px;
  background: rgba(255, 107, 74, 0.1);
  color: var(--vx-coral);
  font-size: 28px;
}
#soluzione .vx-key-stage div small,
#soluzione .vx-key-stage div strong { display: block; }
#soluzione .vx-key-stage div small { color: #8fa3b6; font-size: 12px; }
#soluzione .vx-key-stage div strong {
  margin-top: 5px;
  overflow: hidden;
  color: #f1f5f8;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#soluzione .vx-key-stage > b {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(39, 170, 121, 0.12);
  color: #68d6aa;
  font-size: 12px;
}
#soluzione .vx-key-stage > b i { font-size: 16px; }
#soluzione .vx-key-visual li span small,
#soluzione .vx-key-visual li span strong { display: block; }
#soluzione .vx-key-visual li span small { color: #8da0b2; font-size: 11.5px; }
#soluzione .vx-key-visual li span strong {
  margin-top: 4px;
  color: #dce5ed;
  font-size: 15px;
  line-height: 1.25;
}

#soluzione .vx-road-car > i { color: #84afff; font-size: 34px; }
#soluzione .vx-road-meta > span > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(117, 167, 255, 0.1);
  color: #84afff;
  font-size: 18px;
}

/* Section 03 cascade placement: keep the refinement above legacy component rules. */
#soluzione .vx-rental-route strong { font-size: 12px; }
#soluzione .vx-rental-route small { margin-top: 2px; font-size: 10px; }
#soluzione .vx-journey-card { min-height: 640px; }
#soluzione .vx-journey-availability,
#soluzione .vx-journey-handover { min-height: 700px; }

/* Tra 781 e 960px le card restano affiancate ma più strette:
   il testo scende e la riga bassa rivuole l'altezza piena. */
@media (max-width: 960px) {
  #soluzione .vx-journey-drive,
  #soluzione .vx-journey-return { min-height: 700px; }
}
#soluzione .vx-journey-copy { max-width: 650px; }
#soluzione .vx-journey-copy > p:last-child {
  max-width: 570px;
  margin-top: 19px;
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.62;
}
#soluzione .vx-journey-availability .vx-journey-copy > p:last-child,
#soluzione .vx-journey-return .vx-journey-copy > p:last-child { color: #4f6070; }
#soluzione .vx-journey-handover .vx-journey-copy > p:last-child,
#soluzione .vx-journey-drive .vx-journey-copy > p:last-child { color: #b1c0ce; }

#soluzione .vx-parking-visual {
  right: 4.5%;
  bottom: 30px;
  left: 4.5%;
  border-radius: 20px;
  transform: none;
}
#soluzione .vx-parking-head {
  height: 58px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 600;
}
#soluzione .vx-parking-head b { color: #647484; font-size: 11px; font-weight: 600; }
#soluzione .vx-parking-head b > i {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--vx-green);
  font-size: 15px;
}
#soluzione .vx-parking-lanes > div { min-height: 255px; padding: 20px 18px; }
#soluzione .vx-parking-lanes span small { color: #7a8895; font-size: 11px; }
#soluzione .vx-parking-lanes span strong { margin-top: 8px; font-size: 15px; }
#soluzione .vx-parking-lanes span em { margin-top: 4px; color: #687785; font-size: 11px; }
#soluzione .vx-parking-lanes > div > b {
  right: 16px;
  bottom: 16px;
  left: 16px;
  gap: 7px;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

/* A white editorial automotive showcase replaces the generic vehicle icon. */
#soluzione .vx-journey-availability {
  border-color: rgba(17, 45, 65, 0.1);
  background: #fff;
  box-shadow: 0 42px 90px -65px rgba(3, 20, 34, 0.7);
}

#soluzione .vx-availability-showcase {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 390px;
  overflow: hidden;
  border-top: 1px solid rgba(27, 59, 81, 0.1);
  background: #fff;
  color: var(--vx-ink);
}

#soluzione .vx-availability-showcase::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 60px;
  right: -75px;
  width: min(76%, 520px);
  aspect-ratio: 1.62;
  border: 1px solid rgba(237, 94, 63, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(237, 94, 63, 0.025),
    0 0 0 84px rgba(35, 164, 120, 0.018);
  transform: rotate(-5deg);
}

#soluzione .vx-availability-showcase::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 20px;
  width: 69%;
  height: 42px;
  border-radius: 50%;
  background: rgba(27, 48, 62, 0.06);
  filter: blur(20px);
}

#soluzione .vx-availability-times {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: clamp(32px, 4vw, 50px);
  left: clamp(32px, 4vw, 50px);
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: end;
  gap: 18px;
}

#soluzione .vx-availability-times > span:last-child { text-align: right; }

#soluzione .vx-availability-times small,
#soluzione .vx-availability-times strong { display: block; }

#soluzione .vx-availability-times small {
  color: #92a0aa;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#soluzione .vx-availability-times strong {
  margin-top: 4px;
  color: #294255;
  font-family: var(--vx-mono);
  font-size: 13px;
}

#soluzione .vx-availability-times > i {
  position: relative;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, rgba(237, 94, 63, 0.42), rgba(39, 170, 121, 0.5));
}

#soluzione .vx-availability-times > i::before,
#soluzione .vx-availability-times > i::after,
#soluzione .vx-availability-times > i b {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#soluzione .vx-availability-times > i::before { left: 0; background: var(--vx-coral-deep); }
#soluzione .vx-availability-times > i::after { right: -7px; background: var(--vx-green); }
#soluzione .vx-availability-times > i b {
  left: 56%;
  width: 11px;
  height: 11px;
  background: var(--vx-green);
  box-shadow: 0 0 0 6px rgba(39, 170, 121, 0.1);
}

#soluzione .vx-availability-vehicle {
  position: absolute;
  z-index: 4;
  top: 108px;
  left: clamp(32px, 4vw, 50px);
}

#soluzione .vx-availability-vehicle small {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #278763;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

#soluzione .vx-availability-vehicle small i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-green);
  box-shadow: 0 0 0 5px rgba(39, 170, 121, 0.1);
}

#soluzione .vx-availability-vehicle > strong {
  display: block;
  margin-top: 16px;
  color: #183247;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1;
}

#soluzione .vx-availability-vehicle > span {
  display: block;
  margin-top: 10px;
  color: #6f7f8c;
  font-family: var(--vx-mono);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

#soluzione .vx-availability-car-render {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: -3.5%;
  display: block;
  width: min(72%, 540px);
  height: auto;
  mix-blend-mode: multiply;
  object-fit: contain;
}

#soluzione .vx-availability-maintenance {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: clamp(32px, 4vw, 50px);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #6f8075;
  font-size: 11px;
  font-weight: 700;
}

#soluzione .vx-availability-maintenance i { color: var(--vx-green); font-size: 16px; }

#soluzione .vx-key-visual { right: 28px; bottom: 30px; left: 28px; display: block; }
#soluzione .vx-key-visual ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  border-top: 0;
}
#soluzione .vx-key-visual li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 78px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  color: #d4dde5;
}
#soluzione .vx-key-visual li > i {
  position: static;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: rgba(39, 170, 121, 0.11);
  color: #59d1a2;
  font-size: 20px;
}
#soluzione .vx-key-visual li > i::after { content: none; }

#soluzione .vx-road-visual { right: 28px; bottom: 30px; left: 28px; padding: 20px; }
#soluzione .vx-road-top { padding-bottom: 17px; font-size: 12px; }
#soluzione .vx-road-top span { gap: 9px; }
#soluzione .vx-road-top span i {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #55d2a0;
  font-size: 17px;
}
#soluzione .vx-road-top b { font-size: 11px; }
#soluzione .vx-road-map { min-height: 145px; }
#soluzione .vx-road-start b,
#soluzione .vx-road-end b { font-size: 11px; }
#soluzione .vx-road-start small,
#soluzione .vx-road-end small { margin-top: 5px; font-size: 11px; }
#soluzione .vx-road-car { width: 74px; height: 52px; border-radius: 16px; }
#soluzione .vx-road-meta { gap: 10px; }
#soluzione .vx-road-meta > span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 68px;
  align-items: center;
  gap: 10px;
  padding: 12px;
}
#soluzione .vx-road-meta small { font-size: 11px; }
#soluzione .vx-road-meta strong { margin-top: 4px; font-size: 15px; }


@media (max-width: 780px) {
  #soluzione .vx-rental-route strong { font-size: 9.5px; }
  #soluzione .vx-journey-card { min-height: 0; }
  #soluzione .vx-journey-copy { padding: 34px 30px 28px; }
  #soluzione .vx-parking-visual,
  #soluzione .vx-key-visual,
  #soluzione .vx-road-visual,
  #soluzione .vx-return-visual {
    position: relative;
    inset: auto;
    margin: 0 30px 30px;
  }
  #soluzione .vx-key-visual { display: block; }
  #soluzione .vx-key-visual ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #soluzione .vx-key-visual li:nth-child(odd) { padding-right: 12px; }

  #soluzione .vx-availability-showcase {
    position: relative;
    inset: auto;
    height: 390px;
  }
}

@media (max-width: 560px) {
  #soluzione .vx-journey-copy { padding: 31px 20px 27px; }
  #soluzione .vx-journey-copy h3 { font-size: 31px; line-height: 1.06; }
  #soluzione .vx-journey-copy > p:last-child { font-size: 16px; line-height: 1.58; }
  #soluzione .vx-parking-visual,
  #soluzione .vx-key-visual,
  #soluzione .vx-road-visual,
  #soluzione .vx-return-visual { margin: 0 15px 18px; }

  #soluzione .vx-availability-showcase { height: 480px; }
  #soluzione .vx-availability-showcase::before { top: 142px; right: -90px; width: 118%; }
  #soluzione .vx-availability-times { top: 22px; right: 20px; left: 20px; gap: 10px; }
  #soluzione .vx-availability-times small { font-size: 8px; }
  #soluzione .vx-availability-vehicle { top: 84px; left: 20px; }
  #soluzione .vx-availability-vehicle > strong { font-size: 30px; }
  #soluzione .vx-availability-car-render { top: 155px; right: -7%; width: 110%; max-width: none; }
  #soluzione .vx-availability-maintenance { bottom: 25px; left: 20px; font-size: 10px; }
  #soluzione .vx-parking-head { height: 56px; padding: 0 14px; font-size: 11px; }
  #soluzione .vx-parking-head b { font-size: 10px; }
  #soluzione .vx-parking-lanes { grid-template-columns: 1fr; gap: 8px; padding: 10px; }
  #soluzione .vx-parking-lanes > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 60px;
    min-height: 118px;
    align-items: center;
    gap: 7px 12px;
    padding: 14px;
    border: 1px solid #dfe5e9;
    border-radius: 14px;
    background: #fff;
  }
  #soluzione .vx-parking-lanes > div:last-child { border-right: 1px solid #dfe5e9; }
  #soluzione .vx-parking-lanes span strong { font-size: 15px; }
  #soluzione .vx-parking-lanes span em { font-size: 11px; }
  #soluzione .vx-parking-lanes .vx-vehicle-icon {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    font-size: 42px;
    transform: none;
  }
  #soluzione .vx-parking-lanes > div > b {
    position: static;
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 32px;
    padding: 7px 11px;
    font-size: 12px;
  }
  #soluzione .vx-key-stage {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 0;
    padding: 13px;
  }
  #soluzione .vx-key-stage > span { width: 54px; height: 54px; }
  #soluzione .vx-key-stage > b {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 34px;
  }
  #soluzione .vx-key-visual ul { grid-template-columns: 1fr; }
  #soluzione .vx-key-visual li { min-height: 72px; }
  #soluzione .vx-key-visual li span strong { font-size: 15px; }
  #soluzione .vx-road-visual { padding: 16px; }
  #soluzione .vx-road-top { font-size: 11px; }
  #soluzione .vx-road-start small,
  #soluzione .vx-road-end small { max-width: 105px; font-size: 10px; }
  #soluzione .vx-road-meta > span {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 66px;
    padding: 10px;
  }
  #soluzione .vx-road-meta strong { font-size: 14px; }
  .vx-return-app > ul { grid-template-columns: 1fr; }
  .vx-return-app > ul li { padding: 12px 16px; }
  .vx-return-app > header { flex-wrap: wrap; gap: 6px 14px; padding: 14px 16px; }
  .vx-return-app > header > b { margin-left: 58px; }
  .vx-return-app > footer { padding: 12px 16px; }
}

/* ============================================================
   Section 04 — operational feature system
   ============================================================ */

#funzioni .vx-heading {
  margin-bottom: clamp(54px, 6vw, 84px);
}

.vx-function-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.vx-function-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  background: #fff;
  box-shadow: 0 34px 80px -62px rgba(7, 17, 31, 0.55);
}

.vx-function-handover,
.vx-function-closeout {
  grid-column: span 7;
}

.vx-function-turnaround,
.vx-function-radar {
  grid-column: span 5;
}

.vx-function-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: clamp(34px, 4vw, 50px);
}

#funzioni .vx-function-copy .vx-card-label {
  gap: 9px;
  color: #667687;
  font-size: 11px;
  letter-spacing: 0.055em;
}

#funzioni .vx-function-copy .vx-card-label > i {
  color: var(--vx-coral-deep);
  font-size: 16px;
}

.vx-function-copy h3 {
  max-width: 580px;
  margin-top: 20px;
  color: var(--vx-ink);
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 43px);
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.vx-function-copy > p:last-child {
  max-width: 570px;
  margin-top: 18px;
  color: #536474;
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.62;
}

/* Consegna al banco ------------------------------------------------ */
.vx-function-handover {
  background:
    radial-gradient(60% 50% at 100% 100%, rgba(255, 107, 74, 0.08), transparent 70%),
    #fff;
}

.vx-handover-panel {
  position: absolute;
  right: 4.5%;
  bottom: 30px;
  left: 4.5%;
  overflow: hidden;
  border: 1px solid #dce3e8;
  border-radius: 20px;
  background: #f7f9fa;
  box-shadow: 0 26px 56px -42px rgba(7, 17, 31, 0.55);
}

.vx-handover-panel > header,
.vx-handover-panel > footer {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.82);
}

.vx-handover-panel > header {
  border-bottom: 1px solid #e1e6ea;
}

.vx-handover-panel > header span,
.vx-handover-panel > footer span,
.vx-handover-panel > footer b {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vx-handover-panel > header span {
  color: #304354;
  font-size: 14px;
  font-weight: 700;
}

.vx-handover-panel > header span i {
  color: var(--vx-coral-deep);
  font-size: 21px;
}

.vx-handover-panel > header > b {
  color: #425567;
  font-family: var(--vx-mono);
  font-size: 12px;
}

.vx-handover-person {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-height: 105px;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-bottom: 1px solid #e1e6ea;
}

.vx-handover-person > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
  background: #e8eef3;
  color: #47657d;
  font-size: 29px;
}

.vx-handover-person div small,
.vx-handover-person div strong,
.vx-handover-person div p {
  display: block;
}

.vx-handover-person div small {
  color: #728190;
  font-size: 12px;
}

.vx-handover-person div strong {
  margin-top: 4px;
  color: #1b2b39;
  font-size: 17px;
}

.vx-handover-person div p {
  margin-top: 6px;
  color: #4f7465;
  font-size: 12px;
}

.vx-handover-person div p i {
  margin-right: 5px;
  color: var(--vx-green);
  font-size: 14px;
  vertical-align: -1px;
}

.vx-handover-person > b {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e3f3ed;
  color: #287d5e;
  font-size: 12px;
}

.vx-handover-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  padding: 12px;
}

.vx-handover-checks > span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 74px;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid #e0e6ea;
  border-radius: 14px;
  background: #fff;
}

.vx-handover-checks > span > i {
  display: grid;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #e7f4ef;
  color: #29805f;
  font-size: 19px;
}

.vx-handover-checks small,
.vx-handover-checks strong {
  display: block;
}

.vx-handover-checks small {
  align-self: end;
  color: #768594;
  font-size: 11px;
}

.vx-handover-checks strong {
  align-self: start;
  color: #344655;
  font-size: 14px;
}

.vx-handover-panel > footer {
  border-top: 1px solid #e1e6ea;
  color: #607182;
  font-size: 12px;
}

.vx-handover-panel > footer i {
  color: var(--vx-coral-deep);
  font-size: 17px;
}

.vx-handover-panel > footer b {
  color: #273a49;
  font-size: 13px;
}

/* Preparazione tra due noleggi ------------------------------------ */
.vx-function-turnaround {
  background:
    radial-gradient(70% 50% at 100% 100%, rgba(77, 141, 255, 0.09), transparent 72%),
    #f2f5f7;
}

.vx-turnaround-flow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  overflow: hidden;
  border: 1px solid #d8e0e6;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.82);
}

.vx-turnaround-flow > header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 17px;
  border-bottom: 1px solid #e0e6ea;
  color: #314656;
}

.vx-turnaround-flow > header span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.vx-turnaround-flow > header span i {
  color: var(--vx-coral-deep);
  font-size: 19px;
}

.vx-turnaround-flow > header b {
  color: #647585;
  font-size: 10.5px;
}

.vx-turnaround-flow > div {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  min-height: 70px;
  align-items: center;
  gap: 11px;
  padding: 9px 16px;
}

.vx-turnaround-flow > div + div {
  border-top: 1px solid #e5e9ec;
}

.vx-turnaround-flow > div > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #ebf0f4;
  color: #526c81;
  font-size: 20px;
}

.vx-turnaround-flow > div p {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  gap: 2px 8px;
}

.vx-turnaround-flow > div p small {
  grid-row: span 2;
  color: #7b8996;
  font-family: var(--vx-mono);
  font-size: 10px;
}

.vx-turnaround-flow > div p strong {
  color: #263a49;
  font-size: 14px;
}

.vx-turnaround-flow > div p em {
  overflow: hidden;
  color: #778693;
  font-size: 11px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vx-turnaround-flow > div > b {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #cbd5dd;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
}

.vx-turnaround-flow > div > b.is-done {
  border-color: var(--vx-green);
  background: var(--vx-green);
}

.vx-turnaround-flow > div > b.is-current {
  border-color: var(--vx-coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.1);
}

.vx-turnaround-flow > div > b.is-current i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-coral);
}

/* Radar veicoli --------------------------------------------------- */
.vx-function-radar {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(75% 52% at 50% 100%, rgba(25, 93, 143, 0.32), transparent 72%),
    var(--vx-ink);
  color: #fff;
}

#funzioni .vx-function-radar .vx-card-label { color: #8da0b2; }
#funzioni .vx-function-radar .vx-function-copy h3 { color: #fff; }
#funzioni .vx-function-radar .vx-function-copy > p:last-child { color: #aebdca; }

.vx-vehicle-radar {
  position: absolute;
  right: -72px;
  bottom: -138px;
  left: -72px;
  height: 525px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 53%, rgba(44, 111, 164, 0.22), transparent 53%);
  background-size: 40px 40px, 40px 40px, auto;
}

.vx-vehicle-radar-ring {
  position: absolute;
  top: 53%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.vx-vehicle-radar-ring.ring-a { width: 35%; }
.vx-vehicle-radar-ring.ring-b { width: 59%; }
.vx-vehicle-radar-ring.ring-c { width: 84%; }

.vx-vehicle-radar-sweep {
  position: absolute;
  top: 53%;
  left: 50%;
  width: 42%;
  height: 42%;
  border-left: 1px solid rgba(255, 107, 74, 0.65);
  background: linear-gradient(100deg, rgba(255, 107, 74, 0.14), transparent 60%);
  transform-origin: left top;
  animation: vx-radar-sweep 8s linear infinite;
}

.vx-vehicle-radar > b {
  position: absolute;
  z-index: 3;
  top: 53%;
  left: 50%;
  display: flex;
  width: 132px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #10283f;
  box-shadow: 0 18px 44px -25px #000, 0 0 0 8px rgba(255, 255, 255, 0.025);
  color: #f0f5f8;
  transform: translate(-50%, -50%);
}

.vx-vehicle-radar > b > i {
  color: var(--vx-coral);
  font-size: 28px;
}

.vx-vehicle-radar > b span,
.vx-vehicle-radar > b small {
  display: block;
}

.vx-vehicle-radar > b span {
  font-size: 15px;
}

.vx-vehicle-radar > b small {
  margin-top: 3px;
  color: #8298ac;
  font-size: 11px;
  font-weight: 500;
}

.vx-vehicle-radar-ping {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-width: 138px;
  min-height: 62px;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(14, 37, 59, 0.9);
  box-shadow: 0 18px 36px -27px #000;
  backdrop-filter: blur(10px);
}

.vx-vehicle-radar-ping > i {
  display: grid;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 107, 74, 0.11);
  color: var(--vx-coral);
  font-size: 18px;
}

.vx-vehicle-radar-ping strong,
.vx-vehicle-radar-ping small {
  display: block;
}

.vx-vehicle-radar-ping strong {
  align-self: end;
  color: #dce6ee;
  font-size: 12px;
}

.vx-vehicle-radar-ping small {
  align-self: start;
  color: #8297aa;
  font-size: 10px;
}

.vx-vehicle-radar-ping.ping-a { top: 17%; left: 18%; }
.vx-vehicle-radar-ping.ping-b { top: 30%; right: 13%; }
.vx-vehicle-radar-ping.ping-c { top: 60%; right: 20%; }

/* Chiusura del noleggio ------------------------------------------ */
.vx-function-closeout {
  background:
    radial-gradient(62% 58% at 100% 100%, rgba(39, 170, 121, 0.1), transparent 70%),
    #fff;
}

.vx-closeout-panel {
  position: absolute;
  right: 4.5%;
  bottom: 30px;
  left: 4.5%;
  overflow: hidden;
  border: 1px solid #dce3df;
  border-radius: 20px;
  background: #f7f9f8;
  box-shadow: 0 26px 56px -42px rgba(18, 56, 42, 0.48);
}

.vx-closeout-panel > header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 20px;
  border-bottom: 1px solid #dfe6e2;
  background: rgba(255, 255, 255, 0.88);
}

.vx-closeout-panel > header span,
.vx-closeout-panel > header b {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vx-closeout-panel > header span {
  color: #31463d;
  font-size: 14px;
  font-weight: 700;
}

.vx-closeout-panel > header span i {
  color: var(--vx-coral-deep);
  font-size: 20px;
}

.vx-closeout-panel > header b {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e5f3ed;
  color: #287c5e;
  font-size: 11px;
}

.vx-closeout-rows {
  padding: 7px 18px;
}

.vx-closeout-rows > div {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #5f7169;
  font-size: 13px;
}

.vx-closeout-rows > div + div {
  border-top: 1px solid #e2e8e5;
}

.vx-closeout-rows span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.vx-closeout-rows span i {
  color: #678378;
  font-size: 18px;
}

.vx-closeout-rows strong {
  color: #273d34;
  font-size: 15px;
}

.vx-closeout-panel > footer {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 96px;
  padding: 15px 18px;
  border-top: 1px solid #dfe6e2;
  background: #fff;
}

.vx-closeout-panel > footer div small,
.vx-closeout-panel > footer div strong {
  display: block;
}

.vx-closeout-panel > footer div small {
  color: #718078;
  font-size: 11px;
}

.vx-closeout-panel > footer div strong {
  margin-top: 3px;
  color: #18372b;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.035em;
}

.vx-closeout-panel > footer > span {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #dce5e0;
  border-radius: 12px;
  color: #51675d;
  font-size: 11px;
}

.vx-closeout-panel > footer > span i {
  color: #29805f;
  font-size: 17px;
}

/* Feature rail ---------------------------------------------------- */
.vx-feature-rail {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--vx-line);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 64px -58px rgba(7, 17, 31, 0.45);
}

.vx-feature-rail > div span,
.vx-feature-rail > div strong {
  display: block;
}

.vx-feature-rail > div span {
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vx-feature-rail > div strong {
  margin-top: 7px;
  color: #233644;
  font-size: 16px;
  line-height: 1.35;
}

.vx-feature-rail ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.vx-feature-rail li {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid #e0e5e8;
  border-radius: 13px;
  background: #fff;
  color: #4f6170;
  font-size: 13px;
  font-weight: 600;
}

.vx-feature-rail li i {
  flex: 0 0 auto;
  color: var(--vx-coral-deep);
  font-size: 19px;
}

@media (max-width: 960px) {
  .vx-function-handover,
  .vx-function-closeout,
  .vx-function-turnaround,
  .vx-function-radar {
    grid-column: span 12;
  }

  .vx-function-card {
    min-height: 700px;
  }

  .vx-feature-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .vx-function-card {
    min-height: 0;
  }

  .vx-function-copy {
    padding: 34px 30px 28px;
  }

  .vx-handover-panel,
  .vx-turnaround-flow,
  .vx-vehicle-radar,
  .vx-closeout-panel {
    position: relative;
    inset: auto;
    margin: 0 30px 30px;
  }

  .vx-vehicle-radar {
    height: 500px;
    border-radius: 26px;
  }

  .vx-feature-rail ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .vx-function-grid {
    margin-inline: calc(-1 * var(--pad));
    gap: 11px;
  }

  .vx-function-card {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .vx-function-copy {
    padding: 31px 20px 27px;
  }

  .vx-function-copy h3 {
    font-size: 31px;
    line-height: 1.06;
  }

  .vx-function-copy > p:last-child {
    font-size: 16px;
    line-height: 1.58;
  }

  .vx-handover-panel,
  .vx-turnaround-flow,
  .vx-vehicle-radar,
  .vx-closeout-panel {
    margin: 0 15px 18px;
  }

  .vx-handover-panel > header,
  .vx-handover-panel > footer {
    min-height: 56px;
    padding: 0 14px;
  }

  .vx-handover-person {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 14px;
  }

  .vx-handover-person > span {
    width: 54px;
    height: 54px;
  }

  .vx-handover-person > b {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .vx-handover-checks {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .vx-handover-checks > span {
    min-height: 68px;
  }

  .vx-handover-checks small {
    font-size: 12px;
  }

  .vx-handover-checks strong {
    font-size: 15px;
  }

  .vx-handover-panel > footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: 74px;
  }

  .vx-turnaround-flow > header {
    min-height: 72px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .vx-turnaround-flow > header span {
    font-size: 13px;
  }

  .vx-turnaround-flow > header b {
    font-size: 11px;
  }

  .vx-turnaround-flow > div {
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    min-height: 78px;
    padding: 10px 13px;
  }

  .vx-turnaround-flow > div p {
    grid-template-columns: 1fr;
  }

  .vx-turnaround-flow > div p small {
    grid-row: auto;
    font-size: 10px;
  }

  .vx-turnaround-flow > div p strong {
    font-size: 15px;
  }

  .vx-turnaround-flow > div p em {
    font-size: 12px;
  }

  .vx-vehicle-radar {
    height: 470px;
  }

  .vx-vehicle-radar-ping {
    min-width: 128px;
  }

  .vx-vehicle-radar-ping.ping-a { top: 12%; left: 5%; }
  .vx-vehicle-radar-ping.ping-b { top: 29%; right: 4%; }
  .vx-vehicle-radar-ping.ping-c { top: 72%; right: 8%; }

  .vx-closeout-panel > header {
    min-height: 72px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px 15px;
  }

  .vx-closeout-rows {
    padding: 7px 14px;
  }

  .vx-closeout-rows > div {
    min-height: 60px;
    font-size: 13px;
  }

  .vx-closeout-rows strong {
    font-size: 15px;
  }

  .vx-closeout-panel > footer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 14px;
  }

  .vx-closeout-panel > footer div {
    padding-bottom: 8px;
  }

  .vx-closeout-panel > footer div strong {
    font-size: 30px;
  }

  .vx-closeout-panel > footer > span {
    min-height: 46px;
    font-size: 13px;
  }

  .vx-feature-rail {
    grid-template-columns: 1fr;
    margin-inline: calc(-1 * var(--pad));
    padding: 24px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .vx-feature-rail ul {
    grid-template-columns: 1fr;
  }

  .vx-feature-rail li {
    min-height: 58px;
    font-size: 14px;
  }
}

/* Section 04 · OTP phone scene ----------------------------------- */
.vx-function-otp {
  background:
    radial-gradient(55% 48% at 84% 100%, rgba(255, 107, 74, 0.12), transparent 70%),
    linear-gradient(155deg, #fff 0%, #f6f7f8 100%);
}

.vx-function-otp .vx-function-copy {
  max-width: 620px;
}

.vx-otp-stage {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 420px;
  overflow: hidden;
  border-top: 1px solid #e0e5e8;
  background: #e9eef3;
}

.vx-otp-stage::after {
  display: none;
}

.vx-otp-aura {
  display: none;
}

.vx-otp-device-render {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vx-otp-phone {
  position: absolute;
  z-index: 2;
  top: 36px;
  left: 50%;
  width: 163px;
  height: 350px;
  border: 0;
  border-radius: 31px;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

.vx-otp-phone::before,
.vx-otp-phone::after {
  display: none;
}

.vx-otp-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 10px 10px 9px;
  border-radius: 31px;
  background: transparent;
  color: #142332;
}

.vx-otp-status {
  display: flex;
  height: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  color: #1f2c38;
  font-size: 7.5px;
  font-weight: 700;
}

.vx-otp-status div {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
}

.vx-otp-island {
  display: none;
}

.vx-otp-brand {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  border-bottom: 1px solid #e7ebee;
}

.vx-otp-brand > strong {
  color: #28394a;
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: -0.035em;
}

.vx-otp-brand > strong span {
  color: var(--vx-coral-deep);
}

.vx-otp-brand > b {
  padding: 4px 6px;
  border-radius: 999px;
  background: #e7f3ee;
  color: #2c7d60;
  font-size: 6.7px;
}

.vx-otp-sign {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 10px auto 0;
  place-items: center;
  border-radius: 14px;
  background: #ffe8e2;
  color: var(--vx-coral-deep);
  font-size: 22px;
  box-shadow: 0 14px 28px -22px rgba(239, 87, 56, 0.75);
}

.vx-otp-phone-screen > small {
  display: block;
  margin-top: 8px;
  color: #84909b;
  font-size: 7.5px;
  text-align: center;
}

.vx-otp-phone-screen > h4 {
  max-width: 170px;
  margin: 4px auto 0;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-align: center;
}

.vx-otp-phone-screen > p {
  margin-top: 4px;
  color: #71808e;
  font-size: 8px;
  text-align: center;
}

.vx-otp-code {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.vx-otp-code b {
  display: grid;
  height: 32px;
  place-items: center;
  border: 1px solid #d9e0e5;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 7px 16px -14px rgba(7, 17, 31, 0.55);
  font-family: var(--vx-mono);
  font-size: 14px;
}

.vx-otp-action {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 9px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff7758, #e94f31);
  box-shadow: 0 14px 28px -20px rgba(233, 79, 49, 0.85);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
}

.vx-otp-action i {
  font-size: 12px;
}

.vx-otp-phone-screen > em {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 7px;
  color: #71827a;
  font-size: 7.5px;
  font-style: normal;
}

.vx-otp-phone-screen > em i {
  color: var(--vx-green);
  font-size: 10px;
}

.vx-otp-float {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  min-width: 174px;
  min-height: 66px;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 42px -30px rgba(7, 17, 31, 0.75);
  backdrop-filter: blur(12px);
  animation: vx-otp-float 5.4s var(--vx-ease) infinite alternate;
}

.vx-otp-float > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #e7f3ee;
  color: #2a8060;
  font-size: 19px;
}

.vx-otp-float small,
.vx-otp-float strong {
  display: block;
}

.vx-otp-float small {
  color: #778691;
  font-size: 10px;
}

.vx-otp-float strong {
  margin-top: 4px;
  color: #273a49;
  font-size: 12.5px;
  line-height: 1.2;
}

.vx-otp-float-sent {
  top: 82px;
  left: 7%;
}

.vx-otp-float-sent > i {
  background: #ffe9e3;
  color: var(--vx-coral-deep);
}

.vx-otp-float-verified {
  top: 172px;
  right: 6%;
  animation-delay: -1.8s;
}

.vx-otp-float-receipt {
  bottom: 47px;
  left: 8%;
  animation-delay: -3.2s;
}

@keyframes vx-otp-float {
  from { transform: translateY(-3px); }
  to { transform: translateY(4px); }
}

@media (max-width: 780px) {
  .vx-otp-stage {
    position: relative;
    inset: auto;
    height: 470px;
    margin: 0 30px 30px;
    border: 1px solid #dce3e8;
    border-radius: 26px;
  }

  .vx-otp-phone {
    top: 41px;
    width: 183px;
    height: 391px;
  }
}

@media (max-width: 560px) {
  .vx-otp-stage {
    height: 500px;
    margin: 0 15px 18px;
    border-radius: 22px;
  }

  .vx-otp-phone {
    top: 43px;
    width: 194px;
    height: 416px;
  }

  .vx-otp-float {
    min-width: 145px;
    min-height: 60px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 9px;
  }

  .vx-otp-float > i {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .vx-otp-float strong {
    font-size: 11.5px;
  }

  .vx-otp-float-sent {
    top: 54px;
    left: 6px;
  }

  .vx-otp-float-verified {
    display: none;
  }

  .vx-otp-float-receipt {
    bottom: 8px;
    left: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-unified-paths .is-flow {
    animation: none;
    opacity: 0.65;
    stroke-dasharray: none;
  }

  .vx-otp-float {
    animation: none;
  }

  .vx-cargos-pointer,
  .vx-cargos-click {
    display: none;
  }

  .vx-cargos-fold,
  .vx-cargos-toast,
  .vx-cargos-cta {
    transition: none;
  }

  .vx-cargos-spinner {
    animation: none;
  }
}

@media (max-width: 420px) {
  .vx-unified-map {
    grid-template-columns: 1fr;
  }

  .vx-unified-core {
    grid-column: 1;
  }
}

/* ============================================================
   Pagina demo — richiesta di una demo guidata.
   Sezione scura con card-form bianca, nello stesso linguaggio
   delle card prodotto (CaRGOS, check-in di rientro).
============================================================ */
.vx-demo {
  /* La sezione scura si estende sotto l'header sticky trasparente,
     come la hero: così la nav resta chiara su superficie scura. */
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(96px, 9vw, 140px));
  background:
    radial-gradient(65% 80% at 88% 40%, rgba(39, 97, 158, 0.22), transparent 63%),
    radial-gradient(40% 45% at 8% 90%, rgba(255, 107, 74, 0.08), transparent 70%),
    #0b1727;
  color: #fff;
}

.vx-demo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 60%, transparent);
}

.vx-demo-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(60px, 7vw, 110px);
}

.vx-demo .vx-kicker {
  color: #899caf;
}

.vx-demo .vx-kicker > span {
  color: #ff8267;
}

.vx-demo-copy .vx-display {
  color: #f7f9fb;
  font-size: clamp(38px, 3.9vw, 56px);
}

.vx-demo-copy .vx-kicker {
  margin-bottom: 27px;
}

.vx-demo-copy .vx-lead {
  max-width: 540px;
  margin-top: 28px;
  color: #9bacbe;
}

.vx-demo-copy .vx-check-list {
  margin-top: 38px;
}

.vx-demo-stage {
  position: relative;
}

.vx-demo-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 144, 219, 0.2), rgba(79, 144, 219, 0.05) 43%, transparent 70%);
  transform: translate(-50%, -50%);
}

.vx-demo-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  margin-inline: auto;
  padding: 30px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #fff;
  color: #17293f;
  box-shadow: 0 60px 130px -55px #000, 0 30px 70px -40px rgba(6, 16, 31, 0.75);
}

.vx-demo-card > header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef1f5;
}

.vx-demo-card > header > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 13px;
  background: #ffe9e0;
  color: #e9603c;
  font-size: 22px;
}

.vx-demo-card > header small,
.vx-demo-card > header strong {
  display: block;
}

.vx-demo-card > header small {
  color: #67758a;
  font-size: 12px;
}

.vx-demo-card > header strong {
  margin-top: 3px;
  color: #14243a;
  font-size: 16px;
}

.vx-demo-field {
  margin-top: 16px;
}

.vx-demo-field label {
  display: block;
  margin-bottom: 7px;
  color: #4c5b6e;
  font-size: 13px;
  font-weight: 600;
}

.vx-demo-field label em {
  color: #93a0af;
  font-style: normal;
  font-weight: 400;
}

.vx-demo-field input,
.vx-demo-field select,
.vx-demo-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dde3e8;
  border-radius: 12px;
  background: #fbfcfd;
  color: #17293f;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s var(--vx-ease), box-shadow 0.2s var(--vx-ease), background-color 0.2s var(--vx-ease);
}

.vx-demo-field input::placeholder,
.vx-demo-field textarea::placeholder {
  color: #a4afbc;
}

.vx-demo-field input:focus-visible,
.vx-demo-field select:focus-visible,
.vx-demo-field textarea:focus-visible {
  border-color: var(--coral-500);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.16);
}

.vx-demo-field select {
  padding-right: 40px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234c5b6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.vx-demo-field select:invalid {
  color: #a4afbc;
}

.vx-demo-field textarea {
  min-height: 104px;
  resize: vertical;
}

.vx-demo-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vx-demo-submit {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  border-radius: 14px;
  background: linear-gradient(120deg, #fa9c72, #ee5f37);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 36px -18px rgba(238, 95, 55, 0.65);
  transition: transform 0.18s var(--vx-ease), filter 0.25s var(--vx-ease);
}

.vx-demo-submit:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.vx-demo-submit:active {
  filter: brightness(0.95);
  transform: scale(0.985);
}

.vx-demo-submit i {
  font-size: 16px;
}

.vx-demo-privacy {
  margin-top: 14px;
  color: #8b98a9;
  font-size: 12.5px;
  line-height: 1.55;
  text-align: center;
}

.vx-demo-privacy a {
  color: #4c5b6e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 960px) {
  .vx-demo-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .vx-demo-copy {
    max-width: 640px;
  }
}

@media (max-width: 560px) {
  .vx-demo-card {
    padding: 24px 18px 20px;
  }

  .vx-demo-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ============================================================
   Pagina prezzo — un piano solo, due formule (solo informativa).
   Sezione scura, intestazione centrata e due card affiancate
   con il prezzo; sotto, il pannello con tutto ciò che è incluso.
============================================================ */
.vx-pricing {
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(96px, 9vw, 140px));
  background:
    radial-gradient(60% 55% at 50% 0%, rgba(39, 97, 158, 0.2), transparent 62%),
    radial-gradient(40% 45% at 88% 92%, rgba(255, 107, 74, 0.08), transparent 70%),
    #0b1727;
  color: #fff;
}

.vx-pricing::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent 76%);
  mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent 76%);
}

.vx-pricing .vx-kicker {
  color: #899caf;
}

.vx-pricing .vx-kicker > span {
  color: #ff8267;
}

.vx-pricing .vx-heading {
  margin-bottom: clamp(44px, 5vw, 62px);
}

.vx-pricing .vx-display {
  color: #f7f9fb;
}

.vx-pricing .vx-lead {
  color: #9bacbe;
}

.vx-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(820px, 100%);
  margin-inline: auto;
}

.vx-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.vx-plan.is-featured {
  border-color: rgba(255, 130, 103, 0.5);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 107, 74, 0.14), transparent 72%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 44px 96px -54px rgba(238, 95, 55, 0.55);
}

.vx-plan-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.vx-plan-tag > span {
  color: #dbe4ee;
  font-size: 15px;
  font-weight: 700;
}

.vx-plan-tag > b {
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(120deg, #fa9c72, #ee5f37);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.vx-plan-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.vx-plan-price b {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.vx-plan-price span {
  color: #8fa0b3;
  font-size: 14px;
  font-weight: 600;
}

.vx-plan > p {
  margin-top: 12px;
  color: #97a8ba;
  font-size: 14px;
  line-height: 1.55;
}

.vx-plan-cta {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  border-radius: 13px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s var(--vx-ease), filter 0.25s var(--vx-ease), border-color 0.2s var(--vx-ease), background-color 0.2s var(--vx-ease);
}

.vx-plan-cta.is-solid {
  background: linear-gradient(120deg, #fa9c72, #ee5f37);
  color: #fff;
  box-shadow: 0 18px 36px -18px rgba(238, 95, 55, 0.65);
}

.vx-plan-cta.is-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #eef3f8;
}

.vx-plan-cta.is-solid:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.vx-plan-cta.is-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.vx-plan-cta i {
  font-size: 16px;
}

.vx-plan-included {
  width: min(820px, 100%);
  margin: 18px auto 0;
  padding: 26px 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.vx-plan-included > strong {
  display: block;
  color: #eef3f8;
  font-size: 15px;
}

.vx-plan-included > strong + p {
  margin-top: 4px;
  color: #8698ab;
  font-size: 13.5px;
}

.vx-plan-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  margin-top: 22px;
}

.vx-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #c3d0dd;
  font-size: 14px;
  line-height: 1.4;
}

.vx-plan-features li i {
  flex-shrink: 0;
  margin-top: 1px;
  color: #4bd29e;
  font-size: 17px;
}

.vx-plan-foot {
  margin-top: 26px;
  color: #7f8fa1;
  font-size: 12.5px;
  text-align: center;
}

@media (max-width: 720px) {
  .vx-plans,
  .vx-plan-included {
    width: min(460px, 100%);
  }

  .vx-plans {
    grid-template-columns: 1fr;
  }

  .vx-plan-features {
    grid-template-columns: 1fr;
  }

  .vx-plan-included {
    padding: 22px 20px 24px;
  }
}

/* ============================================================
   PAGINA VEYCAR AI — dal verbale alla PEC di rinotifica.
   Namespace vxa-. Riusa i token vx- condivisi.
============================================================ */
.vxa-gridbg {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(85% 75% at 60% 30%, #000, transparent 78%);
  mask-image: radial-gradient(85% 75% at 60% 30%, #000, transparent 78%);
}

/* --- HERO ---------------------------------------------------- */
.vxa-hero {
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(90px, 9vw, 140px));
  background:
    radial-gradient(60% 60% at 85% 12%, rgba(255, 107, 74, 0.14), transparent 62%),
    radial-gradient(55% 55% at 8% 92%, rgba(77, 141, 255, 0.12), transparent 68%),
    #0b1727;
  color: #fff;
}

.vxa-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.vxa-hero .vx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #9db0c4;
}

.vxa-kicker-badge {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #fa9c72, #ee5f37);
  color: #fff;
  font-size: 15px;
}

.vxa-hero .vx-display {
  margin-top: 22px;
  color: #f7f9fb;
  font-size: clamp(40px, 4.6vw, 66px);
}

.vxa-hero .vx-lead {
  max-width: 540px;
  margin-top: 26px;
  color: #9fb0c2;
}

.vxa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.vxa-hero-actions .vx-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vxa-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vxa-hero-stats b {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.vxa-hero-stats b small {
  margin-left: 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--vx-coral);
}

.vxa-hero-stats span {
  display: block;
  margin-top: 5px;
  max-width: 150px;
  color: #8395a8;
  font-size: 12.5px;
  line-height: 1.4;
}

/* --- Hero: console AI --------------------------------------- */
.vxa-hero-visual,
.vxa-mail-visual {
  position: relative;
}

.vxa-visual-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 108%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.16), rgba(79, 144, 219, 0.08) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vxa-console {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.92), rgba(11, 23, 39, 0.92));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 60px 130px -55px #000, 0 30px 70px -46px rgba(6, 16, 31, 0.8);
}

.vxa-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vxa-console-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #eef3f8;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}

.vxa-console-brand i {
  color: var(--vx-coral);
  font-size: 17px;
}

.vxa-console-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(39, 170, 121, 0.14);
  color: #5fd6a6;
  font-size: 11.5px;
  font-weight: 700;
}

.vxa-console-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38d491;
  box-shadow: 0 0 0 3px rgba(56, 212, 145, 0.2);
  animation: vxa-pulse 2s var(--vx-ease) infinite;
}

@keyframes vxa-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(56, 212, 145, 0.22); }
  50% { box-shadow: 0 0 0 6px rgba(56, 212, 145, 0.05); }
}

.vxa-console-file {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
}

.vxa-console-file > i {
  flex-shrink: 0;
  color: #ff8267;
  font-size: 26px;
}

.vxa-console-file span { min-width: 0; flex: 1; }
.vxa-console-file strong,
.vxa-console-file small { display: block; }
.vxa-console-file strong {
  overflow: hidden;
  color: #eaf1f7;
  font-size: 13.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vxa-console-file small { margin-top: 2px; color: #8496a9; font-size: 11px; }
.vxa-console-file em {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #b7c5d3;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.vxa-console-scan {
  position: relative;
  height: 2px;
  margin: 16px 2px 4px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
}

.vxa-console-scan i {
  position: absolute;
  inset: 0;
  width: 40%;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--vx-coral), transparent);
  animation: vxa-scan 2.4s var(--vx-ease) infinite;
}

@keyframes vxa-scan {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.vxa-console-label {
  margin: 14px 0 10px;
  color: #8496a9;
  font-family: var(--vx-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vxa-console-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vxa-console-fields > div {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.vxa-console-fields span {
  display: block;
  color: #7f92a6;
  font-size: 10.5px;
}

.vxa-console-fields strong {
  display: block;
  margin-top: 3px;
  color: #eaf1f7;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.vxa-console-link {
  margin-top: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 130, 103, 0.28);
  border-radius: 13px;
  background: rgba(255, 107, 74, 0.07);
}

.vxa-console-link-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffb59f;
  font-size: 11.5px;
  font-weight: 700;
}

.vxa-console-link-head i { font-size: 15px; }

.vxa-console-link-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.vxa-console-link-body small {
  display: block;
  color: #a68a82;
  font-size: 10.5px;
}

.vxa-console-link-body strong {
  display: block;
  margin-top: 2px;
  color: #f4ede9;
  font-size: 14px;
}

.vxa-console-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 13px;
  background: linear-gradient(120deg, #fa9c72, #ee5f37);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 18px 34px -18px rgba(238, 95, 55, 0.6);
}

.vxa-console-cta i { font-size: 17px; }
.vxa-console-cta em { margin-left: auto; font-style: normal; font-size: 17px; }

/* --- PIPELINE (light) -------------------------------------- */
.vxa-flow {
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(255, 107, 74, 0.06), transparent 70%),
    #f6f5f1;
}

.vxa-flow .vx-heading { margin-bottom: clamp(48px, 5vw, 70px); }

.vxa-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vxa-pipe-line {
  position: absolute;
  top: 43px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.15), rgba(255, 107, 74, 0.4), rgba(255, 107, 74, 0.15));
  overflow: hidden;
}

.vxa-pipe-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 22%;
  background: linear-gradient(90deg, transparent, var(--vx-coral), transparent);
  transform: translateX(-120%);
  animation: vxa-flowline 3.6s var(--vx-ease) infinite;
}

@keyframes vxa-flowline {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(560%); }
}

.vxa-step {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid var(--vx-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 60px -50px rgba(7, 17, 31, 0.4);
}

.vxa-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.vxa-step-num {
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.vxa-step-top > i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--vx-line);
  color: var(--vx-ink);
  font-size: 22px;
  box-shadow: 0 10px 22px -16px rgba(7, 17, 31, 0.5);
}

.vxa-step h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.vxa-step p {
  margin-top: 9px;
  color: #5d6d7d;
  font-size: 13.5px;
  line-height: 1.55;
}

.vxa-step-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1f3f5;
  color: #4c5b6e;
  font-size: 12px;
  font-weight: 600;
}

.vxa-step-chip i { font-size: 15px; }
.vxa-step-chip-ok { background: #e6f5ee; color: #1d7d57; }
.vxa-step-chip-ok i { color: #27aa79; }
.vxa-step-chip-coral { background: #ffe9e0; color: #d24d29; }
.vxa-step-chip-coral i { color: #ee5f37; }

.vxa-disclaimer {
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: center;
  max-width: 720px;
  margin: 40px auto 0;
  padding: 15px 22px;
  border: 1px solid var(--vx-line);
  border-radius: 14px;
  background: #fff;
  color: #4c5b6e;
  font-size: 13.5px;
  text-align: left;
}

.vxa-disclaimer i { flex-shrink: 0; color: var(--vx-green); font-size: 19px; }

/* --- PEC MAIL (dark) --------------------------------------- */
.vxa-mail {
  background:
    radial-gradient(58% 60% at 12% 15%, rgba(77, 141, 255, 0.12), transparent 64%),
    radial-gradient(50% 55% at 92% 90%, rgba(255, 107, 74, 0.1), transparent 68%),
    #0b1727;
  color: #fff;
}

.vxa-mail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.vxa-mail .vx-kicker { color: #9db0c4; }
.vxa-mail .vx-kicker > span { color: #ff8267; }
.vxa-mail .vx-display { color: #f7f9fb; font-size: clamp(34px, 3.6vw, 52px); }
.vxa-mail .vx-lead { max-width: 500px; margin-top: 24px; color: #9fb0c2; }
.vxa-mail .vx-check-list { margin-top: 34px; }

/* Finestra PEC */
.vxa-mailwin {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(560px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: #fff;
  color: #17293f;
  box-shadow: 0 60px 130px -52px #000, 0 30px 70px -44px rgba(6, 16, 31, 0.8);
}

.vxa-mailwin-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef1f4;
  background: #fbfcfd;
}

.vxa-mailwin-dots { display: flex; gap: 6px; }
.vxa-mailwin-dots i { width: 9px; height: 9px; border-radius: 50%; background: #dce1e7; }
.vxa-mailwin-dots i:first-child { background: #ff8267; }

.vxa-mailwin-head > span {
  color: #66748a;
  font-size: 12.5px;
  font-weight: 600;
}

.vxa-mailwin-ai {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 5px 11px;
  border-radius: 999px;
  background: #ffe9e0;
  color: #d24d29;
  font-size: 11px;
  font-weight: 700;
}

.vxa-mailwin-ai i { font-size: 13px; }

.vxa-mailwin-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid #f2f4f6;
}

.vxa-mailwin-row > span {
  flex-shrink: 0;
  width: 54px;
  color: #93a0af;
  font-size: 12px;
}

.vxa-mailwin-row > strong {
  min-width: 0;
  color: #23364e;
  font-size: 13.5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vxa-mailwin-body {
  padding: 16px 18px;
  border-bottom: 1px solid #f2f4f6;
}

.vxa-mailwin-body p {
  color: #46566a;
  font-size: 13px;
  line-height: 1.6;
}

.vxa-mailwin-body p + p { margin-top: 9px; }
.vxa-mailwin-body b { color: #17293f; font-weight: 700; }

.vxa-mailwin-attach {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px;
}

.vxa-mailwin-attach span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid #e4e9ee;
  border-radius: 9px;
  background: #f7f9fb;
  color: #445468;
  font-size: 12px;
  font-weight: 600;
}

.vxa-mailwin-attach i { color: #7688a0; font-size: 15px; }

.vxa-mailwin-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px 16px;
  border-top: 1px solid #eef1f4;
}

.vxa-mailwin-deadline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8a6d3b;
  font-size: 12.5px;
  font-weight: 600;
}

.vxa-mailwin-deadline i { color: #d99a2b; font-size: 16px; }

.vxa-mailwin-send {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(120deg, #fa9c72, #ee5f37);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 30px -16px rgba(238, 95, 55, 0.6);
}

.vxa-mailwin-send i { font-size: 16px; }

/* --- Responsive -------------------------------------------- */
@media (max-width: 1080px) {
  .vxa-pipeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vxa-pipe-line { display: none; }
}

@media (max-width: 960px) {
  .vxa-hero-grid,
  .vxa-mail-grid { grid-template-columns: 1fr; gap: 54px; }
  .vxa-hero-copy,
  .vxa-mail-copy { max-width: 640px; }
  .vxa-mail-visual { order: 2; }
}

@media (max-width: 560px) {
  .vxa-hero-stats { gap: 22px 30px; }
  .vxa-hero-stats b { font-size: 25px; }
  .vxa-pipeline { grid-template-columns: 1fr; }
  .vxa-console-fields { grid-template-columns: 1fr 1fr; }
  .vxa-mailwin-row > strong { font-size: 12.5px; }
  .vxa-mailwin-foot { flex-direction: column; align-items: stretch; }
  .vxa-mailwin-send { justify-content: center; }
}

/* ============================================================
   VEYCAR AI · LIGHT STORYTELLING V2
   Rinotifica as the primary narrative, fleet intelligence as
   the second chapter. Page-scoped to avoid affecting the home.
============================================================ */
.vxa-page {
  background: #fff;
  color: var(--vx-ink);
}

.vxa-page .vx-display em {
  color: var(--vx-coral-deep);
  font-style: normal;
}

.vxa-page .vxa-gridbg {
  background-image:
    linear-gradient(rgba(27, 58, 81, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 58, 81, 0.045) 1px, transparent 1px);
  opacity: 0.72;
}

/* Hero ------------------------------------------------------ */
.vxa-page .vxa-hero {
  overflow: hidden;
  min-height: 900px;
  background:
    radial-gradient(52% 58% at 90% 16%, rgba(255, 112, 79, 0.12), transparent 68%),
    radial-gradient(44% 50% at 6% 96%, rgba(50, 136, 190, 0.09), transparent 70%),
    linear-gradient(180deg, #fbfcfd 0%, #f7f8f7 100%);
  color: var(--vx-ink);
}

.vxa-page .vxa-hero .vx-kicker { color: #657789; }

.vxa-page .vxa-kicker-badge {
  background: #fff0eb;
  box-shadow: 0 8px 20px -13px rgba(238, 95, 55, 0.7);
  color: var(--vx-coral-deep);
}

.vxa-page .vxa-hero .vx-display {
  max-width: 720px;
  color: #142b3e;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.99;
}

.vxa-page .vxa-hero .vx-lead {
  max-width: 620px;
  color: #536678;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.66;
}

.vxa-page .vxa-hero .vx-button-ghost,
.vxa-page .vxa-ai-cta .vx-button-ghost {
  border-color: rgba(24, 50, 71, 0.17);
  background: rgba(255, 255, 255, 0.7);
  color: #203b51;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.vxa-page .vxa-hero .vx-button-ghost:hover,
.vxa-page .vxa-ai-cta .vx-button-ghost:hover {
  border-color: rgba(24, 50, 71, 0.3);
  background: #fff;
}

.vxa-page .vxa-hero-stats {
  max-width: 650px;
  border-top-color: rgba(30, 62, 85, 0.12);
}

.vxa-page .vxa-hero-stats b {
  color: #ec603e;
  font-family: var(--vx-mono);
  font-size: 18px;
  letter-spacing: 0.03em;
}

.vxa-page .vxa-hero-stats span {
  max-width: 160px;
  color: #657789;
  font-size: 12.5px;
}

.vxa-page .vxa-visual-aura {
  background: radial-gradient(circle, rgba(255, 107, 74, 0.11), rgba(64, 145, 197, 0.055) 47%, transparent 70%);
}

.vxa-page .vxa-console {
  width: min(500px, 100%);
  padding: 25px;
  border-color: rgba(30, 62, 85, 0.13);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 50px 120px -65px rgba(22, 53, 76, 0.58), 0 22px 50px -38px rgba(22, 53, 76, 0.3);
}

.vxa-page .vxa-console-head { border-bottom-color: #e9eef1; }
.vxa-page .vxa-console-brand { color: #183247; }
.vxa-page .vxa-console-brand i { color: var(--vx-coral-deep); }

.vxa-page .vxa-console-badge {
  background: #eaf7f1;
  color: #237b5b;
}

.vxa-page .vxa-console-file {
  border-color: #e4eaee;
  background: #f8fafb;
}

.vxa-page .vxa-console-file strong { color: #203a50; }
.vxa-page .vxa-console-file small { color: #778896; }
.vxa-page .vxa-console-file em { background: #edf1f4; color: #617280; }
.vxa-page .vxa-console-scan { background: #edf1f4; }
.vxa-page .vxa-console-label { color: #84929e; }

.vxa-page .vxa-console-fields > div {
  border-color: #e6ebef;
  background: #fbfcfc;
}

.vxa-page .vxa-console-fields span { color: #83919c; }
.vxa-page .vxa-console-fields strong { color: #243d51; }

.vxa-page .vxa-console-link {
  border-color: rgba(39, 170, 121, 0.24);
  background: #f0f8f4;
}

.vxa-page .vxa-console-link-head { color: #237c5b; }
.vxa-page .vxa-console-link-body small { color: #738d80; }
.vxa-page .vxa-console-link-body strong { color: #244236; }

/* Rinotifica case story ------------------------------------ */
.vxa-page .vxa-story {
  overflow: visible;
  background:
    radial-gradient(42% 28% at 48% 0%, rgba(255, 107, 74, 0.055), transparent 75%),
    #fff;
}

.vxa-page .vxa-story .vx-heading { margin-bottom: clamp(64px, 7vw, 98px); }

.vxa-case-story {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(62px, 8vw, 124px);
}

.vxa-case-file {
  position: sticky;
  top: calc(var(--header-h) + 30px);
  padding: 22px;
  border: 1px solid #dfe6ea;
  border-radius: 24px;
  background: #f7f9fa;
  box-shadow: 0 42px 90px -65px rgba(17, 48, 70, 0.48);
}

.vxa-case-file::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 13px -13px -13px 13px;
  border: 1px solid rgba(28, 61, 84, 0.08);
  border-radius: inherit;
  background: #fff;
}

.vxa-case-file-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  color: #2c4559;
  font-size: 12px;
  font-weight: 700;
}

.vxa-case-file-head span { display: flex; align-items: center; gap: 9px; }
.vxa-case-file-head span i { color: var(--vx-coral-deep); font-size: 19px; }
.vxa-case-file-head b { color: #8a98a3; font-family: var(--vx-mono); font-size: 9.5px; }

.vxa-case-paper {
  position: relative;
  min-height: 300px;
  padding: 40px 34px;
  overflow: hidden;
  border: 1px solid #e6e9e7;
  border-radius: 8px 8px 18px 8px;
  background:
    linear-gradient(90deg, transparent 29px, rgba(238, 95, 55, 0.16) 30px, transparent 31px),
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(34, 65, 85, 0.045) 25px 26px),
    #fffefb;
  box-shadow: 0 20px 38px -30px rgba(14, 41, 60, 0.45);
}

.vxa-case-paper::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(238, 95, 55, 0.15);
  border-radius: 50%;
}

.vxa-case-paper span {
  color: #8b959b;
  font-family: var(--vx-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.vxa-case-paper strong {
  display: block;
  margin: 14px 0 30px;
  color: #1e374b;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.vxa-case-paper > i {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 12px;
  border-radius: 5px;
  background: #edf0ef;
}

.vxa-case-paper > i:nth-of-type(2) { width: 88%; }
.vxa-case-paper > i:nth-of-type(3) { width: 94%; }
.vxa-case-paper > i:nth-of-type(4) { width: 64%; }

.vxa-case-paper em {
  display: inline-flex;
  margin-top: 30px;
  padding: 8px 11px;
  border: 1px solid rgba(238, 95, 55, 0.2);
  border-radius: 7px;
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.vxa-case-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #e1e7ea;
  border-radius: 13px;
  background: #e1e7ea;
}

.vxa-case-facts div { min-width: 0; padding: 13px 11px; background: #fff; }
.vxa-case-facts dt { color: #8a98a3; font-size: 9px; }
.vxa-case-facts dd { margin: 4px 0 0; overflow: hidden; color: #274055; font-size: 11px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }

.vxa-case-file > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 3px 0;
  color: #74838e;
  font-size: 10.5px;
}

.vxa-case-file > p i { color: #2a8b67; font-size: 14px; }

.vxa-case-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vxa-case-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 52px;
  left: 27px;
  width: 1px;
  background: linear-gradient(180deg, rgba(238, 95, 55, 0.32), rgba(39, 170, 121, 0.32));
}

.vxa-case-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 25px;
  padding-bottom: clamp(48px, 6vw, 78px);
}

.vxa-case-timeline li:last-child { padding-bottom: 0; }

.vxa-chapter-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(238, 95, 55, 0.22);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px -22px rgba(22, 53, 76, 0.5);
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 11px;
  font-weight: 700;
}

.vxa-case-timeline li > div { padding-top: 3px; }

.vxa-case-timeline li > div > small {
  color: #7c8b97;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vxa-case-timeline h3 {
  max-width: 650px;
  margin-top: 10px;
  color: #193247;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.vxa-case-timeline p {
  max-width: 650px;
  margin-top: 13px;
  color: #596b7a;
  font-size: 15px;
  line-height: 1.65;
}

.vxa-case-timeline li > div > b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #287c5e;
  font-size: 12px;
  font-weight: 750;
}

.vxa-case-timeline li > div > b i { font-size: 17px; }
.vxa-case-timeline li > div > b.is-coral { color: var(--vx-coral-deep); }

.vxa-page .vxa-disclaimer {
  margin-top: clamp(62px, 7vw, 96px);
  border-color: #dfe7e3;
  background: #f5faf7;
  color: #476257;
  font-size: 14px;
}

/* PEC ------------------------------------------------------- */
.vxa-page .vxa-mail {
  background:
    radial-gradient(48% 54% at 92% 15%, rgba(255, 107, 74, 0.07), transparent 70%),
    radial-gradient(52% 55% at 7% 92%, rgba(61, 138, 187, 0.07), transparent 70%),
    #f3f6f8;
  color: var(--vx-ink);
}

.vxa-page .vxa-mail .vx-kicker { color: #6d7e8d; }
.vxa-page .vxa-mail .vx-kicker > span { color: var(--vx-coral-deep); }
.vxa-page .vxa-mail .vx-display { color: #183247; font-size: clamp(38px, 4.2vw, 58px); }
.vxa-page .vxa-mail .vx-lead { max-width: 560px; color: #566979; font-size: 16px; }

.vxa-page .vxa-mail .vx-check-list { border-top-color: #dbe3e8; }
.vxa-page .vxa-mail .vx-check-list li { border-bottom-color: #dbe3e8; }
.vxa-page .vxa-mail .vx-check-list span { color: #617383; font-size: 13.5px; }
.vxa-page .vxa-mail .vx-check-list strong { color: #233e53; font-size: 14px; }

.vxa-page .vxa-mail .vxa-visual-aura {
  background: radial-gradient(circle, rgba(255, 107, 74, 0.09), rgba(74, 145, 190, 0.04) 46%, transparent 70%);
}

.vxa-page .vxa-mailwin {
  border-color: rgba(31, 63, 85, 0.12);
  box-shadow: 0 50px 110px -63px rgba(20, 49, 70, 0.56), 0 22px 50px -36px rgba(20, 49, 70, 0.25);
}

/* Fleet intelligence --------------------------------------- */
.vxa-insights {
  overflow: hidden;
  background:
    radial-gradient(50% 58% at 84% 44%, rgba(39, 170, 121, 0.06), transparent 72%),
    #fff;
}

.vxa-insights-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(58px, 8vw, 120px);
}

.vxa-insights-copy .vx-display {
  max-width: 650px;
  margin-top: 24px;
  color: #183247;
  font-size: clamp(38px, 4.2vw, 58px);
}

.vxa-insights-copy .vx-lead {
  max-width: 620px;
  margin-top: 25px;
  color: #586a79;
  font-size: 16px;
}

.vxa-signal-list {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid #dfe6ea;
}

.vxa-signal-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #dfe6ea;
}

.vxa-signal-list li > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #f0f6f4;
  color: #278562;
  font-size: 20px;
}

.vxa-signal-list span { color: #677987; font-size: 13px; line-height: 1.55; }
.vxa-signal-list strong { display: block; margin-bottom: 3px; color: #233e53; font-size: 14px; }

.vxa-human-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #63776d;
  font-size: 12.5px;
  font-weight: 650;
}

.vxa-human-note i { color: #278562; font-size: 18px; }

.vxa-margin-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe6ea;
  border-radius: 28px;
  background: #f7f9fa;
  box-shadow: 0 50px 110px -68px rgba(17, 48, 70, 0.56), 0 20px 46px -38px rgba(17, 48, 70, 0.3);
}

.vxa-margin-visual::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(39, 170, 121, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(39, 170, 121, 0.025), 0 0 0 90px rgba(238, 95, 55, 0.016);
}

.vxa-margin-visual > header {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 26px;
  border-bottom: 1px solid #e0e6ea;
  background: rgba(255, 255, 255, 0.74);
}

.vxa-margin-visual > header span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #203c51;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 750;
}

.vxa-margin-visual > header span i { color: var(--vx-coral-deep); font-size: 17px; }
.vxa-margin-visual > header b { color: #81909b; font-family: var(--vx-mono); font-size: 10px; }

.vxa-recommendation {
  position: relative;
  z-index: 1;
  padding: 28px 28px 26px;
  border-bottom: 1px solid #dfe6ea;
  background: linear-gradient(135deg, rgba(255, 243, 238, 0.94), rgba(248, 251, 250, 0.94));
}

.vxa-rec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vxa-rec-eyebrow span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #287c5e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vxa-rec-eyebrow span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-green);
  box-shadow: 0 0 0 5px rgba(39, 170, 121, 0.1);
}

.vxa-rec-eyebrow b { color: #8a6d62; font-size: 10.5px; }

.vxa-recommendation h3 {
  margin-top: 20px;
  color: #183247;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.05em;
}

.vxa-recommendation > p {
  max-width: 560px;
  margin-top: 10px;
  color: #5a6c7a;
  font-size: 14px;
  line-height: 1.58;
}

.vxa-recommendation dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 25px;
  border-top: 1px solid rgba(61, 82, 96, 0.13);
}

.vxa-recommendation dl div { padding: 17px 16px 0 0; }
.vxa-recommendation dt { color: #85929c; font-size: 9.5px; }
.vxa-recommendation dd { margin: 5px 0 0; color: #263f52; font-size: 15px; font-weight: 750; }
.vxa-recommendation dd.is-positive { color: #23805e; }

.vxa-margin-ranking { position: relative; z-index: 1; padding: 18px 26px 10px; background: rgba(255, 255, 255, 0.82); }

.vxa-margin-head,
.vxa-margin-ranking article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px 92px;
  align-items: center;
  gap: 12px;
}

.vxa-margin-head {
  padding: 0 0 10px 45px;
  color: #98a3ab;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vxa-margin-head span:nth-child(n+2) { text-align: right; }

.vxa-margin-ranking article {
  grid-template-columns: 32px minmax(0, 1fr) 76px 92px;
  min-height: 67px;
  border-top: 1px solid #e4e9ec;
}

.vxa-margin-ranking article > b { color: #a0aab2; font-family: var(--vx-mono); font-size: 10px; }
.vxa-margin-ranking article > span strong,
.vxa-margin-ranking article > span small { display: block; }
.vxa-margin-ranking article > span strong { color: #294255; font-size: 13px; }
.vxa-margin-ranking article > span small { margin-top: 3px; color: #8b98a2; font-family: var(--vx-mono); font-size: 9px; }
.vxa-margin-ranking article em { color: #657785; font-size: 12px; font-style: normal; font-weight: 700; text-align: right; }
.vxa-margin-ranking article mark { padding: 0; background: none; color: #294255; font-size: 13px; font-weight: 800; text-align: right; }
.vxa-margin-ranking article.is-best > b,
.vxa-margin-ranking article.is-best mark { color: var(--vx-coral-deep); }

.vxa-margin-visual > footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px 18px;
  background: #fff;
  color: #82909a;
  font-size: 10px;
}

.vxa-margin-visual > footer i { color: #67869a; font-size: 14px; }

/* Light CTA ------------------------------------------------- */
.vxa-page .vxa-ai-cta {
  min-height: 680px;
  background:
    radial-gradient(60% 82% at 50% 100%, rgba(39, 170, 121, 0.08), transparent 64%),
    radial-gradient(55% 70% at 50% 0%, rgba(255, 107, 74, 0.1), transparent 67%),
    #f8faf9;
  color: var(--vx-ink);
}

.vxa-page .vxa-ai-cta::before {
  background-image:
    linear-gradient(rgba(31, 64, 87, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 64, 87, 0.045) 1px, transparent 1px);
}

.vxa-page .vxa-ai-cta .vx-cta-rings,
.vxa-page .vxa-ai-cta .vx-cta-rings i { border-color: rgba(30, 62, 84, 0.08); }

.vxa-page .vxa-ai-cta .vx-display { color: #173146; font-size: clamp(46px, 5.7vw, 78px); }
.vxa-page .vxa-ai-cta .vx-lead { color: #5d6f7f; }
.vxa-page .vxa-ai-cta .vx-kicker { color: #6d7e8d; }
.vxa-page .vxa-ai-cta .vx-kicker > span { color: var(--vx-coral-deep); }
.vxa-page .vxa-ai-cta .vx-cta-assurance span { color: #687b8a; font-size: 10.5px; }

/* Responsive ----------------------------------------------- */
@media (max-width: 1080px) {
  .vxa-insights-grid { grid-template-columns: minmax(320px, 0.8fr) minmax(480px, 1.2fr); gap: 54px; }
  .vxa-case-story { gap: 64px; }
}

@media (max-width: 960px) {
  .vxa-page .vxa-hero { min-height: 0; }
  .vxa-case-story,
  .vxa-insights-grid { grid-template-columns: 1fr; }
  .vxa-case-file { position: relative; top: auto; width: min(520px, 100%); }
  .vxa-case-timeline { margin-top: 12px; }
  .vxa-insights-copy { max-width: 680px; }
  .vxa-margin-visual { width: min(680px, 100%); }
}

@media (max-width: 680px) {
  .vxa-page .vxa-hero { padding-top: calc(var(--header-h) + 82px); }
  .vxa-page .vxa-hero .vx-display { font-size: clamp(40px, 12vw, 54px); }
  .vxa-page .vxa-console { padding: 19px; border-radius: 20px; }
  .vxa-page .vxa-console-fields { grid-template-columns: 1fr; }
  .vxa-page .vxa-console-link-body { grid-template-columns: 1fr; }
  .vxa-page .vxa-console-cta { font-size: 12.5px; }

  .vxa-case-story { gap: 58px; }
  .vxa-case-file { padding: 16px; border-radius: 20px; }
  .vxa-case-paper { min-height: 260px; padding: 32px 26px; }
  .vxa-case-facts { grid-template-columns: 1fr; }
  .vxa-case-facts dd { white-space: normal; }
  .vxa-case-timeline::before { left: 21px; }
  .vxa-case-timeline li { grid-template-columns: 44px minmax(0, 1fr); gap: 18px; }
  .vxa-chapter-marker { width: 44px; height: 44px; font-size: 10px; }
  .vxa-case-timeline h3 { font-size: 25px; }
  .vxa-case-timeline p { font-size: 14px; }
  .vxa-page .vxa-disclaimer { align-items: flex-start; }

  .vxa-page .vxa-mailwin-head { flex-wrap: wrap; }
  .vxa-page .vxa-mailwin-ai { width: 100%; margin-left: 0; justify-content: center; }
  .vxa-page .vxa-mailwin-row { display: grid; gap: 5px; }
  .vxa-page .vxa-mailwin-row > span { width: auto; }
  .vxa-page .vxa-mailwin-row > strong { white-space: normal; overflow-wrap: anywhere; }
  .vxa-page .vxa-mailwin-attach { display: grid; }
  .vxa-page .vxa-mailwin-attach span { min-width: 0; overflow: hidden; }

  .vxa-margin-visual { border-radius: 20px; }
  .vxa-margin-visual > header { min-height: 60px; padding: 0 18px; }
  .vxa-recommendation { padding: 24px 18px 22px; }
  .vxa-rec-eyebrow { align-items: flex-start; flex-direction: column; gap: 8px; }
  .vxa-recommendation dl { grid-template-columns: 1fr; }
  .vxa-recommendation dl div { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(61, 82, 96, 0.1); }
  .vxa-recommendation dd { margin-top: 0; }
  .vxa-margin-ranking { padding: 16px 18px 8px; }
  .vxa-margin-head { display: none; }
  .vxa-margin-ranking article { grid-template-columns: 26px minmax(0, 1fr) 68px; gap: 8px; min-height: 70px; }
  .vxa-margin-ranking article em { display: none; }
  .vxa-margin-ranking article mark { font-size: 12px; }
  .vxa-margin-visual > footer { padding: 13px 18px 18px; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .vxa-page .vxa-console-badge i,
  .vxa-page .vxa-console-scan i { animation: none; }
}

/* ============================================================
   DEMO · LIGHT CONVERSION PAGE V2
   Clear request flow, honest next steps, real rental scenarios.
============================================================ */
.vxd-page {
  background: #fff;
  color: var(--vx-ink);
}

.vxd-page .vx-display em {
  color: var(--vx-coral-deep);
  font-style: normal;
}

.vxd-page .vx-demo {
  overflow: hidden;
  min-height: 980px;
  background:
    radial-gradient(52% 62% at 90% 20%, rgba(255, 107, 74, 0.105), transparent 68%),
    radial-gradient(42% 48% at 5% 94%, rgba(54, 135, 187, 0.075), transparent 72%),
    linear-gradient(180deg, #fbfcfd 0%, #f5f7f6 100%);
  color: var(--vx-ink);
}

.vxd-page .vx-demo::before {
  background-image:
    linear-gradient(rgba(29, 62, 84, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 62, 84, 0.045) 1px, transparent 1px);
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(72% 62% at 72% 34%, #000, transparent 76%);
  mask-image: radial-gradient(72% 62% at 72% 34%, #000, transparent 76%);
}

.vxd-page .vx-demo-grid {
  grid-template-columns: minmax(360px, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(64px, 8vw, 126px);
}

.vxd-page .vx-demo .vx-kicker { color: #718291; }
.vxd-page .vx-demo .vx-kicker > span { color: var(--vx-coral-deep); }

.vxd-page .vx-demo-copy .vx-display {
  max-width: 690px;
  color: #173146;
  font-size: clamp(44px, 4.8vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.vxd-page .vx-demo-copy .vx-lead {
  max-width: 600px;
  margin-top: 27px;
  color: #556878;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.66;
}

.vxd-demo-flow {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 600px;
  margin-top: 42px;
  padding: 0;
  list-style: none;
}

.vxd-demo-flow::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 21px;
  width: 1px;
  background: linear-gradient(180deg, rgba(238, 95, 55, 0.35), rgba(39, 170, 121, 0.34));
}

.vxd-demo-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  padding: 0 0 28px;
}

.vxd-demo-flow li:last-child { padding-bottom: 0; }

.vxd-demo-flow li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(238, 95, 55, 0.2);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px -18px rgba(26, 57, 79, 0.6);
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 9.5px;
  font-weight: 700;
}

.vxd-demo-flow strong {
  display: block;
  padding-top: 2px;
  color: #213c51;
  font-size: 15px;
}

.vxd-demo-flow p {
  margin-top: 5px;
  color: #667887;
  font-size: 13.5px;
  line-height: 1.55;
}

.vxd-demo-note {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 600px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(29, 62, 84, 0.12);
  color: #587166;
  font-size: 12.5px;
  font-weight: 650;
}

.vxd-demo-note i { color: var(--vx-green); font-size: 18px; }

.vxd-page .vx-demo-stage { position: relative; }

.vxd-page .vx-demo-aura {
  width: 108%;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.1), rgba(57, 140, 193, 0.045) 46%, transparent 70%);
}

.vxd-page .vx-demo-card {
  width: min(560px, 100%);
  padding: 32px 32px 28px;
  border-color: rgba(29, 62, 84, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 54px 120px -68px rgba(17, 48, 70, 0.58), 0 22px 52px -39px rgba(17, 48, 70, 0.28);
}

.vxd-page .vx-demo-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(30, 62, 84, 0.07);
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.56);
}

.vxd-page .vx-demo-card > header {
  padding-bottom: 22px;
  border-bottom-color: #e6ecef;
}

.vxd-page .vx-demo-card > header > span {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #fff0eb;
  color: var(--vx-coral-deep);
  font-size: 23px;
}

.vxd-page .vx-demo-card > header small {
  color: #7c8b97;
  font-size: 11px;
  font-weight: 650;
}

.vxd-page .vx-demo-card > header strong {
  margin-top: 4px;
  color: #173146;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.vxd-form-intro {
  max-width: 440px;
  margin-top: 21px;
  color: #627482;
  font-size: 13px;
  line-height: 1.55;
}

.vxd-form-required {
  margin-top: 14px;
  color: #89969f;
  font-size: 10.5px;
}

.vxd-form-required span,
.vxd-page .vx-demo-field label > span { color: var(--vx-coral-deep); }

.vxd-page .vx-demo-field { margin-top: 18px; }

.vxd-page .vx-demo-field label {
  margin-bottom: 8px;
  color: #3f5567;
  font-size: 13px;
  font-weight: 700;
}

.vxd-page .vx-demo-field input,
.vxd-page .vx-demo-field select,
.vxd-page .vx-demo-field textarea {
  min-height: 52px;
  padding: 13px 15px;
  border-color: #d7e0e6;
  border-radius: 12px;
  background-color: #fafcfc;
  color: #172f43;
  font-size: 16px;
}

.vxd-page .vx-demo-field input:hover,
.vxd-page .vx-demo-field select:hover,
.vxd-page .vx-demo-field textarea:hover { border-color: #bdcad3; }

.vxd-page .vx-demo-field input:focus-visible,
.vxd-page .vx-demo-field select:focus-visible,
.vxd-page .vx-demo-field textarea:focus-visible {
  border-color: var(--vx-coral-deep);
  box-shadow: 0 0 0 4px rgba(238, 95, 55, 0.11);
}

.vxd-page .vx-demo-field textarea {
  min-height: 116px;
  line-height: 1.5;
}

.vxd-page .vx-demo-submit {
  min-height: 56px;
  margin-top: 25px;
  border-radius: 13px;
  background: var(--vx-coral);
  box-shadow: 0 18px 36px -19px rgba(238, 95, 55, 0.72);
}

.vxd-page .vx-demo-submit:focus-visible {
  outline: 3px solid rgba(238, 95, 55, 0.26);
  outline-offset: 3px;
}

.vxd-form-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  color: #557066;
  font-size: 12px;
  font-weight: 650;
}

.vxd-form-assurance i { color: var(--vx-green); font-size: 15px; }

.vxd-page .vx-demo-privacy {
  max-width: 420px;
  margin: 10px auto 0;
  color: #84929d;
  font-size: 11px;
}

/* What to bring -------------------------------------------- */
.vxd-demo-cases {
  background: #fff;
}

.vxd-cases-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1.48fr);
  align-items: start;
  gap: clamp(42px, 7vw, 100px);
  margin-bottom: clamp(58px, 7vw, 90px);
}

.vxd-cases-heading .vx-display {
  max-width: 850px;
  color: #173146;
  font-size: clamp(38px, 4.4vw, 62px);
}

.vxd-cases-heading .vx-lead {
  max-width: 680px;
  margin-top: 24px;
  color: #607281;
  font-size: 16px;
}

.vxd-cases-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dfe6ea;
  border-bottom: 1px solid #dfe6ea;
}

.vxd-cases-list article {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px);
}

.vxd-cases-list article + article { border-left: 1px solid #dfe6ea; }

.vxd-cases-list article > span {
  color: #9aa5ad;
  font-family: var(--vx-mono);
  font-size: 10px;
  font-weight: 700;
}

.vxd-cases-list article > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-top: 30px;
  border-radius: 15px;
  background: #fff1ec;
  color: var(--vx-coral-deep);
  font-size: 22px;
}

.vxd-cases-list h3 {
  margin-top: 25px;
  color: #203a4f;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.vxd-cases-list p {
  margin-top: 11px;
  color: #647685;
  font-size: 14px;
  line-height: 1.62;
}

.vxd-cases-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 760px;
  margin: 42px auto 0;
  color: #5b7066;
  font-size: 13px;
  text-align: center;
}

.vxd-cases-foot i { flex-shrink: 0; color: var(--vx-green); font-size: 18px; }

@media (max-width: 1040px) {
  .vxd-page .vx-demo-grid { grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1.18fr); gap: 56px; }
}

@media (max-width: 960px) {
  .vxd-page .vx-demo { min-height: 0; }
  .vxd-page .vx-demo-grid { grid-template-columns: 1fr; gap: 64px; }
  .vxd-page .vx-demo-copy { max-width: 680px; }
  .vxd-page .vx-demo-stage { width: min(600px, 100%); }
  .vxd-page .vx-demo-card { margin-left: 0; }
  .vxd-cases-heading { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 720px) {
  .vxd-cases-list { grid-template-columns: 1fr; }
  .vxd-cases-list article + article { border-top: 1px solid #dfe6ea; border-left: 0; }
  .vxd-cases-list article { padding: 34px 8px; }
  .vxd-cases-list article > i { margin-top: 20px; }
  .vxd-cases-list h3 { margin-top: 20px; }
}

@media (max-width: 560px) {
  .vxd-page .vx-demo { padding-top: calc(var(--header-h) + 78px); }
  .vxd-page .vx-demo-copy .vx-display { font-size: clamp(39px, 12vw, 52px); }
  .vxd-demo-flow { margin-top: 35px; }
  .vxd-page .vx-demo-card { padding: 25px 19px 22px; border-radius: 21px; }
  .vxd-page .vx-demo-card::before { inset: 8px -6px -8px 6px; }
  .vxd-form-intro { font-size: 12.5px; }
  .vxd-page .vx-demo-field input,
  .vxd-page .vx-demo-field select,
  .vxd-page .vx-demo-field textarea { font-size: 16px; }
  .vxd-cases-foot { align-items: flex-start; text-align: left; }
}

/* ==========================================================
   Cookie consent
   ========================================================== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.vx-cookie-modal-open {
  overflow: hidden;
}

.vx-cookie-consent {
  position: relative;
  z-index: 10000;
  font-family: var(--body);
}

.vx-cookie-consent [hidden] {
  display: none !important;
}

.vx-cookie-banner {
  position: fixed;
  z-index: 10001;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  width: min(1160px, calc(100vw - 36px));
  padding: 26px 28px 25px;
  overflow: hidden;
  border: 1px solid rgba(24, 53, 75, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 104, 79, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.97);
  box-shadow:
    0 28px 80px rgba(13, 35, 51, 0.18),
    0 6px 18px rgba(13, 35, 51, 0.07);
  opacity: 0;
  transform: translate(-50%, 22px);
  transition:
    opacity 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.vx-cookie-banner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 3px;
  background: var(--vx-coral);
  content: "";
}

.vx-cookie-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.vx-cookie-copy {
  max-width: 770px;
}

.vx-cookie-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--vx-coral-deep);
  font-family: var(--vx-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vx-cookie-kicker i {
  font-size: 15px;
}

.vx-cookie-banner h2,
.vx-cookie-preferences h2 {
  margin: 0;
  color: #152f43;
  font-family: var(--display);
  font-size: clamp(24px, 2.25vw, 33px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.vx-cookie-copy > p:not(.vx-cookie-kicker) {
  max-width: 720px;
  margin: 10px 0 0;
  color: #617382;
  font-size: 13px;
  line-height: 1.62;
}

.vx-cookie-details-link {
  display: inline-flex;
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(30, 63, 86, 0.28);
  background: transparent;
  color: #29475d;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.vx-cookie-details-link:hover {
  border-color: var(--vx-coral);
  color: var(--vx-coral-deep);
}

.vx-cookie-close,
.vx-cookie-modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid #e1e7eb;
  border-radius: 50%;
  background: #fff;
  color: #314e63;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.vx-cookie-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
}

.vx-cookie-close:hover,
.vx-cookie-modal-close:hover {
  border-color: #ffb8aa;
  color: var(--vx-coral-deep);
  transform: rotate(4deg);
}

.vx-cookie-actions,
.vx-cookie-preferences-actions {
  display: flex;
  gap: 10px;
}

.vx-cookie-actions {
  padding-right: 32px;
}

.vx-cookie-button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 170ms ease,
    background-color 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.vx-cookie-button:hover {
  transform: translateY(-1px);
}

.vx-cookie-button-primary {
  background: var(--vx-coral);
  box-shadow: 0 8px 20px rgba(241, 93, 68, 0.18);
  color: #fff;
}

.vx-cookie-button-primary:hover {
  background: var(--vx-coral-deep);
  box-shadow: 0 10px 24px rgba(241, 93, 68, 0.25);
}

.vx-cookie-button-secondary {
  border-color: #cfd9df;
  background: #fff;
  color: #26455b;
}

.vx-cookie-button-secondary:hover {
  border-color: #98aab6;
  background: #f7f9fa;
}

.vx-cookie-button-neutral {
  background: #18374d;
  color: #fff;
}

.vx-cookie-button-neutral:hover {
  background: #102b3d;
}

.vx-cookie-button:focus-visible,
.vx-cookie-close:focus-visible,
.vx-cookie-modal-close:focus-visible,
.vx-cookie-details-link:focus-visible,
.vx-cookie-switch input:focus-visible + i,
.vx-footer-bottom nav button:focus-visible {
  outline: 3px solid rgba(255, 104, 79, 0.32);
  outline-offset: 3px;
}

.vx-cookie-overlay {
  position: fixed;
  z-index: 10002;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 27, 40, 0.56);
  opacity: 0;
  transition: opacity 210ms ease;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.vx-cookie-overlay.is-visible {
  opacity: 1;
}

.vx-cookie-preferences {
  width: min(680px, 100%);
  max-height: min(780px, calc(100dvh - 36px));
  padding: 29px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 34px 110px rgba(4, 20, 31, 0.32);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 210ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-cookie-overlay.is-visible .vx-cookie-preferences {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.vx-cookie-preferences-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.vx-cookie-preferences-intro {
  max-width: 590px;
  margin: 15px 0 24px;
  color: #627482;
  font-size: 13px;
  line-height: 1.65;
}

.vx-cookie-categories {
  border-top: 1px solid #dfe6ea;
  border-bottom: 1px solid #dfe6ea;
}

.vx-cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 20px 2px;
}

.vx-cookie-category + .vx-cookie-category {
  border-top: 1px solid #e6ecef;
}

.vx-cookie-category > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vx-cookie-category-icon {
  display: grid;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: #fff1ec;
  color: var(--vx-coral-deep);
  font-size: 18px;
}

.vx-cookie-category strong,
.vx-cookie-category small {
  display: block;
}

.vx-cookie-category strong {
  color: #1c3a50;
  font-size: 14px;
}

.vx-cookie-category small {
  max-width: 470px;
  margin-top: 4px;
  color: #697b88;
  font-size: 12px;
  line-height: 1.55;
}

.vx-cookie-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  cursor: pointer;
}

.vx-cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.vx-cookie-switch i {
  position: relative;
  display: block;
  width: 46px;
  height: 26px;
  border: 1px solid #cbd6dc;
  border-radius: 999px;
  background: #dfe5e8;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.vx-cookie-switch i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(20, 46, 64, 0.24);
  content: "";
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-cookie-switch input:checked + i {
  border-color: #2d9773;
  background: #2fac80;
}

.vx-cookie-switch input:checked + i::after {
  transform: translateX(20px);
}

.vx-cookie-switch input:disabled + i {
  cursor: not-allowed;
  opacity: 0.72;
}

.vx-cookie-storage-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #7b8993;
  font-size: 11px;
}

.vx-cookie-storage-note i {
  color: #2d9773;
  font-size: 15px;
}

.vx-cookie-preferences-actions {
  justify-content: flex-end;
  margin-top: 24px;
}

.vx-footer-bottom nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #75889c;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  transition: color 180ms ease;
}

.vx-footer-bottom nav button:hover {
  color: #fff;
}

@media (max-width: 780px) {
  .vx-cookie-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 22px 22px;
  }

  .vx-cookie-actions {
    padding-right: 0;
  }

  .vx-cookie-actions .vx-cookie-button {
    flex: 1 1 0;
  }
}

@media (max-width: 560px) {
  .vx-cookie-banner {
    bottom: max(10px, env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
    padding: 21px 18px 18px;
    border-radius: 18px;
  }

  .vx-cookie-banner::before {
    width: 70px;
  }

  .vx-cookie-banner h2 {
    padding-right: 30px;
    font-size: 25px;
  }

  .vx-cookie-copy > p:not(.vx-cookie-kicker) {
    font-size: 12px;
    line-height: 1.55;
  }

  .vx-cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vx-cookie-actions .vx-cookie-button-primary {
    grid-row: 1;
  }

  .vx-cookie-overlay {
    align-items: end;
    padding: 10px;
  }

  .vx-cookie-preferences {
    max-height: calc(100dvh - 20px);
    padding: 23px 18px max(20px, env(safe-area-inset-bottom));
    border-radius: 22px;
  }

  .vx-cookie-preferences h2 {
    font-size: 27px;
  }

  .vx-cookie-category {
    gap: 14px;
    padding: 17px 0;
  }

  .vx-cookie-category-icon {
    display: none;
  }

  .vx-cookie-preferences-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .vx-cookie-preferences-actions .vx-cookie-button-primary {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-cookie-banner,
  .vx-cookie-overlay,
  .vx-cookie-preferences,
  .vx-cookie-button,
  .vx-cookie-switch i,
  .vx-cookie-switch i::after {
    transition: none !important;
  }
}


/* === Mobile (<=768px): hero statica (niente scroll-jacking) + hamburger sopra il menu === */
@media (max-width: 768px) {
  /* Collassa l'altezza della hero: niente scroll a vuoto sotto */
  .hero-cine.is-static {
    height: 100vh;
    height: 100svh;
  }
  /* Sfondo statico = primo frame (showroom); il velo garantisce leggibilita del copy */
  .hero-cine.is-static .hero-cine-sticky {
    background-image: url("hero/fotogrammi_1280/frame_000001.webp");
    background-size: cover;
    background-position: center;
  }
  /* Niente ritaglio dashboard nella hero statica mobile */
  .hero-cine.is-static .hero-final-shell {
    display: none;
  }
  /* Il pulsante hamburger/X resta sempre sopra il menu a schermo intero */
  .site-header.is-menu-open {
    z-index: 130;
  }
  .nav-toggle {
    position: relative;
    z-index: 131;
  }
}
