

/* ==========================================================
   PLAYMOOVE — GLOBAL CSS
   Languages: EN / IT / AR

   Cleaned and consolidated from Elementor Custom CSS.
   Inactive-language blocks (ES / FR / DE) removed.
   Duplicate CSS was already removed during consolidation.

   Shared rules use language-independent classes and apply to
   both EN and IT. Arabic-specific overrides are grouped last.
========================================================== */


/* ==========================================================
   01. GLOBAL / HEADER
========================================================== */

/* Header — widget: shortcode */
/* ========================================
   PLAYMOOVE LANGUAGE SWITCHER
======================================== */

.pm-language-switcher {
  --pm-lang-accent: #00b892;
  --pm-lang-dark: #10182b;
  --pm-lang-text: #ffffff;
  --pm-lang-muted: rgba(255, 255, 255, 0.62);
  --pm-lang-border: rgba(255, 255, 255, 0.15);

  position: relative;
  display: inline-flex;
  z-index: 100;
  font-family: "Manrope", sans-serif;
}

.pm-language-switcher *,
.pm-language-switcher *::before,
.pm-language-switcher *::after {
  box-sizing: border-box;
}

.pm-language-switcher__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--pm-lang-border);
  border-radius: 999px;
  background: rgba(16, 24, 43, 0.78);
  color: var(--pm-lang-text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 10px 30px rgba(4, 10, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.pm-language-switcher__trigger:hover {
  border-color: rgba(0, 184, 146, 0.55);
  background: rgba(20, 31, 53, 0.92);
  box-shadow:
    0 12px 32px rgba(4, 10, 25, 0.16),
    0 0 0 4px rgba(0, 184, 146, 0.07);
  transform: translateY(-1px);
}

.pm-language-switcher__trigger:focus-visible {
  outline: 2px solid var(--pm-lang-accent);
  outline-offset: 3px;
}

.pm-language-switcher__globe {
  display: inline-flex;
  width: 17px;
  height: 17px;
  color: var(--pm-lang-accent);
}

.pm-language-switcher__globe svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pm-language-switcher__current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pm-language-switcher__code {
  min-width: 20px;
  text-align: center;
}

.pm-language-switcher__current-name {
  color: var(--pm-lang-muted);
  font-weight: 600;
}

.pm-language-switcher__chevron {
  display: inline-flex;
  width: 10px;
  height: 7px;
  margin-left: 1px;
  transition: transform 220ms ease;
}

.pm-language-switcher__chevron svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pm-language-switcher.is-open .pm-language-switcher__chevron {
  transform: rotate(180deg);
}

.pm-language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(24, 34, 56, 0.98),
      rgba(12, 20, 36, 0.98)
    );
  box-shadow:
    0 24px 60px rgba(3, 9, 22, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pm-language-switcher.is-open .pm-language-switcher__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.pm-language-switcher__menu-label {
  padding: 9px 11px 8px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.pm-language-switcher__languages {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pm-language-switcher__language {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 11px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.pm-language-switcher__language:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}

.pm-language-switcher__language.is-active {
  color: #ffffff;
  background:
    linear-gradient(
      90deg,
      rgba(0, 184, 146, 0.17),
      rgba(0, 184, 146, 0.06)
    );
}

.pm-language-switcher__language-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--pm-lang-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.pm-language-switcher__language-name {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-language-switcher__active-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--pm-lang-accent);
}

.pm-language-switcher__active-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header chiaro */

.pm-language-switcher--light {
  --pm-lang-text: #10182b;
  --pm-lang-muted: rgba(16, 24, 43, 0.58);
  --pm-lang-border: rgba(16, 24, 43, 0.13);
}

.pm-language-switcher--light .pm-language-switcher__trigger {
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 10px 30px rgba(16, 24, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pm-language-switcher--light .pm-language-switcher__trigger:hover {
  background: #ffffff;
  border-color: rgba(0, 184, 146, 0.45);
}

@media (max-width: 767px) {
  .pm-language-switcher__trigger {
    min-height: 42px;
    padding: 8px 12px;
  }

  .pm-language-switcher__current-name {
    display: none;
  }

  .pm-language-switcher__menu {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    min-width: 0;
    border-radius: 20px;
    transform-origin: bottom center;
    transform: translateY(16px) scale(0.98);
  }

  .pm-language-switcher.is-open .pm-language-switcher__menu {
    transform: translateY(0) scale(1);
  }

  .pm-language-switcher__language {
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-language-switcher__trigger,
  .pm-language-switcher__menu,
  .pm-language-switcher__language,
  .pm-language-switcher__chevron {
    transition: none;
  }
}

/* Override del focus/hover globale di Elementor */
.pm-language-switcher__trigger:hover,
.pm-language-switcher__trigger:focus,
.pm-language-switcher__trigger:focus-visible {
  color: var(--pm-lang-text) !important;
  background: rgba(20, 31, 53, 0.92) !important;
  border-color: rgba(0, 184, 146, 0.55) !important;
  text-decoration: none !important;
}

/* Focus da tastiera */
.pm-language-switcher__trigger:focus-visible {
  outline: 2px solid var(--pm-lang-accent) !important;
  outline-offset: 3px;
}

/* Rimuove il focus browser quando clicchi col mouse */
.pm-language-switcher__trigger:focus:not(:focus-visible) {
  outline: none !important;
}

.pm-language-switcher--light .pm-language-switcher__trigger:hover,
.pm-language-switcher--light .pm-language-switcher__trigger:focus,
.pm-language-switcher--light .pm-language-switcher__trigger:focus-visible {
  color: #10182b !important;
  background: #ffffff !important;
  border-color: rgba(0, 184, 146, 0.45) !important;
}

/* Header — impostazioni pagina/documento */
/* ================================
   PLAYMOOVE Header
   Green logo + hamburger
   sulle pagine con header chiaro
================================ */

body.pm-light-header .elementor-location-header {
  --pm-header-logo-color: #00bfa5;
}

/* Nasconde il logo SVG originale */
body.pm-light-header
.elementor-location-header
.elementor-widget-theme-site-logo img {
  opacity: 0;
}

/* Contenitore logo */
body.pm-light-header
.elementor-location-header
.elementor-widget-theme-site-logo a {
  position: relative;
  display: inline-block;
}

/* Logo ricolorato tramite mask */
body.pm-light-header
.elementor-location-header
.elementor-widget-theme-site-logo a::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: var(--pm-header-logo-color);

  -webkit-mask-image: url("https://webdev.playmoove.com/wp-content/uploads/2026/04/PLAYMOOVE_White_LOGO.svg");
  mask-image: url("https://webdev.playmoove.com/wp-content/uploads/2026/04/PLAYMOOVE_White_LOGO.svg");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: contain;
  mask-size: contain;

  pointer-events: none;
}

/* Hamburger */
body.pm-light-header
.elementor-location-header
.elementor-widget-icon .elementor-icon,
body.pm-light-header
.elementor-location-header
.elementor-widget-icon .elementor-icon svg,
body.pm-light-header
.elementor-location-header
.elementor-widget-icon .elementor-icon svg path {
  color: var(--pm-header-logo-color) !important;
  fill: var(--pm-header-logo-color) !important;
}


/* ==========================================================
   02. HOME
========================================================== */

/* Home — widget: heading — .pm-auto-home-heading-001 */
.pm-auto-home-heading-001 span {
    color: #35C8A0!important;
}

/* Home — container — .pm-auto-home-container-022 */
@media (max-width:640px) {
    .pm-auto-home-container-022 hr {
        display: none;
    }
}

/* Home — widget: html — .pm-deployments-map-widget */
/* ================================
   PLAYMOOVE - Deployments Map
   Light Flat Tech UI
================================ */

/* Hide mobile back item on desktop */
.pm-submenu-back-item {
  display: none !important;
}

:root {
  --pm-white: #ffffff;
  --pm-mint: #35C8A0;
  --pm-azure: #0085FF;
  --pm-steel: #004C9F;
  --pm-prussian: #151E33;

  --pm-map-bg: #f4f8fb;
  --pm-map-bg-2: #eaf1f7;
  --pm-map-panel: #ffffff;
  --pm-map-line: rgba(21, 30, 51, 0.10);
  --pm-map-muted: rgba(21, 30, 51, 0.58);
}

/* ================================
   Elementor widget wrapper
================================ */

.pm-deployments-map-widget,
.pm-deployments-map-widget .elementor-widget-container {
  display: block !important;
  width: 100% !important;
  height: 720px !important;
  min-height: 720px !important;
}

/* ================================
   Map frame
================================ */

.pm-deployments-map-wrap {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 720px !important;
  min-height: 720px !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: var(--pm-map-bg) !important;
  border-top: 1px solid rgba(21, 30, 51, 0.08);
  border-bottom: 1px solid rgba(21, 30, 51, 0.08);
}

/* ================================
   Leaflet container
================================ */

#pmDeploymentsMap,
#pmDeploymentsMap.leaflet-container {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 720px !important;
  min-height: 720px !important;
  background: var(--pm-map-bg) !important;
  z-index: 1 !important;
  font-family: "Manrope", sans-serif !important;
}

/* ================================
   Light flat map treatment
================================ */

#pmDeploymentsMap .leaflet-tile-pane {
  filter:
    grayscale(1)
    saturate(0.38)
    contrast(0.92)
    brightness(1.04);
  opacity: 0.82;
}

#pmDeploymentsMap .leaflet-tile {
  mix-blend-mode: normal;
}

/* ================================
   Light overlay
================================ */

.pm-deployments-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 420;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(53, 200, 160, 0.12), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(0, 133, 255, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18));
}

/* ================================
   Tech grid
================================ */

.pm-deployments-map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 421;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 30, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 30, 51, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.44;
}

/* ================================
   Layer order
================================ */

#pmDeploymentsMap .leaflet-overlay-pane,
#pmDeploymentsMap .leaflet-control-container,
#pmDeploymentsMap .leaflet-marker-pane,
#pmDeploymentsMap .leaflet-popup-pane,
#pmDeploymentsMap .leaflet-tooltip-pane {
  position: relative;
  z-index: 430;
}

/* ================================
   Country / territory highlights
   Light version
================================ */

#pmDeploymentsMap svg path.pm-country-highlight,
.pm-country-highlight {
  fill: rgba(53, 200, 160, 0.18) !important;
  stroke: rgba(53, 200, 160, 0.72) !important;
  stroke-width: 1.45 !important;
  stroke-linejoin: round !important;
  stroke-linecap: round !important;
  filter:
    drop-shadow(0 0 4px rgba(53, 200, 160, 0.38))
    drop-shadow(0 0 12px rgba(53, 200, 160, 0.16)) !important;
  pointer-events: none !important;
  vector-effect: non-scaling-stroke;
}

/* ================================
   Single marker - flat round node
================================ */

.pm-map-marker {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--pm-mint);
  border: 2px solid var(--pm-white);
  box-shadow:
    0 0 0 1px rgba(53, 200, 160, 0.62),
    0 0 12px rgba(53, 200, 160, 0.48),
    0 8px 18px rgba(21, 30, 51, 0.18);
}

.pm-map-marker::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 1px solid rgba(53, 200, 160, 0.24);
}

.pm-map-marker::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  border: 1px solid rgba(53, 200, 160, 0.09);
}

/* ================================
   Cluster - small light node
================================ */

.pm-cluster {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pm-steel);
  color: var(--pm-white);
  border: 2px solid var(--pm-white);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow:
    0 0 0 1px rgba(0, 133, 255, 0.32),
    0 0 14px rgba(0, 133, 255, 0.22),
    0 10px 24px rgba(21, 30, 51, 0.20);
}

.pm-cluster::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 133, 255, 0.16);
}

.pm-cluster::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  border: 1px solid rgba(53, 200, 160, 0.08);
}

/* ================================
   Popup - Playmoove light panel
================================ */

#pmDeploymentsMap .leaflet-popup {
  margin-bottom: 22px !important;
  font-family: "Manrope", sans-serif !important;
}

#pmDeploymentsMap .leaflet-popup-content-wrapper {
  position: relative !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: var(--pm-prussian) !important;
  border: 1px solid rgba(21, 30, 51, 0.10) !important;
  box-shadow:
    0 18px 48px rgba(21, 30, 51, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.72) !important;
  overflow: hidden !important;
}

#pmDeploymentsMap .leaflet-popup-content-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(53, 200, 160, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent);
}

#pmDeploymentsMap .leaflet-popup-content {
  position: relative;
  z-index: 2;
  margin: 17px 19px !important;
  min-width: 180px;
  font-family: "Manrope", sans-serif !important;
  color: var(--pm-prussian) !important;
}

#pmDeploymentsMap .leaflet-popup-tip-container {
  width: 34px !important;
  height: 18px !important;
}

#pmDeploymentsMap .leaflet-popup-tip {
  background: #ffffff !important;
  border-right: 1px solid rgba(21, 30, 51, 0.10) !important;
  border-bottom: 1px solid rgba(21, 30, 51, 0.10) !important;
  box-shadow: none !important;
}

#pmDeploymentsMap .leaflet-popup-close-button {
  top: 10px !important;
  right: 12px !important;
  width: 22px !important;
  height: 22px !important;
  color: rgba(21, 30, 51, 0.46) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  line-height: 20px !important;
  transition: color 0.2s ease;
}

#pmDeploymentsMap .leaflet-popup-close-button:hover {
  color: var(--pm-mint) !important;
  background: transparent !important;
}

#pmDeploymentsMap .pm-popup-title {
  margin: 0 28px 7px 0 !important;
  font-size: 15px !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  color: var(--pm-prussian) !important;
}

#pmDeploymentsMap .pm-popup-meta {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: rgba(21, 30, 51, 0.58) !important;
}

#pmDeploymentsMap .pm-popup-meta::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--pm-mint);
  box-shadow: 0 0 8px rgba(53, 200, 160, 0.58);
  vertical-align: 1px;
}

/* ================================
   Zoom controls - light
================================ */

#pmDeploymentsMap .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(21, 30, 51, 0.10) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 36px rgba(21, 30, 51, 0.14);
}

#pmDeploymentsMap .leaflet-control-zoom a {
  width: 40px !important;
  height: 40px !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  color: var(--pm-prussian) !important;
  border: 0 !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

#pmDeploymentsMap .leaflet-control-zoom a:hover {
  background: rgba(53, 200, 160, 0.12) !important;
  color: var(--pm-mint) !important;
}

#pmDeploymentsMap .leaflet-control-zoom-in {
  border-bottom: 1px solid rgba(21, 30, 51, 0.08) !important;
}

/* ================================
   Attribution
================================ */

#pmDeploymentsMap .leaflet-control-attribution {
  padding: 6px 9px !important;
  border-radius: 12px 0 0 0;
  background: rgba(255, 255, 255, 0.84) !important;
  color: rgba(21, 30, 51, 0.42) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
  border-top: 1px solid rgba(21, 30, 51, 0.08);
  border-left: 1px solid rgba(21, 30, 51, 0.08);
}

#pmDeploymentsMap .leaflet-control-attribution a {
  color: rgba(21, 30, 51, 0.56) !important;
  text-decoration: none !important;
}

/* ================================
   Optional map label
================================ */

.pm-map-kicker {
  position: absolute;
  top: 28px;
  left: 32px;
  z-index: 440;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(21, 30, 51, 0.54);
  pointer-events: none;
}

.pm-map-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pm-mint);
  box-shadow: 0 0 8px rgba(53, 200, 160, 0.58);
}

/* ================================
   Mobile hard fix
================================ */

@media (max-width: 767px) {
  .pm-deployments-map-widget,
  .pm-deployments-map-widget .elementor-widget-container,
  .pm-deployments-map-wrap,
  #pmDeploymentsMap,
  #pmDeploymentsMap.leaflet-container {
    display: block !important;
    width: 100% !important;
    height: 360px !important;
    min-height: 360px !important;
  }

  .pm-deployments-map-wrap {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 !important;
  }

  #pmDeploymentsMap {
    position: relative !important;
    z-index: 1 !important;
  }

  .pm-cluster {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .pm-cluster::before {
    inset: -5px;
  }

  .pm-cluster::after {
    inset: -10px;
  }

  #pmDeploymentsMap .leaflet-control-zoom a {
    width: 38px !important;
    height: 38px !important;
  }

  .pm-map-kicker {
    top: 20px;
    left: 20px;
    font-size: 10px;
  }

  #pmDeploymentsMap .leaflet-popup-content {
    min-width: 160px;
  }

  .pm-submenu-back-item {
    display: block !important;
    position: absolute !important;
    top: 32px !important;
    left: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    z-index: 999 !important;
    pointer-events: auto !important;
  }

  .pm-submenu-back {
    position: relative !important;
    z-index: 1000 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 14px 0 !important;
    color: #111d2f !important;
    text-decoration: none !important;
    font-family: inherit;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    cursor: pointer;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .pm-submenu-back::before {
    content: "←";
    display: block;
    font-size: 24px;
    line-height: 1;
    transform: translateY(-1px);
  }
}

/* Home — container — .pm-auto-home-container-076 */
.pm-auto-home-container-076 {
    position: relative;
}

.pm-auto-home-container-076 .e-con-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Home — widget: html */
.pm-cta-morph-section {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

.pm-cta-morph-section > .elementor-container,
.pm-cta-morph-section > .e-con-inner {
  position: relative !important;
  z-index: 2 !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) > .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pm-morph-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  background: transparent !important;
}

.morph-bg-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  background: transparent !important;
  pointer-events: none !important;
}

/* FORME */
.morph-bg-svg .pm-shape {
  fill: #004B9B66;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

/* contenuto sopra */
.pm-cta-morph-section .elementor-widget-heading,
.pm-cta-morph-section .elementor-widget-button,
.pm-cta-morph-section .elementor-widget-text-editor {
  position: relative;
  z-index: 3;
}

/* animazioni leggere */
.morph-bg-svg .pm-s1 {
  animation: pmMorphOne 3s ease-in-out infinite alternate;
}

.morph-bg-svg .pm-s2 {
  animation: pmMorphTwo 3s ease-in-out infinite alternate;
}

.morph-bg-svg .pm-s3 {
  animation: pmMorphThree 5s ease-in-out infinite alternate;
}

.morph-bg-svg .pm-s4 {
  animation: pmMorphFour 4s ease-in-out infinite alternate;
}

@keyframes pmMorphOne {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.08) translate(1px, -1px) rotate(2deg);
    opacity: 1;
  }

  100% {
    transform: scale(1.02) translate(-1px, 1px) rotate(-1deg);
    opacity: 0.1;
  }
}

@keyframes pmMorphTwo {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.07) translate(-1px, 1px) rotate(-2deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.98) translate(1px, -1px) rotate(1deg);
    opacity: 0.1;
  }
}

@keyframes pmMorphThree {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.06) translate(1px, 1px) rotate(2deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.98) translate(-1px, -1px) rotate(-1deg);
    opacity: 0.1;
  }
}

@keyframes pmMorphFour {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.12) translate(-1px, 1px) rotate(-2deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.96) translate(1px, -1px) rotate(1deg);
    opacity: 0.1;
  }
}

/* Home — container — .pm-auto-home-container-077 */
.pm-auto-home-container-077 {
    visibility: hidden;
    display: none;
}

/* Home — impostazioni pagina/documento */
body {
    background-color: #151e33;
    overflow-x: hidden;
}
/* ================================
   PLAYMOOVE HOME ANIMATIONS
   Class-based, no Elementor data-id
================================ */
/* ================================
   PLAYMOOVE HOME GSAP ANIMATIONS
   Class-based, no Elementor data-id
================================ */

body {
  overflow-x: hidden;
}

/* Disattiva animazioni Elementor dentro le sezioni gestite da GSAP */
.pm-home-hero .animated,
.pm-home-section .animated,
.pm-home-trustbar .animated,
.pm-home-logos .animated,
.pm-home-case .animated,
.pm-home-cta .animated {
  animation: none !important;
}

.pm-home-hero .elementor-invisible,
.pm-home-section .elementor-invisible,
.pm-home-trustbar .elementor-invisible,
.pm-home-logos .elementor-invisible,
.pm-home-case .elementor-invisible,
.pm-home-cta .elementor-invisible {
  visibility: visible !important;
}

/* Base sezioni */
.pm-home-hero,
.pm-home-section,
.pm-home-solutions,
.pm-home-platform,
.pm-home-industries,
.pm-home-how,
.pm-home-case,
.pm-home-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pm-home-hero > *,
.pm-home-section > *,
.pm-home-solutions > *,
.pm-home-platform > *,
.pm-home-industries > *,
.pm-home-how > *,
.pm-home-case > *,
.pm-home-cta > * {
  position: relative;
  z-index: 2;
}

/* ================================
   HERO
================================ */

.pm-home-hero {
  opacity: 1 !important;
}

.pm-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(47, 107, 255, 0.22), transparent 38%),
    radial-gradient(circle at 18% 66%, rgba(0, 184, 153, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(10, 22, 43, 0.05) 0%, rgba(10, 22, 43, 0.88) 92%);
  opacity: var(--pm-hero-overlay, 0);
}

/* ================================
   SHAPES DECORATIVE
================================ */

.pm-parallax-shape {
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity;
  z-index: 1;
}

.pm-parallax-shape svg {
  width: 100%;
  height: 100%;
  overflow: visible !important;
  will-change: transform, opacity;
  transform-origin: center center;
}

/* La size resta quella impostata in Elementor */
.pm-parallax-shape--big {
  opacity: 0.9;
}

/* ================================
   CARDS
================================ */

.pm-reveal-card {
  will-change: transform, opacity;
  transform-origin: center bottom;
}

/* ================================
   BUTTONS
================================ */

.pm-home-hero .elementor-button,
.pm-home-cta .elementor-button,
.pm-reveal-card .elementor-button {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.pm-home-hero .elementor-button:hover,
.pm-home-cta .elementor-button:hover,
.pm-reveal-card .elementor-button:hover {
  transform: translateY(-2px);
}

/* ================================
   LOGHI
================================ */

.pm-home-logos img {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pm-home-logos img:hover {
  transform: translateY(-2px);
}

/* ================================
   CTA FINALE
================================ */

.pm-home-cta .pm-morph-bg {
  pointer-events: none;
  transform-origin: center center;
}

/* Nessuna animazione/parallasse sugli SVG della CTA */
.pm-home-cta .pm-morph-bg,
.pm-home-cta .pm-morph-bg svg,
.pm-home-cta .pm-parallax-shape,
.pm-home-cta .pm-parallax-shape svg {
  will-change: auto;
}

/* ================================
   ACCESSIBILITÀ
================================ */

@media (prefers-reduced-motion: reduce) {
  .pm-home-hero *,
  .pm-home-section *,
  .pm-home-trustbar *,
  .pm-home-logos *,
  .pm-home-case *,
  .pm-home-cta * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Case Study – Home — widget: shortcode */
.pm-case-metrics,
.pm-case-metrics * {
    box-sizing: border-box;
}

.pm-case-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 72px;
    width: 100%;
    max-width: 100%;
    font-family: 'Manrope', sans-serif;
    overflow: hidden;
}

.pm-case-metric {
    min-width: 0;
    max-width: 100%;
}

.pm-case-metric__value {
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    overflow-wrap: break-word;
}

.pm-case-metric__label {
    font-size: 1rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
    overflow-wrap: break-word;
}

@media (max-width: 767px) {
    .pm-case-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }

    .pm-case-metric__value {
        font-size: 34px;
    }

    .pm-case-metric__label {
        font-size: 1rem;
    }
}

/* Case Study – Home — widget: shortcode */
.pm-case-deliverables {
    color: #ffffff;
    font-family: 'Manrope';
}

.pm-case-deliverables__title {
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #35C8A0;
}

.pm-case-deliverables__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.pm-case-deliverables__item {
    position: relative;
    padding-left: 16px;
    font-size: 1rem;
    line-height: 1.35;
    color: rgba(255,255,255,0.92);
}

.pm-case-deliverables__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;

    width: 8px;
    height: 14px;

    background-color: #00B899;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41374 5.45556H6.03359C5.71196 5.45556 5.44733 5.17713 5.44733 4.82908V3.35425C5.44733 3.00621 5.18677 2.72778 4.86107 2.72778H3.48092C3.15522 2.72778 2.89466 2.445 2.89466 2.10131V0.626477C2.89466 0.278435 2.63003 0 2.3084 0H0.586261C0.264633 0 0 0.282785 0 0.626477V2.46239C0 2.81044 0.264633 3.08887 0.586261 3.08887H1.96641C2.29211 3.08887 2.55267 3.36731 2.55267 3.71535V5.19018C2.55267 5.53822 2.8173 5.81666 3.13893 5.81666H4.51908C4.84478 5.81666 5.10534 6.09944 5.10534 6.44313V7.55687C5.10534 7.90491 4.84478 8.18334 4.51908 8.18334H3.13893C2.81323 8.18334 2.55267 8.46613 2.55267 8.80982V10.2847C2.55267 10.6327 2.29211 10.9111 1.96641 10.9111H0.586261C0.264633 10.9111 0 11.1896 0 11.5376V13.3735C0 13.7216 0.264633 14 0.586261 14H2.3084C2.6341 14 2.89466 13.7216 2.89466 13.3735V11.8987C2.89466 11.5507 3.15522 11.2722 3.48092 11.2722H4.86107C5.1827 11.2722 5.44733 10.9894 5.44733 10.6457V9.17092C5.44733 8.82287 5.71196 8.54444 6.03359 8.54444H7.41374C7.73944 8.54444 8 8.266 8 7.91796V6.07769C8 5.72965 7.73944 5.45121 7.41374 5.45121' fill='%2300B899'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41374 5.45556H6.03359C5.71196 5.45556 5.44733 5.17713 5.44733 4.82908V3.35425C5.44733 3.00621 5.18677 2.72778 4.86107 2.72778H3.48092C3.15522 2.72778 2.89466 2.445 2.89466 2.10131V0.626477C2.89466 0.278435 2.63003 0 2.3084 0H0.586261C0.264633 0 0 0.282785 0 0.626477V2.46239C0 2.81044 0.264633 3.08887 0.586261 3.08887H1.96641C2.29211 3.08887 2.55267 3.36731 2.55267 3.71535V5.19018C2.55267 5.53822 2.8173 5.81666 3.13893 5.81666H4.51908C4.84478 5.81666 5.10534 6.09944 5.10534 6.44313V7.55687C5.10534 7.90491 4.84478 8.18334 4.51908 8.18334H3.13893C2.81323 8.18334 2.55267 8.46613 2.55267 8.80982V10.2847C2.55267 10.6327 2.29211 10.9111 1.96641 10.9111H0.586261C0.264633 10.9111 0 11.1896 0 11.5376V13.3735C0 13.7216 0.264633 14 0.586261 14H2.3084C2.6341 14 2.89466 13.7216 2.89466 13.3735V11.8987C2.89466 11.5507 3.15522 11.2722 3.48092 11.2722H4.86107C5.1827 11.2722 5.44733 10.9894 5.44733 10.6457V9.17092C5.44733 8.82287 5.71196 8.54444 6.03359 8.54444H7.41374C7.73944 8.54444 8 8.266 8 7.91796V6.07769C8 5.72965 7.73944 5.45121 7.41374 5.45121' fill='%2300B899'/%3E%3C/svg%3E");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-size: contain;
    mask-size: contain;

    -webkit-mask-position: center;
    mask-position: center;
}

@media (max-width: 767px) {

    .pm-case-deliverables__list {
        gap: 20px;
    }

    .pm-case-deliverables__item {
        padding-left: 32px;
        font-size: 16px;
    }

    .pm-case-deliverables__item::before {
        font-size: 28px;
    }
}


/* ==========================================================
   03. SOLUTIONS
========================================================== */

/* Solutions — widget: heading — .pm-auto-solutions-heading-001 */
.pm-auto-solutions-heading-001 span {
    color: #35C8A0!important;
}

/* Solutions — widget: html */
/* ================================
   PLAYMOOVE - CTA MORPH BG
   Green organic motion version
================================ */

.pm-cta-morph-section {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

.pm-cta-morph-section > .elementor-container,
.pm-cta-morph-section > .e-con-inner {
  position: relative !important;
  z-index: 2 !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) > .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pm-morph-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  background: transparent !important;
}

.morph-bg-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  background: transparent !important;
  pointer-events: none !important;
}

/* ================================
   Forme SVG
================================ */

.morph-bg-svg .pm-shape {
  fill: #00bfa5;
  opacity: 0.18;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity, filter;
  filter: blur(0px);
}

/* Varianti colore / profondità */

.morph-bg-svg .pm-s1 {
  fill: #00bfa5;
  opacity: 0.18;
  animation: pmOrganicDriftOne 11s ease-in-out infinite;
}

.morph-bg-svg .pm-s2 {
  fill: #26d39b;
  opacity: 0.15;
  animation: pmOrganicDriftTwo 14s ease-in-out infinite;
  animation-delay: -3s;
}

.morph-bg-svg .pm-s3 {
  fill: #0aa889;
  opacity: 0.13;
  animation: pmOrganicDriftThree 16s ease-in-out infinite;
  animation-delay: -6s;
}

.morph-bg-svg .pm-s4 {
  fill: #48e0b0;
  opacity: 0.16;
  animation: pmOrganicDriftFour 13s ease-in-out infinite;
  animation-delay: -2s;
}

/* contenuto sopra */

.pm-cta-morph-section .elementor-widget-heading,
.pm-cta-morph-section .elementor-widget-button,
.pm-cta-morph-section .elementor-widget-text-editor {
  position: relative;
  z-index: 3;
}

/* ================================
   Animazioni organiche
   più morbide, meno flashing
================================ */

@keyframes pmOrganicDriftOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.12;
    filter: blur(0px);
  }

  30% {
    transform: translate3d(10px, -8px, 0) scale(1.08) rotate(1.5deg);
    opacity: 0.26;
    filter: blur(0.2px);
  }

  65% {
    transform: translate3d(-7px, 9px, 0) scale(1.14) rotate(-1deg);
    opacity: 0.2;
    filter: blur(0px);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.12;
    filter: blur(0px);
  }
}

@keyframes pmOrganicDriftTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
  }

  35% {
    transform: translate3d(-12px, 7px, 0) scale(1.12) rotate(-1.2deg);
    opacity: 0.24;
  }

  70% {
    transform: translate3d(8px, -10px, 0) scale(1.05) rotate(1.8deg);
    opacity: 0.18;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
  }
}

@keyframes pmOrganicDriftThree {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.09;
  }

  40% {
    transform: translate3d(7px, 12px, 0) scale(1.1) rotate(1deg);
    opacity: 0.22;
  }

  75% {
    transform: translate3d(-10px, -6px, 0) scale(1.16) rotate(-1.5deg);
    opacity: 0.16;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.09;
  }
}

@keyframes pmOrganicDriftFour {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.11;
  }

  32% {
    transform: translate3d(-8px, -11px, 0) scale(1.15) rotate(-1deg);
    opacity: 0.25;
  }

  68% {
    transform: translate3d(11px, 8px, 0) scale(1.07) rotate(1.4deg);
    opacity: 0.19;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.11;
  }
}

/* Riduzione movimento */

@media (prefers-reduced-motion: reduce) {
  .morph-bg-svg .pm-shape {
    animation: none !important;
    opacity: 0.16;
  }
}

/* Solutions — widget: html */
/* ================================
   PLAYMOOVE - SOLUTIONS GRAPH
   White page version
================================ */

.pm-solutions-graph {
  width: 100%;
  color: #152038;
  font-family: 'Manrope', sans-serif;
}

/* ================================
   Tabs
================================ */

.pm-profile-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 42px 0 72px;
}

.pm-profile-tab {
  appearance: none;
  border: 1px solid rgba(0, 174, 156, 0.65);
  border-radius: 9px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.75);
  color: #152038;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(12, 47, 78, 0);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pm-profile-tab:hover {
  transform: translateY(-2px);
  border-color: #00bfa5;
  background: rgba(235, 255, 251, 0.9);
  box-shadow: 0 14px 34px rgba(0, 174, 156, 0.12);
  color: inherit!important;
}

.pm-profile-tab.is-active {
  border-color: transparent;
  background: linear-gradient(90deg, #2878ff 0%, #00bfa5 100%);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 174, 156, 0.2);
}

/* ================================
   Main layout
================================ */

.pm-graph-layout {
  display: grid;
  grid-template-columns: minmax(500px, 0.95fr) minmax(560px, 1.05fr);
  gap: 88px;
  align-items: flex-start;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 560px;
}

/* ================================
   Orbit wrapper
================================ */

.pm-orbit-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}

/* ================================
   Orbit canvas
================================ */

.pm-orbit {
  position: relative;
  width: 560px;
  height: 460px;
  margin: 0 auto;
}

/* ================================
   Rings
================================ */

.pm-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(21, 32, 56, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.pm-orbit-ring-small {
  width: 245px;
  height: 245px;
}

/* ================================
   Dynamic lines
================================ */

.pm-orbit-line {
  position: absolute;
  height: 1px;
  background: rgba(21, 32, 56, 0.24);
  transform-origin: left center;
  pointer-events: none;
  z-index: 1;
  transition:
    background 0.25s ease,
    opacity 0.25s ease;
}

.pm-orbit-line.is-muted {
  opacity: 0.22;
}

.pm-orbit-line.is-active {
  opacity: 0.75;
  background: rgba(21, 32, 56, 0.36);
}

.pm-orbit-line.is-highlighted {
  opacity: 1;
  background: #00bfa5;
}

/* ================================
   Center
================================ */

.pm-orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.88);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 16px 45px rgba(12, 47, 78, 0.06);
}

.pm-orbit-center span {
  font-size: 14px;
  line-height: 1.15;
  color: #152038;
  font-weight: 800;
  text-align: center;
}

/* ================================
   Nodes
================================ */

.pm-orbit-node {
  position: absolute;
  min-width: 118px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(21, 32, 56, 0.32);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  color: rgba(21, 32, 56, 0.42);
  font-family: inherit;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  z-index: 4;
}

.pm-orbit-node span {
  display: block;
}

.pm-orbit-node.is-active {
  color: #00a991;
  border-color: rgba(0, 191, 165, 0.75);
  background: rgba(235, 255, 251, 0.96);
  box-shadow: 0 10px 26px rgba(0, 191, 165, 0.08);
}

.pm-orbit-node.is-muted {
  opacity: 0.45;
  color: rgba(21, 32, 56, 0.24);
  border-color: rgba(21, 32, 56, 0.18);
  background: rgba(255, 255, 255, 0.5);
  cursor: default;
}

.pm-orbit-node.is-highlighted {
  color: #ffffff;
  border-color: #00bfa5;
  background: linear-gradient(90deg, #2878ff 0%, #00bfa5 100%);
  box-shadow: 0 18px 38px rgba(0, 191, 165, 0.22);
  transform: translate(-50%, -50%) scale(1.045);
}

.pm-orbit-node:focus-visible,
.pm-profile-tab:focus-visible,
.pm-model-row:focus-visible {
  outline: 2px solid #00bfa5;
  outline-offset: 4px;
}

/* ================================
   Manual node positions
================================ */

.pm-orbit-node[data-model="shared-mobility"] {
  left: 50%;
  top: 7%;
}

.pm-orbit-node[data-model="corporate-mobility"] {
  left: 76%;
  top: 17%;
}

.pm-orbit-node[data-model="autonomous-ready"] {
  left: 88%;
  top: 39%;
}

.pm-orbit-node[data-model="maas"] {
  left: 88%;
  top: 61%;
}

.pm-orbit-node[data-model="automated-rental"] {
  left: 76%;
  top: 83%;
}

.pm-orbit-node[data-model="smart-parking"] {
  left: 50%;
  top: 94%;
}

.pm-orbit-node[data-model="bus-ticketing"] {
  left: 24%;
  top: 83%;
}

.pm-orbit-node[data-model="car-pooling"] {
  left: 12%;
  top: 61%;
}

.pm-orbit-node[data-model="ride-hailing"] {
  left: 12%;
  top: 39%;
}

.pm-orbit-node[data-model="ride-pooling"] {
  left: 24%;
  top: 17%;
}

/* ================================
   Model list
================================ */

.pm-model-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 460px;
}

.pm-model-row {
  display: none;
  grid-template-columns: 210px 1fr 24px;
  gap: 38px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(21, 32, 56, 0.13);
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.pm-model-row::after {
  content: "›";
  color: #00a991;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  opacity: 0.75;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.pm-model-row.is-visible {
  display: grid;
}

.pm-model-row:hover,
.pm-model-row.is-highlighted {
  transform: translateX(8px);
  border-color: rgba(0, 191, 165, 0.35);
}

.pm-model-row:hover::after,
.pm-model-row.is-highlighted::after {
  transform: translateX(4px);
  opacity: 1;
}

.pm-model-row h3 {
  margin: 0;
  color: #00a991;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.pm-model-row p {
  margin: 0;
  color: rgba(21, 32, 56, 0.82);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 620px;
}

.pm-model-row.is-highlighted h3,
.pm-model-row:hover h3 {
  color: #008f7c;
}

/* ================================
   Tablet fallback
================================ */

@media (max-width: 1180px) {
  .pm-graph-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 760px;
    min-height: 0;
  }

  .pm-orbit-wrap {
    padding-top: 0;
  }

  .pm-model-list {
    min-height: 0;
  }

  .pm-model-row {
    grid-template-columns: 190px 1fr 24px;
  }
}

/* ================================
   Mobile: hide desktop graph
================================ */

@media (max-width: 767px) {
  .pm-solutions-graph {
    display: none;
  }
}

/* Solutions — widget: button — .pm-auto-solutions-button-002 */
.pm-auto-solutions-button-002 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-003 */
.pm-auto-solutions-button-003 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-004 */
.pm-auto-solutions-button-004 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-005 */
.pm-auto-solutions-button-005 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-006 */
.pm-auto-solutions-button-006 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-007 */
.pm-auto-solutions-button-007 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-008 */
.pm-auto-solutions-button-008 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-009 */
.pm-auto-solutions-button-009 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-010 */
.pm-auto-solutions-button-010 svg {
    width: 1.6rem;
}

/* Solutions — widget: button — .pm-auto-solutions-button-011 */
.pm-auto-solutions-button-011 svg {
    width: 1.6rem;
}

/* Solutions — container — .pm-auto-solutions-container-018 */
.pm-auto-solutions-container-018 {
    visibility: hidden;
    display: none;
}

/* Solutions — container — .pm-auto-solutions-container-019 */
.pm-auto-solutions-container-019 {
    position: relative;
}

.pm-auto-solutions-container-019 .e-con-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Solutions — impostazioni pagina/documento */
/* ================================
   PLAYMOOVE SOLUTIONS - GSAP CSS
   Page ID: 150
================================ */

/* Neutralizza animazioni native Elementor sulla pagina */
body.page-id-150.pm-solutions-gsap-ready .animated,
body.page-id-150.pm-solutions-gsap-ready .elementor-invisible {
  visibility: visible !important;
  animation: none !important;
}

/* Header su pagina bianca */
body.page-id-150 .elementor-location-header {
  position: relative;
  z-index: 50;
}

/* Hero accent gradient animabile */
body.page-id-150 .pm-cta-morph-section h1 span,
body.page-id-150 .pm-cta-morph-section h2 span,
body.page-id-150 .pm-cta-morph-section h3 span {
  display: inline-block;
  color: transparent !important;
  background: linear-gradient(90deg, #00bfa5 0%, #26d39b 45%, #2878ff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
}

/* GSAP controlla le forme SVG, ma NON devono diventare piene */
body.page-id-150.pm-solutions-gsap-ready .morph-bg-svg .pm-shape {
  animation: none !important;
}

body.page-id-150 .morph-bg-svg .pm-shape {
  opacity: var(--pm-shape-opacity, 0.15) !important;
  will-change: transform, opacity;
}

body.page-id-150 .morph-bg-svg .pm-s1 {
  --pm-shape-opacity: 0.16;
}

body.page-id-150 .morph-bg-svg .pm-s2 {
  --pm-shape-opacity: 0.13;
}

body.page-id-150 .morph-bg-svg .pm-s3 {
  --pm-shape-opacity: 0.11;
}

body.page-id-150 .morph-bg-svg .pm-s4 {
  --pm-shape-opacity: 0.14;
}

/* Protezione Swiper Elementor */
body.page-id-150 .elementor-widget-n-carousel .swiper,
body.page-id-150 .elementor-widget-n-carousel .swiper-wrapper,
body.page-id-150 .elementor-widget-n-carousel .swiper-slide {
  visibility: visible !important;
}

body.page-id-150 .elementor-widget-n-carousel .swiper-slide,
body.page-id-150 .elementor-widget-n-carousel .swiper-slide * {
  filter: none !important;
}

/* Performance */
body.page-id-150 .pm-cta-morph-section,
body.page-id-150 .pm-solutions-graph,
body.page-id-150 .pm-orbit,
body.page-id-150 .pm-orbit-node,
body.page-id-150 .pm-model-row {
  will-change: transform, opacity;
}


/* ==========================================================
   04. INDUSTRIES
========================================================== */

/* Industries — widget: heading — .pm-auto-industries-heading-001 */
.pm-auto-industries-heading-001 span {
    color: #35C8A0!important;
}

/* Industries — widget: html */
/* =========================================================
   PLAYMOOVE MORPH SVG BACKGROUND
   Compatibile con:
   - .pm-cta-morph-section
   - .pm-hero
========================================================= */

.pm-cta-morph-section,
.pm-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

/* contenuto sopra */
.pm-cta-morph-section > .elementor-container,
.pm-cta-morph-section > .e-con-inner,
.pm-hero > .elementor-container,
.pm-hero > .e-con-inner,
.pm-hero > .elementor-element:not(.elementor-widget-html) {
  position: relative !important;
  z-index: 2 !important;
}

/* widget html fullframe */
.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg),
.pm-hero .elementor-widget-html:has(.pm-morph-bg) {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) > .elementor-widget-container,
.pm-hero .elementor-widget-html:has(.pm-morph-bg) > .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* background SVG */
.pm-morph-bg {
  position: absolute !important;
  inset: -8% !important;
  width: 116% !important;
  height: 116% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  background: transparent !important;
  will-change: transform, opacity;
}

.morph-bg-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  background: transparent !important;
  pointer-events: none !important;
  overflow: visible !important;
  will-change: transform;
}

/* forme */
.morph-bg-svg .pm-shape {
  fill: #004B9B66;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

/* contenuto sopra */
.pm-cta-morph-section .elementor-widget-heading,
.pm-cta-morph-section .elementor-widget-button,
.pm-cta-morph-section .elementor-widget-text-editor,
.pm-hero .elementor-widget-heading,
.pm-hero .elementor-widget-button,
.pm-hero .elementor-widget-text-editor {
  position: relative !important;
  z-index: 3 !important;
}

/* =========================================================
   CSS animation fallback
   Attiva solo se il body NON ha la classe .pm-gsap-ready
   Così se GSAP sta animando, il CSS non gli rompe il cazzo.
========================================================= */

body:not(.pm-gsap-ready) .morph-bg-svg .pm-s1 {
  animation: pmMorphOne 5.5s ease-in-out infinite alternate;
}

body:not(.pm-gsap-ready) .morph-bg-svg .pm-s2 {
  animation: pmMorphTwo 6.2s ease-in-out infinite alternate;
}

body:not(.pm-gsap-ready) .morph-bg-svg .pm-s3 {
  animation: pmMorphThree 7.4s ease-in-out infinite alternate;
}

body:not(.pm-gsap-ready) .morph-bg-svg .pm-s4 {
  animation: pmMorphFour 6.8s ease-in-out infinite alternate;
}

/* movimento globale leggerissimo dello SVG */
body:not(.pm-gsap-ready) .morph-bg-svg {
  animation: pmMorphSvgFloat 12s ease-in-out infinite alternate;
}

/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes pmMorphSvgFloat {
  0% {
    transform: translate3d(-1.5%, 1%, 0) scale(1.02);
  }

  50% {
    transform: translate3d(1.5%, -1%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-1%, -0.5%, 0) scale(1.03);
  }
}

@keyframes pmMorphOne {
  0% {
    transform: scale(0.96) translate3d(-8px, 8px, 0) rotate(-3deg);
    opacity: 0.32;
  }

  50% {
    transform: scale(1.12) translate3d(10px, -10px, 0) rotate(3deg);
    opacity: 0.92;
  }

  100% {
    transform: scale(1.02) translate3d(-4px, 6px, 0) rotate(-1deg);
    opacity: 0.42;
  }
}

@keyframes pmMorphTwo {
  0% {
    transform: scale(1) translate3d(10px, -6px, 0) rotate(2deg);
    opacity: 0.28;
  }

  50% {
    transform: scale(1.14) translate3d(-12px, 10px, 0) rotate(-4deg);
    opacity: 0.9;
  }

  100% {
    transform: scale(0.98) translate3d(6px, -8px, 0) rotate(1deg);
    opacity: 0.38;
  }
}

@keyframes pmMorphThree {
  0% {
    transform: scale(0.98) translate3d(-6px, -8px, 0) rotate(-2deg);
    opacity: 0.26;
  }

  50% {
    transform: scale(1.1) translate3d(12px, 10px, 0) rotate(4deg);
    opacity: 0.86;
  }

  100% {
    transform: scale(1) translate3d(-10px, -4px, 0) rotate(-1deg);
    opacity: 0.36;
  }
}

@keyframes pmMorphFour {
  0% {
    transform: scale(0.95) translate3d(8px, 8px, 0) rotate(2deg);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.18) translate3d(-10px, -12px, 0) rotate(-5deg);
    opacity: 0.95;
  }

  100% {
    transform: scale(1) translate3d(6px, -4px, 0) rotate(1deg);
    opacity: 0.4;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .pm-morph-bg {
    inset: -14% !important;
    width: 128% !important;
    height: 128% !important;
  }

  .morph-bg-svg .pm-shape {
    fill: #004B9B55;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .morph-bg-svg,
  .morph-bg-svg .pm-shape {
    animation: none !important;
    transform: none !important;
  }
}

/* Industries — container — .pm-auto-industries-container-004 */
.pm-auto-industries-container-004 {
    visibility: hidden;
    display: none;
}

/* Industries — impostazioni pagina/documento */
.elementor-page-228 .pm-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.elementor-page-228 .pm-hero > .elementor-element:not(.elementor-widget-html),
.elementor-page-228 .pm-hero > .elementor-container,
.elementor-page-228 .pm-hero > .e-con-inner {
  position: relative !important;
  z-index: 2 !important;
}

.elementor-page-228 .pm-hero .elementor-widget-html {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.elementor-page-228 .pm-hero .elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-page-228 .pm-morph-bg {
  position: absolute !important;
  inset: -8% !important;
  width: 116% !important;
  height: 116% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  background: transparent !important;
  will-change: transform, opacity;
}

.elementor-page-228 .morph-bg-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  overflow: visible !important;
  pointer-events: none !important;
  will-change: transform;
}

.elementor-page-228 .morph-bg-svg .pm-shape {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

.elementor-page-228 .e-loop-item .e-con-inner,
.elementor-page-228 .e-loop-item .pm-square-image,
.elementor-page-228 .e-loop-item .elementor-widget-theme-post-title,
.elementor-page-228 .e-loop-item .elementor-widget-button {
  will-change: transform, opacity;
}


/* ==========================================================
   05. SINGLE INDUSTRY
========================================================== */

/* Single – Industry — widget: heading — .pm-auto-single-industry-heading-001 */
.pm-auto-single-industry-heading-001 span {
    color: #35C8A0!important;
}

/* Single – Industry — widget: heading — .pm-auto-single-industry-heading-002 */
.pm-auto-single-industry-heading-002 span {
    color: #35C8A0!important;
}

/* Single – Industry — widget: shortcode */
.pm-industry-challenges-text {
  width: 100%;
  max-width: 960px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Manrope';
  font-size:1.1rem!important;
}

.pm-industry-challenge-line {
  margin: 0 0 16px;
  font-size: 1.1rem!important;
  line-height: 1.34;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.pm-industry-challenge-line:last-child {
  margin-bottom: 0;
}

.pm-industry-challenge-line strong {
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 767px) {
  .pm-industry-challenges-text {
    max-width: none;
  }

  .pm-industry-challenge-line {
    font-size: 15px;
    line-height: 1.42;
    margin-bottom: 14px;
  }
}

/* Single – Industry — widget: shortcode */
/* ================================
   PLAYMOOVE - INDUSTRY FEATURES
================================ */

.pm-industry-features {
  width: 100%;
  color: #ffffff;
  font-family: 'Manrope';
}

.pm-industry-features__title {
  margin: 0 0 clamp(34px, 4vw, 54px);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.pm-industry-features__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
}

.pm-industry-feature {
  min-height: 104px;
  padding: 0 clamp(26px, 2.4vw, 42px);
  border-left: 1px solid rgba(0, 183, 159, 0.95);
}

.pm-industry-feature:first-child {
  padding-left: 0;
  border-left: 0;
}

.pm-industry-feature__title {
  margin: 0;
  font-size: clamp(17px, 1.28vw, 23px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.pm-industry-feature__text {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.pm-industry-feature__text p {
  margin: 0;
  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.pm-industry-feature__text p + p {
  margin-top: 0.7em;
}

/* Responsive */

@media (max-width: 1024px) {
  .pm-industry-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .pm-industry-feature:nth-child(3n + 1) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .pm-industry-features__title {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .pm-industry-features__grid {
    grid-template-columns: 1fr;
  }

  .pm-industry-feature,
  .pm-industry-feature:first-child,
  .pm-industry-feature:nth-child(3n + 1) {
    min-height: auto;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(0, 183, 159, 0.55);
  }

  .pm-industry-feature:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .pm-industry-feature__title {
    font-size: 18px;
  }

  .pm-industry-feature__text p {
    font-size: 17px;
    line-height: 1.25;
  }
}

/* Single – Industry — container — .pm-auto-single-industry-container-010 */
.pm-auto-single-industry-container-010 {
    position: relative;
}

.pm-auto-single-industry-container-010 .e-con-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
}


/* ==========================================================
   06. SINGLE SOLUTION
========================================================== */

/* Single – Solution — container — .pm-auto-single-solution-container-001 */
.pm-auto-single-solution-container-001 {
    background-size: cover!important;
    background-position: center!important;
}

/* Single – Solution — widget: heading — .pm-auto-single-solution-heading-001 */
.pm-auto-single-solution-heading-001 span {
    color: #35C8A0!important;
}

/* Single – Solution — widget: heading — .pm-auto-single-solution-heading-002 */
.pm-auto-single-solution-heading-002 span {
    color: #35C8A0!important;
}

/* Single – Solution — widget: heading — .pm-auto-single-solution-heading-003 */
.pm-auto-single-solution-heading-003 span {
    color: #35C8A0!important;
}

/* Single – Solution — widget: html */
/* ================================
   PLAYMOOVE - Solution Enables Morph SVG
================================ */

.pm-morph-bg {
  position: relative;
  width: min(520px, 100%);
  height: 260px;
  margin-top: 46px;
  margin-left: -36px;
  pointer-events: none;
  overflow: visible;
  opacity: 1;
  z-index: 0;
}

.pm-morph-bg .morph-bg-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.pm-morph-bg .pm-shape {
  transform-origin: center;
  opacity: 0;
  visibility: hidden;
}

.pm-morph-bg .pm-shape polygon,
.pm-morph-bg .pm-shape path,
.pm-morph-bg .pm-shape circle {
  fill: #dff9f4;
}

.pm-morph-bg .pm-shape.is-visible {
  visibility: visible;
}

/* Variante più presente ma sempre soft */
.pm-morph-bg .pm-shape.is-primary polygon,
.pm-morph-bg .pm-shape.is-primary path,
.pm-morph-bg .pm-shape.is-primary circle {
  fill: #d8f7f1;
}

.pm-morph-bg .pm-shape.is-secondary polygon,
.pm-morph-bg .pm-shape.is-secondary path,
.pm-morph-bg .pm-shape.is-secondary circle {
  fill: #2cc18a;
}

/* Glow sotto, molto leggero */
.pm-morph-bg::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 16%;
  width: 58%;
  height: 62%;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(44, 193, 138, 0.14) 0%,
    rgba(44, 193, 138, 0.075) 38%,
    rgba(44, 193, 138, 0) 74%
  );
  filter: blur(24px);
  z-index: -1;
}

/* Mobile */

@media (max-width: 1024px) {
  .pm-morph-bg {
    width: min(430px, 92%);
    height: 230px;
    margin-top: 36px;
    margin-left: -28px;
  }
}

@media (max-width: 767px) {
  .pm-morph-bg {
    width: 320px;
    height: 190px;
    margin-top: 32px;
    margin-left: -44px;
    opacity: 0.78;
  }
}

/* Single – Solution — widget: shortcode */
/* ================================
   PLAYMOOVE - Solution Enables Accordion
   New white layout
================================ */

/* Wrapper opzionale se lo shortcode è dentro una colonna Elementor */
.pm-solution-enables-wrap,
.pm-solution-enables-section {
  width: 100%;
  position: relative;
  background: #ffffff;
  color: #121a2f;
  font-family: "Manrope", sans-serif;
}

/* Titolo sinistro, se usi una classe dedicata */
.pm-solution-enables-heading,
.pm-solution-enables-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #121a2f;
}

/* ================================
   Accordion
================================ */

.pm-solution-enables-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #121a2f;
  font-family: "Manrope", sans-serif;
}

/* Item */

.pm-solution-enable {
  position: relative;
  border: 0;
  border-bottom: 1px solid rgba(0, 190, 150, 0.28);
  padding: 0;
  overflow: hidden;
}

/* Summary / Title row */

.pm-solution-enable__summary {
  list-style: none;
  cursor: pointer;
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.pm-solution-enable__summary::-webkit-details-marker {
  display: none;
}

.pm-solution-enable__summary::marker {
  display: none;
  content: "";
}

/* Title */

.pm-solution-enable__title {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  line-height: 1.22;
  font-weight: 700;
  color: #00b996;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

/* Plus / Minus icon */

.pm-solution-enable__icon {
  width: 18px;
  height: 18px;
  margin: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  transform: none !important;
}

.pm-solution-enable__icon svg {
  display: none !important;
}

.pm-solution-enable__icon::before,
.pm-solution-enable__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #00b996;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background-color 0.25s ease;
}

.pm-solution-enable__icon::before {
  transform: translate(-50%, -50%);
}

.pm-solution-enable__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Open state: il + diventa un vero - */
.pm-solution-enable[open] .pm-solution-enable__icon::after,
.pm-solution-enable.is-open .pm-solution-enable__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.pm-solution-enable[open] .pm-solution-enable__title,
.pm-solution-enable.is-open .pm-solution-enable__title {
  color: #00b996;
}

/* Content */

.pm-solution-enable__content {
  max-width: 860px;
  margin: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  will-change: height, opacity;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: #172238;
}

.pm-solution-enable__content-inner {
  padding: 0 56px 22px 0;
}

.pm-solution-enable__content p {
  margin: 0;
}

.pm-solution-enable__content p + p {
  margin-top: 12px;
}

/* Hover desktop */

@media (hover: hover) {
  .pm-solution-enable__summary:hover .pm-solution-enable__title {
    color: #121a2f;
    transform: translateX(4px);
  }

  .pm-solution-enable__summary:hover .pm-solution-enable__icon::before,
  .pm-solution-enable__summary:hover .pm-solution-enable__icon::after {
    background: #121a2f;
  }
}

/* ================================
   Optional pale decorative shape
   Da applicare alla sezione Elementor se vuoi la forma chiara a sinistra:
   classe: pm-solution-enables-bg-shape
================================ */

.pm-solution-enables-bg-shape {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pm-solution-enables-bg-shape::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 36px;
  width: 420px;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='420' height='420' viewBox='0 0 420 420' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M162 50C162 34.536 174.536 22 190 22H215C230.464 22 243 34.536 243 50V100C243 115.464 255.536 128 271 128H321C336.464 128 349 140.536 349 156V181C349 196.464 336.464 209 321 209H271C255.536 209 243 221.536 243 237V287C243 302.464 230.464 315 215 315H190C174.536 315 162 302.464 162 287V237C162 221.536 149.464 209 134 209H84C68.536 209 56 196.464 56 181V156C56 140.536 68.536 128 84 128H134C149.464 128 162 115.464 162 100V50Z' fill='%23E2FBF5'/%3E%3C/svg%3E");
}

.pm-solution-enables-bg-shape > * {
  position: relative;
  z-index: 1;
}

/* ================================
   Mobile
================================ */

@media (max-width: 1024px) {
  .pm-solution-enable__summary {
    min-height: 64px;
    padding: 17px 0;
  }

  .pm-solution-enable__content {
    max-width: 100%;
  }

  .pm-solution-enable__content-inner {
    padding-right: 44px;
  }
}

@media (max-width: 767px) {
  .pm-solution-enables-accordion {
    gap: 0;
  }

  .pm-solution-enable__summary {
    min-height: 62px;
    gap: 18px;
    padding: 16px 0;
  }

  .pm-solution-enable__title {
    font-size: 17px;
    line-height: 1.25;
  }

  .pm-solution-enable__content {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
  }

  .pm-solution-enable__content-inner {
    padding: 0 34px 20px 0;
  }

  .pm-solution-enable__icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .pm-solution-enable__icon::before,
  .pm-solution-enable__icon::after {
    width: 16px;
  }

  .pm-solution-enables-bg-shape::before {
    left: -180px;
    bottom: 20px;
    width: 360px;
    height: 360px;
    opacity: 0.42;
  }
}

/* Single – Solution — container — .pm-auto-single-solution-container-013 */
.pm-auto-single-solution-container-013 {
    position: relative;
}

.pm-auto-single-solution-container-013 .e-con-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Single – Solution — widget: html */
.pm-cta-morph-section {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

.pm-cta-morph-section > .elementor-container,
.pm-cta-morph-section > .e-con-inner {
  position: relative !important;
  z-index: 2 !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) > .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pm-morph-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  background: transparent !important;
  margin: 0!important;
}

.morph-bg-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  background: transparent !important;
  pointer-events: none !important;
}

/* FORME */
.morph-bg-svg .pm-shape {
  fill: #004B9B66;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

/* contenuto sopra */
.pm-cta-morph-section .elementor-widget-heading,
.pm-cta-morph-section .elementor-widget-button,
.pm-cta-morph-section .elementor-widget-text-editor {
  position: relative;
  z-index: 3;
}

/* animazioni leggere */
.morph-bg-svg .pm-s1 {
  animation: pmMorphOne 3s ease-in-out infinite alternate;
}

.morph-bg-svg .pm-s2 {
  animation: pmMorphTwo 3s ease-in-out infinite alternate;
}

.morph-bg-svg .pm-s3 {
  animation: pmMorphThree 5s ease-in-out infinite alternate;
}

.morph-bg-svg .pm-s4 {
  animation: pmMorphFour 4s ease-in-out infinite alternate;
}

@keyframes pmMorphOne {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.08) translate(1px, -1px) rotate(2deg);
    opacity: 1;
  }

  100% {
    transform: scale(1.02) translate(-1px, 1px) rotate(-1deg);
    opacity: 0.1;
  }
}

@keyframes pmMorphTwo {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.07) translate(-1px, 1px) rotate(-2deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.98) translate(1px, -1px) rotate(1deg);
    opacity: 0.1;
  }
}

@keyframes pmMorphThree {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.06) translate(1px, 1px) rotate(2deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.98) translate(-1px, -1px) rotate(-1deg);
    opacity: 0.1;
  }
}

@keyframes pmMorphFour {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.12) translate(-1px, 1px) rotate(-2deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.96) translate(1px, -1px) rotate(1deg);
    opacity: 0.1;
  }
}

/* Single – Solution — impostazioni pagina/documento */
/* ================================
   PLAYMOOVE - SINGLE SOLUTION FIX
   Accordion width + icons + morph CTA
================================ */

.single-solution .elementor-location-single,
.single-solution .elementor-279 {
  overflow-x: hidden;
}

/* ================================
   ACCORDION WIDTH
================================ */

.single-solution .pm-solution-enables-accordion {
  width: 100% !important;
  max-width: none !important;
}

.single-solution .pm-solution-enables-accordion,
.single-solution .pm-solution-enables-accordion *,
.single-solution .pm-solution-enables-accordion *::before,
.single-solution .pm-solution-enables-accordion *::after {
  box-sizing: border-box;
}

.single-solution .pm-solution-enables-accordion {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
}

.single-solution .pm-solution-enable {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(0, 184, 146, 0.22);
}

.single-solution .pm-solution-enable__summary {
  width: 100% !important;
  min-width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 18px !important;
  align-items: center !important;
  column-gap: 24px !important;
  padding: 18px 0 !important;
  cursor: pointer;
  list-style: none;
}

.single-solution .pm-solution-enable__summary::-webkit-details-marker {
  display: none;
}

.single-solution .pm-solution-enable__summary::marker {
  content: "";
}

.single-solution .pm-solution-enable__title {
  display: block;
  min-width: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem!important;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #00b892;
}

.single-solution .pm-solution-enable__content {
  width: 100% !important;
  max-width: none !important;
}

.single-solution .pm-solution-enable__content-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 42px 22px 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem!important;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(18, 26, 47, 0.78);
}

/* ================================
   ACCORDION ICONS
   Importante: bypassiamo SVG + inline GSAP.
================================ */

.single-solution .pm-solution-enable__icon {
  position: relative !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  translate: none !important;
  rotate: none !important;
  scale: none !important;
}

.single-solution .pm-solution-enable__icon svg {
  display: none !important;
}

.single-solution .pm-solution-enable__icon::before,
.single-solution .pm-solution-enable__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #00b892;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.single-solution .pm-solution-enable__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.single-solution .pm-solution-enable.is-open .pm-solution-enable__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* ================================
   MORPH BACKGROUND BASE
================================ */

.single-solution .pm-morph-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  overflow: hidden !important;
  z-index: 0 !important;
}

.single-solution .pm-morph-bg .morph-bg-svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.single-solution .pm-morph-bg .pm-shape {
  transform-box: fill-box;
  transform-origin: center;
}

/* Standard morph, sezione accordion */
.single-solution .pm-morph-bg .pm-shape.is-primary {
  fill: #00b892;
}

.single-solution .pm-morph-bg .pm-shape.is-secondary {
  fill: #121a2f;
}

/* ================================
   FINAL CTA MORPH
================================ */

.single-solution .pm-cta-morph-section,
.single-solution .pm-home-cta,
.single-solution .elementor-element-faf5ac6 {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #ffffff !important;
}

.single-solution .pm-cta-morph-section > .e-con-inner,
.single-solution .pm-home-cta > .e-con-inner,
.single-solution .elementor-element-faf5ac6 > .e-con-inner {
  position: relative !important;
  z-index: 2 !important;
}

.single-solution .pm-cta-morph-section .elementor-widget-heading,
.single-solution .pm-cta-morph-section .elementor-widget-button,
.single-solution .pm-home-cta .elementor-widget-heading,
.single-solution .pm-home-cta .elementor-widget-button,
.single-solution .elementor-element-faf5ac6 .elementor-widget-heading,
.single-solution .elementor-element-faf5ac6 .elementor-widget-button {
  position: relative !important;
  z-index: 3 !important;
}

.single-solution .pm-cta-morph-section .elementor-widget-html,
.single-solution .pm-home-cta .elementor-widget-html,
.single-solution .elementor-element-faf5ac6 .elementor-widget-html {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
}

.single-solution .pm-cta-morph-section .elementor-widget-html > .elementor-widget-container,
.single-solution .pm-home-cta .elementor-widget-html > .elementor-widget-container,
.single-solution .elementor-element-faf5ac6 .elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
}

/* ================================
   FINAL CTA MORPH - visual only
   Niente opacity !important, altrimenti GSAP non anima.
================================ */

.single-solution .pm-cta-morph-section .pm-morph-bg .pm-shape,
.single-solution .pm-home-cta .pm-morph-bg .pm-shape,
.single-solution .elementor-element-faf5ac6 .pm-morph-bg .pm-shape {
  will-change: transform, opacity;
}

.single-solution .pm-cta-morph-section .pm-morph-bg .pm-shape.is-primary,
.single-solution .pm-home-cta .pm-morph-bg .pm-shape.is-primary,
.single-solution .elementor-element-faf5ac6 .pm-morph-bg .pm-shape.is-primary {
  fill: #00b892;
}

.single-solution .pm-cta-morph-section .pm-morph-bg .pm-shape.is-tertiary,
.single-solution .pm-home-cta .pm-morph-bg .pm-shape.is-tertiary,
.single-solution .elementor-element-faf5ac6 .pm-morph-bg .pm-shape.is-tertiary {
  fill: #121a2f;
}

/* Mobile */
@media (max-width: 767px) {
  .single-solution .pm-solution-enable__summary {
    padding: 16px 0 !important;
    column-gap: 18px !important;
  }

  .single-solution .pm-solution-enable__content-inner {
    padding-right: 28px;
  }

  .single-solution .pm-cta-morph-section,
  .single-solution .pm-home-cta,
  .single-solution .elementor-element-faf5ac6 {
    min-height: 280px;
  }
}


/* ==========================================================
   07. PLATFORM
========================================================== */

/* Platform — widget: heading — .pm-auto-platform-heading-001 */
.pm-auto-platform-heading-001 span {
    color: #35C8A0!important;
}

/* Platform — widget: html */
/* ================================
   PLAYMOOVE - Platform SVG Route
================================ */

.svg-anim-1 {
  position: relative;
  overflow: visible !important;
}

.svg-anim-1 .e-con-inner {
  width: 100%;
  max-width: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-anim-1 .elementor-widget-html,
.svg-anim-1 .elementor-widget-container {
  width: 100%;
  overflow: visible !important;
}

.pm-platform-illustration--route {
  width: min(100%, 560px);
  max-width: 560px;
  position: relative;
  transform: translateX(-2vw);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.pm-platform-illustration--route svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* ombra morbida sui badge bianchi */
.pm-platform-illustration--route svg > rect[fill="white"] {
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.22));
}

/* migliora le trasformazioni SVG */
.pm-platform-illustration--route svg path,
.pm-platform-illustration--route svg rect,
.pm-platform-illustration--route svg circle,
.pm-platform-illustration--route svg line,
.pm-platform-illustration--route svg g {
  transform-box: fill-box;
  transform-origin: center;
}

/* Mobile */
@media (max-width: 767px) {
  .pm-platform-illustration--route {
    width: 96%;
    max-width: 420px;
    transform: none;
  }
}

/* Platform — widget: html */
/* ================================
   PLAYMOOVE - Platform SVG 1 Route
================================ */

.svg-anim-1 {
  position: relative;
  overflow: visible !important;
}

.svg-anim-1 .e-con-inner {
  width: 100%;
  max-width: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-platform-illustration--route {
  width: min(100%, 560px);
  max-width: 560px;
  position: relative;
  transform: translateX(-2vw);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.pm-platform-illustration--route svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* evita tagli strani di Elementor */
.svg-anim-1,
.svg-anim-1 .elementor-widget-html,
.svg-anim-1 .elementor-widget-container {
  overflow: visible !important;
}

/* più leggibile sul fondo scuro */
.pm-platform-illustration--route svg rect[fill="white"] {
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.22));
}

.pm-platform-illustration--route svg circle[fill="#004B9B"],
.pm-platform-illustration--route svg circle[fill="#2F6BFF"],
.pm-platform-illustration--route svg circle[fill="#00B892"],
.pm-platform-illustration--route svg circle[fill="#00D065"] {
  transform-box: fill-box;
  transform-origin: center;
}

/* Mobile */
@media (max-width: 767px) {
  .pm-platform-illustration--route {
    width: 96%;
    max-width: 420px;
    transform: none;
  }
}

/* Platform — widget: html */
/* ================================
   PLAYMOOVE - Platform SVG 2 Fleet
================================ */

.svg-anim-2 {
  position: relative;
  overflow: visible !important;
}

.svg-anim-2 .e-con-inner {
  width: 100%;
  max-width: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-anim-2 .elementor-widget-html,
.svg-anim-2 .elementor-widget-container {
  width: 100%;
  overflow: visible !important;
}

.pm-platform-illustration--fleet {
  width: min(100%, 620px);
  max-width: 620px;
  position: relative;
  transform: translateX(2vw);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.pm-platform-illustration--fleet svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Badge / cards bianche */
.pm-platform-illustration--fleet svg > rect[fill="white"] {
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.22));
}

/* trasformazioni SVG più stabili */
.pm-platform-illustration--fleet svg path,
.pm-platform-illustration--fleet svg rect,
.pm-platform-illustration--fleet svg circle,
.pm-platform-illustration--fleet svg line,
.pm-platform-illustration--fleet svg g {
  transform-box: fill-box;
  transform-origin: center;
}

/* Mobile */
@media (max-width: 767px) {
  .pm-platform-illustration--fleet {
    width: 98%;
    max-width: 460px;
    transform: none;
  }
}

/* Platform — widget: html */
/* ================================
   PLAYMOOVE - Platform SVG 3 Layers
================================ */

.svg-anim-3 {
  position: relative;
  overflow: visible !important;
}

.svg-anim-3 .e-con-inner {
  width: 100%;
  max-width: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-anim-3 .elementor-widget-html,
.svg-anim-3 .elementor-widget-container {
  width: 100%;
  overflow: visible !important;
}

.pm-platform-illustration--layers {
  width: min(100%, 620px);
  max-width: 620px;
  position: relative;
  transform: translateX(-1vw);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.pm-platform-illustration--layers svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.pm-platform-illustration--layers svg path,
.pm-platform-illustration--layers svg circle,
.pm-platform-illustration--layers svg g {
  transform-box: fill-box;
  transform-origin: center;
}

@media (max-width: 767px) {
  .pm-platform-illustration--layers {
    width: 98%;
    max-width: 460px;
    transform: none;
  }
}

/* Platform — widget: html */
/* ================================
   PLAYMOOVE - Platform SVG 4 Data
================================ */

.svg-anim-4 {
  position: relative;
  overflow: visible !important;
}

.svg-anim-4 .e-con-inner {
  width: 100%;
  max-width: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-anim-4 .elementor-widget-html,
.svg-anim-4 .elementor-widget-container {
  width: 100%;
  overflow: visible !important;
}

.pm-platform-illustration--data {
  width: min(100%, 520px);
  max-width: 520px;
  position: relative;
  transform: translateX(1vw);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.pm-platform-illustration--data svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.pm-platform-illustration--data svg path,
.pm-platform-illustration--data svg rect,
.pm-platform-illustration--data svg circle,
.pm-platform-illustration--data svg ellipse,
.pm-platform-illustration--data svg g {
  transform-box: fill-box;
  transform-origin: center;
}

.pm-platform-illustration--data svg > rect[fill="white"] {
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.24));
}

@media (max-width: 767px) {
  .pm-platform-illustration--data {
    width: 98%;
    max-width: 420px;
    transform: none;
  }
}

/* Platform — container — .pm-auto-platform-container-015 */
.pm-auto-platform-container-015 {
    position: relative;
}

.pm-auto-platform-container-015 .e-con-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Platform — impostazioni pagina/documento */
/* ================================
   PLAYMOOVE - Platform Page Layout Refinement
   Alternating sections + centered SVGs
================================ */

.elementor-296 {
  overflow-x: hidden;
}

/* ================================
   HERO
================================ */

.elementor-296 > .e-con:first-child {
  min-height: clamp(520px, 68vh, 720px);
  display: flex !important;
  justify-content: flex-end !important;
  padding-top: clamp(120px, 15vh, 190px) !important;
  padding-bottom: clamp(82px, 10vh, 128px) !important;
}

.elementor-296 > .e-con:first-child .elementor-widget-heading,
.elementor-296 > .e-con:first-child .elementor-widget-text-editor {
  width: min(100%, 1640px);
  margin-inline: auto;
}

.elementor-296 > .e-con:first-child h2 {
  max-width: 1640px;
}

.elementor-296 > .e-con:first-child .elementor-widget-text-editor {
  max-width: 1640px;
}

/* ================================
   PLATFORM ROWS
================================ */

.elementor-296 .pm-home-solutions {
  width: min(100%, 1640px);
  margin-inline: auto;

  padding-inline: clamp(28px, 4vw, 56px) !important;
  padding-top: clamp(76px, 6.4vw, 108px) !important;
  padding-bottom: clamp(76px, 6.4vw, 108px) !important;

  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(56px, 6.5vw, 112px);
  row-gap: 40px;
  align-items: center;
}

/* Prima sezione più vicina alla hero */
.elementor-296 .pm-home-solutions:first-of-type {
  padding-top: clamp(58px, 5vw, 84px) !important;
}

/* Ultima sezione più compatta prima del footer */
.elementor-296 .pm-home-solutions:last-of-type {
  padding-bottom: clamp(86px, 7vw, 116px) !important;
}

/* Colonne interne */
.elementor-296 .pm-home-solutions > .e-con,
.elementor-296 .pm-home-solutions > .e-con-full,
.elementor-296 .pm-home-solutions > .e-con-boxed {
  min-width: 0;
  align-self: center;
}

/* Elementor boxed inner fix */
.elementor-296 .pm-home-solutions .e-con-inner {
  width: 100%;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ================================
   ALTERNANZA SEZIONI
   1 visual sx / testo dx
   2 testo sx / visual dx
   3 visual sx / testo dx
   4 testo sx / visual dx
================================ */

/* SVG 1 */
.elementor-296 .pm-home-solutions:has(.svg-anim-1) .svg-anim-1 {
  order: 1;
}

.elementor-296 .pm-home-solutions:has(.svg-anim-1) > .e-con:not(.svg-anim-1),
.elementor-296 .pm-home-solutions:has(.svg-anim-1) > .e-con-full:not(.svg-anim-1),
.elementor-296 .pm-home-solutions:has(.svg-anim-1) > .e-con-boxed:not(.svg-anim-1) {
  order: 2;
}

/* SVG 2 */
.elementor-296 .pm-home-solutions:has(.svg-anim-2) .svg-anim-2 {
  order: 2;
}

.elementor-296 .pm-home-solutions:has(.svg-anim-2) > .e-con:not(.svg-anim-2),
.elementor-296 .pm-home-solutions:has(.svg-anim-2) > .e-con-full:not(.svg-anim-2),
.elementor-296 .pm-home-solutions:has(.svg-anim-2) > .e-con-boxed:not(.svg-anim-2) {
  order: 1;
}

/* SVG 3 */
.elementor-296 .pm-home-solutions:has(.svg-anim-3) .svg-anim-3 {
  order: 1;
}

.elementor-296 .pm-home-solutions:has(.svg-anim-3) > .e-con:not(.svg-anim-3),
.elementor-296 .pm-home-solutions:has(.svg-anim-3) > .e-con-full:not(.svg-anim-3),
.elementor-296 .pm-home-solutions:has(.svg-anim-3) > .e-con-boxed:not(.svg-anim-3) {
  order: 2;
}

/* SVG 4 */
.elementor-296 .pm-home-solutions:has(.svg-anim-4) .svg-anim-4 {
  order: 2;
}

.elementor-296 .pm-home-solutions:has(.svg-anim-4) > .e-con:not(.svg-anim-4),
.elementor-296 .pm-home-solutions:has(.svg-anim-4) > .e-con-full:not(.svg-anim-4),
.elementor-296 .pm-home-solutions:has(.svg-anim-4) > .e-con-boxed:not(.svg-anim-4) {
  order: 1;
}

/* ================================
   TEXT COLUMN
================================ */

.elementor-296 .pm-home-solutions .elementor-widget-heading,
.elementor-296 .pm-home-solutions .elementor-widget-text-editor {
  max-width: 560px;
}

.elementor-296 .pm-home-solutions h4 {
  margin-bottom: 16px !important;
}

.elementor-296 .pm-home-solutions h3 {
  margin-bottom: 22px !important;
}

.elementor-296 .pm-home-solutions .elementor-widget-text-editor {
  line-height: 1.48;
}

/* Copy sezione 1 leggermente più largo */
.elementor-296 .pm-home-solutions:has(.svg-anim-1) .elementor-widget-text-editor {
  max-width: 590px;
}

/* Testi centrati nella propria colonna, non attaccati al bordo */
.elementor-296 .pm-home-solutions > .e-con:not([class*="svg-anim"]),
.elementor-296 .pm-home-solutions > .e-con-full:not([class*="svg-anim"]),
.elementor-296 .pm-home-solutions > .e-con-boxed:not([class*="svg-anim"]) {
  justify-self: center;
  width: 100%;
}

/* ================================
   SVG COLUMNS
================================ */

.elementor-296 .svg-anim-1,
.elementor-296 .svg-anim-2,
.elementor-296 .svg-anim-3,
.elementor-296 .svg-anim-4 {
  width: 100%;
  min-width: 0;
  justify-self: center;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
}

.elementor-296 .svg-anim-1 .elementor-widget-html,
.elementor-296 .svg-anim-2 .elementor-widget-html,
.elementor-296 .svg-anim-3 .elementor-widget-html,
.elementor-296 .svg-anim-4 .elementor-widget-html,
.elementor-296 .svg-anim-1 .elementor-widget-container,
.elementor-296 .svg-anim-2 .elementor-widget-container,
.elementor-296 .svg-anim-3 .elementor-widget-container,
.elementor-296 .svg-anim-4 .elementor-widget-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}

/* ================================
   SVG SIZE NORMALIZATION
================================ */

.elementor-296 .pm-platform-illustration {
  margin-inline: auto;
  pointer-events: none;
  overflow: visible;

  /*
   * Non usare !important qui:
   * così GSAP può animare transform inline.
   */
  transform: none;
}

.elementor-296 .pm-platform-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* SVG 1 - route */
.elementor-296 .pm-platform-illustration--route {
  width: min(100%, 570px);
  max-width: 570px;
}

/* SVG 2 - fleet */
.elementor-296 .pm-platform-illustration--fleet {
  width: min(100%, 560px);
  max-width: 560px;
}

/* SVG 3 - layers */
.elementor-296 .pm-platform-illustration--layers {
  width: min(100%, 525px);
  max-width: 525px;
}

/* SVG 4 - data chart */
.elementor-296 .pm-platform-illustration--data {
  width: min(100%, 510px);
  max-width: 510px;
}

/* Correzioni ottiche per SVG specifici */
.elementor-296 .svg-anim-1 .pm-platform-illustration--route {
  translate: -1.5% 0;
}

.elementor-296 .svg-anim-2 .pm-platform-illustration--fleet {
  translate: 1.5% 0;
}

.elementor-296 .svg-anim-3 .pm-platform-illustration--layers {
  translate: -1% 0;
}

.elementor-296 .svg-anim-4 .pm-platform-illustration--data {
  translate: 2% 0;
}

/* ================================
   FOOTER DISTANCE
================================ */

.elementor-296 + footer,
.elementor-location-footer {
  margin-top: 0 !important;
}

/* ================================
   TABLET
================================ */

@media (max-width: 1024px) {
  .elementor-296 .pm-home-solutions {
    width: min(100%, 920px);
    grid-template-columns: 1fr;
    row-gap: 40px;

    padding-top: clamp(76px, 9vw, 104px) !important;
    padding-bottom: clamp(76px, 9vw, 104px) !important;
  }

  /*
   * Su tablet/mobile: visual prima del testo.
   * Qui sì, perché in colonna ha più senso.
   */
  .elementor-296 .svg-anim-1,
  .elementor-296 .svg-anim-2,
  .elementor-296 .svg-anim-3,
  .elementor-296 .svg-anim-4 {
    order: 1 !important;
  }

  .elementor-296 .pm-home-solutions > .e-con:not([class*="svg-anim"]),
  .elementor-296 .pm-home-solutions > .e-con-full:not([class*="svg-anim"]),
  .elementor-296 .pm-home-solutions > .e-con-boxed:not([class*="svg-anim"]) {
    order: 2 !important;
  }

  .elementor-296 .pm-home-solutions .elementor-widget-heading,
  .elementor-296 .pm-home-solutions .elementor-widget-text-editor {
    max-width: 680px;
    text-align: left;
  }

  .elementor-296 .pm-platform-illustration--route {
    max-width: 580px;
  }

  .elementor-296 .pm-platform-illustration--fleet {
    max-width: 560px;
  }

  .elementor-296 .pm-platform-illustration--layers {
    max-width: 520px;
  }

  .elementor-296 .pm-platform-illustration--data {
    max-width: 500px;
  }

  .elementor-296 .svg-anim-1 .pm-platform-illustration--route,
  .elementor-296 .svg-anim-2 .pm-platform-illustration--fleet,
  .elementor-296 .svg-anim-3 .pm-platform-illustration--layers,
  .elementor-296 .svg-anim-4 .pm-platform-illustration--data {
    translate: 0 0;
  }
}

html,
body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
}

body.elementor-page-296 .elementor-296 {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow-y: visible !important;
  overflow-x: hidden !important;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {
  .elementor-296 > .e-con:first-child {
    min-height: auto;
    padding-top: 132px !important;
    padding-bottom: 84px !important;
  }

  .elementor-296 .pm-home-solutions {
    width: 100%;
    padding-inline: 22px !important;
    padding-top: 68px !important;
    padding-bottom: 68px !important;
    row-gap: 32px;
  }

  .elementor-296 .pm-home-solutions h4 {
    margin-bottom: 14px !important;
  }

  .elementor-296 .pm-home-solutions h3 {
    margin-bottom: 20px !important;
  }

  .elementor-296 .pm-platform-illustration--route,
  .elementor-296 .pm-platform-illustration--fleet,
  .elementor-296 .pm-platform-illustration--layers,
  .elementor-296 .pm-platform-illustration--data {
    width: 100%;
    max-width: 420px;
  }
}


/* ==========================================================
   08. OUR APPROACH
========================================================== */

/* Our approach — container — .pm-auto-our-approach-container-013 */
.pm-auto-our-approach-container-013 {
    position: relative;
}

.pm-auto-our-approach-container-013 .e-con-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Our approach — impostazioni pagina/documento */
/* ================================
   PLAYMOOVE - APPROACH ANIMATION SUPPORT
================================ */

.pm-cta-morph-section.pm-home-cta,
.pm-approach-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  --pm-approach-glow-opacity: 0;
  --pm-approach-scan-x: -120%;
  --pm-approach-grid-opacity: 0;
}

.pm-cta-morph-section.pm-home-cta::before,
.pm-approach-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  opacity: var(--pm-approach-glow-opacity);
  background:
    radial-gradient(circle at 18% 22%, rgba(44, 193, 138, 0.34), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(43, 102, 255, 0.26), transparent 34%),
    linear-gradient(120deg, rgba(255,255,255,0.06), transparent 42%);
  filter: blur(10px);
  transition: opacity 0.3s ease;
}

.pm-cta-morph-section.pm-home-cta::after,
.pm-approach-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pm-approach-scan-x);
  width: 42%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.58;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.12) 42%,
    rgba(44,193,138,0.2) 52%,
    transparent 100%
  );
  transform: skewX(-16deg);
  mix-blend-mode: screen;
}

.pm-cta-morph-section.pm-home-cta > *,
.pm-approach-hero > * {
  position: relative;
  z-index: 2;
}

.pm-cta-morph-section.pm-home-cta .pm-morph-bg,
.pm-approach-hero .pm-morph-bg {
  z-index: 0 !important;
  will-change: transform, opacity, filter;
}

.pm-cta-morph-section.pm-home-cta .morph-bg-svg,
.pm-approach-hero .morph-bg-svg,
.pm-cta-morph-section.pm-home-cta .pm-shape,
.pm-approach-hero .pm-shape {
  will-change: transform, opacity;
  transform-box: fill-box;
  transform-origin: center;
}

.pm-approach-section {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  --pm-approach-section-shine: 0;
  --pm-approach-line-progress: 0;
}

.pm-approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--pm-approach-section-shine);
  background:
    radial-gradient(circle at 8% 18%, rgba(44, 193, 138, 0.09), transparent 24%),
    radial-gradient(circle at 94% 64%, rgba(43, 102, 255, 0.08), transparent 26%);
}

.pm-approach-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 1px;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%) scaleY(var(--pm-approach-line-progress));
  transform-origin: top;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(44,193,138,0.38),
    rgba(43,102,255,0.28),
    transparent
  );
}

.pm-approach-section > * {
  position: relative;
  z-index: 1;
}

.pm-approach-phase {
  position: relative !important;
  will-change: transform, opacity, filter;
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.pm-approach-phase::before {
  content: "0" var(--pm-phase-index);
  position: absolute;
  top: clamp(16px, 2vw, 26px);
  right: clamp(18px, 2vw, 30px);
  z-index: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: currentColor;
  opacity: 0.045;
  pointer-events: none;
}

.pm-approach-phase:hover {
  box-shadow: 0 24px 70px rgba(18, 26, 47, 0.11);
}

.pm-approach-phase .e-svg-base,
.pm-approach-phase svg,
.pm-approach-phase .elementor-widget-heading,
.pm-approach-phase .elementor-widget-text-editor {
  will-change: transform, opacity, filter;
}

@media (max-width: 767px) {
  .pm-approach-section::after {
    left: 24px;
  }

  .pm-approach-phase::before {
    font-size: 42px;
    opacity: 0.04;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-cta-morph-section.pm-home-cta *,
  .pm-approach-hero *,
  .pm-approach-section *,
  .pm-approach-phase * {
    animation: none !important;
    transition: none !important;
  }
}


/* ==========================================================
   09. INSIGHTS
========================================================== */

/* Insights — widget: heading — .pm-auto-insights-heading-001 */
.pm-auto-insights-heading-001 span {
    color: #35C8A0!important;
}

/* Insights — widget: html */
/* ================================
   PLAYMOOVE - CTA MORPH BG
   Green organic motion version
================================ */
.pm-shape,
.pm-shape * {
  fill: #00bfa5 !important;
}

.pm-cta-morph-section {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

.pm-cta-morph-section > .elementor-container,
.pm-cta-morph-section > .e-con-inner {
  position: relative !important;
  z-index: 2 !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.pm-cta-morph-section .elementor-widget-html:has(.pm-morph-bg) > .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pm-morph-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  background: transparent !important;
}

.morph-bg-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  background: transparent !important;
  pointer-events: none !important;
}

/* ================================
   Forme SVG
================================ */

.morph-bg-svg .pm-shape {
  fill: #00bfa5;
  opacity: 0.18;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity, filter;
  filter: blur(0px);
}

/* Varianti colore / profondità */

.morph-bg-svg .pm-s1 {
  fill: #00bfa5;
  opacity: 0.18;
  animation: pmOrganicDriftOne 11s ease-in-out infinite;
}

.morph-bg-svg .pm-s2 {
  fill: #26d39b;
  opacity: 0.15;
  animation: pmOrganicDriftTwo 14s ease-in-out infinite;
  animation-delay: -3s;
}

.morph-bg-svg .pm-s3 {
  fill: #0aa889;
  opacity: 0.13;
  animation: pmOrganicDriftThree 16s ease-in-out infinite;
  animation-delay: -6s;
}

.morph-bg-svg .pm-s4 {
  fill: #48e0b0;
  opacity: 0.16;
  animation: pmOrganicDriftFour 13s ease-in-out infinite;
  animation-delay: -2s;
}

/* contenuto sopra */

.pm-cta-morph-section .elementor-widget-heading,
.pm-cta-morph-section .elementor-widget-button,
.pm-cta-morph-section .elementor-widget-text-editor {
  position: relative;
  z-index: 3;
}

/* ================================
   Animazioni organiche
   più morbide, meno flashing
================================ */

@keyframes pmOrganicDriftOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.12;
    filter: blur(0px);
  }

  30% {
    transform: translate3d(10px, -8px, 0) scale(1.08) rotate(1.5deg);
    opacity: 0.26;
    filter: blur(0.2px);
  }

  65% {
    transform: translate3d(-7px, 9px, 0) scale(1.14) rotate(-1deg);
    opacity: 0.2;
    filter: blur(0px);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.12;
    filter: blur(0px);
  }
}

@keyframes pmOrganicDriftTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
  }

  35% {
    transform: translate3d(-12px, 7px, 0) scale(1.12) rotate(-1.2deg);
    opacity: 0.24;
  }

  70% {
    transform: translate3d(8px, -10px, 0) scale(1.05) rotate(1.8deg);
    opacity: 0.18;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
  }
}

@keyframes pmOrganicDriftThree {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.09;
  }

  40% {
    transform: translate3d(7px, 12px, 0) scale(1.1) rotate(1deg);
    opacity: 0.22;
  }

  75% {
    transform: translate3d(-10px, -6px, 0) scale(1.16) rotate(-1.5deg);
    opacity: 0.16;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.09;
  }
}

@keyframes pmOrganicDriftFour {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.11;
  }

  32% {
    transform: translate3d(-8px, -11px, 0) scale(1.15) rotate(-1deg);
    opacity: 0.25;
  }

  68% {
    transform: translate3d(11px, 8px, 0) scale(1.07) rotate(1.4deg);
    opacity: 0.19;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.11;
  }
}

/* Riduzione movimento */

@media (prefers-reduced-motion: reduce) {
  .morph-bg-svg .pm-shape {
    animation: none !important;
    opacity: 0.16;
  }
}

/* Insights — widget: heading — .pm-auto-insights-heading-002 */
.pm-auto-insights-heading-002 span {
    color: #35C8A0!important;
}


/* ==========================================================
   10. COMPANY
========================================================== */

/* Company — widget: heading — .pm-auto-company-heading-002 */
.pm-auto-company-heading-002 span {
    color: #35C8A0!important;
}

/* Company — widget: heading — .pm-auto-company-heading-003 */
.pm-auto-company-heading-003 span {
    color: #35C8A0!important;
}

/* Company — container */
/* ================================
   PLAYMOOVE - History Timeline
================================ */

.pm-history {
  --pm-history-gap: clamp(32px, 6vw, 20px);
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--pm-history-gap);
  color: #ffffff;
}

/* singolo item */
.pm-history-item {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
}

/* badge anno */
.pm-history-year, .pm-history-year p  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 !important;
  padding: 5px 8px;
  border-radius: 6px;
  background: #00d4b3;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* label verde */
.pm-history-label {
  margin: 0 0 14px 0 !important;
  color: #00d4b3;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* testo */
.pm-history-text {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", sans-serif;
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.45;
  font-weight: 400;
}

.pm-history-text p {
  margin: 0 !important;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1024px) {
  .pm-history {
    gap: 40px;
  }

  .pm-history-item {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .pm-history {
    display: flex !important;
    flex-direction: column;
    padding-left: 0;
  }

  .pm-history::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 1px;
    height: auto;
  }

  .pm-history-item {
    position: relative;
  }

  .pm-history-year {
    margin-bottom: 14px !important;
  }

  .pm-history-item::before {
    content: "";
    position: absolute;
    top: 11px;
    left: -22px;
    width: 22px;
    height: 1px;
    background: #2878ff;
    display: none;
  }
}

/* Company — widget: heading — .pm-auto-company-heading-009 */
.pm-auto-company-heading-009 span {
    color: #35C8A0!important;
}

/* Company — widget: image-box — .pm-auto-company-image-box-001 */
.pm-auto-company-image-box-001 img {
  border-radius: 999px;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
      height: auto!important;
}

/* Company — widget: image-box — .pm-auto-company-image-box-002 */
.pm-auto-company-image-box-002 img {
  border-radius: 999px;
  object-fit: cover;
  display: block;
    aspect-ratio: 1/1;
        height: auto!important;
}

/* Company — widget: image-box — .pm-auto-company-image-box-003 */
.pm-auto-company-image-box-003 img {
  border-radius: 999px;
  object-fit: cover;
  display: block;
    aspect-ratio: 1/1;
        height: auto!important;
}

/* Company — widget: image-box — .pm-auto-company-image-box-004 */
.pm-auto-company-image-box-004 img {
  border-radius: 999px;
  object-fit: cover;
  display: block;
    aspect-ratio: 1/1;
        height: auto!important;
}

/* Company — widget: image-box — .pm-auto-company-image-box-005 */
.pm-auto-company-image-box-005 img {
  border-radius: 999px;
  object-fit: cover;
  display: block;
    aspect-ratio: 1/1;
        height: auto!important;
}

/* Company — widget: image-box — .pm-auto-company-image-box-006 */
.pm-auto-company-image-box-006 img {
  border-radius: 999px;
  object-fit: cover;
  display: block;
    aspect-ratio: 1/1;
    height: auto!important;
}


/* ==========================================================
   11. CONTACT
========================================================== */

/* Contact — widget: heading — .pm-auto-contact-heading-002 */
.pm-auto-contact-heading-002 span {
    color: #35C8A0!important;
}

/* Contact — widget: heading — .pm-auto-contact-heading-003 */
.pm-auto-contact-heading-003 span {
    color: #35C8A0!important;
}

/* Contact — widget: html */
/* ================================
   PLAYMOOVE Contact Form - HubSpot states
================================ */

.pm-contact-form {
  position: relative;
}

/* Honeypot */
.pm-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Error message */
.pm-form-message {
  display: none;
  width: 100%;
  margin-top: 24px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.pm-form-message--error {
  color: #ff5b5b;
}

.pm-contact-form.is-error .pm-form-message--error {
  display: block;
}

/* Loading state */
.pm-form-submit.is-loading {
  opacity: 0.65;
  cursor: wait;
}

.pm-form-submit:disabled {
  pointer-events: none;
}

/* Invalid fields */
.pm-field-error {
  border-color: #ff5b5b !important;
}

/* Privacy consent */
.pm-contact-form .pm-form-field--consent {
  width: 100%;
  margin-top: 22px;
}

.pm-contact-form .pm-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: inherit;
  cursor: pointer;
}

.pm-contact-form .pm-form-consent input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;
  padding: 0 !important;
  margin: 2px 0 0 0 !important;
  border-radius: 3px !important;
  flex: 0 0 16px;
  accent-color: #00bfa5;
}

.pm-contact-form .pm-form-consent span {
  display: block;
  flex: 1;
}

.pm-contact-form .pm-form-consent a {
  color: #00bfa5;
  text-decoration: none;
  font-weight: 700;
}

.pm-contact-form .pm-form-consent a:hover {
  text-decoration: underline;
}

/* Success overlay */
.pm-form-success-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 56px);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 191, 165, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: inherit;
}

.pm-contact-form.is-success .pm-form-success-overlay {
  display: flex;
}

.pm-form-success-card {
  width: min(100%, 620px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(0, 191, 165, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 90px rgba(18, 26, 47, 0.12);
  text-align: center;
  font-family: "Manrope", sans-serif;
  color: #121a2f;
}

.pm-form-success-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 191, 165, 0.12);
  color: #00bfa5;
}

.pm-form-success-icon svg {
  width: 26px;
  height: 26px;
}

.pm-form-success-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pm-form-success-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00bfa5;
}

.pm-form-success-card h3 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #121a2f;
}

.pm-form-success-card p {
  margin: 0 auto 12px;
  max-width: 520px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: rgba(18, 26, 47, 0.72);
}

.pm-form-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pm-form-success-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #121a2f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.pm-form-success-link:hover {
  transform: translateY(-2px);
  background: #00bfa5;
  color: #ffffff;
}

.pm-form-success-link--secondary {
  background: transparent;
  color: #121a2f;
  border: 1px solid rgba(18, 26, 47, 0.18);
}

.pm-form-success-link--secondary:hover {
  background: rgba(0, 191, 165, 0.08);
  border-color: rgba(0, 191, 165, 0.32);
  color: #121a2f;
}

/* Mobile */
@media (max-width: 767px) {
  .pm-form-success-overlay {
    align-items: flex-start;
    padding: 20px;
  }

  .pm-form-success-card {
    border-radius: 22px;
  }

  .pm-form-success-actions {
    flex-direction: column;
  }

  .pm-form-success-link {
    width: 100%;
  }

  .pm-contact-form .pm-form-consent {
    font-size: 12px;
  }
}

/* Contact — widget: html */
/* ================================
   PLAYMOOVE CONTACT FORM - HTML
================================ */

.pm-contact-form-section {
  width: 100%;
  font-family: "Manrope", sans-serif;
  color: #121a2f;
}

.pm-contact-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 24px;
}

.pm-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Titles */
.pm-form-section-title {
  grid-column: 1 / -1;
  margin: 0 0 4px;

  display: flex;
  align-items: baseline;
  gap: 18px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.4vw, 28px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #121a2f;
}

.pm-form-section-title small {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(18, 26, 47, 0.42);
}

.pm-form-section-title--spaced,
.pm-form-section-title--requirements {
  margin-top: 26px;
}

/* Fields */
.pm-form-field {
  width: 100%;
}

.pm-form-field--full {
  grid-column: 1 / -1;
}

.pm-contact-form input,
.pm-contact-form select,
.pm-contact-form textarea {
  width: 100%;
  min-height: 56px;

  padding: 0 14px;
  border: 1px solid rgba(18, 26, 47, 0.18);
  border-radius: 7px;
  background-color: #ffffff;

  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #121a2f;

  outline: none;
  box-shadow: none;

  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.pm-contact-form textarea {
  min-height: 120px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: vertical;
}

.pm-contact-form input::placeholder,
.pm-contact-form textarea::placeholder {
  color: rgba(18, 26, 47, 0.42);
  opacity: 1;
}

.pm-contact-form select:invalid {
  color: rgba(18, 26, 47, 0.42);
}

/* Select custom arrow */
.pm-contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding-right: 44px;

  background-image:
    linear-gradient(45deg, transparent 50%, #121a2f 50%),
    linear-gradient(135deg, #121a2f 50%, transparent 50%);
  background-position:
    calc(100% - 26px) 50%,
    calc(100% - 20px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

/* Focus */
.pm-contact-form input:focus,
.pm-contact-form select:focus,
.pm-contact-form textarea:focus {
  border-color: rgba(0, 184, 146, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 184, 146, 0.12);
}

/* Invalid */
.pm-contact-form input:invalid:not(:placeholder-shown),
.pm-contact-form textarea:invalid:not(:placeholder-shown),
.pm-contact-form select:invalid.pm-touched {
  border-color: rgba(255, 74, 74, 0.65);
}

/* Actions */
.pm-form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

/* Submit */
.pm-form-submit {
  min-width: 130px;
  height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 0 22px 0 24px;
  border: 0;
  border-radius: 14px;

  background: linear-gradient(135deg, #315cff 0%, #00b892 100%);
  color: #ffffff;

  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;

  cursor: pointer;
  box-shadow: none;
  overflow: hidden;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.pm-form-submit svg {
  width: 26px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
}

.pm-form-submit svg path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pm-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 184, 146, 0.22);
  filter: saturate(1.05);
}

.pm-form-submit:hover svg {
  transform: translateX(4px);
}

.pm-form-submit svg {
  transition: transform 0.22s ease;
}

.pm-form-submit:active {
  transform: translateY(0);
}

/* Messages */
.pm-form-message {
  grid-column: 1 / -1;
  display: none;

  margin-top: 4px;
  padding: 16px 18px;
  border-radius: 10px;

  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.pm-form-message--success {
  background: rgba(0, 184, 146, 0.1);
  color: #087761;
}

.pm-form-message--error {
  background: rgba(255, 74, 74, 0.1);
  color: #bf3030;
}

.pm-contact-form.is-success .pm-form-message--success {
  display: block;
}

.pm-contact-form.is-error .pm-form-message--error {
  display: block;
}

/* Mobile */
@media (max-width: 767px) {
  .pm-contact-form {
    grid-template-columns: 1fr;
    row-gap: 18px;
    column-gap: 0;
  }

  .pm-form-field,
  .pm-form-field--full {
    grid-column: 1 / -1;
  }

  .pm-form-section-title {
    font-size: 24px;
    flex-direction: column;
    gap: 8px;
  }

  .pm-form-section-title small {
    font-size: 14px;
  }

  .pm-form-section-title--spaced,
  .pm-form-section-title--requirements {
    margin-top: 22px;
  }

  .pm-form-actions {
    justify-content: flex-end;
    margin-top: 18px;
  }

  .pm-form-submit {
    min-width: 124px;
    height: 56px;
    font-size: 19px;
    border-radius: 13px;
  }
}

/* Contact — impostazioni pagina/documento */
/* ================================
   PLAYMOOVE Contact Page Animation Layer
   Page ID 306
================================ */

body.page-id-306 .pm-home-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.page-id-306 .pm-home-cta::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  opacity: var(--pm-contact-glow-opacity, 0.65);
  background:
    radial-gradient(
      circle at var(--pm-contact-glow-x, 20%) var(--pm-contact-glow-y, 20%),
      rgba(0, 191, 165, 0.26),
      rgba(0, 191, 165, 0.08) 22%,
      rgba(18, 26, 47, 0) 52%
    );
  filter: blur(18px);
  transform: translateZ(0);
}

body.page-id-306 .pm-contact-form,
body.page-id-306 .pm-form-field input,
body.page-id-306 .pm-form-field select,
body.page-id-306 .pm-form-field textarea,
body.page-id-306 .pm-form-submit {
  will-change: transform, opacity, filter;
}

body.page-id-306 .pm-form-field input,
body.page-id-306 .pm-form-field select,
body.page-id-306 .pm-form-field textarea {
  transform-origin: center;
}

body.page-id-306 .pm-form-submit svg {
  will-change: transform;
}

/* Accessibilità */
@media (prefers-reduced-motion: reduce) {
  body.page-id-306 .pm-home-cta::before {
    opacity: 0.35;
    filter: blur(12px);
  }

  body.page-id-306 .pm-contact-form,
  body.page-id-306 .pm-form-field input,
  body.page-id-306 .pm-form-field select,
  body.page-id-306 .pm-form-field textarea,
  body.page-id-306 .pm-form-submit {
    transition: none !important;
    animation: none !important;
  }
}


/* ==========================================================
   12. CASE STUDIES / LOOP ITEMS
========================================================== */

/* SIngle – Case Study — widget: shortcode */
.pm-metrics-list {
  width: 100%;
  font-family: 'Manrope', sans-serif;
  color: #ffffff;
}

.pm-metric-item {
  display: block;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.25;
  font-weight: 500;
  color: #ffffff;
}

.pm-metric-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.pm-metric-number {
  display: inline-block;
  margin-right: 7px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 767px) {
  .pm-metric-item {
    padding: 9px 0;
    font-size: 17px;
  }

  .pm-metric-number {
    font-size: 30px;
    margin-right: 5px;
  }
}

/* Industry Loop Item — container */
.pm-square-image {
  position: relative;
  max-height: 220px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}


/* ==========================================================
   13. PARTNERS
========================================================== */

/* Partners — widget: nested-accordion — .pm-auto-partners-nested-accordion-001 */
.pm-auto-partners-nested-accordion-001 {
    pointer-events: none;
}


/* ==========================================================
   14. FULLSCREEN MENU
========================================================== */

/* Fullscreen Menu — container — .pm-auto-fullscreen-menu-container-002 */
.pm-auto-fullscreen-menu-container-002 {
    position: relative;
}


/* ==========================================================
   15. CAREERS
========================================================== */

/* Careers — widget: heading — .pm-auto-careers-heading-002 */
.pm-auto-careers-heading-002 span {
    color: #35C8A0!important;
}

/* Careers — widget: heading — .pm-auto-careers-heading-003 */
.pm-auto-careers-heading-003 span {
    color: #35C8A0!important;
}

/* Careers — widget: html */
/* ================================
   PLAYMOOVE Careers Step Form
   No data-id / no generated Elementor selectors
================================ */
.pm-hp {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.pm-step-form {
  width: 100%;
  display: block !important;
  position: relative !important;
  overflow: visible !important;
  font-family: "Manrope", sans-serif;
}

.pm-step-form .e-con-inner {
  width: 100%;
}

/* Fix Elementor HTML widgets inside the form container */
.pm-step-form .elementor-widget-html {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

.pm-step-form .elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  height: auto !important;
  min-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.pm-careers-form {
  position: relative !important;
  display: block !important;
  width: min(100%, 952px);
  height: auto !important;
  min-height: 420px;
  margin-inline: auto;
  color: #121a2f;
  font-family: "Manrope", sans-serif;
  z-index: 2;
}

.pm-careers-form * {
  box-sizing: border-box;
}

/* ================================
   Steps
================================ */

.pm-form-step {
  display: none;
  width: 100%;
}

.pm-form-step.is-active {
  display: block;
}

.pm-step-counter {
  margin: 0 0 10px;
  color: #00b892;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.pm-step-title {
  margin: 0 0 34px;
  color: #121a2f;
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* ================================
   Fields
================================ */

.pm-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 34px;
}

.pm-form-grid--single {
  grid-template-columns: 1fr;
}

.pm-field {
  width: 100%;
}

.pm-field--full {
  grid-column: 1 / -1;
}

.pm-field label,
.pm-careers-form .pm-field > label {
  display: block;
  margin: 0 0 14px;
  color: #00b892;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.pm-field label span {
  color: #9aa0aa;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pm-field input,
.pm-field select,
.pm-field textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(18, 26, 47, 0.22);
  border-radius: 7px;
  background: #ffffff;
  color: #121a2f;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.025em;
  outline: none;
  box-shadow: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.pm-field input,
.pm-field select {
  padding: 0 42px 0 14px;
}

.pm-field textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.pm-field input::placeholder,
.pm-field textarea::placeholder,
.pm-field select:invalid {
  color: #a0a5ad;
}

.pm-field input:focus,
.pm-field select:focus,
.pm-field textarea:focus {
  border-color: #00b892;
  box-shadow: 0 0 0 3px rgba(0, 184, 146, 0.12);
}

.pm-field input.pm-field-error,
.pm-field select.pm-field-error,
.pm-field textarea.pm-field-error {
  border-color: #e04444;
  box-shadow: 0 0 0 3px rgba(224, 68, 68, 0.1);
}

/* ================================
   Select
================================ */

.pm-select-wrap {
  position: relative;
}

.pm-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translateY(-35%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #121a2f;
}

.pm-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.pm-field select:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  background: #f7f8fa;
}

/* ================================
   Upload
================================ */

.pm-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 38px;
}

.pm-upload-field {
  position: relative;
}

.pm-upload-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pm-upload-box {
  display: flex;
  min-height: 140px;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px dashed rgba(18, 26, 47, 0.25);
  border-radius: 7px;
  background: #ffffff;
  color: #121a2f;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.pm-upload-box:hover {
  border-color: #00b892;
  box-shadow: 0 0 0 3px rgba(0, 184, 146, 0.10);
}

.pm-upload-box.is-dragging {
  border-color: #00b892;
  background: rgba(0, 184, 146, 0.04);
  transform: translateY(-1px);
}

.pm-upload-icon {
  display: inline-flex;
  color: #121a2f;
}

.pm-upload-box strong {
  display: block;
  color: #121a2f;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.pm-upload-help {
  display: block;
  color: #9aa0aa;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.pm-file-name {
  display: none;
  max-width: 100%;
  margin-top: 4px;
  color: #00b892;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  word-break: break-word;
}

.pm-file-name.has-file {
  display: block;
}

/* ================================
   Consent
================================ */

.pm-consents {
  display: grid;
  gap: 18px;
  margin: 62px 0 64px;
}

.pm-check {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  color: #121a2f;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.025em;
  cursor: pointer;
}

.pm-check input {
  width: 14px;
  height: 14px;
  margin: 2px 0 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #121a2f;
  border-radius: 0;
  background: #ffffff;
  cursor: pointer;
}

.pm-check input:checked {
  background:
    linear-gradient(135deg, transparent 0 42%, #ffffff 42% 56%, transparent 56% 100%),
    linear-gradient(45deg, transparent 0 45%, #ffffff 45% 58%, transparent 58% 100%),
    #00b892;
  border-color: #00b892;
}

.pm-check input:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 184, 146, 0.18);
}

.pm-check input.pm-field-error {
  border-color: #e04444;
  box-shadow: 0 0 0 3px rgba(224, 68, 68, 0.1);
}

.pm-check em {
  color: #9aa0aa;
  font-style: normal;
}

/* ================================
   Actions / Buttons
   Compact, sane size
================================ */

.pm-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 56px;
}

.pm-form-actions--first {
  justify-content: flex-end;
}

.pm-btn,
.pm-btn-back {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

/* Continue / Submit button */

.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px 0 20px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(100deg, #005aaa 0%, #00b892 100%);
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    filter 180ms ease;
}

.pm-btn span {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 12px;
  flex: 0 0 24px;
  font-size: 0 !important;
  line-height: 0 !important;
  color: currentColor;
  transform: none !important;
}

.pm-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.pm-btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.pm-btn-submit {
  padding-inline: 20px;
}

.pm-btn-submit span {
  display: none;
}

.pm-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 90, 170, 0.15);
  filter: saturate(1.04);
}

.pm-btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(0, 184, 146, 0.22),
    0 10px 24px rgba(0, 90, 170, 0.15);
}

.pm-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: none;
}

/* Back button */

.pm-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px 0 8px;
  border: 1px solid rgba(0, 184, 146, 0.38);
  border-radius: 999px;
  color: #005aaa;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.032em;
  box-shadow: 0 8px 20px rgba(18, 26, 47, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.pm-btn-back span {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #00b892;
  color: #ffffff;
  font-size: 0 !important;
  line-height: 0 !important;
  transform: none !important;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pm-btn-back span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.pm-btn-back span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.pm-btn-back:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 184, 146, 0.62);
  color: #005aaa;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(18, 26, 47, 0.09);
}

.pm-btn-back:hover span {
  transform: translateX(-2px) !important;
}

.pm-btn-back:focus-visible {
  border-color: #00b892;
  box-shadow: 0 0 0 3px rgba(0, 184, 146, 0.18);
}

/* ================================
   Message
================================ */

.pm-form-message {
  display: none;
  margin-top: 32px;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.pm-form-message.is-visible {
  display: block;
}

.pm-form-message.is-success {
  color: #006d55;
  background: rgba(0, 184, 146, 0.10);
}

.pm-form-message.is-error {
  color: #9e2222;
  background: rgba(224, 68, 68, 0.10);
}

/* ================================
   Mobile
================================ */

@media (max-width: 767px) {
  .pm-careers-form {
    width: 100%;
    min-height: 360px;
  }

  .pm-step-title {
    margin-bottom: 28px;
  }

  .pm-form-grid,
  .pm-upload-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pm-field label,
  .pm-careers-form .pm-field > label {
    font-size: 19px;
  }

  .pm-field input,
  .pm-field select,
  .pm-field textarea {
    font-size: 16px;
  }

  .pm-upload-box {
    min-height: 132px;
  }

  .pm-form-actions {
    margin-top: 44px;
  }

  .pm-form-actions,
  .pm-form-actions--first {
    align-items: stretch;
  }

  .pm-form-actions:not(.pm-form-actions--first) {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pm-form-actions--first {
    justify-content: stretch;
  }

  .pm-btn {
    width: 100%;
    min-height: 50px;
    font-size: 17px;
    padding-inline: 18px;
  }

  .pm-btn span {
    width: 22px;
    flex-basis: 22px;
  }

  .pm-btn span::before {
    width: 22px;
  }

  .pm-btn span::after {
    width: 7px;
    height: 7px;
  }

  .pm-btn-back {
    width: fit-content;
    min-height: 42px;
    font-size: 15px;
    padding: 0 14px 0 7px;
  }

  .pm-btn-back span {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .pm-btn-back span::before {
    left: 8px;
    width: 12px;
  }

  .pm-btn-back span::after {
    left: 8px;
    width: 6px;
    height: 6px;
  }

  .pm-consents {
    margin: 44px 0 46px;
  }
}

/* Careers — impostazioni pagina/documento */
/* ================================
   PLAYMOOVE Careers Page Animation
   Page ID 1054
================================ */

body.page-id-1054 .pm-home-cta,
body.page-id-1054 .elementor-element-8284faf {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.page-id-1054 .pm-home-cta::before {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: -1;
  pointer-events: none;
  opacity: var(--pm-careers-glow-opacity, 0.65);
  background:
    radial-gradient(
      circle at var(--pm-careers-glow-x, 22%) var(--pm-careers-glow-y, 24%),
      rgba(0, 191, 165, 0.28),
      rgba(0, 191, 165, 0.08) 24%,
      rgba(18, 26, 47, 0) 56%
    );
  filter: blur(20px);
  transform: translateZ(0);
}

body.page-id-1054 .pm-morph-bg {
  position: relative;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

body.page-id-1054 .morph-bg-svg,
body.page-id-1054 .pm-shape {
  will-change: transform, opacity;
  transform-box: fill-box;
  transform-origin: center;
}

body.page-id-1054 .pm-shape {
  fill: currentColor;
}

body.page-id-1054 .pm-careers-form,
body.page-id-1054 .pm-form-step,
body.page-id-1054 .pm-field,
body.page-id-1054 .pm-upload-field,
body.page-id-1054 .pm-check,
body.page-id-1054 .pm-form-actions,
body.page-id-1054 .pm-btn,
body.page-id-1054 .pm-btn-back,
body.page-id-1054 .pm-upload-box,
body.page-id-1054 .pm-field input,
body.page-id-1054 .pm-field select,
body.page-id-1054 .pm-field textarea {
  will-change: transform, opacity, filter;
}

body.page-id-1054 .pm-field input,
body.page-id-1054 .pm-field select,
body.page-id-1054 .pm-field textarea {
  transform-origin: center;
}

body.page-id-1054 .pm-upload-box {
  transform-origin: center;
}

body.page-id-1054 .pm-btn,
body.page-id-1054 .pm-btn-back {
  transform-origin: center;
}

/* Drag/upload feedback più evidente */
body.page-id-1054 .pm-upload-box.is-dragging {
  border-color: #00bfa5;
  background: rgba(0, 191, 165, 0.08);
}

/* Errori più leggibili durante la validazione */
body.page-id-1054 .pm-field-error,
body.page-id-1054 input.pm-field-error,
body.page-id-1054 select.pm-field-error,
body.page-id-1054 textarea.pm-field-error {
  border-color: rgba(255, 70, 70, 0.8) !important;
  box-shadow: 0 0 0 3px rgba(255, 70, 70, 0.12);
}

/* Mobile: animazioni più leggere */
@media (max-width: 767px) {
  body.page-id-1054 .pm-home-cta::before {
    inset: -12%;
    opacity: 0.45;
    filter: blur(14px);
  }
}

/* Accessibilità */
@media (prefers-reduced-motion: reduce) {
  body.page-id-1054 .pm-home-cta::before {
    opacity: 0.35;
    filter: blur(12px);
  }

  body.page-id-1054 .pm-morph-bg,
  body.page-id-1054 .morph-bg-svg,
  body.page-id-1054 .pm-shape,
  body.page-id-1054 .pm-careers-form,
  body.page-id-1054 .pm-form-step,
  body.page-id-1054 .pm-field,
  body.page-id-1054 .pm-upload-field,
  body.page-id-1054 .pm-check,
  body.page-id-1054 .pm-form-actions,
  body.page-id-1054 .pm-btn,
  body.page-id-1054 .pm-btn-back,
  body.page-id-1054 .pm-upload-box {
    animation: none !important;
    transition: none !important;
  }
}


/* ==========================================================
   16. ERROR 404
========================================================== */

/* Elementor Errore 404 #1391 — widget: html */
/* ================================
   PLAYMOOVE 404
   Layout coherent with website
================================ */

.pm-404 {
  --pm-navy: #151d33;
  --pm-navy-dark: #11182b;
  --pm-teal: #00bfa5;
  --pm-teal-soft: rgba(0, 191, 165, 0.18);
  --pm-blue: #2a7de1;
  --pm-white: #ffffff;
  --pm-muted: rgba(255, 255, 255, 0.66);

  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(110px, 12vw, 170px) 20px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pm-white);
  background:
    linear-gradient(180deg, #11182b 0%, #151d33 48%, #063f4b 100%);
}

.pm-404 *,
.pm-404 *::before,
.pm-404 *::after {
  box-sizing: border-box;
}

.pm-404__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pm-404__gradient {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.42;
  background: radial-gradient(circle, rgba(0, 191, 165, 0.48), rgba(0, 191, 165, 0) 68%);
  will-change: transform;
}

.pm-404__gradient--one {
  width: 520px;
  height: 520px;
  left: -180px;
  top: 10%;
}

.pm-404__gradient--two {
  width: 620px;
  height: 620px;
  right: -220px;
  bottom: -180px;
  opacity: 0.32;
}

.pm-404__inner {
  position: relative;
  z-index: 3;
  width: min(100%, 880px);
  margin-inline: auto;
  text-align: center;
}

.pm-404__eyebrow {
  margin-bottom: 22px;
  color: var(--pm-teal);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.pm-404 h1 {
  margin: 0 auto;
  max-width: 80%;
  color: var(--pm-white);
  font-size: clamp(52px, 8vw, 106px);
  text-transform: uppercase;
  line-height: 0.94;
  font-weight: 800;
}

.pm-404 p {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--pm-muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  font-weight: 400;
}

.pm-404__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

/* ================================
   404 Buttons - improved hover
================================ */

.pm-404__btn {
  position: relative;
  isolation: isolate;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.pm-404__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pm-404__btn span {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-0.5px);
  transition: transform 0.28s ease;
}

.pm-404__btn--primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pm-blue), var(--pm-teal));
  box-shadow: 0 10px 28px rgba(0, 191, 165, 0.16);
}

.pm-404__btn--primary::before {
  background: linear-gradient(90deg, var(--pm-teal), var(--pm-blue));
}

.pm-404__btn--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pm-404__btn--secondary::before {
  background: linear-gradient(90deg, rgba(42, 125, 225, 0.85), rgba(0, 191, 165, 0.85));
}

.pm-404__btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.pm-404__btn:hover::before {
  opacity: 1;
}

.pm-404__btn:hover span {
  transform: translate(3px, -0.5px);
}

.pm-404__btn--primary:hover {
  box-shadow: 0 16px 38px rgba(0, 191, 165, 0.24);
}

.pm-404__btn--secondary:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0),
    0 14px 34px rgba(0, 191, 165, 0.14);
}

.pm-404__btn:focus-visible {
  outline: 2px solid var(--pm-teal);
  outline-offset: 4px;
}
.pm-404__btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.pm-404__btn:hover::before {
  opacity: 0.55;
}

.pm-404__btn:hover span {
  transform: translate(2px, -0.5px);
}

.pm-404__btn--primary:hover {
  box-shadow: 0 12px 28px rgba(0, 191, 165, 0.18);
}

.pm-404__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(0, 191, 165, 0.22);
}
/* Mobile: hover meno aggressivo */
@media (max-width: 767px) {
  .pm-404__btn {
    min-height: 40px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .pm-404__btn:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-404__btn,
  .pm-404__btn::before,
  .pm-404__btn span {
    transition: none !important;
  }

  .pm-404__btn:hover,
  .pm-404__btn:hover span {
    transform: none !important;
  }
}

.pm-404__mini-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.pm-404__mini-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.pm-404__mini-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--pm-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.pm-404__mini-nav a:hover {
  color: #ffffff;
}

.pm-404__mini-nav a:hover::after {
  transform: scaleX(1);
}

/* Soft route background */

.pm-404__routes {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: clamp(20px, 5vw, 70px);
  width: min(1120px, 96vw);
  height: auto;
  transform: translateX(-50%);
  opacity: 0.2;
  overflow: visible;
  will-change: transform, opacity;
}

.pm-404__routes path {
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 6 12;
  stroke: rgba(255, 255, 255, 0.24);
}

.pm-404__routes path:first-child {
  stroke: rgba(0, 191, 165, 0.58);
}

.pm-404__routes path:nth-child(2) {
  opacity: 0.72;
}

.pm-404__routes path:nth-child(3) {
  opacity: 0.48;
}

/* Geometric Playmoove-style blocks */

.pm-404__pattern {
  position: absolute;
  z-index: 0;
  width: 300px;
  height: 300px;
  opacity: 0.2;
  will-change: transform, opacity;
}

.pm-404__pattern span {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 12px;
  background: rgba(0, 191, 165, 0.2);
}

.pm-404__pattern span:nth-child(1) {
  left: 0;
  bottom: 0;
}

.pm-404__pattern span:nth-child(2) {
  left: 86px;
  bottom: 86px;
  background: rgba(0, 191, 165, 0.15);
}

.pm-404__pattern span:nth-child(3) {
  left: 172px;
  bottom: 86px;
  background: rgba(42, 125, 225, 0.12);
}

.pm-404__pattern span:nth-child(4) {
  left: 86px;
  bottom: 172px;
  background: rgba(255, 255, 255, 0.06);
}

.pm-404__pattern--left {
  left: -54px;
  bottom: 56px;
}

.pm-404__pattern--right {
  right: -62px;
  top: 84px;
  transform: rotate(180deg);
}

/* Responsive */

@media (max-width: 767px) {
  .pm-404 {
    padding: 100px 18px 78px;
  }

  .pm-404 h1 {
    font-size: clamp(48px, 15vw, 70px);
    line-height: 0.96;
  }

  .pm-404 p {
    margin-top: 24px;
    font-size: 15px;
  }

  .pm-404__eyebrow {
    font-size: 12px;
  }

  .pm-404__actions {
    margin-top: 32px;
    gap: 10px;
  }

  .pm-404__btn {
    min-height: 40px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .pm-404__mini-nav {
    gap: 20px;
    margin-top: 36px;
  }

  .pm-404__mini-nav a {
    font-size: 13px;
  }

  .pm-404__routes {
    width: 125vw;
    bottom: 28px;
    opacity: 0.16;
  }

  .pm-404__pattern {
    width: 210px;
    height: 210px;
    opacity: 0.14;
  }

  .pm-404__pattern span {
    width: 64px;
    height: 64px;
    border-radius: 10px;
  }

  .pm-404__pattern span:nth-child(2) {
    left: 64px;
    bottom: 64px;
  }

  .pm-404__pattern span:nth-child(3) {
    left: 128px;
    bottom: 64px;
  }

  .pm-404__pattern span:nth-child(4) {
    left: 64px;
    bottom: 128px;
  }

  .pm-404__pattern--left {
    left: -104px;
    bottom: 20px;
  }

  .pm-404__pattern--right {
    right: -112px;
    top: 58px;
  }

  .pm-404__gradient--one {
    width: 380px;
    height: 380px;
    left: -180px;
  }

  .pm-404__gradient--two {
    width: 430px;
    height: 430px;
    right: -220px;
  }
}

@media (max-width: 480px) {
  .pm-404__actions {
    flex-direction: column;
  }

  .pm-404__btn {
    min-width: 180px;
  }
}


/* ==========================================================
   17. SINGLE INSIGHTS
========================================================== */

/* Single – Insights — container — .pm-auto-elementor-articolo-singolo-1398-container-001 */
.pm-auto-elementor-articolo-singolo-1398-container-001 {
    background-size: cover!important;
    background-position: center!important;
}

/* Single – Insights — widget: heading — .pm-auto-elementor-articolo-singolo-1398-heading-001 */
.pm-auto-elementor-articolo-singolo-1398-heading-001 span {
    color: #35C8A0!important;
}

/* Single – Insights — widget: heading — .pm-auto-elementor-articolo-singolo-1398-heading-002 */
.pm-auto-elementor-articolo-singolo-1398-heading-002 span {
    color: #35C8A0!important;
}

/* Single – Insights — widget: heading — .pm-auto-elementor-articolo-singolo-1398-heading-003 */
.pm-auto-elementor-articolo-singolo-1398-heading-003 span {
    color: #35C8A0!important;
}

/* Single – Insights — impostazioni pagina/documento */
/* ================================
   PLAYMOOVE Insight Article
   SVG Parallax Elements
================================ */

/* Scope solo articoli Insight */
body.single-insight {
  background: #ffffff;
}

/* Container articolo */
body.single-insight .elementor-element-a1ee303 {
  position: relative;
  display: block !important;
  overflow: hidden !important;
}

/* Contenuto sopra gli elementi decorativi */
body.single-insight .elementor-element-eb8e3c6 {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Widget contenuto articolo */
body.single-insight .elementor-widget-theme-post-content {
  width: min(100%, 860px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* ================================
   Article Typography
================================ */

body.single-insight .elementor-widget-theme-post-content p {
  font-size: 20px;
  line-height: 1.72;
  font-weight: 400;
  color: #172033;
  margin: 0 0 1.45em;
}

body.single-insight .elementor-widget-theme-post-content h2 {
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #101827;
  margin: 2.1em 0 0.7em;
}

body.single-insight .elementor-widget-theme-post-content h2 strong,
body.single-insight .elementor-widget-theme-post-content strong {
  font-weight: 700;
}

body.single-insight .elementor-widget-theme-post-content a {
  color: #00bfa5;
  text-decoration: none;
}

body.single-insight .elementor-widget-theme-post-content a:hover {
  color: #009f8a;
}

/* ================================
   Blockquote
================================ */

body.single-insight .elementor-widget-theme-post-content blockquote {
  position: relative;
  margin: 2.8rem 0;
  padding: 1.6rem 1.8rem 1.6rem 1.7rem;
  border: 0;
  border-left: 4px solid #00bfa5;
  border-radius: 0 18px 18px 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 191, 165, 0.14) 0%,
      rgba(0, 191, 165, 0.065) 36%,
      rgba(0, 191, 165, 0.018) 100%
    );
}

body.single-insight .elementor-widget-theme-post-content blockquote::after {
  content: "";
  position: absolute;
  left: 1.7rem;
  right: 1.8rem;
  bottom: 0.9rem;
  height: 12px;
  z-index: 0;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 191, 165, 0.18),
      rgba(0, 191, 165, 0)
    );
  pointer-events: none;
}

body.single-insight .elementor-widget-theme-post-content blockquote p {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  line-height: 1.45;
  letter-spacing: -0.018em;
  font-weight: 600;
  color: #172033;
  max-width: 760px;
  margin: 0;
}

/* ================================
   SVG Source Widget
   Lo nascondiamo: serve solo come sorgente per JS
================================ */

body.single-insight .elementor-element-1aa4664 {
  display: none !important;
}

/* ================================
   Parallax Layer
================================ */

body.single-insight .pm-article-parallax {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Singolo elemento SVG clonato */
body.single-insight .pm-article-parallax-item {
  position: absolute;
  width: var(--pm-size, 180px);
  height: auto;
  opacity: var(--pm-opacity, 0.32);
  transform:
    translate3d(0, var(--pm-parallax-y, 0px), 0)
    rotate(var(--pm-rotate, 0deg))
    scale(var(--pm-scale, 1));
  will-change: transform;
  filter: drop-shadow(0 24px 42px rgba(0, 191, 165, 0.12));
}

/* Lato sinistro: fuori dalla colonna testo */
body.single-insight .pm-article-parallax-item.is-left {
  left: max(24px, calc((100vw - 860px) / 2 - var(--pm-offset, 230px)));
}

/* Lato destro: fuori dalla colonna testo */
body.single-insight .pm-article-parallax-item.is-right {
  right: max(24px, calc((100vw - 860px) / 2 - var(--pm-offset, 230px)));
}

body.single-insight .pm-article-parallax-item svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

body.single-insight .pm-article-parallax-item .pm-shape {
  fill: #00bfa5;
  transform-box: fill-box;
  transform-origin: center;
}

/* Variazioni leggere */
body.single-insight .pm-article-parallax-item:nth-child(3n + 1) {
  opacity: 0.18;
}

body.single-insight .pm-article-parallax-item:nth-child(3n + 2) {
  opacity: 0.28;
}

body.single-insight .pm-article-parallax-item:nth-child(3n + 3) {
  opacity: 0.38;
}

/* Piccola animazione autonoma, oltre al parallax */
body.single-insight .pm-article-parallax-item:nth-child(odd) .pm-shape {
  animation: pmArticleShapeFloatA 8s ease-in-out infinite;
}

body.single-insight .pm-article-parallax-item:nth-child(even) .pm-shape {
  animation: pmArticleShapeFloatB 10s ease-in-out infinite;
}

@keyframes pmArticleShapeFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -5px, 0) rotate(-1.5deg);
  }
}

@keyframes pmArticleShapeFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, 6px, 0) rotate(1.5deg);
  }
}

/* ================================
   Medium Screens
================================ */

@media (max-width: 1366px) {
  body.single-insight .elementor-widget-theme-post-content {
    width: min(100%, 760px);
  }

  body.single-insight .pm-article-parallax-item {
    width: var(--pm-size-medium, 120px);
    opacity: 0.16;
  }

  body.single-insight .pm-article-parallax-item.is-left {
    left: 18px;
  }

  body.single-insight .pm-article-parallax-item.is-right {
    right: 18px;
  }
}

/* Sotto questa larghezza rischia di entrare nel testo */
@media (max-width: 1180px) {
  body.single-insight .pm-article-parallax {
    display: none !important;
  }
}

/* ================================
   Tablet
================================ */

@media (max-width: 1024px) {
  body.single-insight .elementor-widget-theme-post-content {
    width: min(100%, 760px);
  }

  body.single-insight .elementor-widget-theme-post-content p {
    font-size: 18px;
    line-height: 1.68;
  }

  body.single-insight .elementor-widget-theme-post-content h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  body.single-insight .elementor-widget-theme-post-content blockquote {
    margin: 2.4rem 0;
    padding: 1.45rem 1.45rem 1.45rem 1.35rem;
    border-radius: 0 16px 16px 0;
  }

  body.single-insight .elementor-widget-theme-post-content blockquote::after {
    left: 1.35rem;
    right: 1.45rem;
  }

  body.single-insight .elementor-widget-theme-post-content blockquote p {
    font-size: 1.2rem;
    line-height: 1.45;
  }
}

/* ================================
   Mobile
================================ */

@media (max-width: 767px) {
  body.single-insight .elementor-widget-theme-post-content p {
    font-size: 17px;
    line-height: 1.62;
  }

  body.single-insight .elementor-widget-theme-post-content h2 {
    font-size: 2rem;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 1.8em 0 0.65em;
  }

  body.single-insight .elementor-widget-theme-post-content blockquote {
    margin: 2.2rem 0;
    padding: 1.35rem 1.25rem 1.35rem 1.2rem;
    border-left-width: 3px;
    border-radius: 0 14px 14px 0;
  }

  body.single-insight .elementor-widget-theme-post-content blockquote::after {
    left: 1.2rem;
    right: 1.25rem;
    bottom: 0.75rem;
    height: 10px;
  }

  body.single-insight .elementor-widget-theme-post-content blockquote p {
    font-size: 1.15rem;
    line-height: 1.45;
  }
}

/* ================================
   Reduced Motion
================================ */

@media (prefers-reduced-motion: reduce) {
  body.single-insight .pm-article-parallax-item,
  body.single-insight .pm-article-parallax-item * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Insights Loop Item — container — .pm-auto-insights-loop-item-container-002 */
.swiper-slide.insight.type-insight > div > div > a {
    background-size: cover!important;
    background-position: center!important;
}


/* ==========================================================
   18. ARABIC — HEADER OVERRIDES
========================================================== */

/* الترويسة — widget: shortcode [AR] */
/* ========================================
   PLAYMOOVE LANGUAGE SWITCHER
======================================== */

.pm-language-switcher {
  --pm-lang-accent: #00b892;
  --pm-lang-dark: #10182b;
  --pm-lang-text: #ffffff;
  --pm-lang-muted: rgba(255, 255, 255, 0.62);
  --pm-lang-border: rgba(255, 255, 255, 0.15);

  position: relative;
  display: inline-flex;
  z-index: 100;
  font-family: "Manrope", sans-serif;
}

.pm-language-switcher *,
.pm-language-switcher *::before,
.pm-language-switcher *::after {
  box-sizing: border-box;
}

.pm-language-switcher__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--pm-lang-border);
  border-radius: 999px;
  background: rgba(16, 24, 43, 0.78);
  color: var(--pm-lang-text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 10px 30px rgba(4, 10, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.pm-language-switcher__trigger:hover {
  border-color: rgba(0, 184, 146, 0.55);
  background: rgba(20, 31, 53, 0.92);
  box-shadow:
    0 12px 32px rgba(4, 10, 25, 0.16),
    0 0 0 4px rgba(0, 184, 146, 0.07);
  transform: translateY(-1px);
}

.pm-language-switcher__trigger:focus-visible {
  outline: 2px solid var(--pm-lang-accent);
  outline-offset: 3px;
}

.pm-language-switcher__globe {
  display: inline-flex;
  width: 17px;
  height: 17px;
  color: var(--pm-lang-accent);
}

.pm-language-switcher__globe svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pm-language-switcher__current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pm-language-switcher__code {
  min-width: 20px;
  text-align: center;
}

.pm-language-switcher__current-name {
  color: var(--pm-lang-muted);
  font-weight: 600;
}

.pm-language-switcher__chevron {
  display: inline-flex;
  width: 10px;
  height: 7px;
  margin-left: 1px;
  transition: transform 220ms ease;
}

.pm-language-switcher__chevron svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pm-language-switcher.is-open .pm-language-switcher__chevron {
  transform: rotate(180deg);
}

.pm-language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(24, 34, 56, 0.98),
      rgba(12, 20, 36, 0.98)
    );
  box-shadow:
    0 24px 60px rgba(3, 9, 22, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pm-language-switcher.is-open .pm-language-switcher__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.pm-language-switcher__menu-label {
  padding: 9px 11px 8px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.pm-language-switcher__languages {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pm-language-switcher__language {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 11px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.pm-language-switcher__language:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}

.pm-language-switcher__language.is-active {
  color: #ffffff;
  background:
    linear-gradient(
      90deg,
      rgba(0, 184, 146, 0.17),
      rgba(0, 184, 146, 0.06)
    );
}

.pm-language-switcher__language-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--pm-lang-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.pm-language-switcher__language-name {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-language-switcher__active-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--pm-lang-accent);
}

.pm-language-switcher__active-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header chiaro */

.pm-language-switcher--light {
  --pm-lang-text: #10182b;
  --pm-lang-muted: rgba(16, 24, 43, 0.58);
  --pm-lang-border: rgba(16, 24, 43, 0.13);
}

.pm-language-switcher--light .pm-language-switcher__trigger {
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 10px 30px rgba(16, 24, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pm-language-switcher--light .pm-language-switcher__trigger:hover {
  background: #ffffff;
  border-color: rgba(0, 184, 146, 0.45);
}

@media (max-width: 767px) {
  .pm-home-trustbar hr {
    display: none;
  }
  .pm-language-switcher__trigger {
    min-height: 42px;
    padding: 8px 12px;
  }

  .pm-language-switcher__current-name {
    display: none;
  }

  .pm-language-switcher__menu {
    position: fixed;
    top: 90px;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    min-width: 0;
    border-radius: 20px;
    transform-origin: bottom center;
    transform: translateY(16px) scale(0.98);
  }

  .pm-language-switcher.is-open .pm-language-switcher__menu {
    transform: translateY(0) scale(1);
  }

  .pm-language-switcher__language {
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-language-switcher__trigger,
  .pm-language-switcher__menu,
  .pm-language-switcher__language,
  .pm-language-switcher__chevron {
    transition: none;
  }
}

/* الترويسة — impostazioni pagina/documento [AR] */
/* ================================
   PLAYMOOVE Header
   Green logo + hamburger on light pages
   Pages: 150, 1054, 306
================================ */

body.page-id-150 .elementor-location-header,
body.page-id-1054 .elementor-location-header,
body.page-id-306 .elementor-location-header,
body.page-id-302 .elementor-location-header{
  --pm-header-logo-color: #00bfa5;
}

/* Nasconde il logo SVG caricato come img */
body.page-id-150 .elementor-location-header .elementor-widget-theme-site-logo img,
body.page-id-1054 .elementor-location-header .elementor-widget-theme-site-logo img,
body.page-id-306 .elementor-location-header .elementor-widget-theme-site-logo img,
body.page-id-302 .elementor-location-header .elementor-widget-theme-site-logo img{
  opacity: 0;
}

/* Contenitore logo */
body.page-id-150 .elementor-location-header .elementor-widget-theme-site-logo a,
body.page-id-1054 .elementor-location-header .elementor-widget-theme-site-logo a,
body.page-id-306 .elementor-location-header .elementor-widget-theme-site-logo a,
body.page-id-302 .elementor-location-header .elementor-widget-theme-site-logo a{
  position: relative;
  display: inline-block;
}

/* Logo ricolorato via mask */
body.page-id-150 .elementor-location-header .elementor-widget-theme-site-logo a::after,
body.page-id-1054 .elementor-location-header .elementor-widget-theme-site-logo a::after,
body.page-id-306 .elementor-location-header .elementor-widget-theme-site-logo a::after,
body.page-id-302 .elementor-location-header .elementor-widget-theme-site-logo a::after{
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: var(--pm-header-logo-color);

  -webkit-mask-image: url("https://webdev.playmoove.com/wp-content/uploads/2026/04/PLAYMOOVE_White_LOGO.svg");
  mask-image: url("https://webdev.playmoove.com/wp-content/uploads/2026/04/PLAYMOOVE_White_LOGO.svg");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: contain;
  mask-size: contain;

  pointer-events: none;
}

/* Hamburger */
body.page-id-150 .elementor-location-header .elementor-widget-icon .elementor-icon,
body.page-id-150 .elementor-location-header .elementor-widget-icon .elementor-icon svg,
body.page-id-150 .elementor-location-header .elementor-widget-icon .elementor-icon svg path,
body.page-id-1054 .elementor-location-header .elementor-widget-icon .elementor-icon,
body.page-id-1054 .elementor-location-header .elementor-widget-icon .elementor-icon svg,
body.page-id-1054 .elementor-location-header .elementor-widget-icon .elementor-icon svg path,
body.page-id-306 .elementor-location-header .elementor-widget-icon .elementor-icon,
body.page-id-306 .elementor-location-header .elementor-widget-icon .elementor-icon svg,
body.page-id-306 .elementor-location-header .elementor-widget-icon .elementor-icon svg path,
body.page-id-302 .elementor-location-header .elementor-widget-icon .elementor-icon,
body.page-id-302 .elementor-location-header .elementor-widget-icon .elementor-icon svg,
body.page-id-302 .elementor-location-header .elementor-widget-icon .elementor-icon svg path {
  color: var(--pm-header-logo-color) !important;
  fill: var(--pm-header-logo-color) !important;
}


/* ==========================================================
   19. ARABIC — SINGLE SOLUTION OVERRIDES
========================================================== */

/* حل واحد — impostazioni pagina/documento [AR] */
/* ================================
   PLAYMOOVE - SINGLE SOLUTION FIX
   Accordion width + icons + morph CTA
================================ */

.single-solution .elementor-location-single,
.single-solution .elementor-279 {
  overflow-x: hidden;
}

/* ================================
   ACCORDION WIDTH
================================ */

.single-solution .pm-solution-enables-accordion {
  width: 100% !important;
  max-width: none !important;
}

.single-solution .pm-solution-enables-accordion,
.single-solution .pm-solution-enables-accordion *,
.single-solution .pm-solution-enables-accordion *::before,
.single-solution .pm-solution-enables-accordion *::after {
  box-sizing: border-box;
}

.single-solution .pm-solution-enables-accordion {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
}

.single-solution .pm-solution-enable {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(0, 184, 146, 0.22);
}

.single-solution .pm-solution-enable__summary {
  width: 100% !important;
  min-width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 18px !important;
  align-items: center !important;
  column-gap: 24px !important;
  padding: 18px 0 !important;
  cursor: pointer;
  list-style: none;
}

.single-solution .pm-solution-enable__summary::-webkit-details-marker {
  display: none;
}

.single-solution .pm-solution-enable__summary::marker {
  content: "";
}

.single-solution .pm-solution-enable__title {
  display: block;
  min-width: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem!important;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #00b892;
}

.single-solution .pm-solution-enable__content {
  width: 100% !important;
  max-width: none !important;
}

.single-solution .pm-solution-enable__content-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 42px 22px 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem!important;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(18, 26, 47, 0.78);
}

/* ================================
   ACCORDION ICONS
   Importante: bypassiamo SVG + inline GSAP.
================================ */

.single-solution .pm-solution-enable__icon {
  position: relative !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  translate: none !important;
  rotate: none !important;
  scale: none !important;
}

.single-solution .pm-solution-enable__icon svg {
  display: none !important;
}

.single-solution .pm-solution-enable__icon::before,
.single-solution .pm-solution-enable__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #00b892;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.single-solution .pm-solution-enable__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.single-solution .pm-solution-enable.is-open .pm-solution-enable__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* ================================
   MORPH BACKGROUND BASE
================================ */

.single-solution .pm-morph-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  overflow: hidden !important;
  z-index: 0 !important;
}

.single-solution .pm-morph-bg .morph-bg-svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.single-solution .pm-morph-bg .pm-shape {
  transform-box: fill-box;
  transform-origin: center;
}

/* Standard morph, sezione accordion */
.single-solution .pm-morph-bg .pm-shape.is-primary {
  fill: #00b892;
}

.single-solution .pm-morph-bg .pm-shape.is-secondary {
  fill: #121a2f;
}

/* ================================
   FINAL CTA MORPH
================================ */

.single-solution .pm-cta-morph-section,
.single-solution .pm-home-cta,
.single-solution .elementor-element-faf5ac6 {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #ffffff !important;
}

.single-solution .pm-cta-morph-section > .e-con-inner,
.single-solution .pm-home-cta > .e-con-inner,
.single-solution .elementor-element-faf5ac6 > .e-con-inner {
  position: relative !important;
  z-index: 2 !important;
}

.single-solution .pm-cta-morph-section .elementor-widget-heading,
.single-solution .pm-cta-morph-section .elementor-widget-button,
.single-solution .pm-home-cta .elementor-widget-heading,
.single-solution .pm-home-cta .elementor-widget-button,
.single-solution .elementor-element-faf5ac6 .elementor-widget-heading,
.single-solution .elementor-element-faf5ac6 .elementor-widget-button {
  position: relative !important;
  z-index: 3 !important;
}

.single-solution .pm-cta-morph-section .elementor-widget-html,
.single-solution .pm-home-cta .elementor-widget-html,
.single-solution .elementor-element-faf5ac6 .elementor-widget-html {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
}

.single-solution .pm-cta-morph-section .elementor-widget-html > .elementor-widget-container,
.single-solution .pm-home-cta .elementor-widget-html > .elementor-widget-container,
.single-solution .elementor-element-faf5ac6 .elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
}

/* ================================
   FINAL CTA MORPH - visual only
   Niente opacity !important, altrimenti GSAP non anima.
================================ */

.single-solution .pm-cta-morph-section .pm-morph-bg .pm-shape,
.single-solution .pm-home-cta .pm-morph-bg .pm-shape,
.single-solution .elementor-element-faf5ac6 .pm-morph-bg .pm-shape {
  will-change: transform, opacity;
}

.single-solution .pm-cta-morph-section .pm-morph-bg .pm-shape.is-primary,
.single-solution .pm-home-cta .pm-morph-bg .pm-shape.is-primary,
.single-solution .elementor-element-faf5ac6 .pm-morph-bg .pm-shape.is-primary {
  fill: #00b892;
}

.single-solution .pm-cta-morph-section .pm-morph-bg .pm-shape.is-tertiary,
.single-solution .pm-home-cta .pm-morph-bg .pm-shape.is-tertiary,
.single-solution .elementor-element-faf5ac6 .pm-morph-bg .pm-shape.is-tertiary {
  fill: #121a2f;
}

/* Mobile */
@media (max-width: 767px) {
  .single-solution .pm-solution-enable__summary {
    padding: 16px 0 !important;
    column-gap: 18px !important;
  }

  .single-solution .pm-solution-enable__content-inner {
    padding-right: 28px;
  }

  .single-solution .pm-cta-morph-section,
  .single-solution .pm-home-cta,
  .single-solution .elementor-element-faf5ac6 {
    min-height: 280px;
  }
}


/* ==========================================================
   20. ARABIC — FULLSCREEN MENU OVERRIDES
========================================================== */

/* قائمة ملء الشاشة — widget: shortcode [AR] */
/* ================================
   PLAYMOOVE - WP Popup Mega Menu
   Popup is already fullscreen in Elementor
================================ */

/* Scope */
.pm-menu-popup {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

/* Logo */
.pm-menu-popup .pm-menu-logo {
  position: absolute !important;
  top: clamp(28px, 4vw, 56px) !important;
  left: clamp(28px, 4vw, 64px) !important;
  width: clamp(180px, 16vw, 260px) !important;
  z-index: 120 !important;
}

.pm-menu-popup .pm-menu-logo img {
  width: 100% !important;
  height: auto !important;
}

/* Elementor close button  */
.elementor-popup-modal:has(.pm-menu-popup) .dialog-close-button {
  position: fixed !important;
  top: 25px !important;
  right: 50px!important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  opacity: 1 !important;
  z-index: 130 !important;
}

.page-id-1821 .elementor-popup-modal:has(.pm-menu-popup) .dialog-close-button {
  right: 50px!important;
  margin:0!important;
  margin-block-start:0!important;
}

html[lang^="en"] .elementor-popup-modal:has(.pm-menu-popup) .dialog-close-button {
  right: 70px !important;
}

.elementor-popup-modal:has(.pm-menu-popup) .dialog-close-button svg {
  width: 24px !important;
  height: 24px !important;
  fill: currentColor !important;
}

/* Shortcode widget reset */
.pm-menu-popup .pm-menu-shortcode,
.pm-menu-popup .pm-menu-shortcode > .elementor-widget-container,
.pm-menu-popup .pm-menu-shortcode .elementor-shortcode {
  width: 100% !important;
  height: 100% !important;
}

/* Menu wrapper */
.pm-fullscreen-wp-menu-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
}

/* Main nav */
.pm-fullscreen-wp-menu {
  position: relative;
  width: min(100%, 1320px);
  height: 100%;
  margin-inline: auto;
  padding:
    clamp(120px, 16vh, 190px)
    clamp(28px, 5vw, 72px)
    clamp(52px, 8vh, 96px);
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(72px, 9vw, 140px);
}

/* WP menu reset */
.pm-fullscreen-wp-menu ul,
.pm-fullscreen-wp-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pm-fullscreen-wp-menu a {
  color: inherit;
  text-decoration: none !important;
}

/* ================================
   Desktop first level
================================ */

.pm-fullscreen-wp-menu__list {
  position: relative;
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.25vh, 15px);
}

.pm-fullscreen-wp-menu__list > li {
  position: static !important;
  --pm-submenu-top: 0px;
  --pm-submenu-bottom: auto;
}

.pm-fullscreen-wp-menu__list > li > a {
  display: block;
  width: fit-content;
  color: #ffffff;
  font-size: clamp(42px, 4.8vw, 48px);
  line-height: 0.96;
  font-weight: 600;
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition:
    opacity 0.32s ease,
    filter 0.32s ease,
    transform 0.32s ease,
    color 0.32s ease;
}

/* Blur only after interaction */
.pm-fullscreen-wp-menu.is-interacting .pm-fullscreen-wp-menu__list > li:not(.is-active) > a {
  opacity: 0.38;
  filter: blur(6px);
}

.pm-fullscreen-wp-menu.is-interacting .pm-fullscreen-wp-menu__list > li.is-active > a {
  opacity: 1;
  filter: blur(0);
  color: #ffffff;
}

/* ================================
   Desktop second level
================================ */

.pm-fullscreen-wp-menu__list > li > .sub-menu {
  position: absolute !important;
  left: calc(100% + clamp(72px, 9vw, 140px)) !important;
  width: min(48vw, 640px);
  max-width: 640px;
  display: flex !important;
  flex-direction: column;
  gap: clamp(8px, 1.15vh, 16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  top: 0;
  bottom: auto;
  transform: translateY(14px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

/* Active submenu - top aligned */
.pm-fullscreen-wp-menu.is-interacting .pm-fullscreen-wp-menu__list > li.is-active.is-align-top > .sub-menu {
  top: var(--pm-submenu-top) !important;
  bottom: auto !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Active submenu - bottom aligned */
.pm-fullscreen-wp-menu.is-interacting .pm-fullscreen-wp-menu__list > li.is-active.is-align-bottom > .sub-menu {
  top: auto !important;
  bottom: var(--pm-submenu-bottom) !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.pm-fullscreen-wp-menu__list > li > .sub-menu > li > a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(24px, 1.65vw, 34px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.045em;
  opacity: 1;
  transform: translateX(0);
  transition:
    color 0.24s ease,
    transform 0.24s ease,
    opacity 0.24s ease;
}

.pm-fullscreen-wp-menu__list > li > .sub-menu > li > a:hover,
.pm-fullscreen-wp-menu__list > li > .sub-menu > li > a:focus {
  color: #ffffff;
  transform: translateX(10px);
}

.pm-fullscreen-wp-menu .sub-menu .current-menu-item > a {
  color: #ffffff;
}

/* Accessibility */
.pm-fullscreen-wp-menu a:focus-visible,
.elementor-popup-modal:has(.pm-menu-popup) .dialog-close-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 6px;
}

.pm-submenu-back-item {
  display: none !important;
}

/* ================================
   Mobile submenu layer
================================ */

@media (max-width: 767px) {
  .pm-menu-popup {
    overflow: hidden !important;
  }

  .pm-menu-popup .pm-menu-logo {
    top: 28px !important;
    left: 24px !important;
    width: clamp(150px, 44vw, 190px) !important;
  }

  .elementor-popup-modal:has(.pm-menu-popup) .dialog-close-button {
    top: 27px !important;
    right: 40px !important;
    width: 42px !important;
    height: 42px !important;
  }

  .pm-menu-popup .pm-menu-shortcode,
  .pm-menu-popup .pm-menu-shortcode > .elementor-widget-container,
  .pm-menu-popup .pm-menu-shortcode .elementor-shortcode,
  .pm-fullscreen-wp-menu-wrap {
    width: 100% !important;
    height: 100% !important;
  }

  .pm-fullscreen-wp-menu {
    width: 100%;
    height: 100%;
    padding: 104px 0 42px;
    display: block;
    overflow: hidden;
  }

  .pm-fullscreen-wp-menu__list {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px!important;
  }

  .pm-fullscreen-wp-menu__list > li {
    position: static !important;
  }

  .pm-fullscreen-wp-menu__list > li > a {
    width: fit-content;
    max-width: 100%;
    font-size: clamp(36px, 9.5vw, 48px);
    line-height: 0.98;
    font-weight: 600;
    filter: none !important;
    opacity: 1 !important;
    color: #ffffff;
    overflow-wrap: normal;
  }

  .pm-fullscreen-wp-menu.is-interacting .pm-fullscreen-wp-menu__list > li:not(.is-active) > a {
    filter: none !important;
    opacity: 1 !important;
  }

  /* Backdrop behind submenu layer */
  .pm-fullscreen-wp-menu::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(5, 20, 36, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
      opacity 0.34s ease,
      visibility 0.34s ease;
  }

  .pm-fullscreen-wp-menu.is-submenu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Submenu overlay */
  .pm-fullscreen-wp-menu__list > li > .sub-menu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 90 !important;
    width: 100% !important;
    max-width: none !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    margin: 0 !important;

    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;

    padding:
      200px
      24px
      44px
      38px !important;

    gap: 14px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(32px);

    transition:
      opacity 0.34s ease,
      transform 0.34s ease,
      visibility 0.34s ease;

    background: rgba(238, 250, 252, 0.40);
    color: #111d2f;

    backdrop-filter: blur(22px) saturate(1.15);
    -webkit-backdrop-filter: blur(22px) saturate(1.15);

    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .pm-fullscreen-wp-menu__list > li.is-active > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .pm-fullscreen-wp-menu__list > li > .sub-menu > li:not(.pm-submenu-back-item) {
    width: 100% !important;
  }

  .pm-fullscreen-wp-menu__list > li > .sub-menu > li:not(.pm-submenu-back-item) > a {
    display: block;
    width: 100%;
    max-width: 100%;
    color: #fff;

    font-size: clamp(21px, 5.45vw, 27px);
    line-height: 1.18;
    font-weight: 560;
    letter-spacing: -0.04em;

    opacity: 1;
    transform: none;

    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;

    padding: 2px 0;
  }

  .pm-fullscreen-wp-menu__list > li > .sub-menu > li:not(.pm-submenu-back-item) > a:hover,
  .pm-fullscreen-wp-menu__list > li > .sub-menu > li:not(.pm-submenu-back-item) > a:focus {
    transform: none;
    color: #111d2f;
  }

  /* Back button li */
  .pm-submenu-back-item {
    display: block !important;
    position: fixed !important;
    top: 100px !important;
    left: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    z-index: 999 !important;
    pointer-events: auto !important;
  }

  .pm-submenu-back {
    position: relative !important;
    z-index: 1000 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 0 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-family: inherit;
    font-size: 16px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: -0.03em;
    cursor: pointer;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .pm-submenu-back::before {
    content: "←";
    display: block;
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
  }

  /* Keep Elementor close under mobile submenu, above backdrop */
  .elementor-popup-modal:has(.pm-fullscreen-wp-menu.is-submenu-open) .dialog-close-button {
    z-index: 70 !important;
  }

  .elementor-popup-modal:has(.pm-fullscreen-wp-menu.is-submenu-open) .pm-menu-logo {
    z-index: 70 !important;
  }
}

/* Extra small mobile */
@media (max-width: 390px) {
  .pm-fullscreen-wp-menu {
    padding: 96px 22px 36px;
  }

  .pm-fullscreen-wp-menu__list {
    gap: 18px;
  }

  .pm-fullscreen-wp-menu__list > li > a {
    font-size: clamp(33px, 9vw, 42px);
  }

  .pm-fullscreen-wp-menu__list > li > .sub-menu {
    padding:
      92px
      22px
      36px
      34px !important;
    gap: 12px;
  }

  .pm-fullscreen-wp-menu__list > li > .sub-menu > li:not(.pm-submenu-back-item) > a {
    font-size: clamp(19px, 5.3vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.035em;
  }

  .pm-submenu-back-item {
    top: 22px !important;
    left: 22px !important;
  }

  .pm-submenu-back {
    font-size: 15px;
  }
}

/* قائمة ملء الشاشة — impostazioni pagina/documento [AR] */
/* ================================
   PLAYMOOVE - Animated menu background
================================ */

.pm-menu-popup {
  background:
    radial-gradient(circle at 18% 62%, rgba(0, 184, 146, 0.72), transparent 38%),
    radial-gradient(circle at 78% 24%, rgba(47, 114, 246, 0.82), transparent 42%),
    linear-gradient(120deg, #2f72f6 0%, #00b892 100%) !important;
  background-size: 160% 160%, 150% 150%, 220% 220%;
  animation: pmMenuGradientDrift 18s ease-in-out infinite alternate;
  isolation: isolate;
}

@keyframes pmMenuGradientDrift {
  0% {
    background-position:
      0% 60%,
      100% 20%,
      0% 50%;
  }

  50% {
    background-position:
      35% 45%,
      70% 55%,
      55% 45%;
  }

  100% {
    background-position:
      70% 35%,
      30% 70%,
      100% 50%;
  }
}

.pm-menu-popup::before,
.pm-menu-popup::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.pm-menu-popup::before {
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at 70% 35%, rgba(0, 184, 146, 0.22), transparent 28%);
  filter: blur(28px);
  animation: pmMenuBlobOne 22s ease-in-out infinite alternate;
}

.pm-menu-popup::after {
  background:
    radial-gradient(circle at 64% 72%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at 22% 22%, rgba(47, 114, 246, 0.22), transparent 30%);
  filter: blur(34px);
  animation: pmMenuBlobTwo 26s ease-in-out infinite alternate;
}

.pm-menu-popup > * {
  position: relative;
  z-index: 1;
}

.pm-menu-popup .pm-menu-logo,
.elementor-popup-modal:has(.pm-menu-popup) .dialog-close-button {
  z-index: 999999999 !important;
}

@keyframes pmMenuBlobOne {
  0% {
    transform: translate3d(-2%, 3%, 0) scale(1);
  }

  100% {
    transform: translate3d(4%, -3%, 0) scale(1.08);
  }
}

@keyframes pmMenuBlobTwo {
  0% {
    transform: translate3d(3%, -2%, 0) scale(1.04);
  }

  100% {
    transform: translate3d(-4%, 4%, 0) scale(0.98);
  }
}


/*  explore all fix  */

li.menu-item-1223 a, li.menu-item-1226 a, 
li.menu-item-2780 a, li.menu-item-2787 a {
    margin-top: 20px;
    text-decoration: underline !important;
    font-size: 1.3rem!important;
}

/* ========================================
   PLAYMOOVE — MOBILE HEADER / FULLSCREEN
   Class-based, shared across EN / IT / AR
======================================== */

@media (max-width: 767px) {

  :root {
    --pm-mobile-edge: 29px;
    --pm-mobile-row-height: 44px;
    --pm-mobile-logo-width: 146px;
    --pm-mobile-icon-size: 26px;
    --pm-mobile-close-right: 50px;
  }

  /* ----------------------------------------
     HEADER NORMALE
  ---------------------------------------- */

  .elementor-location-header
  .elementor-widget-theme-site-logo {
    width: var(--pm-mobile-logo-width) !important;
    max-width: var(--pm-mobile-logo-width) !important;
    flex: 0 0 var(--pm-mobile-logo-width) !important;
  }

  .elementor-location-header
  .elementor-widget-theme-site-logo a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: var(--pm-mobile-row-height) !important;
  }

  .elementor-location-header
  .elementor-widget-theme-site-logo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: var(--pm-mobile-row-height) !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  /* Selettore lingua */
  .elementor-location-header
  .pm-language-switcher,
  .elementor-location-header
  .pm-language-switcher__trigger {
    height: var(--pm-mobile-row-height) !important;
    min-height: var(--pm-mobile-row-height) !important;
  }

  .elementor-location-header
  .pm-language-switcher {
    display: inline-flex !important;
    align-items: center !important;
  }

  .elementor-location-header
  .pm-language-switcher__trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Hamburger */
  .elementor-location-header
  .elementor-widget-icon,
  .elementor-location-header
  .elementor-widget-icon .elementor-icon-wrapper,
  .elementor-location-header
  .elementor-widget-icon .elementor-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: var(--pm-mobile-row-height) !important;
    min-width: var(--pm-mobile-row-height) !important;
    height: var(--pm-mobile-row-height) !important;
    min-height: var(--pm-mobile-row-height) !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .elementor-location-header
  .elementor-widget-icon svg {
    display: block !important;
    width: var(--pm-mobile-icon-size) !important;
    height: var(--pm-mobile-icon-size) !important;
    margin: 0 !important;
  }

  /* ----------------------------------------
     FULLSCREEN MENU
  ---------------------------------------- */

  .elementor-popup-modal:has(.pm-menu-popup)
  .pm-menu-popup > .elementor-widget-theme-site-logo {
    position: absolute !important;
    top: var(--pm-mobile-edge) !important;
    left: var(--pm-mobile-edge) !important;
    width: var(--pm-mobile-logo-width) !important;
    min-width: var(--pm-mobile-logo-width) !important;
    max-width: var(--pm-mobile-logo-width) !important;
    height: var(--pm-mobile-row-height) !important;
    min-height: var(--pm-mobile-row-height) !important;
    max-height: var(--pm-mobile-row-height) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    z-index: 999999999 !important;
  }

  .elementor-popup-modal:has(.pm-menu-popup)
  .pm-menu-popup > .elementor-widget-theme-site-logo a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .elementor-popup-modal:has(.pm-menu-popup)
  .pm-menu-popup > .elementor-widget-theme-site-logo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: var(--pm-mobile-row-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    transform: none !important;
  }

  /* X del popup */
  .elementor-popup-modal:has(.pm-menu-popup)
  .dialog-close-button {
    position: fixed !important;
    top: var(--pm-mobile-edge) !important;
    right: var(--pm-mobile-close-right) !important;
    width: var(--pm-mobile-row-height) !important;
    min-width: var(--pm-mobile-row-height) !important;
    max-width: var(--pm-mobile-row-height) !important;
    height: var(--pm-mobile-row-height) !important;
    min-height: var(--pm-mobile-row-height) !important;
    max-height: var(--pm-mobile-row-height) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    z-index: 9999999999 !important;
  }

  .elementor-popup-modal:has(.pm-menu-popup)
  .dialog-close-button svg {
    display: block !important;
    width: var(--pm-mobile-icon-size) !important;
    height: var(--pm-mobile-icon-size) !important;
    margin: 0 !important;
    fill: currentColor !important;
    transform: none !important;
  }
}

/* fixes */
.pm-cta-morph-section
.elementor-widget-html:has(.pm-morph-bg) {
    pointer-events: all !important;
}


/* ==========================================================
   18. LARGE / ULTRAWIDE DISPLAYS
   Added without removing or rewriting any existing rule.
   Scope: desktop widths from 2560px upward.
========================================================== */

@media (min-width: 2560px) {
  :root {
    --pm-wide-content: 2160px;
    --pm-wide-gutter: clamp(72px, 4vw, 160px);
    --pm-wide-section-y: clamp(88px, 5vw, 150px);
  }

  /* Keep the whole site comfortably inside very wide viewports. */
  .elementor-location-header > .e-con,
  .elementor-location-header .e-con-inner,
  .elementor-location-footer > .e-con,
  .elementor-location-footer .e-con-inner,
  main .e-con-boxed > .e-con-inner {
    --container-max-width: var(--pm-wide-content);
  }

  /* HOME — widen the principal content areas without stretching copy lines. */
  .pm-home-hero > .e-con-inner,
  .pm-home-section > .e-con-inner,
  .pm-home-solutions > .e-con-inner,
  .pm-home-platform > .e-con-inner,
  .pm-home-industries > .e-con-inner,
  .pm-home-how > .e-con-inner,
  .pm-home-case > .e-con-inner,
  .pm-home-logos > .e-con-inner,
  .pm-home-trustbar > .e-con-inner,
  .pm-home-cta > .e-con-inner {
    width: min(calc(100% - (var(--pm-wide-gutter) * 2)), var(--pm-wide-content));
    max-width: var(--pm-wide-content) !important;
    margin-inline: auto;
  }

  /* Prevent Elementor viewport-height settings from producing huge empty areas. */
  .pm-home-section,
  .pm-home-solutions,
  .pm-home-platform,
  .pm-home-industries,
  .pm-home-how,
  .pm-home-case {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    padding-block: var(--pm-wide-section-y) !important;
  }

  .pm-home-hero {
    min-height: clamp(680px, 62vh, 920px) !important;
    max-height: none !important;
  }

  .pm-home-hero h1,
  .pm-home-hero h2 {
    font-size: clamp(54px, 2.15vw, 82px);
    line-height: 0.98;
  }

  .pm-home-hero .elementor-widget-text-editor,
  .pm-home-hero .elementor-widget-text-editor p {
    font-size: clamp(18px, 0.62vw, 24px);
    line-height: 1.5;
  }

  .pm-home-section h2,
  .pm-home-solutions h2,
  .pm-home-platform h2,
  .pm-home-industries h2,
  .pm-home-how h2,
  .pm-home-case h2 {
    font-size: clamp(38px, 1.5vw, 58px);
  }

  /* PLATFORM PAGE — use more of the available width and keep rows compact. */
  .elementor-296 > .e-con:first-child {
    min-height: clamp(620px, 58vh, 840px) !important;
    padding-top: clamp(150px, 9vh, 210px) !important;
    padding-bottom: clamp(100px, 7vh, 150px) !important;
  }

  .elementor-296 > .e-con:first-child .elementor-widget-heading,
  .elementor-296 > .e-con:first-child .elementor-widget-text-editor,
  .elementor-296 > .e-con:first-child h2 {
    width: min(100%, var(--pm-wide-content));
    max-width: var(--pm-wide-content) !important;
  }

  .elementor-296 .pm-home-solutions {
    width: min(calc(100% - (var(--pm-wide-gutter) * 2)), var(--pm-wide-content));
    max-width: var(--pm-wide-content);
    min-height: 0 !important;
    padding-inline: 0 !important;
    padding-top: clamp(92px, 4.5vw, 138px) !important;
    padding-bottom: clamp(92px, 4.5vw, 138px) !important;
    column-gap: clamp(100px, 6vw, 190px);
  }

  .elementor-296 .pm-home-solutions:first-of-type {
    padding-top: clamp(84px, 4vw, 124px) !important;
  }

  .elementor-296 .pm-home-solutions .elementor-widget-heading,
  .elementor-296 .pm-home-solutions .elementor-widget-text-editor {
    max-width: 700px;
  }

  .elementor-296 .pm-home-solutions:has(.svg-anim-1) .elementor-widget-text-editor {
    max-width: 740px;
  }

  .elementor-296 .pm-home-solutions h3 {
    font-size: clamp(34px, 1.35vw, 52px);
    line-height: 1.04;
  }

  .elementor-296 .pm-home-solutions h4 {
    font-size: clamp(15px, 0.52vw, 20px);
  }

  .elementor-296 .pm-home-solutions .elementor-widget-text-editor,
  .elementor-296 .pm-home-solutions .elementor-widget-text-editor p {
    font-size: clamp(18px, 0.6vw, 23px);
    line-height: 1.5;
  }

  .elementor-296 .pm-platform-illustration--route {
    width: min(100%, 760px);
    max-width: 760px;
  }

  .elementor-296 .pm-platform-illustration--fleet {
    width: min(100%, 750px);
    max-width: 750px;
  }

  .elementor-296 .pm-platform-illustration--layers {
    width: min(100%, 700px);
    max-width: 700px;
  }

  .elementor-296 .pm-platform-illustration--data {
    width: min(100%, 680px);
    max-width: 680px;
  }

  /* Large fixed-size interface modules. */
  .pm-graph-layout {
    max-width: min(100%, 1780px);
    grid-template-columns: minmax(620px, 0.95fr) minmax(720px, 1.05fr);
    gap: clamp(100px, 5vw, 170px);
  }

  .pm-deployments-map-widget,
  .pm-deployments-map-widget .elementor-widget-container,
  .pm-deployments-map-wrap,
  #pmDeploymentsMap,
  #pmDeploymentsMap.leaflet-container {
    height: clamp(720px, 42vw, 920px) !important;
    min-height: clamp(720px, 42vw, 920px) !important;
  }
}

@media (min-width: 3440px) {
  :root {
    --pm-wide-content: 2320px;
    --pm-wide-gutter: clamp(120px, 5vw, 220px);
  }

  /* On 4K, scale width and visuals but cap vertical expansion. */
  .pm-home-hero {
    min-height: clamp(720px, 56vh, 960px) !important;
  }

  .pm-home-section,
  .pm-home-solutions,
  .pm-home-platform,
  .pm-home-industries,
  .pm-home-how,
  .pm-home-case {
    padding-block: clamp(110px, 4vw, 160px) !important;
  }

  .elementor-296 > .e-con:first-child {
    min-height: clamp(680px, 54vh, 900px) !important;
  }

  .elementor-296 .pm-home-solutions {
    padding-top: clamp(110px, 3.8vw, 150px) !important;
    padding-bottom: clamp(110px, 3.8vw, 150px) !important;
  }
}

/* ========================================
   PLAYMOOVE — Back to top
======================================== */

.pm-back-to-top {
  position: fixed;
  right: clamp(18px, 2vw, 32px);
  bottom: clamp(18px, 2vw, 32px);
  z-index: 900;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  padding: 0;

  color: #ffffff;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(14px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.pm-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.pm-back-to-top:hover {
  color: #111111;
  background: #00b892;
}

.pm-back-to-top:focus-visible {
  outline: 3px solid rgba(0, 184, 146, 0.45);
  outline-offset: 4px;
}

.pm-back-to-top svg {
  display: block;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.pm-back-to-top svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile */
@media (max-width: 767px) {
  .pm-back-to-top {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 16px;
  }

  .pm-back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Riduzione animazioni */
@media (prefers-reduced-motion: reduce) {
  .pm-back-to-top {
    transition: none;
  }
}

/* =========================================================
   PLAYMOOVE — PAGINE LEGALI COMPLIANZ
   Scope stabile e multilingua:
   solo contenuto dentro Elementor Single.

   Non modifica:
   - container Elementor
   - larghezze
   - padding delle sezioni
   - margini esterni
   - header
   - footer
   - cookie banner
========================================================= */


/* =========================================================
   TESTI
========================================================= */

.elementor-location-single .cmplz-document {
  color: #263247;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.elementor-location-single .cmplz-document p,
.elementor-location-single .cmplz-document li {
  color: #263247;
}

.elementor-location-single .cmplz-document h2 {
  color: #131d36;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.elementor-location-single .cmplz-document h3 {
  color: #131d36;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.elementor-location-single .cmplz-document strong,
.elementor-location-single .cmplz-document b {
  color: #131d36;
  font-weight: 650;
}

.elementor-location-single .cmplz-document a {
  color: #2f72f6;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 180ms ease;
}

.elementor-location-single .cmplz-document a:hover,
.elementor-location-single .cmplz-document a:focus-visible {
  color: #00b892;
}

.elementor-location-single .cmplz-document li::marker {
  color: #00b892;
}

.elementor-location-single .cmplz-document > p:first-child {
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.elementor-location-single .cmplz-document > p:first-child i {
  font-style: normal;
}


/* =========================================================
   ACCORDION COMPLIANZ
========================================================= */

.elementor-location-single
.cmplz-document
details.cmplz-dropdown {
  border: 1px solid #dce3ea;
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown:hover {
  border-color: #b7c4d1;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown[open] {
  border-color: #00b892;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 54px 15px 18px;
  background: #f4f7f9;
  color: #131d36;
  cursor: pointer;
  list-style: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
summary::-webkit-details-marker {
  display: none;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
summary::marker {
  display: none;
  content: "";
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
summary:hover {
  background: #edf2f5;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown[open]
summary {
  background: #131d36;
  color: #ffffff;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
summary h3 {
  margin: 0;
  color: inherit;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown[open]
summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
> *:not(summary) {
  margin-right: 18px;
  margin-left: 18px;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
> h3:first-of-type {
  margin-top: 22px;
}

.elementor-location-single
.cmplz-document
details.cmplz-dropdown
> *:last-child {
  margin-bottom: 22px;
}


/* =========================================================
   FORM DATA REQUEST
========================================================= */

.elementor-location-single
.cmplz-document
#cmplz-datarequest-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #dce3ea;
  background: #f4f7f9;
}

.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
> div {
  display: grid;
  gap: 7px;
}

.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
label {
  color: #131d36;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
input[type="text"],
.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
input[type="email"],
.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
input[type="search"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd5df;
  border-radius: 0;
  outline: none;
  background: #ffffff;
  color: #131d36;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
input::placeholder {
  color: #98a2b3;
  opacity: 1;
}

.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
input[type="text"]:focus,
.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
input[type="email"]:focus,
.elementor-location-single
.cmplz-document
#cmplz-datarequest-form
input[type="search"]:focus {
  border-color: #2f72f6;
  box-shadow: 0 0 0 3px rgba(47, 114, 246, 0.12);
}

.elementor-location-single
.cmplz-document
.cmplz_datarequest {
  margin: 0;
}

.elementor-location-single
.cmplz-document
.cmplz_datarequest
label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #263247;
  font-size: 14px;
  font-weight: 450;
  cursor: pointer;
}

.elementor-location-single
.cmplz-document
.cmplz_datarequest
input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: #00b892;
  cursor: pointer;
}

.elementor-location-single
.cmplz-document
#cmplz-datarequest-submit {
  justify-self: start;
  min-width: 138px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid #131d36;
  border-radius: 999px;
  background: #131d36;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.elementor-location-single
.cmplz-document
#cmplz-datarequest-submit:hover {
  border-color: #00b892;
  background: #00b892;
  color: #131d36;
  transform: translateY(-1px);
}

.elementor-location-single
.cmplz-document
#cmplz-datarequest-submit:focus-visible {
  outline: 3px solid rgba(47, 114, 246, 0.22);
  outline-offset: 3px;
}


/* =========================================================
   MESSAGGI DEL FORM
========================================================= */

.elementor-location-single
.cmplz-document
.cmplz-alert {
  position: relative;
  padding: 15px 42px 15px 16px;
  border: 1px solid #dce3ea;
  background: #f4f7f9;
  color: #263247;
}

.elementor-location-single
.cmplz-document
.cmplz-alert
.cmplz-close {
  position: absolute;
  top: 10px;
  right: 13px;
  color: #667085;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}


/* =========================================================
   RTL / ARABO
========================================================= */

html[dir="rtl"]
.elementor-location-single
.cmplz-document {
  text-align: right;
}

html[dir="rtl"]
.elementor-location-single
.cmplz-document
details.cmplz-dropdown
summary {
  padding-right: 18px;
  padding-left: 54px;
}

html[dir="rtl"]
.elementor-location-single
.cmplz-document
details.cmplz-dropdown
summary::after {
  right: auto;
  left: 20px;
}

html[dir="rtl"]
.elementor-location-single
.cmplz-document
.cmplz_datarequest
label {
  grid-template-columns: 18px minmax(0, 1fr);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .elementor-location-single .cmplz-document {
    font-size: 15px;
    line-height: 1.68;
  }

  .elementor-location-single .cmplz-document h2 {
    font-size: 23px;
  }

  .elementor-location-single .cmplz-document h3 {
    font-size: 17px;
  }

  .elementor-location-single
  .cmplz-document
  details.cmplz-dropdown
  summary {
    min-height: 54px;
    padding: 14px 48px 14px 16px;
  }

  .elementor-location-single
  .cmplz-document
  details.cmplz-dropdown
  summary h3 {
    font-size: 14px;
  }

  .elementor-location-single
  .cmplz-document
  details.cmplz-dropdown
  summary::after {
    right: 18px;
  }

  .elementor-location-single
  .cmplz-document
  details.cmplz-dropdown
  > *:not(summary) {
    margin-right: 16px;
    margin-left: 16px;
  }

  .elementor-location-single
  .cmplz-document
  #cmplz-datarequest-form {
    gap: 16px;
    padding: 18px;
  }

  .elementor-location-single
  .cmplz-document
  #cmplz-datarequest-submit {
    width: 100%;
  }

  html[dir="rtl"]
  .elementor-location-single
  .cmplz-document
  details.cmplz-dropdown
  summary {
    padding-right: 16px;
    padding-left: 48px;
  }

  html[dir="rtl"]
  .elementor-location-single
  .cmplz-document
  details.cmplz-dropdown
  summary::after {
    right: auto;
    left: 18px;
  }
}