:root {
  --ink: #161719;
  --muted: #5f6873;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --line: #dce2e8;
  --charcoal: #202326;
  --charcoal-2: #2d3136;
  --orange: #f28a1d;
  --orange-dark: #c8680d;
  --teal: #1f6672;
  --green: #4d6b5a;
  --max: 1180px;
  --shadow: 0 22px 70px rgba(13, 18, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-v2 {
  background: #f7f8fa;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #1d1d1f;
  font-weight: 760;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px 6vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 226, 232, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 172px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #34383d;
  font-size: 0.93rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-video,
.hero-fallback,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-fallback {
  object-fit: cover;
  object-position: center;
}

.hero-fallback {
  z-index: 0;
}

.hero-video {
  z-index: 1;
  background: #111111;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(13, 15, 18, 0.86) 0%, rgba(13, 15, 18, 0.66) 42%, rgba(13, 15, 18, 0.16) 100%),
    linear-gradient(180deg, rgba(13, 15, 18, 0.12) 0%, rgba(13, 15, 18, 0.46) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), 88vw);
  margin: 0 auto;
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: 4.2rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #171717;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffa33c;
}

.button-shimmer {
  position: relative;
  overflow: hidden;
}

.button-shimmer-text {
  position: relative;
  display: inline-block;
  color: #171717;
}

.button-shimmer-text::after {
  content: attr(data-shimmer);
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: transparent;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 231, 170, 0) 28%,
    rgba(255, 226, 143, 0.24) 40%,
    rgba(255, 255, 255, 0.82) 50%,
    rgba(255, 226, 143, 0.24) 60%,
    rgba(255, 231, 170, 0) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  background-repeat: no-repeat;
  background-size: 310% 100%;
  background-position: 155% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px rgba(255, 244, 205, 0.18));
  opacity: 0;
  animation: ctaTextShimmer 4.8s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

@keyframes ctaTextShimmer {
  0%,
  8% {
    opacity: 0;
    background-position: 155% 0;
  }

  18% {
    opacity: 0.64;
  }

  82% {
    opacity: 0.78;
    background-position: -70% 0;
  }

  90%,
  100% {
    opacity: 0;
    background-position: -105% 0;
  }
}

.quick-facts {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quick-facts-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), 88vw);
  margin: 0 auto;
}

.quick-facts article {
  min-height: 124px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.quick-facts article:first-child {
  border-left: 1px solid var(--line);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--teal);
  font-size: 2.05rem;
  line-height: 1;
}

.quick-facts span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--soft);
}

.section-inner {
  width: min(var(--max), 88vw);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
}

.compact-heading {
  max-width: 620px;
}

.section-heading h2,
.coverage-content h2,
.contact-layout h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.coverage-content p,
.contact-layout p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-section {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.about-copy {
  max-width: 780px;
}

.about-copy p:not(.eyebrow) {
  max-width: 720px;
}

.about-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(15, 20, 26, 0.14);
}

.about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust-section {
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.trust-card {
  min-height: 280px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover,
.trust-card:focus-within {
  background: #ffffff;
  border-color: rgba(242, 138, 29, 0.72);
  box-shadow: 0 18px 40px rgba(15, 20, 26, 0.08);
  transform: translateY(-4px);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(242, 138, 29, 0.14);
  font-size: 1.38rem;
}

.trust-card h3 {
  margin: 28px 0 12px;
  font-size: 1.18rem;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.numbers-section {
  background: #090b0f;
  color: #ffffff;
  overflow: hidden;
}

.numbers-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), 88vw);
  margin: 0 auto;
}

.numbers-inner article {
  min-height: 220px;
  padding: 44px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.numbers-inner article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.numbers-inner strong,
.numbers-inner span {
  display: block;
}

.numbers-inner strong {
  font-size: 2.45rem;
  line-height: 1.05;
}

.numbers-inner span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.service-card {
  min-height: 310px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15, 20, 26, 0.05);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(242, 138, 29, 0.14);
  color: var(--orange-dark);
  font-weight: 900;
}

.service-card h3 {
  margin: 26px 0 12px;
  font-size: 1.18rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--orange-dark);
  font-size: 0.92rem;
  font-weight: 850;
}

.text-link::after {
  margin-left: 8px;
  content: ">";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

.clients-section {
  background: #ffffff;
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 58px;
  align-items: center;
}

.clients-panel {
  display: grid;
  gap: 18px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sector-grid span,
.brand-strip span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 850;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brand-strip span {
  justify-content: center;
  min-height: 68px;
  background: #111318;
  color: #ffffff;
  text-align: center;
}

.method-section {
  background: var(--soft);
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 46px;
  overflow-x: auto;
  padding: 6px 2px 26px;
  scrollbar-width: thin;
}

.timeline::before {
  position: absolute;
  top: 48px;
  right: 70px;
  left: 70px;
  height: 2px;
  background: linear-gradient(90deg, rgba(242, 138, 29, 0.18), rgba(242, 138, 29, 0.88), rgba(31, 102, 114, 0.32));
  content: "";
}

.timeline-step {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 78px 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 20, 26, 0.05);
}

.timeline-step span {
  position: absolute;
  top: 22px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--orange);
  color: #151515;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 0 0 1px rgba(242, 138, 29, 0.42);
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

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

.map-section {
  background: #ffffff;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 58px;
  align-items: center;
}

.map-copy h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.map-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.region-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(31, 102, 114, 0.1);
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 850;
}

.map-panel {
  padding: 24px;
  background: #0f1217;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-map {
  display: block;
  width: 100%;
  min-height: 360px;
}

.italy-shape {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
}

.route-line {
  fill: none;
  stroke: var(--orange);
  stroke-dasharray: 10 10;
  stroke-linecap: round;
  stroke-width: 4;
  animation: routeFlow 4.5s linear infinite;
}

.route-line-2,
.route-line-4 {
  stroke: #52a06e;
  animation-duration: 5.5s;
}

.map-point circle {
  fill: #52a06e;
  stroke: #ffffff;
  stroke-width: 3;
}

.map-home circle {
  fill: var(--orange);
}

.map-point text {
  fill: #ffffff;
  font-size: 20px;
  font-weight: 850;
}

.sample-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.sample-routes span {
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.final-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.final-cta img,
.final-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta img {
  object-fit: cover;
  object-position: center;
}

.final-cta-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.86), rgba(10, 12, 16, 0.48)),
    linear-gradient(180deg, rgba(10, 12, 16, 0.1), rgba(10, 12, 16, 0.58));
}

.final-cta-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 88vw);
  margin: 0 auto;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: 3.4rem;
  line-height: 1.02;
}

.service-page-main {
  padding-top: 76px;
}

.service-hero {
  padding: 112px 0 80px;
  background: #101318;
  color: #ffffff;
}

.service-hero-inner,
.service-content-inner {
  width: min(var(--max), 88vw);
  margin: 0 auto;
}

.service-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 3.65rem;
  line-height: 1.02;
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
}

.service-content {
  padding: 78px 0;
  background: #ffffff;
}

.service-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 56px;
}

.service-content h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
}

.service-content p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.privacy-content .service-content-inner {
  max-width: 860px;
}

.privacy-content h2 {
  margin-top: 42px;
  font-size: 1.6rem;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-updated {
  font-size: 0.98rem !important;
  color: rgba(255, 255, 255, 0.64) !important;
}

.privacy-index {
  padding: 28px;
  background: #f5f5f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.privacy-index h2 {
  margin-top: 0;
}

.privacy-index ol {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.privacy-index a {
  color: #1d1d1f;
  font-weight: 650;
}

.privacy-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.legal-data-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
}

.legal-data-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.legal-data-list dt {
  color: #1d1d1f;
  font-weight: 760;
}

.legal-data-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-data-list a {
  color: #1d1d1f;
  font-weight: 650;
}

.contact-info-page h2:not(:first-child) {
  margin-top: 52px;
}

.contact-actions {
  margin-top: 28px !important;
}

.service-aside {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-aside h3 {
  margin: 0 0 16px;
}

.service-aside ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

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

.service-aside li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -80;
  }
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 590px);
  min-height: 680px;
  background: var(--paper);
}

.coverage-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.coverage-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.coverage-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 7vw;
}

.route-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.route-item {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  border-left: 4px solid var(--line);
  background: var(--soft);
  border-radius: 6px;
}

.route-item::before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.route-main {
  border-left-color: var(--orange);
}

.route-main::before {
  background: var(--orange);
}

.route-item span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-item strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.why-section {
  background: #ffffff;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: start;
}

.why-grid {
  display: grid;
  gap: 16px;
}

.why-grid article {
  padding: 26px 0 26px 28px;
  border-left: 4px solid var(--orange);
}

.why-grid h3 {
  margin: 0;
  font-size: 1.2rem;
}

.why-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-dark {
  background: var(--charcoal);
  color: #ffffff;
}

.quote-layout,
.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: start;
}

.quote-layout,
.careers-form-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.section-heading-invert p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.quote-points,
.career-points {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.quote-points span,
.career-points span {
  position: relative;
  display: block;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.quote-points span::before,
.career-points span::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.quote-commercial-copy {
  max-width: 700px;
}

.quote-detail-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.quote-detail-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-detail-grid article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-detail-grid span {
  grid-row: span 2;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.quote-detail-grid strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.quote-detail-grid p,
.quote-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  line-height: 1.5;
}

.quote-note {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}

.career-points-light span {
  color: var(--muted);
}

.career-panel {
  padding: 30px;
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.career-panel h3 {
  margin: 0 0 18px;
  font-size: 1.22rem;
}

.career-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.career-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.career-panel li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.request-form,
.career-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.form-check {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 760;
}

.required-label {
  margin-left: 4px;
  color: inherit;
  font-size: 0.76em;
  font-weight: 600;
  opacity: 0.72;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  outline: none;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.form-note {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row select option {
  color: var(--ink);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 138, 29, 0.18);
}

.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.form-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--orange);
}

.form-check a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.form-status[data-state="success"] {
  color: #8fd7a5;
}

.form-status[data-state="error"] {
  color: #ffb4a8;
}

.request-form button:disabled,
.career-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.careers-section {
  background: var(--paper);
}

.career-form-light {
  background: var(--paper);
  border-color: var(--line);
  box-shadow: 0 18px 50px rgba(15, 20, 26, 0.08);
}

.career-form-light .form-row label,
.career-form-light .form-check {
  color: var(--ink);
}

.career-form-light .form-row input,
.career-form-light .form-row select,
.career-form-light .form-row textarea {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.career-form-light .form-row textarea::placeholder {
  color: #8a949f;
}

.career-form-light .form-check {
  color: var(--muted);
}

.career-form-light .form-row small {
  color: #7a838c;
}

.career-form-light .form-note {
  color: #6e6e73;
}

.career-form-light .form-check a {
  color: var(--orange-dark);
}

.career-form-light .form-status {
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 58px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-panel {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 20, 26, 0.08);
}

.contact-panel h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 1.22rem;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-panel div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-panel dt {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 750;
}

.contact-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), 88vw);
  margin: 0 auto;
  padding: 26px 0;
  font-size: 0.95rem;
}

.footer-inner a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding: 10px 5vw;
  }

  .brand-logo {
    width: 142px;
    height: 42px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 50px rgba(15, 20, 26, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header:focus-within .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .quick-facts-inner,
  .about-layout,
  .trust-grid,
  .numbers-inner,
  .service-grid,
  .clients-layout,
  .sector-grid,
  .brand-strip,
  .why-layout,
  .map-layout,
  .quote-layout,
  .careers-layout,
  .careers-form-layout,
  .contact-layout,
  .service-content-grid {
    grid-template-columns: 1fr;
  }

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

  .quick-facts article,
  .quick-facts article:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: auto;
  }

  .about-media {
    min-height: 380px;
  }

  .numbers-inner article,
  .numbers-inner article:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-card {
    min-height: auto;
  }

  .map-layout {
    gap: 36px;
  }

  .map-panel {
    padding: 18px;
  }

  .coverage-section {
    grid-template-columns: 1fr;
  }

  .coverage-content {
    padding: 68px 6vw;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 118px;
    height: 36px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 2.58rem;
  }

  .service-hero {
    padding: 88px 0 64px;
  }

  .service-hero h1 {
    font-size: 2.42rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .section-heading h2,
  .map-copy h2,
  .coverage-content h2,
  .contact-layout h2 {
    font-size: 2rem;
  }

  .quick-facts-inner {
    width: min(100% - 32px, var(--max));
  }

  .quick-facts article {
    min-height: 106px;
    padding: 22px;
  }

  .about-media {
    min-height: 320px;
  }

  .coverage-media {
    min-height: 320px;
  }

  .numbers-inner {
    width: min(100% - 32px, var(--max));
  }

  .numbers-inner article {
    min-height: 154px;
    padding: 26px 22px;
  }

  .numbers-inner strong {
    font-size: 2rem;
  }

  .brand-strip,
  .sample-routes {
    grid-template-columns: 1fr;
  }

  .route-map {
    min-height: 300px;
  }

  .map-point text {
    font-size: 18px;
  }

  .final-cta {
    min-height: 460px;
  }

  .final-cta-content {
    width: min(100% - 32px, var(--max));
  }

  .final-cta h2 {
    font-size: 2.28rem;
  }

  .route-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .why-grid article {
    padding: 22px 0 22px 20px;
  }

  .career-panel,
  .request-form,
  .career-form,
  .contact-panel {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    width: min(100% - 32px, var(--max));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .button-shimmer {
    box-shadow: none;
  }

  .button-shimmer-text::after {
    content: none;
    animation: none;
  }
}

/* V2.2 - Homepage piu immersiva, ispirata al ritmo Apple */
.apple-home {
  background: #f5f5f7;
  color: #1d1d1f;
}

.apple-home .site-header {
  min-height: 56px;
  padding: 7px max(22px, 5vw);
  background: rgba(251, 251, 253, 0.78);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.apple-home .brand-logo {
  width: 136px;
  height: 40px;
}

.apple-home .site-nav {
  gap: 26px;
  color: rgba(29, 29, 31, 0.78);
  font-size: 0.82rem;
  font-weight: 650;
}

.apple-home .site-nav a::after {
  bottom: 5px;
  height: 1px;
  background: #1d1d1f;
}

.apple-hero {
  min-height: 92svh;
  text-align: center;
}

.apple-hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.2), transparent 34%);
}

.hero-content-center {
  display: grid;
  justify-items: center;
  width: min(1080px, 88vw);
  padding-top: 72px;
}

.hero-content-center .eyebrow,
.apple-copy-center .eyebrow,
.apple-process .eyebrow,
.apple-final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.proof-intro .eyebrow,
.service-showcase .eyebrow,
.apple-clients .eyebrow,
.apple-coverage .eyebrow,
.split-copy .eyebrow {
  color: #bf5b00;
}

.apple-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

.apple-hero .hero-lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.48rem);
  line-height: 1.48;
  text-wrap: balance;
}

.apple-home .button {
  min-height: 44px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 760;
}

.apple-home .button-primary {
  background: var(--orange);
  color: #171717;
}

.apple-home .button-primary:hover,
.apple-home .button-primary:focus-visible {
  background: #ffa33c;
}

.apple-home .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.apple-panel {
  padding: 112px 0;
}

.apple-copy {
  width: min(880px, 88vw);
  margin: 0 auto;
}

.apple-copy-center {
  text-align: center;
}

.apple-copy h2,
.split-copy h2,
.coverage-copy h2,
.apple-final-cta h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(2.45rem, 5.5vw, 5.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.apple-copy p:not(.eyebrow),
.split-copy p,
.coverage-copy p,
.apple-final-cta p {
  margin: 22px 0 0;
  color: #6e6e73;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}

.proof-intro {
  background: #ffffff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 88vw);
  margin: 58px auto 0;
}

.proof-card {
  min-height: 260px;
  padding: 30px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.proof-card:hover,
.proof-card:focus-within {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.proof-index {
  display: block;
  color: #86868b;
  font-size: 0.82rem;
  font-weight: 800;
}

.proof-card h3 {
  margin: 42px 0 12px;
  color: #1d1d1f;
  font-size: 1.26rem;
}

.proof-card p {
  margin: 0;
  color: #6e6e73;
}

.apple-numbers {
  padding-top: 104px;
  background: #000000;
  color: #ffffff;
}

.numbers-heading {
  width: min(960px, 88vw);
  margin: 0 auto 42px;
}

.numbers-heading .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.numbers-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.numbers-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.5;
}

.apple-numbers .numbers-inner {
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, 88vw);
}

.apple-numbers .numbers-inner article {
  min-height: 240px;
  padding: 52px 34px;
  border-color: rgba(255, 255, 255, 0.13);
}

.apple-numbers .numbers-inner strong {
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  line-height: 0.96;
  white-space: nowrap;
}

.apple-numbers .numbers-inner span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.apple-numbers .numbers-inner strong [data-count] {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  text-transform: none;
}

.apple-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 0;
  min-height: 780px;
  background: #ffffff;
}

.split-media {
  position: relative;
  overflow: hidden;
}

.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(32px, 7vw, 112px);
}

.split-copy h2 {
  font-size: clamp(2.45rem, 5vw, 5rem);
}

.service-showcase {
  background: #f5f5f7;
}

.apple-service-grid {
  width: min(1180px, 88vw);
  margin-right: auto;
  margin-left: auto;
}

.apple-card {
  border: 0;
  background: #ffffff;
  box-shadow: none;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.apple-card:hover,
.apple-card:focus-within {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.apple-clients {
  padding: 112px 0;
  background: #ffffff;
}

.sector-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
  width: min(1180px, 88vw);
  margin: 48px auto 0;
}

.sector-rail span {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 18px;
  background: #f5f5f7;
  border-radius: 8px;
  color: #1d1d1f;
  font-weight: 800;
  text-align: center;
}

.apple-process {
  padding: 118px 0 128px;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
}

.apple-process .apple-copy h2 {
  color: #ffffff;
}

.process-track {
  position: relative;
  --process-gap: 14px;
  --process-edge: 80px;
  --truck-distance: calc(min(1260px, 92vw) - (var(--process-edge) * 2));
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: var(--process-gap);
  width: min(1260px, 92vw);
  margin: 60px auto 0;
  padding: 6px 0 34px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.process-track::before {
  display: none;
  content: "";
}

.process-track::after {
  position: absolute;
  top: 68px;
  left: var(--process-edge);
  z-index: 1;
  display: block;
  width: var(--truck-distance);
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.process-track.is-visible::after,
.has-motion .apple-process:has(.process-step.is-visible) .process-track::after {
  animation: processLine 1375ms linear 55ms forwards;
}

.process-truck {
  position: absolute;
  top: 68px;
  left: var(--process-edge);
  z-index: 1;
  width: 50px;
  height: 25px;
  color: var(--orange);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
}

.process-truck svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.process-truck-body,
.process-truck-cab {
  fill: currentColor;
}

.process-truck-window {
  fill: #171717;
}

.process-truck-light {
  fill: #fff1d6;
}

.process-truck-wheel {
  fill: #050505;
  stroke: #ffffff;
  stroke-width: 2;
}

.process-track.is-visible .process-truck,
.has-motion .apple-process:has(.process-step.is-visible) .process-truck {
  animation: processTruck 1250ms linear 50ms forwards;
}

.process-step {
  position: relative;
  z-index: 2;
  min-height: 260px;
  padding: 96px 22px 24px;
  background: #161617;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.process-step:not(:last-of-type)::after {
  display: none;
  content: "";
}

.process-step span {
  position: absolute;
  top: 11px;
  left: 22px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid #000000;
  border-radius: 50%;
  background: var(--orange);
  color: #171717;
  font-size: 0.78rem;
  font-weight: 850;
}

.process-step h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.08rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.apple-coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: 112px max(6vw, 28px);
  background: #f5f5f7;
}

.coverage-copy {
  max-width: 580px;
}

.coverage-map-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
}

.real-map-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef1f4;
}

.static-map-panel {
  min-height: 0;
  aspect-ratio: 2786 / 2038;
}

.real-route-map {
  isolation: isolate;
  background: #dcebcf;
}

.route-map-base,
.route-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-map-base {
  z-index: 1;
  object-fit: cover;
  filter: saturate(0.98) contrast(0.98);
}

.route-map-overlay {
  z-index: 2;
  pointer-events: none;
}

.route-map-overlay marker path {
  fill: var(--orange);
}

.route-glow path,
.route-lines path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.route-glow path {
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 5.2;
}

.route-lines path {
  stroke: var(--orange);
  stroke-opacity: 0.92;
  stroke-width: 2.1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.route-points circle {
  fill: #ffffff;
  stroke: var(--orange);
  stroke-width: 2.4;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.18));
  vector-effect: non-scaling-stroke;
}

.route-points .route-hub {
  fill: var(--orange);
  stroke: #ffffff;
  stroke-width: 3.2;
}

.map-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  color: #1d1d1f;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.map-label-assago {
  top: 54.5%;
  left: 40.1%;
  background: #1d1d1f;
  color: #ffffff;
}

.map-label-torino {
  top: 66.1%;
  left: 13.9%;
}

.map-label-alessandria {
  top: 73.3%;
  left: 30.9%;
}

.map-label-genova {
  top: 89.5%;
  left: 37%;
}

.map-label-bergamo {
  top: 44%;
  left: 50.3%;
}

.map-label-verona {
  top: 53.2%;
  left: 74.7%;
}

.map-label-bologna {
  top: 86.9%;
  left: 81.8%;
}

.apple-final-cta {
  min-height: 86svh;
}

.apple-final-cta .final-cta-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.apple-final-cta .final-cta-content {
  width: min(980px, 88vw);
}

.apple-final-cta h2 {
  color: #ffffff;
  font-size: clamp(2.8rem, 6.6vw, 6.4rem);
}

.apple-final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-apple {
  background: #f5f5f7;
  color: #4f4f54;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(160px, 0.8fr) minmax(210px, 1fr) minmax(170px, 0.8fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0 24px;
}

.footer-block {
  display: grid;
  gap: 8px;
}

.footer-grid strong {
  color: #1d1d1f;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.footer-grid a {
  color: #4f4f54;
  font-weight: 600;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--orange-dark);
}

.quote-hero {
  padding: 88px 0 52px;
  background: #f5f5f7;
  color: #1d1d1f;
}

.quote-hero .eyebrow {
  color: var(--orange-dark);
}

.quote-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.quote-hero p:not(.eyebrow) {
  max-width: 660px;
  color: #6e6e73;
}

.form-page .form-section {
  padding-top: 76px;
}

.footer-grid p,
.footer-grid span {
  margin: 0;
  color: #6e6e73;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-hours small {
  display: inline-block;
  margin-left: 5px;
  color: #8d8d92;
  font-size: 0.82em;
  font-weight: 500;
  vertical-align: middle;
}

.footer-actions {
  align-content: start;
}

.footer-actions a {
  width: fit-content;
  color: #1d1d1f;
  font-weight: 650;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px;
  align-items: center;
  width: min(var(--max), 88vw);
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #86868b;
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-legal a {
  color: #6e6e73;
  font-weight: 500;
}

.footer-legal span {
  color: #86868b;
  font-weight: 500;
}

.footer-copyright {
  flex-basis: 100%;
}

.footer-copyright {
  color: #8f8f94 !important;
  font-size: 0.78rem;
  font-weight: 450 !important;
}

.has-motion [data-animate] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 780ms cubic-bezier(0.16, 1, 0.3, 1), transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-motion [data-animate="left"] {
  transform: translateX(-48px);
}

.has-motion [data-animate="right"] {
  transform: translateX(48px);
}

.has-motion [data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.has-motion .proof-card:nth-child(2),
.has-motion .service-card:nth-child(2),
.has-motion .process-step:nth-child(2),
.has-motion .sector-rail span:nth-child(2) {
  transition-delay: 80ms;
}

.has-motion .proof-card:nth-child(3),
.has-motion .service-card:nth-child(3),
.has-motion .process-step:nth-child(3),
.has-motion .sector-rail span:nth-child(3) {
  transition-delay: 160ms;
}

.has-motion .proof-card:nth-child(4),
.has-motion .service-card:nth-child(4),
.has-motion .process-step:nth-child(4),
.has-motion .sector-rail span:nth-child(4) {
  transition-delay: 240ms;
}

.has-motion .process-step:nth-child(5),
.has-motion .sector-rail span:nth-child(5) {
  transition-delay: 320ms;
}

.has-motion .process-step:nth-child(6),
.has-motion .sector-rail span:nth-child(6) {
  transition-delay: 400ms;
}

.has-motion .process-step:nth-child(7) {
  transition-delay: 480ms;
}

.has-motion .process-step,
.has-motion .process-step:nth-child(1),
.has-motion .process-step:nth-child(2),
.has-motion .process-step:nth-child(3),
.has-motion .process-step:nth-child(4),
.has-motion .process-step:nth-child(5),
.has-motion .process-step:nth-child(6),
.has-motion .process-step:nth-child(7) {
  transition-delay: 0ms;
  transition-duration: 190ms;
}

.has-motion .process-step::after {
  opacity: 0;
  transform: scaleX(0);
}

.has-motion .process-step.is-visible::after {
  animation: none;
}

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

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

@keyframes processTruck {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }

  6% {
    opacity: 1;
  }

  92% {
    opacity: 1;
    transform: translate3d(var(--truck-distance), -50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(var(--truck-distance) + 74px), -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-track::after {
    animation: none !important;
    transform: scaleX(1);
  }

  .process-truck {
    display: none;
  }
}

@media (max-width: 1180px) {
  .proof-grid,
  .apple-service-grid,
  .sector-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apple-coverage,
  .coverage-map-card,
  .apple-split {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 520px;
  }

  .coverage-copy {
    max-width: 860px;
  }
}

@media (max-width: 980px) {
  .apple-home .site-nav {
    gap: 0;
    font-size: 0.95rem;
  }

  .apple-home .site-nav.is-open {
    display: flex;
  }

  .apple-home .site-header:focus-within .site-nav {
    display: flex;
  }

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

@media (max-width: 720px) {
  .apple-panel,
  .apple-clients,
  .apple-process,
  .apple-coverage {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .proof-grid,
  .apple-service-grid,
  .sector-rail,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-data-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .apple-split {
    min-height: auto;
  }

  .split-media {
    min-height: 360px;
  }

  .split-copy {
    padding: 72px 24px;
  }

  .coverage-map-card {
    padding: 18px;
  }

  .real-map-panel {
    min-height: 430px;
  }

  .real-route-map {
    min-height: 0;
  }

  .map-label {
    padding: 5px 7px;
    font-size: 0.62rem;
  }

  .apple-final-cta {
    min-height: 74svh;
  }
}

/* Cookie consent: componente tecnico, isolato dal layout del sito. */
.consent-banner-layer,
.consent-preferences-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.consent-banner-layer[hidden],
.consent-preferences-layer[hidden] {
  display: none;
}

.consent-banner-layer {
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  background: rgba(29, 29, 31, 0.16);
}

.consent-banner,
.consent-preferences {
  position: relative;
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #1d1d1f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.consent-banner {
  padding: 28px;
  pointer-events: auto;
}

.consent-banner h2,
.consent-preferences h2 {
  margin: 6px 42px 10px 0;
  color: #1d1d1f;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.consent-banner p,
.consent-preferences > p,
.consent-category p {
  color: #5f5f63;
  font-size: 0.94rem;
  line-height: 1.55;
}

.consent-kicker {
  margin: 0;
  color: var(--orange-dark) !important;
  font-size: 0.76rem !important;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.consent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #f5f5f7;
  color: #1d1d1f;
  font: inherit;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.consent-policy-link,
.footer-cookie-link {
  color: #4f4f54;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(79, 79, 84, 0.35);
  text-underline-offset: 3px;
}

.consent-policy-link:hover,
.consent-policy-link:focus-visible,
.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
  color: var(--orange-dark);
}

.consent-banner-actions,
.consent-preferences-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.consent-action {
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid #1d1d1f;
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.consent-action-primary {
  background: #1d1d1f;
  color: #ffffff;
}

.consent-action-secondary {
  background: #ffffff;
  color: #1d1d1f;
}

.consent-action:hover {
  border-color: var(--orange-dark);
}

.consent-action-primary:hover {
  background: var(--orange-dark);
}

.consent-customize {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 2px auto 0;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  color: #4f4f54;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(79, 79, 84, 0.35);
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-preferences-layer {
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(29, 29, 31, 0.58);
}

.consent-preferences {
  padding: 30px;
}

.consent-preferences:focus {
  outline: none;
}

.consent-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.consent-category:first-of-type {
  margin-top: 24px;
}

.consent-category strong {
  color: #1d1d1f;
  font-size: 0.98rem;
}

.consent-category p {
  margin: 5px 0 0;
}

.consent-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #4f4f54;
  font-size: 0.84rem;
  font-weight: 650;
  white-space: nowrap;
}

.consent-switch input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--orange-dark);
}

.consent-close:focus-visible,
.consent-action:focus-visible,
.consent-customize:focus-visible,
.consent-switch input:focus-visible,
.footer-cookie-link:focus-visible {
  outline: 3px solid rgba(242, 138, 29, 0.42);
  outline-offset: 3px;
}

.consent-preferences-open {
  overflow: hidden;
}

.footer-cookie-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: inherit;
  cursor: pointer;
}

@media (max-width: 600px) {
  .consent-banner-layer {
    place-items: end center;
    padding: 12px;
  }

  .consent-banner,
  .consent-preferences {
    width: 100%;
    max-height: calc(100svh - 24px);
    padding: 24px 20px;
  }

  .consent-banner-actions,
  .consent-preferences-actions {
    grid-template-columns: 1fr;
  }

  .consent-customize {
    grid-column: auto;
  }

  .consent-category {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-banner,
  .consent-preferences {
    scroll-behavior: auto;
  }
}
