/* VRC On Tour — AZIENDA landing (www.vrcitaly.it) */
.page-ontour-azienda {
  --az-pop: #b7b5e4;
  --az-ink: #050509;
  --az-panel: #333440;
  --az-light: #e8e8e8;
  background: var(--az-ink);
  color: var(--az-light);
}
.page-ontour-azienda .site-header {
  background: #e8e8e8;
  border-bottom: 1px solid rgba(51,52,64,0.08);
}
.page-ontour-azienda .btn--cta {
  background: #b7b5e4 !important;
  border-color: #b7b5e4 !important;
  color: #333440 !important;
  font-family: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.page-ontour-azienda .btn--cta:hover,
.page-ontour-azienda .btn--cta:focus-visible {
  background: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
  color: #333440 !important;
}
.page-ontour-azienda .btn--outline-light {
  border-color: rgba(232,232,232,0.55);
  color: #e8e8e8;
  font-family: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.az { overflow-x: clip; }
.az-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2,0.7,0,1), transform 700ms cubic-bezier(0.2,0.7,0,1);
}
.az-reveal.is-visible { opacity: 1; transform: none; }
.az-hand {
  margin: 0;
  font-family: "Segoe Script", "Apple Chancery", "Snell Roundhand", cursive;
  color: #b7b5e4;
  line-height: 1.1;
}

/* Hero */
.az-hero {
  position: relative;
  min-height: min(88vh, 48rem);
  display: grid;
  align-items: center;
  padding: 6.5rem 1.25rem 3.5rem;
  isolation: isolate;
}
.az-hero__media,
.az-hero__veil { position: absolute; inset: 0; z-index: -1; }
.az-hero__media picture,
.az-hero__media img,
.az-hero__media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.az-hero__media picture { position: absolute; inset: 0; }
.az-hero__media video { position: absolute; inset: 0; z-index: 1; }
.az-hero__veil {
  background:
    linear-gradient(90deg, rgba(5,5,9,0.92) 0%, rgba(5,5,9,0.7) 48%, rgba(5,5,9,0.4) 100%),
    linear-gradient(180deg, rgba(5,5,9,0.25), rgba(5,5,9,0.85) 80%, #050509 100%);
}
.az-hero__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.az-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-bold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b7b5e4;
}
.az-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-bold);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 14ch;
}
.az-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(232,232,232,0.8);
}
.az-hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; align-items: center;
}
@media (max-width: 699px) {
  .az-hero__actions .btn { width: 100%; justify-content: center; }
}

/* Why + trust (mockup) */
.az-why {
  padding: clamp(3rem, 7vw, 5.5rem) 1.25rem clamp(3.5rem, 7vw, 5rem);
  background: #e8e8e8;
  color: #333440;
  overflow: clip;
}
.az-why__inner { width: min(1180px, 100%); margin: 0 auto; }
.az-why__layout {
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 1020px) {
  .az-why__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.78fr);
    gap: 2rem 1.5rem;
    align-items: start;
  }
}
.az-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-family: var(--font-bold);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b7b5e4;
}
.az-why__eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: #b7b5e4;
}
.az-why__title-row {
  position: relative;
  margin-bottom: 0.9rem;
}
.az-why__head h2 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 15ch;
}
.az-why__hand {
  display: none;
}
@media (min-width: 1020px) {
  .az-why__hand {
    display: block;
    position: absolute;
    right: 0;
    top: 0.35rem;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    transform: rotate(-8deg);
    text-align: right;
  }
}
.az-why__lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.55;
  color: rgba(51,52,64,0.72);
}
.az-why__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .az-why__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
}
.az-why__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.2rem 1.25rem;
  background: #fff;
  border-radius: 1.15rem;
  border: 1px solid rgba(51,52,64,0.05);
  box-shadow: 0 16px 40px rgba(51,52,64,0.07);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.az-why__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(183,181,228,0.24);
}
.az-why__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.az-why__icon {
  width: 2.7rem; height: 2.7rem;
  display: grid; place-items: center;
  border-radius: 0.75rem;
  background: #b7b5e4;
  color: #333440;
}
.az-why__icon svg { width: 1.25rem; height: 1.25rem; }
.az-why__num {
  font-family: var(--font-bold);
  font-size: 1.55rem;
  line-height: 1;
  color: rgba(51,52,64,0.16);
  letter-spacing: -0.03em;
}
.az-why__card h3 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: 1.15rem;
}
.az-why__card > p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(51,52,64,0.72);
  flex: 1;
}
.az-why__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.55rem;
  font-family: var(--font-bold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(51,52,64,0.55);
}
.az-why__tag::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: #b7b5e4;
}
.az-why__visual {
  position: relative;
  display: none;
}
@media (min-width: 1020px) {
  .az-why__visual {
    display: block;
    padding-top: 0.5rem;
  }
}
.az-why__rail {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  text-align: right;
}
.az-why__rail::before {
  content: "";
  justify-self: end;
  width: 2rem;
  height: 2px;
  background: #b7b5e4;
  margin-bottom: 0.15rem;
}
.az-why__rail li {
  font-family: var(--font-bold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(51,52,64,0.45);
}
.az-why__frame {
  position: relative;
  margin-top: 4.5rem;
  margin-left: 0.5rem;
  overflow: hidden;
  border-radius: 1.2rem;
  transform: skewX(-6deg);
  box-shadow: 0 28px 60px rgba(51,52,64,0.22);
  background: #333440;
}
.az-why__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transform: skewX(6deg) scale(1.08);
  transform-origin: center;
}
.az-why__caption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: auto;
  max-width: 12rem;
  padding: 0.85rem 0.9rem 0.75rem;
  background: rgba(5,5,9,0.78);
  color: #e8e8e8;
  transform: skewX(6deg);
  backdrop-filter: blur(4px);
}
.az-why__caption p {
  margin: 0 0 0.55rem;
  font-family: var(--font-bold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}
.az-why__caption img {
  width: 3.6rem;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  aspect-ratio: auto;
  transform: none;
}
.az-why__trust {
  display: grid;
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(51,52,64,0.14);
  align-items: end;
}
@media (min-width: 860px) {
  .az-why__trust {
    grid-template-columns: minmax(0,1fr) auto;
    gap: 2rem;
  }
}
.az-why__trust-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.65rem;
  font-family: var(--font-bold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(51,52,64,0.5);
}
.az-why__trust-kicker::after {
  content: "";
  width: 3rem;
  height: 1px;
  background: rgba(51,52,64,0.25);
}
.az-why__trust-copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-bold);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.az-why__trust-line {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-family: var(--font-bold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(51,52,64,0.55);
}
.az-why__trust-line::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: #b7b5e4;
}
.az-why__trust-side {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 860px) {
  .az-why__trust-side { justify-content: flex-end; }
}
.az-why__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #b7b5e4;
  color: #333440;
  box-shadow: 0 12px 28px rgba(183,181,228,0.35);
}
.az-why__badge svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.az-why__badge strong {
  font-family: var(--font-bold);
  font-size: 1.05rem;
}
.az-why__badge span {
  font-family: var(--font-medium);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 12ch;
  line-height: 1.2;
}
.az-why__trust-logo {
  width: 5.5rem;
  height: auto;
  opacity: 0.9;
}

/* Case */
.az-case {
  padding: clamp(3.2rem, 7vw, 5.5rem) 1.25rem;
  background: #050509;
}
.az-case__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 960px) {
  .az-case__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
  }
}
.az-case__media {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  aspect-ratio: 16/10;
  background: #12121a;
}
.az-case__media video,
.az-case__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.az-case__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  border: 0; background: transparent; cursor: pointer; padding: 0;
}
.az-case__play span {
  width: 4.2rem; height: 4.2rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(183,181,228,0.95);
  color: #333440;
  transition: transform 200ms ease;
}
.az-case__play:hover span { transform: scale(1.06); }
.az-case__play svg { width: 1.25rem; height: 1.25rem; margin-left: 0.15rem; }
.az-case__media.is-playing .az-case__play { display: none; }
.az-case__kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-bold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b7b5e4;
}
.az-case__copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-bold);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.az-case__copy > p {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  color: rgba(232,232,232,0.75);
  line-height: 1.55;
}
.az-case__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-bold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7b5e4;
  text-decoration: none;
}
.az-case__link:hover { color: #e8e8e8; }
.az-case__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  border-top: 1px solid rgba(232,232,232,0.14);
  padding-top: 1.25rem;
}
.az-case__stats strong {
  display: block;
  font-family: var(--font-bold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #b7b5e4;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.az-case__stats span {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-medium);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.68);
  line-height: 1.3;
}
@media (max-width: 599px) {
  .az-case__stats { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* Process */
.az-process {
  padding: clamp(3.2rem, 7vw, 5.5rem) 1.25rem;
  background: #e8e8e8;
  color: #333440;
}
.az-process__inner { width: min(1180px, 100%); margin: 0 auto; }
.az-process__head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.75rem;
}
.az-process__head h2 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
  max-width: 16ch;
}
.az-process__head a {
  font-family: var(--font-bold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333440;
  text-decoration: none;
}
.az-process__head a:hover { color: #b7b5e4; }
.az-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .az-steps { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.1rem; }
}
.az-steps li {
  position: relative;
  padding: 1.35rem 1.15rem 1.4rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(51,52,64,0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.az-steps li:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(183,181,228,0.2);
}
@media (min-width: 900px) {
  .az-steps li:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -0.7rem;
    top: 1.6rem;
    color: #b7b5e4;
    font-size: 1.1rem;
    z-index: 1;
  }
}
.az-steps__num {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-bold);
  font-size: 1.2rem;
  color: #b7b5e4;
}
.az-steps__icon {
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  margin-bottom: 0.85rem;
  border-radius: 0.65rem;
  background: rgba(183,181,228,0.35);
  color: #333440;
}
.az-steps__icon svg { width: 1.15rem; height: 1.15rem; }
.az-steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-bold);
  font-size: 1.05rem;
}
.az-steps p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(51,52,64,0.7);
}

/* FAQ */
.az-faq {
  padding: clamp(3rem, 6vw, 5rem) 1.25rem;
  background: #e8e8e8;
  color: #333440;
}
.az-faq__inner { width: min(980px, 100%); margin: 0 auto; }
.az-faq__head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.25rem;
}
.az-faq__head h2 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}
.az-faq__head a {
  font-family: var(--font-bold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7b5e4;
  text-decoration: none;
}
.az-faq__list {
  display: grid;
  gap: 0;
}
@media (min-width: 900px) {
  .az-faq__list { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
}
.az-faq details { border-bottom: 1px solid rgba(51,52,64,0.16); }
.az-faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1.1rem 1.75rem 1.1rem 0;
  font-family: var(--font-medium);
  font-size: 1rem;
}
.az-faq summary::-webkit-details-marker { display: none; }
.az-faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: #b7b5e4;
  font-size: 1.2rem;
}
.az-faq details[open] summary::after { content: "–"; }
.az-faq details p {
  margin: 0 0 1.1rem;
  padding-right: 1rem;
  font-family: var(--font-body);
  color: rgba(51,52,64,0.75);
  line-height: 1.5;
}

/* Closing */
.az-closing {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem;
  text-align: center;
  isolation: isolate;
}
.az-closing__media { position: absolute; inset: 0; z-index: -1; }
.az-closing__media img { width: 100%; height: 100%; object-fit: cover; }
.az-closing__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,9,0.55), rgba(5,5,9,0.88));
}
.az-closing__inner { width: min(760px, 100%); position: relative; }
.az-closing__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-bold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b7b5e4;
}
.az-closing h2 {
  margin: 0 0 1.35rem;
  font-family: var(--font-bold);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.05;
}
.az-closing__note {
  margin: 0.9rem 0 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(232,232,232,0.8);
}
.az-closing .az-hand {
  position: absolute;
  right: -1rem;
  bottom: -0.5rem;
  font-size: clamp(1rem, 2vw, 1.35rem);
  transform: rotate(-7deg);
  display: none;
}
@media (min-width: 900px) {
  .az-closing .az-hand { display: block; }
}
.page-ontour-azienda .ot-sticky__btn {
  background: #b7b5e4 !important;
  color: #333440 !important;
}
@media (prefers-reduced-motion: reduce) {
  .az-reveal { opacity: 1; transform: none; transition: none; }
}
