﻿:root {
  --brand-blue: #046bd2;
  --brand-blue-deep: #045cb4;
  --brand-navy: rgb(2, 65, 106);
  --brand-slate: #334155;
  --brand-cloud: #f0f5fa;
  --brand-line: #d6e2ee;
  --brand-red: #d5484a;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-card: 0 20px 50px -30px rgba(4, 92, 180, 0.45);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--brand-slate);
  background-color: #ffffff;
}

@media (max-width: 840px) {
  html.is-nav-scroll-locked {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.is-nav-scroll-locked {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    touch-action: none;
  }
}

main {
  padding-bottom: 3rem;
}

.page-bg {
  display: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: #ffffff;
  border-bottom: 1px solid var(--brand-line);
}

.site-header .container.header-inner {
  width: 100%;
  margin: 0;
  padding-left: clamp(0.8rem, 1.8vw, 1.6rem);
  padding-right: clamp(0.8rem, 1.8vw, 1.6rem);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 86px;
}

.brand img {
  width: 168px;
  height: auto;
}

.main-nav {
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn.header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-left: 0.35rem;
  font-size: 0.93rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(
      120deg,
      #b83235 0%,
      var(--brand-red) 36%,
      #ec6668 68%,
      #b83235 100%
    );
  background-size: 260% 260%;
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px -22px rgba(213, 72, 74, 0.95);
  transform: translateZ(0);
  animation: faadButtonColorFlow 8s ease-in-out infinite;
}

.mobile-nav-cta {
  display: none;
}

.main-nav a {
  color: var(--brand-slate);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 236px;
  height: 0.65rem;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 50;
  display: grid;
  width: 236px;
  gap: 0.18rem;
  padding: 0.5rem;
  border: 1px solid rgba(4, 107, 210, 0.12);
  border-top: 2px solid var(--brand-blue);
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 18px 34px -26px rgba(15, 23, 42, 0.85);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 999px;
  color: #06406a;
  background-color: rgba(4, 107, 210, 0.06);
  font-family: "Lora", serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.64rem 0.82rem;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown-menu a.nav-dropdown-overview {
  display: none;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a:focus-visible,
.main-nav .nav-dropdown-menu a.is-active {
  color: rgb(4, 102, 200);
  background-color: rgba(4, 107, 210, 0.14);
  transform: translateX(2px);
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.main-nav > a.is-active,
.main-nav .nav-dropdown-trigger:hover,
.main-nav .nav-dropdown-trigger:focus-visible,
.main-nav .nav-dropdown-trigger.is-active {
  color: var(--brand-blue-deep);
  background-color: rgba(4, 107, 210, 0.12);
}

.menu-toggle {
  display: none;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  padding: 0.82rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
}

.btn-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background-color: var(--brand-red);
  background-image: none;
  box-shadow: 0 16px 35px -24px rgba(213, 72, 74, 0.9);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary::before,
.btn.header-cta::before,
.main-nav .mobile-nav-cta::before,
.network-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.24) 50%,
      transparent 62%,
      transparent 100%
    );
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 0.24s ease,
    transform 0.5s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #b83235;
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 22px 42px -26px rgba(213, 72, 74, 0.92),
    0 16px 30px -24px rgba(184, 50, 53, 0.72);
}

.btn.header-cta:hover,
.btn.header-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 42px -26px rgba(213, 72, 74, 0.95),
    0 16px 30px -24px rgba(213, 72, 74, 0.82);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before,
.btn.header-cta:hover::before,
.btn.header-cta:focus-visible::before,
.main-nav .mobile-nav-cta:hover::before,
.main-nav .mobile-nav-cta:focus-visible::before,
.network-cta:hover::before,
.network-cta:focus-visible::before {
  opacity: 1;
  transform: translateX(120%);
}

.lead-form .btn-primary:hover,
.lead-form .btn-primary:focus-visible {
  box-shadow:
    0 22px 42px -26px rgba(184, 50, 53, 0.95),
    0 16px 30px -24px rgba(213, 72, 74, 0.72);
}

@keyframes faadButtonColorFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .cookie-fab,
  .mobile-nav-cta,
  .btn.header-cta::before,
  .main-nav .mobile-nav-cta::before,
  .network-cta,
  .network-cta::before,
  .network-cta span {
    animation: none;
    transition: none;
  }

  .network-cta:hover,
  .network-cta:focus-visible,
  .network-cta:hover span,
  .network-cta:focus-visible span {
    transform: none;
  }
}

.btn-secondary {
  color: var(--brand-blue-deep);
  background-color: transparent;
  border: 1px solid rgba(4, 92, 180, 0.35);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: rgba(4, 107, 210, 0.08);
}

.cookie-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--brand-navy);
  background: var(--brand-navy);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px -18px rgba(2, 65, 106, 0.9);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.22s ease,
    transform 0.18s ease;
}

.cookie-fab:hover,
.cookie-fab:focus-visible {
  transform: translateY(-1px);
  background-color: var(--brand-navy);
  border-color: var(--brand-navy);
  box-shadow: 0 18px 34px -20px rgba(2, 65, 106, 0.9);
}

.cookie-fab-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.cookie-fab-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cookie-fab .cookie-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-fab .cookie-dot {
  fill: currentColor;
}

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

.cookie-fab-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 23px;
  height: 23px;
  padding: 0 5px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--brand-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(2, 65, 106, 0.28);
}

.cookie-fab.is-on-dark {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--brand-navy);
  box-shadow: 0 18px 34px -20px rgba(255, 255, 255, 0.86);
}

.cookie-fab.is-on-dark:hover,
.cookie-fab.is-on-dark:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--brand-navy);
  box-shadow: 0 18px 34px -20px rgba(255, 255, 255, 0.86);
}

body.is-cookie-dialog-open {
  overflow: hidden;
}

.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.cookie-preferences.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-preferences-panel {
  position: relative;
  width: min(700px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background-color: #eef2f6;
  border: 1px solid #c9d3de;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 22px 46px -30px rgba(15, 23, 42, 0.8);
}

.cookie-preferences-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  border: 1px solid #c9d3de;
  border-radius: 999px;
  background-color: #f7f9fc;
  color: var(--brand-navy);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-preferences-panel h2 {
  font-size: 2rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: #0f315d;
  margin-right: 3rem;
}

.cookie-preferences-panel > p {
  margin: 0.6rem 0 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

.cookie-preferences-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.cookie-preferences-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #c9d3de;
  border-radius: 12px;
  background-color: #e9eef4;
  padding: 0.85rem 0.75rem;
}

.cookie-preferences-item h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #1f2937;
}

.cookie-preferences-item p {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.95rem;
}

.cookie-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 26px;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.cookie-toggle span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-color: #b8c2cf;
  transition: background-color 0.2s ease;
}

.cookie-toggle span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + span {
  background-color: #de5c57;
}

.cookie-toggle input:checked + span::after {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + span {
  opacity: 0.9;
}

.cookie-toggle input:disabled + span::after {
  transform: translateX(18px);
}

.cookie-toggle input:disabled ~ span,
.cookie-toggle input:disabled + span {
  cursor: not-allowed;
}

.cookie-preferences-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.cookie-preferences-btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background-color: #165481;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 0.82rem 1rem;
  cursor: pointer;
}

.cookie-preferences-btn:hover,
.cookie-preferences-btn:focus-visible {
  filter: brightness(1.06);
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--brand-navy);
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  line-height: 1.14;
}

h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.lead {
  margin: 1rem 0 1.5rem;
  max-width: 58ch;
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.hero {
  margin-top: 0;
  padding: 0;
  background:
    linear-gradient(102deg, rgba(7, 34, 60, 0.84) 0%, rgba(7, 34, 60, 0.65) 44%, rgba(7, 34, 60, 0.35) 100%),
    url("./assets/faad-home-hero-main.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  min-height: clamp(430px, 52vw, 620px);
  padding: clamp(2.9rem, 5.5vw, 4.8rem) clamp(1rem, 3vw, 2.4rem);
  display: grid;
  align-content: center;
  position: relative;
}

.hero-copy {
  max-width: min(760px, 100%);
}

.hero .eyebrow {
  color: #d8e8fb;
}

.hero h1 {
  color: #ffffff;
  max-width: 22ch;
}

.hero .lead {
  color: #ebf3ff;
  max-width: 56ch;
}

.hero .btn-secondary {
  color: var(--brand-blue-deep);
  border-color: #ffffff;
  background-color: #ffffff;
  box-shadow: 0 16px 35px -24px rgba(4, 92, 180, 0.55);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background-color: #eaf3ff;
  border-color: #eaf3ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-stats {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-stats article {
  padding: 1rem;
  background-color: var(--white);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
  color: var(--brand-red);
  transition: transform 0.24s ease;
}

.hero-stats span {
  font-size: 0.85rem;
}

@media (hover: hover) and (pointer: fine) {
  .hero-stats article:hover {
    transform: translateY(-4px);
    border-color: rgba(213, 72, 74, 0.4);
    box-shadow:
      0 22px 42px -28px rgba(4, 92, 180, 0.72),
      0 0 0 1px rgba(213, 72, 74, 0.08);
  }

  .hero-stats article:hover strong {
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stats article,
  .hero-stats strong {
    transition: none;
  }
}

@media (min-width: 841px) {
  .hero-inner {
    --hero-edge-offset: max(4vw, calc((100vw - 1140px) / 2));
    --hero-control-inset: clamp(0.35rem, 0.9vw, 0.85rem);
    --hero-desktop-shift: clamp(1.25rem, 2.25vw, 2.5rem);
  }

  .hero-copy {
    margin-left: calc(var(--hero-control-inset) - var(--hero-edge-offset));
  }

  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .lead {
    transform: translateY(10rem);
  }

  .hero .lead {
    max-width: 44ch;
  }

  .hero-actions {
    position: absolute;
    right: calc(var(--hero-control-inset) - var(--hero-edge-offset) + 10rem + var(--hero-desktop-shift));
    bottom: clamp(7.1rem, 10vw, 8.35rem);
    justify-content: flex-end;
  }

  .hero-stats {
    position: absolute;
    right: calc(var(--hero-control-inset) - var(--hero-edge-offset) + var(--hero-desktop-shift));
    bottom: clamp(0.95rem, 2.7vw, 1.85rem);
    width: min(760px, calc(100vw - 3rem));
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 840px) {
  .hero-actions,
  .hero-stats {
    width: calc(100% - clamp(1.25rem, 3vw, 2rem));
  }
}

.hero-visual {
  min-height: 510px;
  position: relative;
}

.hero-carousel {
  display: block;
}

.audience-card {
  background-color: var(--white);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.audience-card img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.audience-content {
  padding: 1rem 1.15rem 1.2rem;
}

.audience-content h2 {
  font-size: 1.15rem;
}

.audience-content p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-carousel .hero-slide {
  transition: opacity 0.45s ease;
}

.hero-carousel.is-switching .hero-slide {
  opacity: 0.78;
}

.audience-card-a {
  width: min(420px, 100%);
  position: absolute;
  top: 0;
  right: 0;
}

.audience-card-b {
  width: min(360px, 90%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.sub-hero {
  padding: 3.8rem 0 1rem;
}

.policy-hero {
  text-align: center;
}

.support-hero {
  margin-top: 0;
  padding: 0;
  background:
    linear-gradient(104deg, rgba(7, 34, 60, 0.84) 0%, rgba(7, 34, 60, 0.64) 47%, rgba(7, 34, 60, 0.36) 100%),
    url("./assets/supporto-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.support-page .support-hero {
  background-image:
    linear-gradient(104deg, rgba(7, 34, 60, 0.84) 0%, rgba(7, 34, 60, 0.64) 47%, rgba(7, 34, 60, 0.36) 100%),
    url("./assets/supporto-hero-bg-v2.jpg");
}

.formazione-hero {
  background:
    linear-gradient(104deg, rgba(7, 34, 60, 0.84) 0%, rgba(7, 34, 60, 0.62) 47%, rgba(7, 34, 60, 0.28) 100%),
    url("./assets/formazione-hero-bg-v2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.support-hero-inner {
  min-height: clamp(310px, 34vw, 430px);
  padding: clamp(2.8rem, 5vw, 4.1rem) clamp(1rem, 3vw, 2.3rem);
  display: grid;
  align-content: center;
}

.support-hero .eyebrow {
  color: #d8e8fb;
}

.support-hero h1 {
  color: #ffffff;
  max-width: 26ch;
}

.support-hero .lead {
  color: #eff5ff;
  max-width: 52ch;
}

.apri-polo-hero {
  margin-top: 0;
  padding: 0;
  background:
    linear-gradient(104deg, rgba(5, 31, 54, 0.7) 0%, rgba(5, 31, 54, 0.56) 50%, rgba(5, 31, 54, 0.64) 100%),
    url("./assets/apri-polo-hero-orientamento-v2.png");
  background-size: cover;
  background-position: center 46%;
  background-repeat: no-repeat;
}

.apri-polo-hero .eyebrow {
  color: #d8e8fb;
}

.apri-polo-hero h1 {
  color: #ffffff;
  max-width: 29ch;
}

.apri-polo-hero .lead {
  color: #eff5ff;
  max-width: 52ch;
}

.partner-hero {
  margin-top: 0;
  padding: 0;
  background:
    linear-gradient(104deg, rgba(10, 37, 66, 0.84) 0%, rgba(10, 37, 66, 0.62) 45%, rgba(10, 37, 66, 0.3) 100%),
    url("./assets/partner-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.partner-hero-inner {
  min-height: clamp(300px, 34vw, 420px);
  padding: clamp(2.7rem, 5vw, 4rem) clamp(1rem, 3vw, 2.3rem);
  display: grid;
  align-content: center;
}

.partner-hero .eyebrow {
  color: #d7e7fb;
}

.partner-hero h1 {
  color: #ffffff;
  max-width: 28ch;
}

.partner-hero .lead {
  color: #eaf3ff;
  max-width: 53ch;
}

.vantaggi-hero {
  margin-top: 0;
  padding: 0;
  background:
    linear-gradient(102deg, rgba(8, 36, 62, 0.84) 0%, rgba(8, 36, 62, 0.63) 44%, rgba(8, 36, 62, 0.33) 100%),
    url("./assets/vantaggi-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vantaggi-page .vantaggi-hero {
  background-image:
    linear-gradient(102deg, rgba(8, 36, 62, 0.84) 0%, rgba(8, 36, 62, 0.63) 44%, rgba(8, 36, 62, 0.33) 100%),
    url("./assets/opportunita-hero-bg-v2.jpg");
}

.vantaggi-hero-inner {
  min-height: clamp(305px, 34vw, 425px);
  padding: clamp(2.75rem, 5vw, 4rem) clamp(1rem, 3vw, 2.3rem);
  display: grid;
  align-content: center;
}

.vantaggi-hero .eyebrow {
  color: #d7e9ff;
}

.vantaggi-hero h1 {
  color: #ffffff;
  max-width: 30ch;
}

.vantaggi-hero .lead {
  color: #edf4ff;
  max-width: 54ch;
}

.contact-hero {
  position: relative;
  margin-top: 0;
  min-height: clamp(320px, 36vw, 470px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3.5rem 1rem;
  background:
    linear-gradient(100deg, rgba(7, 33, 60, 0.72) 0%, rgba(7, 33, 60, 0.5) 48%, rgba(7, 33, 60, 0.2) 100%),
    url("./assets/contatti-hero-bg.jpg");
  background-size: cover;
  background-position: center 24%;
  background-repeat: no-repeat;
}

.contact-hero-content .eyebrow {
  color: #edf5ff;
}

.contact-hero-content h1 {
  color: #ffffff;
}

.contact-hero-content .lead {
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
}

.about-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 42vw, 560px);
  margin-top: 0;
  padding: 4.4rem 1rem 3.8rem;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: #0b3155;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(8, 36, 62, 0.18) 0%, rgba(8, 36, 62, 0.46) 78%),
    linear-gradient(180deg, rgba(7, 38, 65, 0.42), rgba(7, 38, 65, 0.62));
}

.about-hero-team-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  background: #0b3155;
}

.about-hero-team-grid img {
  grid-column: span 4;
  width: 100%;
  height: 100%;
  min-width: 0;
  display: block;
  object-fit: cover;
  object-position: center 8%;
  border: 1px solid rgba(11, 49, 85, 0.2);
}

.about-hero-team-grid img.team-photo-mirrored {
  transform: scaleX(-1);
}

.about-hero-team-grid img.team-photo-massimiliano {
  padding: 3%;
  background: #ffffff;
}

.about-hero-team-grid img:nth-child(n + 6) {
  grid-column: span 5;
}

@media (max-width: 700px) {
  .about-hero-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .about-hero-team-grid img,
  .about-hero-team-grid img:nth-child(n + 6) {
    grid-column: span 1;
  }
}

.about-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 4.4rem 1rem 3.8rem;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.about-hero-content h1 {
  color: #ffffff !important;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  letter-spacing: 0.01em;
}

.about-hero-content p {
  margin: 0.38rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.34rem);
}

.about-hero-subtitle {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 2.5vw, 2rem);
  width: min(calc(100% - 2rem), 900px);
  transform: translateX(-50%);
  text-align: center;
}

.about-hero-content .about-hero-strong {
  margin-top: 0.68rem;
  font-weight: 700;
}

.about-team {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3.4vw, 2.8rem) 0 clamp(2.8rem, 5vw, 4.3rem);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.72) 100%);
}

.about-team-inner {
  position: relative;
  z-index: 1;
}

.about-team-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-team-head .about-kicker {
  margin: 0 0 0.5rem;
}

.about-team-head h2 {
  color: rgb(2, 65, 106);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.team-carousel {
  position: relative;
  margin-top: clamp(1.4rem, 4vw, 2.9rem);
  min-height: clamp(290px, 35vw, 465px);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  align-items: center;
}

.team-carousel-stage {
  --team-card-shift: clamp(6.4rem, 13vw, 12.2rem);
  position: relative;
  grid-column: 2;
  width: min(940px, 100%);
  height: clamp(280px, 35vw, 450px);
  margin: 0 auto;
  perspective: 1200px;
  touch-action: pan-y;
  outline: none;
  overflow: hidden;
}

.team-carousel-stage:focus-visible {
  outline: 3px solid rgba(4, 107, 210, 0.28);
  outline-offset: 8px;
  border-radius: 8px;
}

.team-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(8.8rem, 18vw, 19rem);
  aspect-ratio: 4 / 5.25;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(92, 101, 112, 0.9), rgba(29, 42, 54, 0.98)) padding-box,
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 48%, var(--brand-red) 100%) border-box;
  box-shadow: 0 30px 60px -42px rgba(7, 34, 60, 0.8);
  cursor: pointer;
  opacity: var(--team-opacity, 0);
  z-index: var(--team-z, 1);
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--team-shift, 0) * var(--team-card-shift)))
    translateZ(var(--team-z-depth, 0px))
    scale(var(--team-scale, 0.7));
  filter: blur(var(--team-blur, 0)) saturate(var(--team-saturation, 0.8));
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    filter 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.team-card.has-photo,
.team-card.has-photo.is-active {
  overflow: hidden;
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 48%, var(--brand-red) 100%) border-box;
  box-shadow: none;
  filter: none;
}

.team-card img {
  position: absolute;
  inset: auto 3% 0;
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
}

.team-card img.team-photo-mirrored {
  transform: scaleX(-1);
}

.team-card img.team-photo-massimiliano {
  inset: auto 5.5% 0;
  width: 89%;
  height: 89%;
}

.team-card.has-photo::before {
  content: none;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent 38%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.team-card span {
  position: relative;
  z-index: 1;
  font-size: clamp(2.45rem, 6vw, 4.9rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.team-card.is-active {
  border-color: transparent;
  background:
    linear-gradient(145deg, #1e4f7a 0%, #092f55 48%, #062947 100%) padding-box,
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 48%, var(--brand-red) 100%) border-box;
  box-shadow:
    0 36px 76px -42px rgba(7, 34, 60, 0.82),
    0 0 0 1px rgba(4, 107, 210, 0.14);
}

.team-card.is-outside {
  pointer-events: none;
}

.team-card:focus-visible {
  outline: 3px solid rgba(4, 107, 210, 0.42);
  outline-offset: 5px;
}

@media (hover: hover) and (pointer: fine) {
  .team-card:not(.is-outside):hover {
    border-color: rgba(255, 255, 255, 0.68);
    filter: blur(var(--team-blur, 0)) saturate(1.08) brightness(1.06);
    box-shadow:
      0 42px 84px -40px rgba(7, 34, 60, 0.92),
      0 0 0 1px rgba(4, 107, 210, 0.2);
  }

  .team-card.has-photo:not(.is-outside):hover {
    border-color: transparent;
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 48%, var(--brand-red) 100%) border-box;
    box-shadow: none;
    filter: none;
  }
}

.team-nav {
  position: relative;
  z-index: 18;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #496b90;
  box-shadow: 0 18px 42px -28px rgba(7, 34, 60, 0.85);
  cursor: pointer;
  justify-self: center;
  transition:
    background-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.team-nav svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-nav-prev {
  grid-column: 1;
}

.team-nav-next {
  grid-column: 3;
}

.team-nav:hover,
.team-nav:focus-visible {
  background-color: var(--brand-navy);
  box-shadow: 0 22px 46px -28px rgba(7, 34, 60, 0.92);
  transform: scale(1.06);
}

.team-profile {
  max-width: 930px;
  min-height: clamp(180px, 18vw, 230px);
  margin: clamp(0.55rem, 1.8vw, 1rem) auto 0;
  padding: 0 0.5rem;
  text-align: center;
  transform: translateY(0);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.24s ease;
}

.team-profile.is-empty {
  display: none;
}

.team-profile-title-row {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 1.55rem);
  align-items: center;
}

.team-profile-rule {
  display: block;
  flex: 0 1 clamp(58px, 10vw, 96px);
  max-width: 96px;
  height: 2px;
  border-radius: 999px;
  background-color: #a7b6c5;
  transition: background-color 0.24s ease;
}

.team-profile h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  white-space: nowrap;
  transition:
    color 0.24s ease,
    text-shadow 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .team-profile:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 18px 26px rgba(7, 34, 60, 0.08));
  }

  .team-profile:hover .team-profile-rule {
    background-color: rgba(4, 107, 210, 0.48);
  }

  .team-profile:hover h3 {
    color: rgb(1, 78, 128);
    text-shadow: 0 14px 34px rgba(7, 34, 60, 0.12);
  }
}

.team-profile-role {
  display: block;
  min-height: 1.35em;
  margin-top: 1.45rem;
  color: var(--brand-navy);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 800;
}

.team-profile-role:empty {
  width: min(300px, 62%);
  height: 18px;
  min-height: 18px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 999px;
  background-color: #dce7f1;
}

.team-profile-description {
  max-width: 700px;
  min-height: 3.3em;
  margin: 1.35rem auto 0;
  color: var(--brand-slate);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.team-profile-description:empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: none;
  min-height: 47px;
}

.team-profile-description:empty::before,
.team-profile-description:empty::after {
  content: "";
  display: block;
  height: 17px;
  border-radius: 999px;
  background-color: #dce7f1;
}

.team-profile-description:empty::before {
  width: min(520px, 88%);
}

.team-profile-description:empty::after {
  width: min(360px, 68%);
}

.team-profile-dots {
  display: flex;
  justify-content: center;
  gap: 0.72rem;
  min-height: 15px;
  margin-top: 1.45rem;
}

.team-profile-dots button {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background-color: #cfd8e3;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.team-profile-dots button.is-active {
  background-color: #2f5f8b;
}

.team-profile-dots button:hover,
.team-profile-dots button:focus-visible {
  background-color: var(--brand-navy);
  transform: scale(1.12);
}

.team-profile-dots button:focus-visible {
  outline: 3px solid rgba(4, 107, 210, 0.28);
  outline-offset: 4px;
}

@media (max-width: 840px) {
  .about-team {
    padding: 1.35rem 0 2.9rem;
  }

  .team-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.55rem;
    min-height: 330px;
  }

  .team-carousel-stage {
    --team-card-shift: clamp(4.9rem, 24vw, 7.6rem);
    height: 315px;
  }

  .team-card {
    width: clamp(7.1rem, 34vw, 12rem);
  }

  .team-nav {
    width: 42px;
    height: 42px;
  }

  .team-nav svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 560px) {
  .about-team-head h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .team-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.35rem;
    min-height: 292px;
  }

  .team-carousel-stage {
    --team-card-shift: clamp(4.05rem, 28vw, 5.8rem);
    height: 272px;
    width: 100%;
  }

  .team-card {
    width: clamp(6.65rem, 38vw, 9.8rem);
  }

  .team-profile {
    padding: 0 0.25rem;
  }

  .team-profile-title-row {
    gap: 0.8rem;
  }

  .team-profile-rule {
    flex-basis: clamp(30px, 11vw, 52px);
  }

  .team-profile h3 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-nav,
  .team-profile,
  .about-card,
  .about-story-image img,
  .about-evolution-image img,
  .partner-grid img {
    transition: none;
  }
}

.about-story {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
}

.about-story-copy {
  color: var(--brand-navy);
}

.about-card {
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
  box-shadow: 0 24px 54px -42px rgba(7, 34, 60, 0.45);
  transform: translateY(0);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.about-story-copy .about-kicker {
  margin: 0 0 0.65rem;
}

.about-story-copy h2 {
  max-width: 11ch;
}

.about-story-copy p {
  margin: 1rem 0 0;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.6;
}

.about-kicker {
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.about-highlight-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(4, 107, 210, 0.22);
  border-radius: 999px;
  background-color: rgba(4, 107, 210, 0.08);
  color: var(--brand-blue-deep);
  font-size: 0.84rem;
  font-weight: 800;
  transform: translateY(0);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-highlight-row span:hover {
    transform: translateY(-3px);
    border-color: rgba(4, 107, 210, 0.42);
    background-color: rgba(4, 107, 210, 0.12);
    box-shadow: 0 14px 28px -22px rgba(4, 94, 184, 0.62);
  }
}

.about-story-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 26px 60px -38px rgba(7, 34, 60, 0.55);
  transform: scale(1);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    filter 0.32s ease;
}

.about-story-image,
.about-evolution-image {
  border-radius: 8px;
  overflow: hidden;
}

.about-red-band {
  margin-top: 3rem;
  background:
    linear-gradient(135deg, rgba(240, 245, 250, 0.82), #ffffff 54%, rgba(213, 72, 74, 0.06));
}

.about-red-band-inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.about-band-copy {
  position: sticky;
  top: 5.6rem;
}

.about-band-copy h2,
.about-evolution-copy h2,
.about-vision-head h2 {
  color: var(--brand-navy);
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  line-height: 1.08;
}

.about-band-copy p:not(.about-kicker),
.about-evolution-copy > p,
.about-vision-head p:not(.about-kicker) {
  margin: 0.9rem 0 0;
  color: var(--brand-navy);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.65;
}

.about-milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 1081px) {
  .about-red-band-inner {
    grid-template-rows: auto auto auto;
    row-gap: 0;
  }

  .about-band-copy {
    display: contents;
  }

  .about-band-copy .about-kicker {
    grid-column: 1;
    grid-row: 1;
  }

  .about-band-copy h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .about-band-copy p:not(.about-kicker) {
    grid-column: 1;
    grid-row: 3;
  }

  .about-milestone-grid {
    grid-column: 2;
    grid-row: 3;
    margin-top: -0.2rem;
    transform: translateX(clamp(1.1rem, 2.25vw, 2.25rem));
  }
}

.about-milestone-grid article,
.about-focus-list article,
.about-vision-grid article {
  position: relative;
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 8px;
  padding: 1.05rem;
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.4);
  transform: translateY(0);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.about-milestone-grid span,
.about-vision-grid span {
  display: inline-flex;
  color: var(--brand-red);
  font-weight: 800;
  font-size: 0.84rem;
}

.about-milestone-grid h3,
.about-focus-list h3,
.about-vision-grid h3 {
  margin: 0.42rem 0 0;
  color: var(--brand-navy);
  font-size: 1.02rem;
}

.about-milestone-grid p,
.about-focus-list p,
.about-vision-grid p {
  margin: 0.5rem 0 0;
  color: var(--brand-slate);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-evolution {
  margin-top: 0;
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
  background-color: #ffffff;
}

.about-evolution-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.about-evolution-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 26px 60px -38px rgba(7, 34, 60, 0.55);
  transform: scale(1);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    filter 0.32s ease;
}

.about-focus-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.about-focus-list article {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.75) 100%);
}

.about-vision {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.75) 100%);
  margin-top: 0;
}

.about-vision-inner {
  padding: clamp(2.4rem, 5vw, 3.8rem) 0;
}

.about-vision-head {
  max-width: 760px;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.35rem;
}

.about-partners {
  margin-top: 2.8rem;
  margin-bottom: 2.6rem;
  text-align: center;
}

.about-partners h2 {
  color: #165481;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin-bottom: 1.45rem;
}

.about-partners.home-partners h2 {
  margin-bottom: 0;
}

.about-partners .partner-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 100%;
  margin-inline: auto;
}

.about-story-copy strong,
.about-red-band-inner strong,
.about-evolution-copy strong,
.about-vision-inner strong {
  color: var(--brand-red);
}

.about-story-copy .about-kicker,
.about-story-copy h2,
.about-band-copy h2,
.about-evolution-copy h2,
.about-vision-head h2,
.about-partners h2 {
  color: rgb(2, 65, 106);
}

@media (hover: hover) and (pointer: fine) {
  .about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(213, 72, 74, 0.28);
    box-shadow:
      0 30px 58px -36px rgba(7, 34, 60, 0.54),
      0 16px 30px -26px rgba(213, 72, 74, 0.42);
  }

  .about-story-image:hover img,
  .about-evolution-image:hover img {
    transform: scale(1.025);
    filter: saturate(1.05) brightness(1.03);
    box-shadow: 0 32px 66px -36px rgba(7, 34, 60, 0.66);
  }

  .about-milestone-grid article:hover,
  .about-focus-list article:hover,
  .about-vision-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(213, 72, 74, 0.28);
    box-shadow:
      0 26px 52px -34px rgba(7, 34, 60, 0.52),
      0 16px 30px -26px rgba(213, 72, 74, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-milestone-grid article,
  .about-focus-list article,
  .about-vision-grid article {
    transition: none;
  }
}

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

.panel,
.support,
.advantages,
.partners,
.contact {
  margin-top: 2.2rem;
  padding: 2.2rem;
  background-color: var(--white);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
}

.section-head {
  margin-bottom: 1.2rem;
}

.policy-text {
  line-height: 1.75;
}

.policy-text h1,
.policy-text h2 {
  margin-top: 1.75rem;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
}

.policy-text h1:first-child,
.policy-text h2:first-child {
  margin-top: 0;
}

.policy-text p {
  margin: 0.85rem 0 0;
}

.policy-text ul {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
}

.policy-text a {
  color: var(--brand-blue-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.policy-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.5;
}

.policy-table th,
.policy-table td {
  border: 1px solid var(--brand-line);
  padding: 0.72rem;
  text-align: left;
  vertical-align: top;
}

.policy-table th,
.policy-table thead td {
  background-color: var(--brand-cloud);
  color: var(--brand-navy);
  font-weight: 700;
}

.policy-table p {
  margin: 0;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.5rem;
}

.role-grid p {
  margin: 0;
  line-height: 1.75;
}

.role-grid ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.8;
}

.role-grid article {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background: var(--brand-cloud);
  padding: 1rem;
}

.role-grid article p {
  margin-top: 0.55rem;
}

.support-grid,
.adv-grid,
.partner-grid,
.quick-links {
  display: grid;
  gap: 0.95rem;
}

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

.support-grid article {
  background-color: var(--brand-cloud);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-line);
  padding: 1rem;
}

.support-grid span {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.support-grid p {
  margin: 0.5rem 0 0;
  line-height: 1.65;
}

.support-system,
.support-areas,
.support-output,
.support-next {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
}

.training-path,
.training-digital,
.training-assets,
.training-outcomes {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
}

.support .section-head p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  max-width: 72ch;
  line-height: 1.7;
}

.support-system {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background:
    radial-gradient(circle at top left, rgba(4, 107, 210, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

@media (min-width: 1081px) {
  .support-system {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }
}

.support-system-copy p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  max-width: 60ch;
  line-height: 1.7;
}

.support-system-grid,
.support-areas-grid,
.support-output-grid {
  display: grid;
  gap: 0.95rem;
}

.support-system-grid,
.support-output-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-system-grid article,
.support-areas-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  box-shadow: 0 18px 38px -34px rgba(7, 34, 60, 0.45);
}

.support-system-grid span {
  display: inline-flex;
  margin-bottom: 0.58rem;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background-color: rgba(213, 47, 39, 0.1);
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-system-grid h3,
.support-areas-grid h3,
.support-output-grid h3 {
  font-size: 1.05rem;
}

.support-system-grid p,
.support-areas-grid p,
.support-next p:not(.eyebrow) {
  margin: 0.55rem 0 0;
  line-height: 1.62;
}

.support-areas,
.support-output {
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background-color: #ffffff;
}

.support-areas-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-areas-grid article,
.support-output-grid article {
  background-color: var(--brand-cloud);
  box-shadow: none;
}

.support-output-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
}

.support-output-grid ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.72;
}

.support-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem 2.2rem;
  background:
    linear-gradient(135deg, rgba(7, 34, 60, 0.94), rgba(4, 94, 184, 0.88)),
    url("./assets/supporto-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.support-next .eyebrow,
.support-next h2 {
  color: #ffffff;
}

.support-next p:not(.eyebrow) {
  max-width: 68ch;
  color: #eef6ff;
}

.support-next .btn {
  white-space: nowrap;
}

.support-next .btn-primary {
  color: var(--brand-blue-deep);
  background: #ffffff;
  box-shadow: 0 16px 35px -24px rgba(255, 255, 255, 0.85);
}

.support-next .btn-primary:hover,
.support-next .btn-primary:focus-visible {
  background: #eaf3ff;
}

.support-page .support,
.support-page .panel,
.support-page .support-areas,
.support-page .support-output,
.support-page .support-next {
  position: relative;
  overflow: hidden;
  border-color: rgba(4, 107, 210, 0.14);
  box-shadow: 0 28px 70px -56px rgba(7, 34, 60, 0.5);
}

.support-page .support,
.support-page .panel,
.support-page .support-areas,
.support-page .support-output {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
}

.support-page .section-head h2 {
  max-width: 820px;
}

.support-page .support-grid {
  gap: 1rem;
  align-items: stretch;
}

.support-page .support-grid article,
.support-page .support-areas-grid article,
.support-page .support-output-grid article {
  min-height: 100%;
  border-color: rgba(4, 107, 210, 0.14);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.76) 100%);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.45);
}

.support-page .support-grid article {
  border-left: 4px solid var(--brand-red);
}

.support-page .support-grid article:nth-child(2) {
  border-left-color: var(--brand-blue-deep);
}

.support-page .support-grid span,
.support-page .support-areas-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.72rem;
  border-radius: 999px;
  background-color: rgba(4, 107, 210, 0.1);
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.support-page .support-system {
  background:
    linear-gradient(135deg, rgba(2, 65, 106, 0.98), rgba(4, 92, 180, 0.9));
  color: #ffffff;
}

.support-page .support-system-copy {
  border-radius: 8px;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  background-color: rgba(255, 255, 255, 0.08);
}

.support-page .support-system-copy .eyebrow,
.support-page .support-system-copy h2,
.support-page .support-system-copy p:not(.eyebrow) {
  color: #ffffff;
}

.support-page .support-system-grid article {
  min-height: 100%;
  border-color: rgba(255, 255, 255, 0.22);
  background-color: rgba(255, 255, 255, 0.96);
}

.support-page .support-system-grid h3 {
  color: var(--brand-navy);
}

.support-page .support-system-grid p {
  color: var(--brand-slate);
}

.support-page .support-system-grid span,
.support-page .support-output-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0.72rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background-color: rgba(213, 72, 74, 0.1);
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-page .panel .role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-page .role-grid ul {
  padding: 1rem;
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.72) 100%);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.4);
  list-style: none;
}

.support-page .role-grid li,
.support-page .support-output-grid li {
  position: relative;
  padding-left: 1.25rem;
}

.support-page .role-grid li + li,
.support-page .support-output-grid li + li {
  margin-top: 0.42rem;
}

.support-page .role-grid li::before,
.support-page .support-output-grid li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--brand-red);
  transform: translateY(-50%);
}

.support-page .support-areas-grid article {
  border-top: 4px solid var(--brand-blue-deep);
}

.support-page .support-areas-grid article:nth-child(2n) {
  border-top-color: var(--brand-red);
}

.support-page .support-output-grid ul {
  padding-left: 0;
  list-style: none;
}

.support-page .support-next {
  border: 0;
  background:
    linear-gradient(135deg, rgba(2, 65, 106, 0.96), rgba(4, 92, 180, 0.9)),
    url("./assets/supporto-hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.support-page .support-next::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), #ffffff);
}

.training-path,
.training-assets,
.training-outcomes {
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background-color: #ffffff;
}

.training-roadmap,
.training-digital-grid,
.training-assets-grid,
.training-outcomes-grid {
  display: grid;
  gap: 0.95rem;
}

.training-roadmap {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.training-roadmap article,
.training-outcomes-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: var(--brand-cloud);
}

.training-roadmap span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.78rem;
  border-radius: 999px;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.training-roadmap h3,
.training-digital-grid h3,
.training-assets-grid h3,
.training-outcomes-grid h3 {
  font-size: 1.05rem;
}

.training-roadmap p,
.training-digital-grid p,
.training-assets-grid p,
.training-outcomes-grid p {
  margin: 0.55rem 0 0;
  line-height: 1.62;
}

.training-digital {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2.2rem;
  background:
    linear-gradient(135deg, rgba(7, 34, 60, 0.94), rgba(4, 94, 184, 0.88)),
    url("./assets/supporto-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.training-digital .eyebrow,
.training-digital h2 {
  color: #ffffff;
}

.training-digital-copy p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  max-width: 58ch;
  color: #eef6ff;
  line-height: 1.7;
}

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

.training-digital-grid article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
}

.training-digital-grid h3,
.training-digital-grid p {
  color: #ffffff;
}

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

.training-assets-grid article {
  padding: 1.1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(4, 107, 210, 0.12), transparent 34%),
    var(--brand-cloud);
}

.training-assets-grid ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.72;
}

.training-outcomes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-suite,
.office-crm,
.office-minisite,
.office-results {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
}

.office-suite {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background:
    radial-gradient(circle at top left, rgba(4, 107, 210, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

@media (min-width: 1081px) {
  .office-suite {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }
}

.office-suite-copy p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  max-width: 60ch;
  line-height: 1.7;
}

.office-suite-grid,
.office-crm-grid,
.office-minisite-grid,
.office-results-grid {
  display: grid;
  gap: 0.95rem;
}

.office-suite-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-suite-grid article,
.office-minisite-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  box-shadow: 0 18px 38px -34px rgba(7, 34, 60, 0.45);
}

.office-suite-grid span {
  display: inline-flex;
  margin-bottom: 0.58rem;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background-color: rgba(213, 47, 39, 0.1);
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.office-suite-grid h3,
.office-crm-grid h3,
.office-minisite-grid h3,
.office-results-grid h3 {
  font-size: 1.05rem;
}

.office-suite-grid p,
.office-crm-grid p,
.office-minisite-grid p {
  margin: 0.55rem 0 0;
  line-height: 1.62;
}

.office-crm,
.office-minisite,
.office-results {
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background-color: #ffffff;
}

.office-crm-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.office-crm-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: var(--brand-cloud);
}

.office-crm-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.78rem;
  border-radius: 999px;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.office-minisite-grid,
.office-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-results-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(4, 107, 210, 0.12), transparent 34%),
    var(--brand-cloud);
}

.office-results-grid ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.72;
}

.digital-office-page .support-hero {
  background:
    linear-gradient(90deg, rgba(2, 65, 106, 0.92) 0%, rgba(4, 92, 180, 0.72) 48%, rgba(7, 34, 60, 0.34) 100%),
    url("./assets/digital-office-hero-bg-v2.jpg");
  background-size: cover;
  background-position: center;
}

.formazione-page .support-hero {
  background:
    linear-gradient(90deg, rgba(2, 65, 106, 0.92) 0%, rgba(4, 92, 180, 0.72) 48%, rgba(7, 34, 60, 0.34) 100%),
    url("./assets/formazione-hero-bg-v2.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 840px) {
  .support-page .support-hero,
  .digital-office-page .support-hero,
  .formazione-page .support-hero {
    background-position: 24% center;
  }
}

.digital-office-page .support-hero-inner,
.formazione-page .support-hero-inner {
  max-width: 1120px;
}

.digital-office-page .support-hero .eyebrow,
.digital-office-page .support-hero h1,
.digital-office-page .support-hero .lead,
.formazione-page .support-hero .eyebrow,
.formazione-page .support-hero h1,
.formazione-page .support-hero .lead {
  color: #ffffff;
}

.digital-office-page .support,
.digital-office-page .panel,
.digital-office-page .office-crm,
.digital-office-page .office-minisite,
.digital-office-page .office-results,
.formazione-page .support,
.formazione-page .panel,
.formazione-page .training-path,
.formazione-page .training-assets,
.formazione-page .training-outcomes {
  position: relative;
  overflow: hidden;
  border-color: rgba(4, 107, 210, 0.14);
  box-shadow: 0 28px 70px -56px rgba(7, 34, 60, 0.5);
}

.digital-office-page .support,
.digital-office-page .panel,
.digital-office-page .office-crm,
.digital-office-page .office-minisite,
.digital-office-page .office-results,
.formazione-page .support,
.formazione-page .panel,
.formazione-page .training-path,
.formazione-page .training-assets,
.formazione-page .training-outcomes {
  background:
    linear-gradient(120deg, rgba(4, 107, 210, 0.055), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, rgba(244, 249, 255, 0.86) 100%);
}

.digital-office-page .support,
.digital-office-page .panel,
.digital-office-page .office-crm,
.digital-office-page .office-minisite,
.digital-office-page .office-results {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
}

.formazione-page .support,
.formazione-page .panel,
.formazione-page .training-path,
.formazione-page .training-assets,
.formazione-page .training-outcomes {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
}

.digital-office-page .section-head h2,
.formazione-page .section-head h2 {
  max-width: 860px;
  color: var(--brand-navy);
}

.digital-office-page .section-head p:not(.eyebrow),
.formazione-page .section-head p:not(.eyebrow) {
  color: var(--brand-slate);
}

.digital-office-page .section-head .eyebrow,
.formazione-page .section-head .eyebrow {
  color: var(--brand-blue-deep);
}

.digital-office-page .support-grid,
.formazione-page .support-grid {
  gap: 1rem;
}

.digital-office-page .support-grid article,
.digital-office-page .office-suite-grid article,
.digital-office-page .office-crm-grid article,
.digital-office-page .office-minisite-grid article,
.digital-office-page .office-results-grid article,
.formazione-page .support-grid article,
.formazione-page .training-roadmap article,
.formazione-page .training-digital-grid article,
.formazione-page .training-assets-grid article,
.formazione-page .training-outcomes-grid article {
  min-height: 100%;
  border-color: rgba(4, 107, 210, 0.15);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.78) 100%);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.45);
  transition:
    border-color 0.2s ease,
    box-shadow 0.22s ease,
    transform 0.2s ease;
}

.digital-office-page .support-grid h3,
.digital-office-page .office-suite-grid h3,
.digital-office-page .office-crm-grid h3,
.digital-office-page .office-minisite-grid h3,
.digital-office-page .office-results-grid h3,
.formazione-page .support-grid h3,
.formazione-page .training-roadmap h3,
.formazione-page .training-digital-grid h3,
.formazione-page .training-assets-grid h3,
.formazione-page .training-outcomes-grid h3 {
  color: var(--brand-navy);
}

.digital-office-page .support-grid p,
.digital-office-page .office-suite-grid p,
.digital-office-page .office-crm-grid p,
.digital-office-page .office-minisite-grid p,
.digital-office-page .office-results-grid li,
.formazione-page .support-grid p,
.formazione-page .training-roadmap p,
.formazione-page .training-digital-grid p,
.formazione-page .training-assets-grid p,
.formazione-page .training-assets-grid li,
.formazione-page .training-outcomes-grid p {
  color: var(--brand-slate);
}

.digital-office-page .office-suite,
.formazione-page .training-digital {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  background:
    linear-gradient(135deg, rgba(2, 65, 106, 0.98), rgba(4, 92, 180, 0.92));
  color: #ffffff;
}

.digital-office-page .office-suite-copy {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
}

.digital-office-page .office-suite-copy .eyebrow,
.digital-office-page .office-suite-copy h2,
.digital-office-page .office-suite-copy p:not(.eyebrow),
.formazione-page .training-digital-copy .eyebrow,
.formazione-page .training-digital-copy h2,
.formazione-page .training-digital-copy p:not(.eyebrow) {
  color: #ffffff;
}

.digital-office-page .office-suite-grid {
  align-self: center;
  align-items: start;
}

.digital-office-page .office-suite-grid article,
.formazione-page .training-digital-grid article {
  min-height: auto;
  background-color: rgba(255, 255, 255, 0.96);
}

.formazione-page .training-digital-grid {
  align-items: start;
}

.digital-office-page .office-crm-grid,
.formazione-page .training-roadmap {
  counter-reset: page-step;
}

.digital-office-page .office-crm-grid article,
.formazione-page .training-roadmap article {
  position: relative;
  padding-top: 3.35rem;
}

.digital-office-page .office-crm-grid article::before,
.formazione-page .training-roadmap article::before {
  counter-increment: page-step;
  content: counter(page-step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: rgba(4, 107, 210, 0.1);
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.digital-office-page .office-crm-grid article:nth-child(2n)::before,
.formazione-page .training-roadmap article:nth-child(2n)::before {
  background-color: rgba(213, 72, 74, 0.12);
  color: var(--brand-red);
}

.digital-office-page .panel .role-grid,
.formazione-page .panel .role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.digital-office-page .role-grid ul,
.formazione-page .role-grid ul {
  padding: 1.05rem;
  border: 1px solid rgba(4, 107, 210, 0.15);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.digital-office-page .role-grid li,
.digital-office-page .office-results-grid li,
.formazione-page .role-grid li,
.formazione-page .training-assets-grid li {
  position: relative;
  padding-left: 1.55rem;
}

.digital-office-page .role-grid li + li,
.digital-office-page .office-results-grid li + li,
.formazione-page .role-grid li + li,
.formazione-page .training-assets-grid li + li {
  margin-top: 0.5rem;
}

.digital-office-page .role-grid li::before,
.digital-office-page .office-results-grid li::before,
.formazione-page .role-grid li::before,
.formazione-page .training-assets-grid li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0.24rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--brand-red);
  transform: translateY(-50%);
}

.digital-office-page .office-results-grid ul,
.formazione-page .training-assets-grid ul {
  padding-left: 0;
  list-style: none;
}

.digital-office-page .office-results-grid article,
.formazione-page .training-outcomes-grid article {
  border-top: 4px solid var(--brand-blue-deep);
}

.digital-office-page .office-results-grid article:nth-child(2n),
.formazione-page .training-outcomes-grid article:nth-child(2n) {
  border-top-color: var(--brand-red);
}

@media (hover: hover) and (pointer: fine) {
  .digital-office-page .support-grid article:hover,
  .digital-office-page .office-suite-grid article:hover,
  .digital-office-page .office-crm-grid article:hover,
  .digital-office-page .office-minisite-grid article:hover,
  .digital-office-page .office-results-grid article:hover,
  .formazione-page .support-grid article:hover,
  .formazione-page .training-roadmap article:hover,
  .formazione-page .training-digital-grid article:hover,
  .formazione-page .training-assets-grid article:hover,
  .formazione-page .training-outcomes-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(4, 107, 210, 0.34);
    box-shadow: 0 28px 58px -42px rgba(7, 34, 60, 0.55);
  }
}

@media (max-width: 1080px) {
  .digital-office-page .office-suite,
  .formazione-page .training-digital,
  .digital-office-page .panel .role-grid,
  .formazione-page .panel .role-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    overflow: hidden;
  }

  .hero-inner {
    width: 100%;
    min-height: auto;
    padding: 1.35rem 0.9rem 1.55rem;
  }

  .hero-copy,
  .hero .eyebrow,
  .hero h1,
  .hero .lead {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .hero .lead {
    margin-top: clamp(12.5rem, 52vw, 15rem);
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero-actions .btn {
    min-width: 0;
    width: 100%;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    font-size: 0.76rem;
  }

  .hero-stats {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .hero-stats article {
    min-width: 0;
    padding: 0.58rem 0.45rem;
  }

  .hero-stats strong,
  .hero-stats span {
    overflow-wrap: break-word;
  }

  .digital-office-page,
  .formazione-page {
    overflow-x: hidden;
  }

  .digital-office-page .support,
  .digital-office-page .panel,
  .digital-office-page .office-suite,
  .digital-office-page .office-crm,
  .digital-office-page .office-minisite,
  .digital-office-page .office-results,
  .formazione-page .support,
  .formazione-page .panel,
  .formazione-page .training-path,
  .formazione-page .training-digital,
  .formazione-page .training-assets,
  .formazione-page .training-outcomes {
    width: calc(100vw - 1rem);
    max-width: 1140px;
    padding: 1.15rem;
    border-radius: 14px;
  }

  main.digital-office-page .container,
  main.formazione-page .container {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
  }

  .digital-office-page .support-hero-inner,
  .formazione-page .support-hero-inner {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .digital-office-page .support-hero-inner,
  .formazione-page .support-hero-inner,
  .digital-office-page .section-head,
  .formazione-page .section-head,
  .digital-office-page .support-grid article,
  .digital-office-page .office-suite-grid article,
  .digital-office-page .office-crm-grid article,
  .digital-office-page .office-minisite-grid article,
  .digital-office-page .office-results-grid article,
  .formazione-page .support-grid article,
  .formazione-page .training-roadmap article,
  .formazione-page .training-digital-grid article,
  .formazione-page .training-assets-grid article,
  .formazione-page .training-outcomes-grid article,
  .digital-office-page .role-grid ul,
  .formazione-page .role-grid ul {
    min-width: 0;
    max-width: 100%;
  }

  .digital-office-page .support-grid,
  .digital-office-page .office-suite-grid,
  .digital-office-page .office-crm-grid,
  .digital-office-page .office-minisite-grid,
  .digital-office-page .office-results-grid,
  .formazione-page .support-grid,
  .formazione-page .training-roadmap,
  .formazione-page .training-digital-grid,
  .formazione-page .training-assets-grid,
  .formazione-page .training-outcomes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .digital-office-page .support-hero h1,
  .digital-office-page .support-hero .lead,
  .digital-office-page .section-head h2,
  .digital-office-page h3,
  .digital-office-page p,
  .digital-office-page li,
  .formazione-page .support-hero h1,
  .formazione-page .support-hero .lead,
  .formazione-page .section-head h2,
  .formazione-page h3,
  .formazione-page p,
  .formazione-page li {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .digital-office-page .support-hero h1,
  .formazione-page .support-hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.35rem);
    line-height: 1.1;
  }

  .digital-office-page .section-head h2,
  .formazione-page .section-head h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.75rem);
    line-height: 1.16;
  }

  .digital-office-page .support-hero .lead,
  .formazione-page .support-hero .lead,
  .digital-office-page .section-head p:not(.eyebrow),
  .formazione-page .section-head p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }
}

.eipass-overview,
.eipass-workflow,
.eipass-benefits,
.eipass-market {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
}

.eipass-overview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background:
    radial-gradient(circle at top left, rgba(4, 107, 210, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

@media (min-width: 1081px) {
  .eipass-overview {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }
}

.eipass-overview-copy p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  max-width: 60ch;
  line-height: 1.7;
}

.eipass-overview-grid,
.eipass-workflow-grid,
.eipass-benefits-grid {
  display: grid;
  gap: 0.95rem;
}

.eipass-overview-grid,
.eipass-benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eipass-overview-grid article,
.eipass-benefits-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  box-shadow: 0 18px 38px -34px rgba(7, 34, 60, 0.45);
}

.eipass-overview-grid span {
  display: inline-flex;
  margin-bottom: 0.58rem;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background-color: rgba(213, 47, 39, 0.1);
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eipass-overview-grid h3,
.eipass-workflow-grid h3,
.eipass-benefits-grid h3 {
  font-size: 1.05rem;
}

.eipass-overview-grid p,
.eipass-workflow-grid p,
.eipass-benefits-grid p,
.eipass-market p:not(.eyebrow) {
  margin: 0.55rem 0 0;
  line-height: 1.62;
}

.eipass-workflow,
.eipass-benefits {
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background-color: #ffffff;
}

.eipass-workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.eipass-workflow-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: var(--brand-cloud);
}

.eipass-workflow-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.78rem;
  border-radius: 999px;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.eipass-market {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 2rem 2.2rem;
  background:
    linear-gradient(135deg, rgba(7, 34, 60, 0.94), rgba(4, 94, 184, 0.88)),
    url("./assets/vantaggi-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.eipass-market .eyebrow,
.eipass-market h2 {
  color: #ffffff;
}

.eipass-market p:not(.eyebrow) {
  max-width: 68ch;
  color: #eef6ff;
}

.eipass-market .btn {
  white-space: nowrap;
  justify-self: center;
}

.eipass-market .btn-primary,
.polo-next .btn-primary {
  color: var(--brand-blue-deep);
  background: #ffffff;
  box-shadow: 0 16px 35px -24px rgba(255, 255, 255, 0.85);
}

.eipass-market .btn-primary:hover,
.eipass-market .btn-primary:focus-visible,
.polo-next .btn-primary:hover,
.polo-next .btn-primary:focus-visible {
  background: #eaf3ff;
}

.polo-path,
.polo-support,
.polo-impact,
.polo-next {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
}

.polo-path,
.polo-impact {
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background-color: #ffffff;
}

.polo-path-grid,
.polo-support-grid,
.polo-impact-grid {
  display: grid;
  gap: 0.95rem;
}

.support-grid article,
.adv-grid article,
.role-grid article,
.training-role-grid > ul,
.home-audience-card,
.mission-card,
.process-step,
.quick-card,
.partner-grid-large img,
.partner-trust-list article,
.advantage-highlight-grid article,
.advantage-roadmap article,
.advantage-value-grid article,
.eipass-overview-grid article,
.eipass-workflow-grid article,
.eipass-benefits-grid article,
.support-system-grid article,
.support-areas-grid article,
.support-output-grid article,
.training-path article,
.training-digital article,
.training-assets article,
.training-outcomes article,
.training-roadmap article,
.training-digital-grid article,
.training-assets-grid article,
.training-outcomes-grid article,
.office-suite-grid article,
.office-crm-grid article,
.office-minisite-grid article,
.office-results-grid article,
.polo-path-grid article,
.polo-support-grid article,
.polo-impact-grid article {
  position: relative;
  transform: translateY(0);
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .polo-path-grid article:hover,
  .polo-support-grid article:hover,
  .polo-impact-grid article:hover,
  .support-grid article:hover,
  .adv-grid article:hover,
  .role-grid article:hover,
  .training-role-grid > ul:hover,
  .home-audience-card:hover,
  .mission-card:hover,
  .process-step:hover,
  .quick-card:hover,
  .quick-card:focus-visible,
  .partner-grid-large img:hover,
  .partner-trust-list article:hover,
  .advantage-highlight-grid article:hover,
  .advantage-roadmap article:hover,
  .advantage-value-grid article:hover,
  .eipass-overview-grid article:hover,
  .eipass-workflow-grid article:hover,
  .eipass-benefits-grid article:hover,
  .support-system-grid article:hover,
  .support-areas-grid article:hover,
  .support-output-grid article:hover,
  .training-path article:hover,
  .training-digital article:hover,
  .training-assets article:hover,
  .training-outcomes article:hover,
  .training-roadmap article:hover,
  .training-digital-grid article:hover,
  .training-assets-grid article:hover,
  .training-outcomes-grid article:hover,
  .office-suite-grid article:hover,
  .office-crm-grid article:hover,
  .office-minisite-grid article:hover,
  .office-results-grid article:hover,
  .polo-support-grid article:focus-within,
  .home-audience-card:focus-within,
  .advantage-highlight-grid article:focus-within,
  .advantage-roadmap article:focus-within,
  .advantage-value-grid article:focus-within,
  .eipass-overview-grid article:focus-within,
  .eipass-workflow-grid article:focus-within,
  .eipass-benefits-grid article:focus-within,
  .support-system-grid article:focus-within,
  .support-areas-grid article:focus-within,
  .support-output-grid article:focus-within,
  .training-path article:focus-within,
  .training-digital article:focus-within,
  .training-assets article:focus-within,
  .training-outcomes article:focus-within,
  .training-roadmap article:focus-within,
  .training-digital-grid article:focus-within,
  .training-assets-grid article:focus-within,
  .training-outcomes-grid article:focus-within,
  .office-suite-grid article:focus-within,
  .office-crm-grid article:focus-within,
  .office-minisite-grid article:focus-within,
  .office-results-grid article:focus-within {
    z-index: 2;
    transform: translateY(-8px);
    border-color: rgba(4, 94, 184, 0.28);
    box-shadow:
      0 28px 58px -30px rgba(7, 34, 60, 0.55),
      0 16px 34px -28px rgba(4, 94, 184, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .polo-path-grid article,
  .polo-support-grid article,
  .polo-impact-grid article,
  .support-grid article,
  .adv-grid article,
  .role-grid article,
  .training-role-grid > ul,
  .home-audience-card,
  .mission-card,
  .process-step,
  .quick-card,
  .partner-grid-large img,
  .partner-trust-list article,
  .advantage-highlight-grid article,
  .advantage-roadmap article,
  .advantage-value-grid article,
  .eipass-overview-grid article,
  .eipass-workflow-grid article,
  .eipass-benefits-grid article,
  .support-system-grid article,
  .support-areas-grid article,
  .support-output-grid article,
  .training-path article,
  .training-digital article,
  .training-assets article,
  .training-outcomes article,
  .training-roadmap article,
  .training-digital-grid article,
  .training-assets-grid article,
  .training-outcomes-grid article,
  .office-suite-grid article,
  .office-crm-grid article,
  .office-minisite-grid article,
  .office-results-grid article {
    transition: none;
    will-change: auto;
  }

  .polo-path-grid article:hover,
  .polo-support-grid article:hover,
  .polo-impact-grid article:hover,
  .support-grid article:hover,
  .adv-grid article:hover,
  .role-grid article:hover,
  .training-role-grid > ul:hover,
  .home-audience-card:hover,
  .mission-card:hover,
  .process-step:hover,
  .quick-card:hover,
  .quick-card:focus-visible,
  .partner-grid-large img:hover,
  .partner-trust-list article:hover,
  .advantage-highlight-grid article:hover,
  .advantage-roadmap article:hover,
  .advantage-value-grid article:hover,
  .eipass-overview-grid article:hover,
  .eipass-workflow-grid article:hover,
  .eipass-benefits-grid article:hover,
  .support-system-grid article:hover,
  .support-areas-grid article:hover,
  .support-output-grid article:hover,
  .training-path article:hover,
  .training-digital article:hover,
  .training-assets article:hover,
  .training-outcomes article:hover,
  .training-roadmap article:hover,
  .training-digital-grid article:hover,
  .training-assets-grid article:hover,
  .training-outcomes-grid article:hover,
  .office-suite-grid article:hover,
  .office-crm-grid article:hover,
  .office-minisite-grid article:hover,
  .office-results-grid article:hover,
  .polo-support-grid article:focus-within,
  .home-audience-card:focus-within,
  .advantage-highlight-grid article:focus-within,
  .advantage-roadmap article:focus-within,
  .advantage-value-grid article:focus-within,
  .eipass-overview-grid article:focus-within,
  .eipass-workflow-grid article:focus-within,
  .eipass-benefits-grid article:focus-within,
  .support-system-grid article:focus-within,
  .support-areas-grid article:focus-within,
  .support-output-grid article:focus-within,
  .training-path article:focus-within,
  .training-digital article:focus-within,
  .training-assets article:focus-within,
  .training-outcomes article:focus-within,
  .training-roadmap article:focus-within,
  .training-digital-grid article:focus-within,
  .training-assets-grid article:focus-within,
  .training-outcomes-grid article:focus-within,
  .office-suite-grid article:focus-within,
  .office-crm-grid article:focus-within,
  .office-minisite-grid article:focus-within,
  .office-results-grid article:focus-within {
    transform: none;
  }
}

.polo-path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.polo-path-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: var(--brand-cloud);
}

.polo-path-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.78rem;
  border-radius: 999px;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.polo-path-grid h3,
.polo-support-grid h3,
.polo-impact-grid h3 {
  font-size: 1.05rem;
}

.polo-path-grid p,
.polo-support-grid p,
.polo-next p:not(.eyebrow) {
  margin: 0.55rem 0 0;
  line-height: 1.62;
}

.polo-support {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: stretch;
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background:
    radial-gradient(circle at top left, rgba(4, 107, 210, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

.polo-support-copy p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  max-width: 60ch;
  line-height: 1.7;
}

.polo-support-copy,
.polo-support-grid {
  grid-column: 1 / -1;
}

.polo-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.polo-support-grid article {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  box-shadow: 0 18px 38px -34px rgba(7, 34, 60, 0.45);
}

.polo-support-grid .inline-link {
  margin-top: auto;
}

.polo-impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.polo-impact-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(4, 107, 210, 0.12), transparent 34%),
    var(--brand-cloud);
}

.polo-impact-grid ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.72;
}

.polo-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem 2.2rem;
  background:
    linear-gradient(135deg, rgba(7, 34, 60, 0.94), rgba(4, 94, 184, 0.88)),
    url("./assets/contact-hero-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.polo-next .eyebrow,
.polo-next h2 {
  color: #ffffff;
}

.polo-next p:not(.eyebrow) {
  max-width: 68ch;
  color: #eef6ff;
}

.polo-next .btn {
  white-space: nowrap;
}

.apri-polo-page .support,
.apri-polo-page .panel,
.apri-polo-page .advantages,
.apri-polo-page .polo-path,
.apri-polo-page .polo-impact {
  position: relative;
  overflow: hidden;
  border-color: rgba(4, 107, 210, 0.14);
  box-shadow: 0 28px 70px -56px rgba(7, 34, 60, 0.5);
}

.apri-polo-page .support,
.apri-polo-page .panel,
.apri-polo-page .advantages,
.apri-polo-page .polo-path,
.apri-polo-page .polo-impact {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
}

.apri-polo-page .section-head h2 {
  max-width: 860px;
}

.apri-polo-page .support-grid,
.apri-polo-page .adv-grid,
.apri-polo-page .polo-path-grid,
.apri-polo-page .polo-support-grid,
.apri-polo-page .polo-impact-grid {
  align-items: stretch;
}

.apri-polo-page .support-grid article,
.apri-polo-page .adv-grid article,
.apri-polo-page .polo-path-grid article,
.apri-polo-page .polo-support-grid article,
.apri-polo-page .polo-impact-grid article,
.apri-polo-page .role-grid article {
  min-height: 100%;
  border-color: rgba(4, 107, 210, 0.14);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.76) 100%);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.45);
}

.apri-polo-page .support-grid article,
.apri-polo-page .adv-grid article {
  border-left: 4px solid var(--brand-red);
}

.apri-polo-page .support-grid article:nth-child(2),
.apri-polo-page .adv-grid article:nth-child(2) {
  border-left-color: var(--brand-blue-deep);
}

.apri-polo-page .polo-path-grid {
  position: relative;
}

@media (min-width: 1081px) {
  .apri-polo-page .polo-path-grid::before {
    content: "";
    position: absolute;
    top: 0.95rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(4, 92, 180, 0.14), rgba(213, 72, 74, 0.32));
  }
}

.apri-polo-page .polo-path-grid article {
  background-color: #ffffff;
}

.apri-polo-page .polo-path-grid article::before,
.apri-polo-page .polo-impact-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue-deep), var(--brand-red));
}

.apri-polo-page .polo-support {
  background:
    linear-gradient(135deg, rgba(2, 65, 106, 0.98), rgba(4, 92, 180, 0.9));
  color: #ffffff;
}

.apri-polo-page .polo-support-copy {
  border-radius: 8px;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  background-color: rgba(255, 255, 255, 0.08);
}

.apri-polo-page .polo-support-copy .eyebrow,
.apri-polo-page .polo-support-copy h2,
.apri-polo-page .polo-support-copy p:not(.eyebrow) {
  color: #ffffff;
}

.apri-polo-page .polo-support-grid article {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: rgba(255, 255, 255, 0.96);
}

.apri-polo-page .polo-support-grid h3,
.apri-polo-page .polo-impact-grid h3,
.apri-polo-page .adv-grid h3,
.apri-polo-page .support-grid h3,
.apri-polo-page .role-grid h3 {
  color: var(--brand-navy);
}

.apri-polo-page .polo-support-grid p,
.apri-polo-page .polo-impact-grid li,
.apri-polo-page .adv-grid p,
.apri-polo-page .support-grid p,
.apri-polo-page .role-grid p,
.apri-polo-page .role-grid li {
  color: var(--brand-slate);
}

.apri-polo-page .role-grid p,
.apri-polo-page .role-grid ul {
  padding: 1rem;
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.72) 100%);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.4);
}

.apri-polo-page .role-grid ul,
.apri-polo-page .polo-impact-grid ul {
  padding-left: 0;
  list-style: none;
}

.apri-polo-page .role-grid li,
.apri-polo-page .polo-impact-grid li {
  position: relative;
  padding-left: 1.7rem;
}

.apri-polo-page .role-grid li + li,
.apri-polo-page .polo-impact-grid li + li {
  margin-top: 0.42rem;
}

.apri-polo-page .role-grid li::before,
.apri-polo-page .polo-impact-grid li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0.35rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--brand-red);
  transform: translateY(-50%);
}

.apri-polo-page .polo-impact-grid article:nth-child(2) li::before {
  background-color: var(--brand-blue-deep);
}

.apri-polo-form-top {
  position: relative;
  width: min(680px, 92vw);
  margin-top: 2.2rem;
  overflow: hidden;
  padding: clamp(1rem, 1.6vw, 1.4rem);
  display: grid;
  justify-items: center;
  border: 1px solid rgba(4, 107, 210, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.1), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    0 30px 70px -52px rgba(7, 34, 60, 0.58),
    0 18px 38px -32px rgba(4, 94, 184, 0.32);
}

.apri-polo-form-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--brand-blue-deep), var(--brand-red));
}

.apri-polo-form-top .contact-form {
  width: 100%;
  justify-self: stretch;
}

.apri-polo-form-top .lead-form-head {
  padding-top: 0.15rem;
}

.apri-polo-sections-grid {
  width: min(1140px, 92vw);
  margin: 2.2rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.apri-polo-sections-grid > section {
  width: 100%;
  margin: 0;
}

.apri-polo-sections-grid > section:last-child {
  grid-column: auto;
}

.apri-polo-sections-grid .support-grid,
.apri-polo-sections-grid .adv-grid,
.apri-polo-sections-grid .polo-support-grid,
.apri-polo-sections-grid .polo-impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apri-polo-sections-grid .polo-path-grid,
.apri-polo-sections-grid .role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .apri-polo-sections-grid {
    width: min(1140px, 92vw);
    grid-template-columns: minmax(0, 1fr);
  }

  .apri-polo-sections-grid > section:last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .apri-polo-form-top {
    width: min(100% - 1rem, 1140px);
    padding: 1rem;
    border-radius: 12px;
  }
}

.faq-hero {
  background:
    linear-gradient(104deg, rgba(7, 34, 60, 0.86) 0%, rgba(4, 92, 180, 0.64) 48%, rgba(7, 34, 60, 0.36) 100%),
    url("./assets/supporto-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-assistant {
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(4, 107, 210, 0.06), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.82) 100%);
  box-shadow: 0 28px 70px -56px rgba(7, 34, 60, 0.5);
  transform: translateY(0);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.faq-assistant-head {
  max-width: 880px;
  margin-bottom: clamp(1.2rem, 2.6vw, 1.9rem);
}

.faq-assistant-head h2 {
  margin: 0;
  color: var(--brand-navy);
}

.faq-assistant-head p:not(.eyebrow) {
  margin-bottom: 0;
  line-height: 1.75;
}

.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: clamp(1rem, 2.2vw, 1.45rem);
}

.faq-category {
  border: 1px solid rgba(4, 107, 210, 0.18);
  border-radius: 999px;
  padding: 0.64rem 0.95rem;
  background-color: rgba(255, 255, 255, 0.82);
  color: var(--brand-navy);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.faq-category.is-active {
  border-color: rgba(213, 72, 74, 0.48);
  background-color: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 14px 30px -24px rgba(213, 72, 74, 0.82);
}

.faq-category:focus-visible {
  outline: 3px solid rgba(4, 107, 210, 0.22);
  outline-offset: 2px;
}

.faq-assistant-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

.faq-question-panel,
.faq-answer-panel {
  min-width: 0;
}

.faq-panel-label {
  margin: 0 0 0.72rem;
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-question-list {
  display: grid;
  gap: 0.58rem;
  max-height: 580px;
  overflow-y: auto;
  padding-right: 0.4rem;
  scrollbar-color: rgba(4, 92, 180, 0.42) transparent;
}

.faq-question-list::-webkit-scrollbar {
  width: 8px;
}

.faq-question-list::-webkit-scrollbar-track {
  background: transparent;
}

.faq-question-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(4, 92, 180, 0.34);
}

.faq-question {
  width: 100%;
  border: 1px solid rgba(4, 107, 210, 0.15);
  border-radius: 10px;
  padding: 0.82rem 0.9rem;
  background-color: rgba(255, 255, 255, 0.86);
  color: var(--brand-navy);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  transform: translateY(0);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
  animation: faqQuestionIn 0.28s ease both;
  animation-delay: calc(var(--faq-index, 0) * 34ms);
}

.faq-question.is-hidden {
  display: none;
}

.faq-question.is-active {
  border-color: rgba(213, 72, 74, 0.46);
  background-color: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 16px 36px -28px rgba(213, 72, 74, 0.84);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(4, 107, 210, 0.22);
  outline-offset: 2px;
}

.faq-answer-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(4, 107, 210, 0.15);
  border-radius: 16px;
  padding: clamp(1.2rem, 2.7vw, 1.8rem);
  background:
    radial-gradient(circle at top right, rgba(4, 107, 210, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, rgba(244, 249, 255, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.faq-answer-panel::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background-color: var(--brand-red);
  box-shadow:
    -0.92rem 0 0 rgba(4, 107, 210, 0.34),
    -1.84rem 0 0 rgba(4, 107, 210, 0.18);
}

.faq-answer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.48rem 0.66rem;
  max-width: calc(100% - 4rem);
  margin-bottom: 0.7rem;
  color: var(--brand-blue-deep);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-answer-meta [data-faq-status] {
  color: var(--brand-slate);
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0.78;
}

.faq-live-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background-color: var(--brand-red);
  box-shadow: 0 0 0 0 rgba(213, 72, 74, 0.42);
  animation: faqLivePulse 1.35s ease-out infinite;
}

.faq-answer-progress {
  height: 4px;
  margin: 0 0 1.05rem;
  overflow: hidden;
  border-radius: 999px;
  background-color: rgba(4, 107, 210, 0.1);
}

.faq-answer-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--brand-blue-deep), var(--brand-red));
  transition: width 0.08s linear;
}

.faq-answer-panel h3 {
  max-width: 760px;
  margin: 0 0 1rem;
  padding-right: 3.8rem;
  color: var(--brand-navy);
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.16;
}

.faq-answer-text {
  min-height: 9.8rem;
  margin: 0;
  color: var(--brand-slate);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.78;
}

.faq-answer-cursor {
  display: inline-block;
  width: 0.12em;
  height: 1.1em;
  margin-left: 0.16em;
  background-color: var(--brand-blue-deep);
  transform: translateY(0.18em);
  animation: faqCursorBlink 0.9s steps(1) infinite;
}

.faq-assistant:not(.is-typing) .faq-answer-cursor {
  opacity: 0;
  animation: none;
}

.faq-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: clamp(1.15rem, 2.2vw, 1.6rem);
}

.faq-related button {
  border: 1px solid rgba(4, 107, 210, 0.18);
  border-radius: 999px;
  padding: 0.58rem 0.78rem;
  background-color: rgba(255, 255, 255, 0.84);
  color: var(--brand-blue-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-related button:focus-visible {
  outline: 3px solid rgba(4, 107, 210, 0.22);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .faq-assistant:hover {
    transform: translateY(-5px);
    border-color: rgba(4, 94, 184, 0.28);
    box-shadow:
      0 28px 62px -40px rgba(7, 34, 60, 0.52),
      0 14px 30px -26px rgba(4, 94, 184, 0.44);
  }

  .faq-question:hover {
    transform: translateY(-3px);
    border-color: rgba(4, 94, 184, 0.34);
    box-shadow: 0 16px 34px -28px rgba(4, 92, 180, 0.74);
  }

  .faq-category:hover,
  .faq-related button:hover {
    transform: translateY(-3px);
    border-color: rgba(4, 94, 184, 0.34);
    box-shadow: 0 14px 28px -24px rgba(4, 92, 180, 0.68);
  }
}

@media (max-width: 880px) {
  .faq-assistant-grid {
    grid-template-columns: 1fr;
  }

  .faq-question-list {
    max-height: 360px;
  }

  .faq-answer-panel {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .faq-assistant {
    border-radius: 16px;
    padding: 1rem;
  }

  .faq-question-list {
    max-height: 330px;
    padding-right: 0.18rem;
  }

  .faq-category {
    padding: 0.58rem 0.78rem;
    font-size: 0.84rem;
  }

  .faq-question {
    padding: 0.78rem 0.82rem;
  }

  .faq-answer-panel {
    border-radius: 12px;
    min-height: 380px;
  }

  .faq-answer-panel h3 {
    padding-right: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-assistant,
  .faq-category,
  .faq-question,
  .faq-answer-cursor,
  .faq-live-dot,
  .faq-related button {
    transition: none;
    animation: none;
  }

  .faq-assistant:hover,
  .faq-category:hover,
  .faq-related button:hover,
  .faq-question:hover {
    transform: none;
  }
}

@keyframes faqCursorBlink {
  0%,
  46% {
    opacity: 1;
  }

  47%,
  100% {
    opacity: 0;
  }
}

@keyframes faqLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(213, 72, 74, 0.42);
  }

  70%,
  100% {
    box-shadow: 0 0 0 10px rgba(213, 72, 74, 0);
  }
}

@keyframes faqQuestionIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-simple {
  position: relative;
  width: min(1140px, 92vw);
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
  padding: clamp(1rem, 2.2vw, 1.6rem);
  border: 2px solid transparent;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(4, 107, 210, 0.2) 0%, rgba(4, 107, 210, 0) 40%) padding-box,
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%) padding-box,
    linear-gradient(145deg, rgba(241, 248, 255, 0.98) 0%, #ffffff 54%, rgba(255, 246, 246, 0.94) 100%) padding-box,
    linear-gradient(115deg, var(--brand-navy) 0 34%, var(--brand-blue) 34% 72%, var(--brand-red) 72% 100%) border-box;
  box-shadow:
    0 30px 70px -48px rgba(2, 65, 106, 0.58),
    0 16px 36px -34px rgba(213, 72, 74, 0.42);
  overflow: hidden;
}

.faq-simple-head {
  max-width: 820px;
  margin: 0 auto clamp(1rem, 1.8vw, 1.3rem);
  text-align: center;
}

.faq-simple-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.faq-simple-title-row h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--brand-navy);
}

.faq-simple-head p:not(.eyebrow) {
  max-width: 780px;
  margin: 0.8rem auto 0;
  line-height: 1.75;
}

.faq-simple-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: start;
  counter-reset: faq-item;
}

.faq-simple-column {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.faq-simple-item {
  border: 1px solid rgba(4, 107, 210, 0.16);
  border-left: 5px solid var(--brand-blue);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(4, 107, 210, 0.035), transparent 30%),
    #ffffff;
  box-shadow: 0 16px 34px -32px rgba(7, 34, 60, 0.58);
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-simple-item:nth-child(3n + 1) {
  border-left-color: var(--brand-blue);
}

.faq-simple-item:nth-child(3n + 2) {
  border-left-color: var(--brand-navy);
}

.faq-simple-item:nth-child(3n) {
  border-left-color: var(--brand-red);
}

.faq-simple-item summary {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 64px;
  padding: 0.72rem 0.9rem 0.72rem 0.8rem;
  color: var(--brand-navy);
  cursor: pointer;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-simple-item summary::-webkit-details-marker {
  display: none;
}

.faq-simple-item summary::before {
  counter-increment: faq-item;
  content: counter(faq-item, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background-color: rgba(4, 107, 210, 0.11);
  color: var(--brand-blue-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.faq-simple-item:nth-child(3n + 1) summary::before {
  background-color: rgba(4, 107, 210, 0.11);
  color: var(--brand-blue-deep);
}

.faq-simple-item:nth-child(3n + 2) summary::before {
  background-color: rgba(2, 65, 106, 0.11);
  color: var(--brand-navy);
}

.faq-simple-item:nth-child(3n) summary::before {
  background-color: rgba(213, 72, 74, 0.11);
  color: var(--brand-red);
}

.faq-simple-item summary::after {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--brand-red);
  border-radius: 999px;
  background:
    linear-gradient(#ffffff, #ffffff) center / 0.72rem 2px no-repeat,
    linear-gradient(#ffffff, #ffffff) center / 2px 0.72rem no-repeat,
    var(--brand-red);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.faq-simple-item[open] {
  border-top-color: rgba(4, 94, 184, 0.3);
  border-right-color: rgba(4, 94, 184, 0.3);
  border-bottom-color: rgba(4, 94, 184, 0.3);
  background:
    linear-gradient(105deg, rgba(4, 107, 210, 0.075), transparent 42%),
    #ffffff;
  box-shadow:
    0 22px 46px -34px rgba(4, 92, 180, 0.58),
    0 10px 28px -28px rgba(213, 72, 74, 0.42);
}

.faq-simple-item[open] summary::after {
  content: "";
  border-color: var(--brand-red);
  background:
    linear-gradient(#ffffff, #ffffff) center / 0.72rem 2px no-repeat,
    var(--brand-red);
  transform: none;
}

.faq-simple-item p {
  max-width: 82ch;
  margin: 0 1rem 0 4rem;
  padding: 0.15rem 2.7rem 1.1rem 0;
  border-top: 1px solid rgba(4, 107, 210, 0.1);
  color: var(--brand-slate);
  line-height: 1.75;
}

.faq-simple-item summary:focus-visible {
  outline: 3px solid rgba(4, 107, 210, 0.22);
  outline-offset: -3px;
  border-radius: 10px;
}

@media (min-width: 901px) {
  .faq-simple-item summary {
    height: 76px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .faq-simple-item:hover,
  .faq-simple-item:focus-within {
    transform: translateY(-3px);
    border-color: rgba(4, 94, 184, 0.34);
    box-shadow: 0 16px 34px -28px rgba(4, 92, 180, 0.74);
  }

  .faq-simple-item:hover summary::after,
  .faq-simple-item:focus-within summary::after {
    border-color: var(--brand-red);
  }
}

@media (max-width: 720px) {
  .faq-simple {
    width: min(94vw, 920px);
    padding: 0.78rem;
    border-radius: 18px;
  }

  .faq-simple-item summary {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.62rem;
    min-height: 60px;
    padding: 0.68rem 0.68rem 0.68rem 0.62rem;
  }

  .faq-simple-item summary::before {
    width: 2rem;
    height: 2rem;
  }

  .faq-simple-item summary::after {
    width: 1.85rem;
    height: 1.85rem;
  }

  .faq-simple-item p {
    margin: 0 0.8rem 0 3.25rem;
    padding: 0.12rem 0 1rem;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .faq-simple-item,
  .faq-simple-item summary::after {
    transition: none;
    animation: none;
  }

  .faq-simple-item:hover,
  .faq-simple-item:focus-within {
    transform: none;
  }
}

.support-page .support,
.support-page .panel,
.support-page .support-areas,
.support-page .support-output,
.support-page .support-next,
.digital-office-page .support,
.digital-office-page .panel,
.digital-office-page .office-crm,
.digital-office-page .office-minisite,
.digital-office-page .office-results,
.formazione-page .support,
.formazione-page .panel,
.formazione-page .training-path,
.formazione-page .training-assets,
.formazione-page .training-outcomes,
.apri-polo-page .support,
.apri-polo-page .panel,
.apri-polo-page .advantages,
.apri-polo-page .polo-path,
.apri-polo-page .polo-support,
.apri-polo-page .polo-impact {
  transform: translateY(0);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    filter 0.26s ease;
}

.support-page .role-grid ul,
.digital-office-page .role-grid ul,
.formazione-page .role-grid ul,
.formazione-page .training-assets-grid ul,
.apri-polo-page .role-grid p,
.apri-polo-page .role-grid ul,
.apri-polo-page .polo-impact-grid ul {
  transform: translateY(0);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    filter 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .support-page .support:hover,
  .support-page .panel:hover,
  .support-page .support-areas:hover,
  .support-page .support-output:hover,
  .support-page .support-next:hover,
  .digital-office-page .support:hover,
  .digital-office-page .panel:hover,
  .digital-office-page .office-crm:hover,
  .digital-office-page .office-minisite:hover,
  .digital-office-page .office-results:hover,
  .formazione-page .support:hover,
  .formazione-page .panel:hover,
  .formazione-page .training-path:hover,
  .formazione-page .training-assets:hover,
  .formazione-page .training-outcomes:hover,
  .apri-polo-page .support:hover,
  .apri-polo-page .panel:hover,
  .apri-polo-page .advantages:hover,
  .apri-polo-page .polo-path:hover,
  .apri-polo-page .polo-impact:hover {
    transform: translateY(-4px);
    border-color: rgba(4, 94, 184, 0.26);
    box-shadow:
      0 34px 74px -48px rgba(7, 34, 60, 0.56),
      0 18px 36px -34px rgba(4, 94, 184, 0.5);
  }

  .support-page .role-grid ul:hover,
  .digital-office-page .role-grid ul:hover,
  .formazione-page .role-grid ul:hover,
  .formazione-page .training-assets-grid ul:hover,
  .apri-polo-page .role-grid p:hover,
  .apri-polo-page .role-grid ul:hover,
  .apri-polo-page .polo-impact-grid ul:hover {
    transform: translateY(-6px);
    border-color: rgba(4, 94, 184, 0.3);
    box-shadow:
      0 24px 52px -36px rgba(7, 34, 60, 0.52),
      0 12px 28px -24px rgba(4, 94, 184, 0.46);
    filter: saturate(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-page .support,
  .support-page .panel,
  .support-page .support-areas,
  .support-page .support-output,
  .support-page .support-next,
  .digital-office-page .support,
  .digital-office-page .panel,
  .digital-office-page .office-crm,
  .digital-office-page .office-minisite,
  .digital-office-page .office-results,
  .formazione-page .support,
  .formazione-page .panel,
  .formazione-page .training-path,
  .formazione-page .training-assets,
  .formazione-page .training-outcomes,
  .apri-polo-page .support,
  .apri-polo-page .panel,
  .apri-polo-page .advantages,
  .apri-polo-page .polo-path,
  .apri-polo-page .polo-impact,
  .support-page .role-grid ul,
  .digital-office-page .role-grid ul,
  .formazione-page .role-grid ul,
  .formazione-page .training-assets-grid ul,
  .apri-polo-page .role-grid p,
  .apri-polo-page .role-grid ul,
  .apri-polo-page .polo-impact-grid ul {
    transition: none;
  }

  .support-page .support:hover,
  .support-page .panel:hover,
  .support-page .support-areas:hover,
  .support-page .support-output:hover,
  .support-page .support-next:hover,
  .digital-office-page .support:hover,
  .digital-office-page .panel:hover,
  .digital-office-page .office-crm:hover,
  .digital-office-page .office-minisite:hover,
  .digital-office-page .office-results:hover,
  .formazione-page .support:hover,
  .formazione-page .panel:hover,
  .formazione-page .training-path:hover,
  .formazione-page .training-assets:hover,
  .formazione-page .training-outcomes:hover,
  .apri-polo-page .support:hover,
  .apri-polo-page .panel:hover,
  .apri-polo-page .advantages:hover,
  .apri-polo-page .polo-path:hover,
  .apri-polo-page .polo-impact:hover,
  .support-page .role-grid ul:hover,
  .digital-office-page .role-grid ul:hover,
  .formazione-page .role-grid ul:hover,
  .formazione-page .training-assets-grid ul:hover,
  .apri-polo-page .role-grid p:hover,
  .apri-polo-page .role-grid ul:hover,
  .apri-polo-page .polo-impact-grid ul:hover {
    transform: none;
  }
}

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

.adv-grid article {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background-color: var(--brand-cloud);
}

.adv-grid img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background-color: var(--brand-red);
  border-radius: 6px;
  display: block;
}

.adv-grid h3 {
  margin-top: 0.85rem;
  font-size: 1.05rem;
}

.adv-grid p {
  margin: 0.55rem 0 0;
  line-height: 1.65;
}

.advantages .section-head p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  max-width: 72ch;
  line-height: 1.7;
}

.advantage-highlight,
.advantage-path,
.advantage-value,
.advantage-next {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
}

.advantage-highlight {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background:
    radial-gradient(circle at top right, rgba(4, 107, 210, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
}

.advantage-highlight-copy p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  max-width: 62ch;
  line-height: 1.7;
}

.advantage-highlight-grid {
  display: grid;
  gap: 0.85rem;
}

.advantage-highlight-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  box-shadow: 0 18px 38px -34px rgba(7, 34, 60, 0.45);
}

.advantage-highlight-grid strong {
  min-width: 66px;
  color: var(--brand-blue-deep);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1;
}

.advantage-highlight-grid span {
  line-height: 1.55;
}

@media (min-width: 1081px) {
  .advantage-highlight {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }

  .advantage-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .advantage-highlight-grid article {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    align-content: start;
    align-items: start;
  }
}

.advantage-path,
.advantage-value {
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background-color: #ffffff;
}

.advantage-roadmap,
.advantage-value-grid {
  display: grid;
  gap: 0.95rem;
}

.advantage-roadmap {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-roadmap article {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: var(--brand-cloud);
}

.advantage-roadmap span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.78rem;
  border-radius: 999px;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.advantage-roadmap h3 {
  font-size: 1.05rem;
}

.advantage-roadmap p {
  margin: 0.55rem 0 0;
  line-height: 1.62;
}

.advantage-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-value-grid article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: var(--brand-cloud);
}

.advantage-value-grid h3 {
  font-size: 1.08rem;
}

.advantage-value-grid ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.72;
}

.advantage-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(4, 107, 210, 0.16);
  background:
    radial-gradient(circle at top left, rgba(4, 107, 210, 0.14), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
}

.advantage-next p:not(.eyebrow) {
  margin: 0.75rem 0 0;
  max-width: 68ch;
  line-height: 1.7;
}

.advantage-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.vantaggi-page .advantages,
.vantaggi-page .panel,
.vantaggi-page .advantage-highlight,
.vantaggi-page .advantage-path,
.vantaggi-page .advantage-value {
  position: relative;
  overflow: hidden;
  border-color: rgba(4, 107, 210, 0.14);
  box-shadow: 0 28px 70px -56px rgba(7, 34, 60, 0.5);
}

.vantaggi-page .advantages,
.vantaggi-page .panel,
.vantaggi-page .advantage-path,
.vantaggi-page .advantage-value {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
}

.vantaggi-page .section-head {
  display: grid;
  gap: 0.45rem;
}

.vantaggi-page .section-head h2 {
  max-width: 780px;
}

.vantaggi-page .adv-grid {
  gap: 1rem;
  align-items: stretch;
}

.vantaggi-page .adv-grid article {
  min-height: 100%;
  padding: 1.15rem;
  border-color: rgba(4, 107, 210, 0.14);
  border-left: 4px solid var(--brand-red);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.72) 100%);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.45);
}

.vantaggi-page .adv-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-color: rgba(4, 107, 210, 0.1);
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.vantaggi-page .adv-grid h3 {
  color: var(--brand-navy);
}

.vantaggi-page .advantage-highlight {
  gap: 1rem;
  align-items: stretch;
  background:
    linear-gradient(135deg, #ffffff 0%, rgba(240, 245, 250, 0.9) 48%, rgba(213, 72, 74, 0.06) 100%);
}

.vantaggi-page .advantage-highlight-copy {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 50%, calc(100% - 42px) 100%, 0 100%);
  border-radius: 8px 0 0 8px;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(2.65rem, 5vw, 4.2rem) clamp(1.35rem, 3vw, 2rem) clamp(1.45rem, 3vw, 2.15rem);
  background:
    linear-gradient(112deg, rgba(2, 65, 106, 0.98) 0%, rgba(15, 91, 161, 0.95) 64%, rgba(213, 72, 74, 0.64) 100%),
    url("./assets/vantaggi-highlight-network-bg.jpg");
  background-size: cover;
  background-position: center right;
  color: #ffffff;
}

.vantaggi-page .advantage-highlight-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 6px;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-red) 100%);
}

.vantaggi-page .advantage-highlight-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 70%, rgba(255, 255, 255, 0.18) 70% 70.4%, transparent 70.4% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px);
  opacity: 0.75;
}

.vantaggi-page .advantage-highlight-copy .eyebrow {
  color: #ffffff;
}

.vantaggi-page .advantage-highlight-copy h2,
.vantaggi-page .advantage-highlight-copy p:not(.eyebrow) {
  color: #ffffff;
}

@media (max-width: 840px) {
  .vantaggi-page .advantage-highlight-copy {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
    padding: 1.25rem 2rem 1.25rem 1.25rem;
  }
}

.vantaggi-page .advantage-highlight-grid article {
  min-height: 100%;
  border-color: rgba(4, 107, 210, 0.14);
  border-left: 4px solid var(--brand-blue-deep);
}

.vantaggi-page .advantage-highlight-grid strong {
  color: var(--brand-red);
}

.vantaggi-page .advantage-roadmap {
  position: relative;
}

@media (min-width: 1081px) {
  .vantaggi-page .advantage-roadmap::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(4, 92, 180, 0.16), rgba(213, 72, 74, 0.34));
  }
}

.vantaggi-page .advantage-roadmap article {
  border-color: rgba(4, 107, 210, 0.14);
  background-color: #ffffff;
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.45);
}

.vantaggi-page .advantage-roadmap span {
  position: relative;
  z-index: 1;
  background-color: var(--brand-blue-deep);
  box-shadow: 0 0 0 6px #ffffff;
}

.advantage-method-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.3rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.74);
}

.advantage-method-link p {
  margin: 0;
  color: var(--brand-navy);
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .advantage-method-link {
    align-items: stretch;
    flex-direction: column;
  }
}

.vantaggi-page .panel .role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vantaggi-page .role-grid article {
  padding: 1.15rem;
  border-color: rgba(4, 107, 210, 0.14);
  border-top: 4px solid var(--brand-red);
  background-color: #ffffff;
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.45);
}

.vantaggi-page .role-grid article:nth-child(2) {
  border-top-color: var(--brand-blue-deep);
}

.vantaggi-page .advantage-value-grid article {
  border-color: rgba(4, 107, 210, 0.14);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.78) 100%);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.45);
}

.vantaggi-page .advantage-value-grid h3 {
  color: var(--brand-navy);
}

.vantaggi-page .advantage-value-grid ul {
  padding-left: 0;
  list-style: none;
}

.vantaggi-page .advantage-value-grid li {
  position: relative;
  padding-left: 1.25rem;
}

.vantaggi-page .advantage-value-grid li + li {
  margin-top: 0.4rem;
}

.vantaggi-page .advantage-value-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--brand-red);
  transform: translateY(-50%);
}

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

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

.partner-grid img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border: 1px solid var(--brand-line);
  border-radius: 12px;
  padding: 0.5rem;
  background-color: #f8fcff;
  transform: translateY(0);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.partner-grid-large img {
  height: 110px;
}

@media (hover: hover) and (pointer: fine) {
  .partner-grid:not(.partner-logo-marquee) img:hover {
    transform: translateY(-6px);
    border-color: rgba(4, 94, 184, 0.34);
    background-color: #ffffff;
    box-shadow: 0 22px 46px -34px rgba(7, 34, 60, 0.48);
  }
}

.partner-logo-marquee.partner-grid {
  --partner-marquee-gap: 0.95rem;
  display: block;
  overflow: hidden;
  max-width: 100%;
  margin-block: -0.45rem;
  padding-block: 0.45rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partner-logo-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--partner-marquee-gap);
  animation: partnerLogoMarquee 26s linear infinite;
  will-change: transform;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(176px, 16vw, 216px);
  width: clamp(176px, 16vw, 216px);
  height: 80px;
  position: relative;
  border: 1px solid var(--brand-line);
  border-radius: 12px;
  padding: 0.5rem;
  background-color: #f8fcff;
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    outline-color 0.24s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
  will-change: transform;
}

.partner-logo-marquee.partner-grid-large .partner-logo-card {
  height: 110px;
}

.partner-logo-marquee .partner-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
  transform: none;
  transition: none;
  box-shadow: none;
  will-change: auto;
}

.partner-grid img.partner-logo-multiversity {
  padding: 0.4rem;
  background-color: transparent;
  filter: none;
}

.partner-grid img[src$="logo-pegaso.png"] {
  object-fit: cover;
  object-position: center;
}

@media (hover: hover) and (pointer: fine) {
  .partner-grid.partner-logo-marquee .partner-logo-card:hover,
  .partner-grid.partner-logo-marquee.partner-grid-large .partner-logo-card:hover {
    z-index: 2;
    transform: translateY(-10px) scale(1.055);
    border-color: rgba(4, 94, 184, 0.7);
    outline-color: rgba(4, 94, 184, 0.16);
    background-color: #ffffff;
    box-shadow:
      0 30px 58px -24px rgba(7, 34, 60, 0.68),
      0 18px 34px -18px rgba(4, 94, 184, 0.62);
  }

  .partner-logo-marquee.partner-grid-large .partner-logo-card img:hover {
    transform: none;
    border-color: transparent;
    background-color: transparent;
    box-shadow: none;
  }
}

@keyframes partnerLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--partner-marquee-gap) / 2)));
  }
}

.partner-page > .home-partners .section-head {
  display: grid;
  justify-items: center;
  width: 100%;
  margin-inline: auto;
}

.partner-page > .home-partners .partner-grid {
  margin-inline: auto;
}

@media (min-width: 841px) {
  .partner-page > .home-partners {
    left: calc(-1 * clamp(1.5rem, 2.5vw, 2.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo-marquee.partner-grid {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .partner-logo-marquee-track {
    animation: none;
  }

  .partner-logo-card {
    transition: none;
    will-change: auto;
  }
}

.partners .section-head p:not(.eyebrow),
.support .section-head p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  max-width: 72ch;
  line-height: 1.7;
}

.home-partners {
  position: relative;
  overflow: hidden;
  border-color: rgba(4, 107, 210, 0.18);
  background-color: #f7fafc;
  box-shadow: 0 28px 64px -50px rgba(7, 34, 60, 0.62);
}

.home-partners::before,
.home-partners::after {
  content: "";
  position: absolute;
  top: 0;
  height: 6px;
}

.home-partners::before {
  left: 0;
  width: 68%;
  background-color: var(--brand-blue);
}

.home-partners::after {
  right: 0;
  width: 32%;
  background-color: var(--brand-red);
}

.home-partners .section-head,
.home-partners .partner-grid {
  position: relative;
  z-index: 1;
}

.home-partners .section-head {
  margin-bottom: 1.35rem;
  text-align: center;
}

.home-partners .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  color: #ffffff;
  background-color: var(--brand-navy);
}

.home-partners .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(213, 72, 74, 0.18);
}

.home-partners .partner-grid {
  padding: 1rem;
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 20px 46px -38px rgba(7, 34, 60, 0.58);
}

.home-partners .partner-grid img {
  height: 88px;
  border-color: rgba(4, 107, 210, 0.14);
  border-bottom-width: 3px;
  background-color: #ffffff;
  box-shadow: 0 14px 30px -26px rgba(7, 34, 60, 0.48);
}

.home-partners .partner-grid img:nth-child(odd) {
  border-bottom-color: var(--brand-blue);
}

.home-partners .partner-grid img:nth-child(even) {
  border-bottom-color: var(--brand-red);
}

.partner-trust {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
}

.partner-trust {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: stretch;
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  background:
    radial-gradient(circle at top left, rgba(4, 107, 210, 0.15), transparent 33%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
}

.partner-trust-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-trust-copy p:not(.eyebrow) {
  margin: 0.85rem 0 1.25rem;
  max-width: 58ch;
  line-height: 1.7;
}

.partner-trust-copy .btn {
  align-self: flex-start;
}

.partner-trust-list {
  display: grid;
  gap: 0.85rem;
}

.partner-trust-list article {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  box-shadow: 0 18px 38px -34px rgba(7, 34, 60, 0.45);
}

.partner-trust-list span {
  display: inline-flex;
  margin-bottom: 0.58rem;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background-color: rgba(213, 47, 39, 0.1);
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-trust-list h3 {
  font-size: 1.05rem;
}

.partner-trust-list p {
  margin: 0.5rem 0 0;
  line-height: 1.62;
}

@media (min-width: 1081px) {
  .partner-trust {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }

  .partner-trust-copy {
    justify-content: flex-start;
  }

  .partner-trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.partner-page .partner-trust,
.partner-page .support,
.partner-page .panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(4, 107, 210, 0.14);
  box-shadow: 0 28px 70px -56px rgba(7, 34, 60, 0.5);
}

.partner-page .partner-trust::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue-deep), var(--brand-red));
}

.partner-page .partner-trust {
  width: min(980px, 86vw);
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
  gap: 0.7rem;
  background:
    linear-gradient(135deg, rgba(2, 65, 106, 0.98), rgba(4, 92, 180, 0.9));
  color: #ffffff;
}

.partner-page .partner-trust-copy {
  border-radius: 8px;
  padding: clamp(0.85rem, 1.9vw, 1.15rem);
  background-color: rgba(255, 255, 255, 0.08);
}

.partner-page .partner-trust-copy .eyebrow,
.partner-page .partner-trust-copy h2,
.partner-page .partner-trust-copy p:not(.eyebrow) {
  color: #ffffff;
}

.partner-page .partner-trust-copy h2 {
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  line-height: 1.16;
}

.partner-page .partner-trust-copy p:not(.eyebrow) {
  margin: 0.65rem 0 0.75rem;
  line-height: 1.55;
}

.partner-page .partner-trust-list {
  gap: 0.68rem;
}

.partner-page .partner-trust-list article {
  min-height: 100%;
  padding: 0.72rem;
  border-color: rgba(255, 255, 255, 0.22);
  background-color: rgba(255, 255, 255, 0.96);
}

.partner-page .partner-trust-list span,
.partner-page .support-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.72rem;
  border-radius: 999px;
  background-color: rgba(4, 107, 210, 0.1);
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.partner-page .partner-trust-list span {
  width: 28px;
  height: 28px;
  margin-bottom: 0.48rem;
  font-size: 0.68rem;
}

.partner-page .partner-trust-list h3,
.partner-page .support-grid h3,
.partner-page .role-grid h3 {
  color: var(--brand-navy);
}

.partner-page .partner-trust-list h3 {
  font-size: 0.98rem;
}

.partner-page .partner-trust-list p {
  margin-top: 0.38rem;
  line-height: 1.5;
}

.partner-page .partner-trust-list p,
.partner-page .support-grid p,
.partner-page .role-grid p,
.partner-page .role-grid li {
  color: var(--brand-slate);
}

.partner-page .support,
.partner-page .panel {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
}

.partner-page .support-grid {
  align-items: stretch;
}

.partner-page .support-grid article {
  min-height: 100%;
  border-color: rgba(4, 107, 210, 0.14);
  border-left: 4px solid var(--brand-red);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.76) 100%);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.45);
}

.partner-page .support-grid article:nth-child(2n) {
  border-left-color: var(--brand-blue-deep);
}

.partner-page .panel .role-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: stretch;
}

.partner-page .role-grid p,
.partner-page .role-grid ul {
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 8px;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px -38px rgba(7, 34, 60, 0.4);
}

.partner-page .role-grid ul {
  display: grid;
  gap: 0.5rem;
  list-style: none;
}

.partner-page .role-grid li {
  position: relative;
  padding-left: 1.25rem;
}

.partner-page .role-grid li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--brand-red);
  transform: translateY(-50%);
}

.partner-page .partner-insight {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 5px solid var(--brand-blue-deep);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 245, 250, 0.9) 0%, #ffffff 58%);
}

.partner-page .partner-insight-alt {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  border-left-color: var(--brand-red);
  background:
    linear-gradient(135deg, #ffffff 0%, rgba(240, 245, 250, 0.92) 100%);
}

.partner-page .partner-insight {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
}

.partner-page .partner-insight-alt .section-head {
  order: 2;
}

.partner-page .partner-insight-alt .role-grid {
  order: 1;
}

.partner-page .partner-insight-alt .role-grid p {
  order: 2;
  align-self: center;
  margin-top: 2.4rem;
  margin-left: 1.2rem;
}

.partner-page .partner-insight-alt .role-grid ul {
  order: 1;
}

.partner-page .partner-insight .section-head {
  margin-bottom: 0;
}

.partner-page .partner-insight:not(.partner-insight-alt) .section-head {
  align-self: start;
  margin-top: -0.55rem;
}

.partner-page .partner-insight .section-head h2 {
  max-width: 680px;
}

.partner-page .partner-insight .role-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: 1rem;
}

.partner-page .partner-insight .role-grid p {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--brand-slate);
}

.partner-page .partner-insight:not(.partner-insight-alt) .role-grid p {
  margin-top: 2rem;
}

.partner-page .partner-insight .role-grid ul {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
}

.partner-page .partner-insight .role-grid li {
  min-height: 42px;
  padding: 0.62rem 0.8rem 0.62rem 2.25rem;
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.84);
  color: var(--brand-navy);
  line-height: 1.35;
}

.partner-page .partner-insight .role-grid li + li {
  margin-top: 0.55rem;
}

.partner-page .partner-insight .role-grid li::before {
  top: 50%;
  left: 0.85rem;
  width: 9px;
  height: 9px;
  background-color: var(--brand-blue-deep);
}

.partner-page .partner-insight-alt .role-grid li::before {
  background-color: var(--brand-red);
}

@media (hover: hover) and (pointer: fine) {
  .partner-page .partner-insight .role-grid li {
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  .partner-page .partner-insight .role-grid li:hover {
    transform: translateX(4px);
    border-color: rgba(4, 107, 210, 0.28);
    box-shadow: 0 14px 28px -24px rgba(7, 34, 60, 0.5);
  }
}

@media (min-width: 841px) {
  .partner-page > .partner-trust,
  .partner-page > .support,
  .partner-page > .partner-insight {
    width: min(1040px, 86vw);
  }

  .partner-page > .partner-trust,
  .partner-page > .partner-insight:not(.partner-insight-alt) {
    margin-left: max(
      1.5rem,
      calc((100vw - min(1040px, 86vw)) / 2 - clamp(1.5rem, 2.5vw, 2.5rem))
    );
    margin-right: auto;
  }

  .partner-page > .support,
  .partner-page > .partner-insight-alt {
    margin-left: auto;
    margin-right: max(
      1.5rem,
      calc((100vw - min(1040px, 86vw)) / 2 - clamp(1.5rem, 2.5vw, 2.5rem))
    );
  }
}

.quick-links {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quick-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: var(--brand-cloud);
  padding: 1rem;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.quick-card:hover,
.quick-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(4, 94, 184, 0.28);
  box-shadow:
    0 28px 58px -30px rgba(7, 34, 60, 0.55),
    0 16px 34px -28px rgba(4, 94, 184, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .quick-card:hover,
  .quick-card:focus-visible {
    transform: none;
  }
}

.quick-card h3 {
  font-size: 1.05rem;
}

.quick-card p {
  margin: 0.55rem 0 0;
  line-height: 1.6;
  font-size: 0.92rem;
}

.home-audience,
.home-mission,
.home-process {
  margin-top: 2.2rem;
}

.home-linked-layout {
  margin: 2.2rem auto 0;
  width: min(1280px, 92vw);
  padding-left: clamp(0px, calc((92vw - 1140px) / 2), 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.25rem;
  align-items: start;
}

.home-linked-main {
  min-width: 0;
  display: grid;
  gap: 2.2rem;
}

.home-linked-layout .home-audience,
.home-linked-layout .home-mission {
  margin-top: 0;
}

.home-quick-panel {
  width: 100%;
  max-width: 820px;
  justify-self: start;
  margin-top: 0;
  padding: clamp(1.35rem, 2vw, 1.75rem);
}

.home-quick-panel .section-head {
  margin-bottom: 1rem;
}

.home-quick-panel .section-head h2 {
  max-width: 640px;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.2;
}

.home-quick-panel .quick-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.home-quick-panel .quick-card {
  padding: 0.92rem;
  border-radius: 12px;
}

@media (min-width: 641px) {
  .home-quick-panel .quick-card-centered {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 0.78rem) / 2);
  }
}

.home-quick-panel .quick-card h3 {
  font-size: 0.98rem;
}

.home-quick-panel .quick-card p {
  font-size: 0.84rem;
  line-height: 1.52;
}

.home-social-feeds {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 380px;
  display: grid;
  gap: 1.15rem;
  align-self: start;
  margin-top: 13.8rem;
}

.social-feeds-track {
  min-width: 0;
  display: grid;
  gap: 1.15rem;
}

.social-feeds-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  transform: translateY(calc(-100% - 0.9rem));
  max-width: 380px;
  text-align: center;
}

.social-feeds-title .eyebrow {
  margin-bottom: 0.55rem;
}

.social-feeds-title h2 {
  font-size: clamp(1.28rem, 1.55vw, 1.7rem);
  line-height: 1.16;
}

.linkedin-feed {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 380px;
  height: 392px;
  align-self: start;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 45px -38px rgba(7, 34, 60, 0.5);
  overflow: hidden;
  overscroll-behavior: contain;
}

.home-social-feeds .linkedin-feed {
  max-width: 100%;
}

.linkedin-feed-head {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  gap: 0;
  align-items: flex-start;
  margin: 0;
}

.linkedin-feed-head > div {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.linkedin-feed-profile {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background-color: #0a66c2;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  box-shadow: 0 10px 20px -12px rgba(7, 34, 60, 0.55);
}

.instagram-feed-profile {
  background:
    radial-gradient(circle at 25% 110%, #feda75 0 22%, transparent 23%),
    linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 70%, #515bd4 100%);
}

.instagram-feed-profile svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.facebook-feed-profile {
  background-color: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.linkedin-carousel {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
}

.linkedin-carousel-window {
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 12px;
  overscroll-behavior-y: contain;
  scroll-snap-type: y mandatory;
  scrollbar-color: rgba(10, 102, 194, 0.42) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.linkedin-carousel-track {
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: none;
  transform: none;
  will-change: auto;
}

.linkedin-carousel-window::-webkit-scrollbar {
  width: 7px;
}

.linkedin-carousel-window::-webkit-scrollbar-track {
  background: transparent;
}

.linkedin-carousel-window::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background-color: rgba(10, 102, 194, 0.34);
}

.linkedin-update {
  flex: 0 0 var(--social-card-height, 390px);
  min-height: 0;
  height: var(--social-card-height, 390px);
  display: flex;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.linkedin-update a {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "image"
    "date"
    "title"
    "copy"
    "link";
  grid-template-rows: 180px auto auto minmax(0, 1fr) auto;
  color: inherit;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  background-color: #ffffff;
  overflow: hidden;
}

.linkedin-update img {
  grid-area: image;
  width: 100%;
  height: 180px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  display: block;
  background-color: var(--brand-cloud);
}

.linkedin-update-type {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  margin: 0;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--brand-navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 12px 24px -18px rgba(7, 34, 60, 0.5);
}

.linkedin-update small {
  grid-area: date;
  display: block;
  margin: 1.1rem 1.45rem 0;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.linkedin-update h3 {
  grid-area: title;
  margin: 0.55rem 1.45rem 0;
  color: var(--brand-navy);
  font-size: 1.08rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.linkedin-update p {
  grid-area: copy;
  min-height: 0;
  margin: 0.9rem 1.45rem 0.9rem;
  color: var(--brand-slate);
  line-height: 1.65;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  align-self: stretch;
}

.linkedin-update a::after {
  grid-area: link;
  content: "Apri su LinkedIn \203A";
  display: inline-flex;
  margin: auto 1.45rem 1.25rem;
  color: var(--brand-blue-deep);
  font-weight: 800;
  font-size: 0.86rem;
}

.instagram-feed .linkedin-update-type {
  color: #a21caf;
}

.instagram-feed .linkedin-update a::after {
  content: "Apri su Instagram \203A";
  color: #a21caf;
}

.facebook-feed .linkedin-update-type {
  color: #1877f2;
}

.facebook-feed .linkedin-update a::after {
  content: "Apri su Facebook \203A";
  color: #1877f2;
}

.linkedin-carousel-controls {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
}

.linkedin-carousel-controls button {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(10, 102, 194, 0.24);
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--brand-blue-deep);
  font-size: 0.58rem;
  cursor: pointer;
}

.linkedin-carousel-controls button:hover,
.linkedin-carousel-controls button:focus-visible {
  background-color: rgba(10, 102, 194, 0.1);
  outline: none;
}

.linkedin-carousel-dots {
  display: grid;
  grid-auto-flow: column;
  gap: 0.25rem;
}

.linkedin-carousel-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background-color: #b7c7d8;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.linkedin-carousel-dots span.is-active {
  background-color: #0a66c2;
  transform: scale(1.25);
}

.instagram-feed .linkedin-carousel-dots span.is-active {
  background-color: #dd2a7b;
}

.facebook-feed .linkedin-carousel-dots span.is-active {
  background-color: #1877f2;
}

@media (max-width: 1080px) {
  .home-linked-layout {
    grid-template-columns: 1fr;
  }

  .home-social-feeds {
    justify-self: end;
    max-width: 380px;
    margin-top: 6.6rem;
  }

  .home-quick-panel {
    max-width: 100%;
  }

  .linkedin-feed {
    justify-self: end;
    min-height: 0;
    max-width: 380px;
    height: 392px;
    margin-top: 0;
  }

  .linkedin-carousel-window {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .linkedin-carousel {
    grid-template-columns: 1fr;
  }

  .linkedin-carousel-controls {
    flex-direction: row;
  }

  .linkedin-carousel-dots {
    grid-auto-flow: column;
  }

  .linkedin-carousel-window {
    height: 100%;
    min-height: 0;
  }

  .linkedin-feed {
    justify-self: center;
    width: calc(100% - 0.75rem);
    max-width: 360px;
    height: 420px;
  }

  .home-social-feeds {
    justify-self: center;
    width: 100%;
    max-width: 100%;
    margin-top: 3.2rem;
  }

  .social-feeds-title {
    max-width: none;
  }

  .social-feeds-track {
    --social-feed-card-width: min(78vw, 340px);
    width: 100%;
    display: flex;
    gap: 0.75rem;
    padding-inline: max(0px, calc((100% - var(--social-feed-card-width)) / 2));
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(0px, calc((100% - var(--social-feed-card-width)) / 2));
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .social-feeds-track,
  .social-feeds-track .linkedin-feed,
  .social-feeds-track .linkedin-carousel-window,
  .social-feeds-track .linkedin-update a {
    touch-action: pan-y pinch-zoom;
  }

  .social-feeds-track.is-dragging {
    scroll-snap-type: none;
    cursor: grabbing;
    user-select: none;
    -webkit-user-select: none;
  }

  .social-feeds-track::-webkit-scrollbar {
    display: none;
  }

  .social-feeds-track:focus-visible {
    outline: 2px solid var(--brand-blue-deep);
    outline-offset: 4px;
    border-radius: 10px;
  }

  .home-social-feeds .linkedin-feed {
    flex: 0 0 var(--social-feed-card-width);
    width: var(--social-feed-card-width);
    max-width: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .home-quick-panel .quick-links {
    grid-template-columns: 1fr;
  }

  .linkedin-update a {
    grid-template-rows: 170px auto auto minmax(0, 1fr) auto;
  }

  .linkedin-update img {
    height: 170px;
  }
}

.home-audience {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.1rem;
  align-items: stretch;
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(4, 107, 210, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(213, 72, 74, 0.15), transparent 44%),
    linear-gradient(135deg, #f6fbff 0%, #ffffff 58%, #fff8f8 100%);
}

.home-audience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-audience-copy p:not(.eyebrow) {
  margin: 0.9rem 0 0;
  max-width: 44ch;
  line-height: 1.7;
}

.home-audience-grid,
.mission-grid,
.process-grid {
  display: grid;
  gap: 0.95rem;
}

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

.home-audience-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 1.15rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  box-shadow: 0 20px 40px -34px rgba(7, 34, 60, 0.45);
}

.home-audience-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background-color: rgba(4, 107, 210, 0.1);
}

.home-audience-icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.home-audience-card h3 {
  margin-top: 1rem;
  font-size: 1.12rem;
}

.home-audience-card p {
  margin: 0.6rem 0 1rem;
  line-height: 1.65;
}

.inline-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-blue-deep);
  font-weight: 700;
  text-decoration: none;
}

.inline-link::after {
  content: "\203A";
  font-size: 1.25em;
  line-height: 1;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.home-mission {
  padding: 2.2rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  background-color: #ffffff;
}

.home-mission,
.home-quick-panel {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.16) 0%, rgba(4, 107, 210, 0) 42%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.15) 0%, rgba(213, 72, 74, 0) 44%),
    linear-gradient(135deg, #ffffff 20%, #f7fbff 58%, #fff8f8 100%);
}

.home-mission .section-head {
  max-width: 760px;
}

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

.mission-card {
  padding: 1.1rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  background-color: var(--brand-cloud);
}

.mission-tag {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.mission-card h3 {
  margin-top: 0.9rem;
  font-size: 1.08rem;
}

.mission-card p {
  margin: 0.55rem 0 0;
  line-height: 1.65;
}

.home-process {
  position: relative;
  overflow: hidden;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(7, 34, 60, 0.94), rgba(4, 94, 184, 0.9)),
    url("./assets/supporto-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.home-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.18), transparent 32%);
  pointer-events: none;
}

.home-process .section-head,
.process-grid {
  position: relative;
  z-index: 1;
}

.home-process .section-head {
  max-width: 790px;
}

.home-process .eyebrow {
  color: #d7e9ff;
}

.home-process h2 {
  color: #ffffff;
}

.home-process .section-head p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  max-width: 68ch;
  color: #eaf3ff;
  line-height: 1.7;
}

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

.process-step {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
}

.process-step span {
  display: inline-block;
  margin-bottom: 0.78rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-step h3 {
  color: #ffffff;
  font-size: 1.02rem;
}

.process-step p {
  margin: 0.55rem 0 0;
  color: #eef6ff;
  line-height: 1.6;
  font-size: 0.93rem;
}

.network-showcase {
  position: relative;
  margin-top: 2.2rem;
  background-color: #ffffff;
  overflow: hidden;
}

.network-showcase::after {
  display: none;
}

.network-shell {
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: clamp(2.6rem, 5.5vw, 4.6rem) 0;
  display: grid;
  gap: 1.7rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.network-copy {
  display: flex;
  flex-direction: column;
}

.network-copy h2 {
  color: rgb(2, 65, 106);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.network-copy p {
  margin: 1.3rem 0 2rem;
  max-width: 56ch;
  color: #165481;
  line-height: 1.45;
  font-size: clamp(1.06rem, 1.8vw, 1.16rem);
}

.network-copy p strong {
  color: var(--brand-red);
  font-weight: 700;
}

.network-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-self: center;
  margin-left: clamp(0.4rem, 3vw, 2.4rem);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.64rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(135deg, #ec6668, var(--brand-red) 48%, #b83235 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.05rem, 1.25vw, 1.45rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 28px -24px rgba(213, 72, 74, 0.92);
  transform: translateZ(0);
  transition:
    border-color 0.2s ease,
    box-shadow 0.22s ease,
    filter 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.network-cta:hover,
.network-cta:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
  filter: brightness(1.07);
  outline: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 34px -24px rgba(184, 50, 53, 0.96);
  transform: translateY(-1px);
}

.network-cta span {
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.22s ease;
}

.network-cta:hover span,
.network-cta:focus-visible span {
  transform: translateX(2px) scale(1.08);
}

.network-map-panel {
  position: relative;
  border: 1px solid #b9c8ce;
  background-color: #c8dce7;
  overflow: hidden;
  border-radius: 0;
}

.network-showcase .network-map-panel {
  width: min(100%, 500px);
  max-width: 500px;
  justify-self: end;
}

#network-map {
  width: 100%;
  height: 500px;
  min-height: 420px;
  background-color: #c8dce7;
}

.network-map-search {
  position: absolute;
  z-index: 650;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.22rem 0.28rem;
  background-color: rgba(248, 248, 248, 0.96);
  border: 1px solid #c7cfd5;
  border-radius: 3px;
  box-shadow: 0 5px 14px -13px rgba(15, 23, 42, 0.75);
}

.network-map-panel.is-network-map .network-map-search {
  top: 0.6rem;
  right: 0.6rem;
  left: auto;
  transform: none;
  width: min(58%, 190px);
}

.network-map-panel.is-network-map .network-map-search input {
  min-width: 0;
  flex: 1 1 108px;
  font-size: 0.86rem;
  padding: 0.3rem 0.28rem;
}

.network-map-panel.is-network-map .network-map-radius {
  padding-right: 0.72rem;
}

.network-map-panel.is-network-map .network-map-search select {
  min-width: 48px;
  font-size: 0.82rem;
  padding: 0.28rem 0.32rem;
}

.network-map-panel.is-network-map .network-map-search button {
  min-width: 24px;
  height: 24px;
}

.network-map-panel.is-network-map .network-map-search button svg {
  width: 14px;
  height: 14px;
}

.network-map-panel.is-contact-map .network-map-search {
  top: 0.7rem;
  right: 0.7rem;
  left: auto;
  transform: none;
}

.network-map-search input {
  border: 0;
  min-width: 170px;
  flex: 1;
  font-family: inherit;
  font-size: 0.93rem;
  padding: 0.38rem 0.38rem;
  color: #4a5562;
  background: transparent;
}

.network-map-radius {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-left: 1px solid #d6dbe0;
  border-right: 1px solid #d6dbe0;
  padding-right: 0.9rem;
}

.network-map-search select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: 0.9rem;
  color: #3d4a58;
  background: transparent;
  padding: 0.34rem 0.46rem 0.34rem 0.5rem;
  min-width: 58px;
}

.network-map-radius-caret {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-54%);
  pointer-events: none;
  font-size: 0.65rem;
  color: #697786;
}

.network-map-search input:focus {
  outline: none;
}

.network-map-search select:focus {
  outline: none;
}

.network-map-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background-color: transparent;
  color: #5a6978;
  cursor: pointer;
}

.network-map-search button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-map-panel.is-contact-map .network-map-search button {
  padding: 0.42rem 0.72rem;
  height: auto;
  min-width: 0;
  border-radius: 6px;
  background-color: var(--brand-red);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
}

.network-map-panel.is-contact-map .network-map-search button svg {
  display: none;
}

.network-map-fallback {
  height: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--brand-slate);
  background-color: #f8fbff;
}

.faad-map-marker-pin {
  background: transparent;
  border: 0;
}

.faad-map-marker-pin span {
  display: block;
  width: 19px;
  height: 19px;
  background-color: #e44737;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #b82117;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.faad-map-marker-pin span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: #98160f;
  top: 5px;
  left: 5px;
}

.faad-map-marker-network {
  background: transparent;
  border: 0;
}

.faad-map-marker-network span {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background-color: #e3342f;
  border: 2px solid #ba1e1e;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(12, 23, 39, 0.26);
  position: relative;
}

.faad-map-marker-network span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  top: 6px;
  left: 6px;
  background-color: #c01f1f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.leaflet-popup-content-wrapper {
  border-radius: 10px;
}

.network-map-panel.is-contact-map .leaflet-control-attribution,
.network-map-panel.is-contact-map .leaflet-control-container .leaflet-bottom.leaflet-right {
  display: none !important;
}

.network-map-panel.is-network-map .leaflet-control-attribution,
.network-map-panel.is-network-map .leaflet-control-container .leaflet-bottom.leaflet-right {
  display: none !important;
}

.interactive-map-page {
  min-height: 100vh;
}

.interactive-map-panel {
  width: 100%;
  height: 100vh;
  min-height: 520px;
  border: 0;
}

.interactive-map-panel #network-map {
  height: 100vh;
  min-height: 520px;
}

.interactive-map-back {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 4.8rem;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.82rem;
  border: 1px solid rgba(7, 34, 60, 0.2);
  border-radius: 6px;
  color: var(--brand-navy);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px -16px rgba(7, 34, 60, 0.65);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.interactive-map-back:hover,
.interactive-map-back:focus-visible {
  border-color: rgba(4, 107, 210, 0.45);
  color: var(--brand-blue-deep);
}

@media (max-width: 560px) {
  .interactive-map-back {
    top: 3.9rem;
    left: 0.65rem;
  }
}

.faad-map-fullscreen-btn {
  width: 28px;
  height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #334155 !important;
  background-color: #ffffff !important;
}

.faad-map-fullscreen-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-stage {
  width: min(920px, 92vw);
  margin-top: 2.2rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: start;
  justify-content: center;
}

.contact-stage.has-contact-visual {
  position: relative;
  width: min(1240px, 94vw);
  grid-template-columns: minmax(360px, 430px) minmax(0, 840px);
}

.contact {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.contact-copy {
  max-width: 720px;
  justify-self: center;
  text-align: center;
}

.contact-copy p {
  line-height: 1.7;
}

.contact-copy ul {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style-position: inside;
  line-height: 1.8;
}

.contact-form {
  width: min(720px, 100%);
  justify-self: center;
}

.contact-form-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.crm-form-embed {
  width: min(600px, 100%);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(4, 107, 210, 0.2);
  border-radius: 16px;
  background-color: #f5f7fa;
  box-shadow: 0 22px 52px -38px rgba(7, 34, 60, 0.58);
}

.crm-external-header {
  padding: 1.65rem 1.25rem;
  color: #ffffff;
  background: linear-gradient(135deg, #1b5a7a 0%, #2980b9 100%);
  text-align: center;
}

.crm-external-header h2 {
  margin: 0;
  color: inherit;
  font-size: 1.38rem;
  line-height: 1.2;
}

.crm-external-header p {
  margin: 0.38rem 0 0;
  font-size: 0.86rem;
  opacity: 0.88;
}

.crm-external-form {
  padding: 1.55rem;
  background-color: #ffffff;
}

.crm-external-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.crm-external-field {
  min-width: 0;
  display: grid;
  gap: 0.38rem;
}

.crm-external-field-full,
.crm-external-submit {
  grid-column: 1 / -1;
}

.crm-external-field span {
  color: #2c3e50;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.crm-external-field input,
.crm-external-field select {
  width: 100%;
  min-width: 0;
  border: 1.5px solid #e1e8ed;
  border-radius: 8px;
  padding: 0.68rem 0.82rem;
  color: #223349;
  background-color: #f5f7fa;
  font: inherit;
  font-size: 0.88rem;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.crm-external-field input:focus,
.crm-external-field select:focus {
  outline: none;
  border-color: #1b5a7a;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(27, 90, 122, 0.12);
}

.crm-external-submit {
  width: 100%;
  margin-top: 0.15rem;
  border: 0;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  color: #ffffff;
  background: linear-gradient(135deg, #1b5a7a 0%, #2980b9 100%);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.crm-questionnaire-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.crm-questionnaire-progress span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  color: #65768a;
  background-color: #f1f5f8;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.25;
}

.crm-questionnaire-progress span b {
  display: grid;
  place-items: center;
  flex: 0 0 1.55rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  color: #607287;
  background-color: #ffffff;
  font-size: 0.7rem;
}

.crm-questionnaire-progress span.is-current,
.crm-questionnaire-progress span.is-complete {
  color: #ffffff;
  background: linear-gradient(135deg, #1b5a7a 0%, #2980b9 100%);
}

.crm-questionnaire-progress span.is-current b,
.crm-questionnaire-progress span.is-complete b {
  color: #1b5a7a;
}

.crm-form-step {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.crm-external-form.is-questionnaire-ready .crm-form-step:not(.is-active) {
  display: none;
}

.crm-form-step legend {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  color: #063f68;
  font-size: 1rem;
  font-weight: 800;
}

.crm-step-intro {
  margin: -0.55rem 0 0;
  color: #607287;
  font-size: 0.78rem;
  line-height: 1.55;
}

.crm-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.crm-question-field {
  align-content: start;
  border: 1px solid rgba(4, 107, 210, 0.13);
  border-radius: 11px;
  padding: 0.72rem;
  background-color: #fbfdff;
}

.crm-external-field .crm-question-label {
  min-height: 2.45rem;
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: #163c59;
  font-size: 0.7rem;
  line-height: 1.42;
  text-transform: none;
}

.crm-question-label b {
  display: grid;
  place-items: center;
  flex: 0 0 1.35rem;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: -0.05rem;
  border-radius: 50%;
  color: #ffffff;
  background-color: #1b5a7a;
  font-size: 0.65rem;
}

.crm-question-field.is-disabled {
  opacity: 0.72;
  background-color: #f1f4f7;
}

.crm-question-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.crm-question-options label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 0.52rem 0.58rem;
  color: #354c62;
  background-color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.3;
  cursor: pointer;
}

.crm-external-field .crm-question-options input {
  width: 0.95rem;
  min-width: 0.95rem;
  height: 0.95rem;
  margin: 0;
  padding: 0;
  accent-color: #1b5a7a;
  box-shadow: none;
}

.crm-question-field.has-error {
  border-color: rgba(213, 72, 74, 0.68);
  background-color: #fff8f8;
}

.crm-choice-error {
  min-height: 1em;
  color: #b13235;
  font-size: 0.7rem;
  font-weight: 700;
}

.crm-external-actions {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.crm-external-actions-end {
  grid-template-columns: minmax(0, 1fr);
}

.crm-external-next,
.crm-external-back {
  width: 100%;
  border-radius: 8px;
  padding: 0.82rem 1.2rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.crm-external-next {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #1b5a7a 0%, #2980b9 100%);
}

.crm-external-back {
  border: 1px solid rgba(27, 90, 122, 0.28);
  color: #1b5a7a;
  background-color: #ffffff;
}

.crm-questionnaire-status {
  min-height: 1em;
  margin: 0.7rem 0 0;
  color: #b13235;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.crm-questionnaire-launch {
  position: relative;
  isolation: isolate;
  width: min(920px, 100%);
  min-height: 330px;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  justify-self: center;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.17), transparent 24%),
    radial-gradient(circle at 92% 86%, rgba(213, 72, 74, 0.46), transparent 28%),
    linear-gradient(135deg, #053e66 0%, #075d99 55%, #063c65 100%);
  box-shadow:
    0 36px 70px -46px rgba(3, 39, 67, 0.9),
    0 18px 38px -30px rgba(4, 107, 210, 0.7);
}

.apri-polo-form-top:has(.crm-questionnaire-launch) {
  width: min(920px, 92vw);
  overflow: visible;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.apri-polo-form-top:has(.crm-questionnaire-launch)::before {
  display: none;
}

.crm-questionnaire-launch::before,
.crm-questionnaire-launch::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.crm-questionnaire-launch::before {
  width: 260px;
  height: 260px;
  top: -155px;
  right: -65px;
}

.crm-questionnaire-launch::after {
  width: 190px;
  height: 190px;
  bottom: -120px;
  left: -55px;
}

.crm-launch-eyebrow {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.crm-questionnaire-launch h2 {
  max-width: 20ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
}

.crm-questionnaire-launch p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.7;
}

.crm-questionnaire-launch small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
}

.crm-launch-button {
  min-width: min(100%, 250px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  color: #ffffff;
  background-color: var(--brand-red);
  box-shadow: 0 18px 38px -22px rgba(125, 18, 21, 0.92);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.crm-launch-button::after {
  content: "\2192";
  font-size: 1.05rem;
  transition: transform 0.22s ease;
}

.crm-questionnaire-dialog {
  width: min(760px, calc(100vw - 1rem));
  max-width: none;
  max-height: 96dvh;
  margin: auto;
  border: 0;
  border-radius: 24px;
  padding: 0;
  overflow: visible;
  color: #18344d;
  background: transparent;
}

.crm-questionnaire-dialog::backdrop {
  background-color: rgba(2, 27, 46, 0.76);
  backdrop-filter: blur(8px);
}

.crm-questionnaire-dialog[open] {
  animation: crmDialogIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.crm-questionnaire-dialog-panel {
  position: relative;
  max-height: 96dvh;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 36px 90px -38px rgba(0, 18, 32, 0.92);
  overscroll-behavior: contain;
}

.crm-questionnaire-close {
  position: absolute;
  z-index: 5;
  top: 0.72rem;
  right: 0.72rem;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  padding: 0;
  color: #164e72;
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px -16px rgba(0, 26, 46, 0.7);
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.crm-questionnaire-dialog .crm-form-embed {
  width: 100%;
  max-width: none;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}

.crm-questionnaire-dialog .crm-external-header {
  padding: 1.5rem 3.6rem 1.3rem;
}

.crm-questionnaire-dialog .crm-external-form {
  padding: clamp(1.1rem, 3vw, 1.75rem);
}

.crm-dynamic-progress {
  display: grid;
  gap: 0.48rem;
  margin-bottom: 1.25rem;
}

.crm-dynamic-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #526b80;
  font-size: 0.72rem;
  font-weight: 700;
}

.crm-dynamic-progress-meta strong {
  color: #075d99;
  font-size: 0.72rem;
}

.crm-dynamic-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background-color: #e8f0f6;
}

.crm-dynamic-progress-track span {
  display: block;
  width: 9%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #075d99 0%, #1d82c1 72%, var(--brand-red) 100%);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-dynamic-questionnaire .crm-form-step[data-form-stage="questions"] {
  min-height: 330px;
  align-content: start;
}

.is-dynamic-questionnaire .crm-question-grid {
  display: block;
}

.is-dynamic-questionnaire .crm-question-field {
  display: none;
}

.is-dynamic-questionnaire .crm-question-field.is-active-question {
  min-height: 205px;
  display: grid;
  align-content: center;
  gap: 1rem;
  border-color: rgba(4, 107, 210, 0.2);
  border-radius: 16px;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  background:
    linear-gradient(145deg, rgba(4, 107, 210, 0.055), rgba(255, 255, 255, 0.98) 58%, rgba(213, 72, 74, 0.045));
  animation: crmQuestionIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.is-dynamic-questionnaire .crm-external-field .crm-question-label {
  min-height: 0;
  align-items: center;
  color: #063f68;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  line-height: 1.45;
}

.is-dynamic-questionnaire .crm-question-label b {
  flex-basis: 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.72rem;
}

.is-dynamic-questionnaire .crm-question-field > input,
.is-dynamic-questionnaire .crm-question-field > select {
  padding: 0.82rem 0.9rem;
  background-color: #ffffff;
  font-size: 0.94rem;
}

.is-dynamic-questionnaire .crm-question-options {
  gap: 0.6rem;
}

.is-dynamic-questionnaire .crm-question-options label {
  min-height: 42px;
  padding: 0.62rem 0.7rem;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.is-dynamic-questionnaire .crm-external-actions {
  margin-top: 0.25rem;
}

.is-dynamic-questionnaire .crm-external-back:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

body:has(.crm-questionnaire-dialog[open]) {
  overflow: hidden;
}

@keyframes crmDialogIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes crmQuestionIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .crm-external-submit:hover,
  .crm-external-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 90, 122, 0.35);
  }

  .crm-external-back:hover {
    border-color: #1b5a7a;
    background-color: #f5f9fc;
  }

  .crm-launch-button:hover {
    transform: translateY(-3px);
    background-color: #c63f42;
    box-shadow: 0 24px 44px -24px rgba(125, 18, 21, 0.98);
  }

  .crm-launch-button:hover::after {
    transform: translateX(4px);
  }

  .is-dynamic-questionnaire .crm-question-options label:hover {
    transform: translateY(-1px);
    border-color: rgba(27, 90, 122, 0.4);
    background-color: #f6fafe;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crm-questionnaire-dialog[open],
  .is-dynamic-questionnaire .crm-question-field.is-active-question {
    animation: none;
  }

  .crm-dynamic-progress-track span,
  .crm-launch-button,
  .crm-launch-button::after,
  .crm-external-next,
  .crm-external-back,
  .crm-external-submit {
    transition: none;
  }
}

.contact-form-visual {
  --contact-visual-top-offset: 6.7rem;
  position: relative;
  width: 100%;
  height: 840px;
  margin: var(--contact-visual-top-offset) 0 0;
  overflow: visible;
  pointer-events: none;
  transform: translateX(clamp(2.5rem, 4vw, 4rem));
}

.contact-form-image-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.contact-form-guide {
  position: absolute;
  top: calc(-1 * var(--contact-visual-top-offset));
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 310px);
  aspect-ratio: 1;
  padding: clamp(1.25rem, 2vw, 1.7rem);
  border: 1px solid rgba(4, 107, 210, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.18), transparent 44%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.17), transparent 46%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 54%, #fff8f8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 54px -40px rgba(7, 34, 60, 0.58);
  background-position: 0% 0%;
  text-align: left;
  pointer-events: auto;
  transform: translateX(-50%);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.38s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.contact-form-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

.contact-form-guide-label {
  margin: 0 0 0.48rem;
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-guide h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  line-height: 1.2;
}

.contact-form-guide > p:last-child {
  margin: 0.62rem 0 0;
  color: var(--brand-slate);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .contact-form-guide:hover {
    border-color: rgba(213, 72, 74, 0.36);
    background-position: 100% 100%;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      0 32px 64px -38px rgba(7, 34, 60, 0.56),
      0 20px 38px -30px rgba(213, 72, 74, 0.58);
    filter: saturate(1.08);
    transform: translateX(-50%) translateY(-5px) scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form-guide {
    transition: none;
  }

  .contact-form-guide:hover {
    transform: translateX(-50%);
  }
}

.contact-form-visual img {
  display: block;
  width: 1080px;
  max-width: none;
  height: auto;
  transform: translate(1.75rem, 2rem);
}

.contact-copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-copy a:hover,
.contact-copy a:focus-visible {
  text-decoration: underline;
}

.contact-form,
.lead-form {
  min-width: 0;
  display: grid;
  gap: 0.78rem;
}

.lead-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lead-form-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
  padding-top: 0.35rem;
}

.lead-form-head h2 {
  font-size: clamp(1.1rem, 1.7vw, 1.38rem);
  line-height: 1.18;
}

.lead-form-head p {
  margin: 0;
  color: #607287;
  font-size: 0.72rem;
  font-weight: 600;
}

.lead-form-head p span,
.lead-field strong {
  color: var(--brand-red);
}

.lead-grid,
.lead-interest-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.lead-field,
.lead-interest-field {
  min-width: 0;
  display: grid;
  gap: 0.32rem;
  color: var(--brand-navy);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.25;
}

.lead-field-full,
.lead-interest-field-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  padding: 0.66rem 0.72rem;
  font-family: inherit;
  font-size: 0.86rem;
  line-height: 1.35;
  color: #223349;
  background-color: #fbfdff;
}

.contact-form textarea,
.lead-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(4, 107, 210, 0.35);
  border-color: var(--brand-blue);
}

.lead-form select:disabled {
  cursor: not-allowed;
  color: #7b8ba0;
  background-color: #edf3f8;
}

.lead-field small,
.lead-list-error,
.lead-consents > small {
  min-height: 0.92rem;
  color: var(--brand-red);
  font-size: 0.68rem;
  font-weight: 600;
}

.lead-field.is-invalid input,
.lead-field.is-invalid select,
.lead-field.is-invalid textarea,
.lead-consents.is-invalid .lead-consent:first-of-type,
.lead-interest-card.is-invalid {
  border-color: rgba(213, 72, 74, 0.85);
}

.lead-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.62rem;
}

.lead-section-head h3 {
  font-size: 0.98rem;
}

.lead-section-head p {
  margin: 0.22rem 0 0;
  color: #68788c;
  font-size: 0.72rem;
  line-height: 1.35;
}

.lead-add-interest,
.lead-remove-interest,
.lead-consent button,
.lead-dialog-link {
  border: 0;
  background: none;
  color: var(--brand-blue-deep);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lead-add-interest {
  flex: 0 0 auto;
  border: 1px solid rgba(213, 72, 74, 0.3);
  border-radius: 999px;
  background-color: rgba(213, 72, 74, 0.09);
  color: #b83235;
  padding: 0.42rem 0.68rem;
  font-size: 0.76rem;
  text-decoration: none;
}

.lead-add-interest[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.lead-interest-list {
  display: grid;
  gap: 0.62rem;
}

.lead-interest-card {
  min-width: 0;
  border: 1px solid #d7e3ef;
  border-radius: 10px;
  background-color: #f8fbfe;
  padding: 0.72rem;
}

.lead-interest-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: end;
  margin-bottom: 0.65rem;
}

.lead-remove-interest {
  padding: 0.3rem 0;
  color: #b83335;
  font-size: 0.72rem;
}

.lead-remove-interest[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
}

.lead-interest-error {
  display: block;
  margin-top: 0.44rem;
  color: var(--brand-red);
  font-size: 0.68rem;
  font-weight: 700;
}

.lead-consents {
  display: grid;
  gap: 0.44rem;
}

.lead-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.52rem;
  align-items: flex-start;
  border: 1px solid #d7e3ef;
  border-radius: 10px;
  background-color: #f8fbfe;
  padding: 0.65rem 0.68rem;
}

.lead-consent input {
  width: 16px !important;
  height: 16px;
  margin-top: 0.1rem;
  accent-color: var(--brand-blue-deep);
}

.lead-consent span {
  color: #394b60;
  font-size: 0.6875rem;
  line-height: 1.45;
}

.lead-consent button {
  display: inline;
  padding: 0;
  font-size: inherit;
}

.lead-form-status {
  display: none;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.lead-form-status.is-visible {
  display: block;
}

.lead-form-status.is-error {
  color: #9d2d2f;
  background-color: #fdecec;
  border: 1px solid #f5c7c8;
}

.lead-form-status.is-success {
  color: #1d6a3c;
  background-color: #eaf7ef;
  border: 1px solid #bfe4cb;
}

.contact-form .btn,
.lead-form .btn {
  margin-top: 0.35rem;
}

.lead-form .btn-primary {
  color: #ffffff;
  background-color: var(--brand-red);
  background-image: none;
  box-shadow:
    0 16px 35px -24px rgba(184, 50, 53, 0.95),
    0 12px 28px -24px rgba(213, 72, 74, 0.72);
}

.hero-actions .btn-primary,
.lead-form .btn-primary {
  color: #ffffff;
  background: var(--brand-red) !important;
  box-shadow:
    0 16px 35px -24px rgba(213, 72, 74, 0.9),
    0 12px 28px -24px rgba(184, 50, 53, 0.72);
  animation: none;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible,
.lead-form .btn-primary:hover,
.lead-form .btn-primary:focus-visible {
  background: #b83235 !important;
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 22px 42px -26px rgba(213, 72, 74, 0.92),
    0 16px 30px -24px rgba(184, 50, 53, 0.72);
}

.lead-form .btn[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.lead-dialog {
  width: min(620px, calc(100vw - 1rem));
  max-height: 88dvh;
  border: 0;
  border-radius: 14px;
  padding: 0;
  color: var(--brand-slate);
  box-shadow: 0 24px 60px -34px rgba(15, 23, 42, 0.85);
}

.lead-dialog::backdrop {
  background-color: rgba(15, 23, 42, 0.5);
}

.lead-dialog-panel {
  position: relative;
  max-height: 88dvh;
  overflow-y: auto;
  padding: 1.25rem;
  background-color: #ffffff;
}

.lead-dialog-panel h2 {
  margin-right: 2.5rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.lead-dialog-panel p {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.62;
}

.lead-dialog-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 34px;
  height: 34px;
  border: 1px solid #cbd8e6;
  border-radius: 999px;
  background-color: #f6f9fc;
  color: var(--brand-navy);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.lead-dialog-link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

.lead-form-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background-color: rgba(15, 23, 42, 0.5);
}

.lead-form-modal.is-open {
  display: flex;
}

.lead-form-modal-panel {
  width: calc(100vw - 0.5rem);
  max-width: 760px;
  max-height: 96dvh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 0.25rem;
}

.lead-form-modal-panel .lead-form {
  overflow-x: hidden;
}

.lead-form-modal-panel .lead-form-head {
  padding-top: 0.75rem;
}

@media (min-width: 640px) {
  .lead-form-head {
    flex-direction: row;
    align-items: baseline;
  }

  .lead-field,
  .lead-interest-field,
  .lead-consent span {
    font-size: 0.75rem;
  }

  .lead-form-modal-panel {
    padding: 0.5rem;
  }
}

@media (max-width: 620px) {
  .crm-questionnaire-launch {
    min-height: 300px;
    border-radius: 20px;
    padding: 1.7rem 1.15rem;
  }

  .crm-questionnaire-launch h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .crm-questionnaire-dialog {
    width: calc(100vw - 0.5rem);
    max-height: 96dvh;
    border-radius: 16px;
  }

  .crm-questionnaire-dialog-panel,
  .crm-questionnaire-dialog .crm-form-embed {
    border-radius: 16px;
  }

  .crm-questionnaire-dialog .crm-external-header {
    padding: 1.25rem 3.1rem 1.1rem 1rem;
    text-align: left;
  }

  .crm-questionnaire-dialog .crm-external-header h2 {
    font-size: 1.12rem;
  }

  .crm-questionnaire-dialog .crm-external-header p {
    font-size: 0.72rem;
  }

  .crm-questionnaire-close {
    top: 0.55rem;
    right: 0.55rem;
  }

  .crm-questionnaire-dialog .crm-external-form {
    padding: 0.9rem;
  }

  .is-dynamic-questionnaire .crm-form-step[data-form-stage="questions"] {
    min-height: 300px;
  }

  .is-dynamic-questionnaire .crm-question-field.is-active-question {
    min-height: 180px;
    padding: 1rem;
  }

  .crm-form-embed {
    width: 100%;
    border-radius: 12px;
  }

  .crm-external-header {
    padding: 1.35rem 1rem;
  }

  .crm-external-form {
    padding: 1rem;
  }

  .crm-external-grid {
    grid-template-columns: 1fr;
  }

  .crm-questionnaire-progress {
    grid-template-columns: 1fr;
  }

  .crm-question-grid,
  .crm-question-options {
    grid-template-columns: 1fr;
  }

  .crm-external-actions {
    grid-template-columns: 1fr;
  }

  .crm-external-back {
    order: 2;
  }

  .crm-external-field .crm-question-label {
    min-height: 0;
  }

  .crm-external-field-full,
  .crm-external-submit {
    grid-column: auto;
  }

  .lead-grid,
  .lead-interest-fields {
    grid-template-columns: 1fr;
  }

  .lead-section-head,
  .lead-interest-top {
    grid-template-columns: 1fr;
  }

  .lead-section-head {
    display: grid;
  }

  .lead-add-interest,
  .lead-remove-interest {
    justify-self: start;
  }

  .lead-dialog {
    width: calc(100vw - 0.5rem);
    max-height: 96dvh;
  }

  .lead-dialog-panel {
    max-height: 96dvh;
    padding: 1rem;
  }
}

.contact-map-wrap {
  margin-top: 1rem;
  margin-bottom: 3.1rem;
}

.contact-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid #b7cbdd;
  background-color: #86c3da;
}

.contact-map iframe {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  border: 0;
}

.contact-map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(
    360px 0,
    100% 0,
    100% calc(100% - 64px),
    0 calc(100% - 64px),
    0 134px,
    360px 134px
  );
}

.contact-map-link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -6px;
}

.map-pin {
  position: absolute;
  display: block;
  left: 49.6%;
  top: 53%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  text-decoration: none;
  cursor: pointer;
}

.map-pin:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  border-radius: 999px;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background-color: rgba(239, 75, 67, 0.28);
  animation: mapPing 1.8s infinite ease-out;
}

.map-pin svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-pin circle {
  fill: #ef4b43;
  stroke: #ffffff;
  stroke-width: 4;
}

.map-pin path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes mapPing {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.site-footer {
  position: relative;
  border-top: 0;
  background-color: rgb(2, 65, 106);
  color: #f4f8ff;
  padding-top: 4.8rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background-color: rgb(2, 65, 106);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(44vw, 640px);
  height: 58px;
  background-color: rgb(2, 65, 106);
  border-bottom-right-radius: 300px 70px;
}

.site-footer .container.footer-inner {
  width: 100%;
  margin: 0;
  padding-left: clamp(0.8rem, 1.8vw, 1.6rem);
  padding-right: clamp(0.8rem, 1.8vw, 1.6rem);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(160px, 275px)
    minmax(315px, 390px)
    minmax(170px, 240px)
    minmax(205px, 230px)
    minmax(210px, 260px);
  justify-content: start;
  align-items: start;
  gap: clamp(1.2rem, 2.2vw, 3.15rem);
  padding-bottom: 2.1rem;
}

.footer-brand img {
  width: 168px;
  max-width: 100%;
  height: auto;
  margin-top: 0;
}

.footer-brand {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transform: translate(-8px, -12px);
}

.footer-col {
  display: grid;
  grid-template-rows: 1.35rem auto;
  align-content: start;
  align-self: start;
  justify-items: center;
  width: max-content;
  max-width: 100%;
}

.footer-col:has(.footer-list-quick) {
  justify-self: center;
}

.footer-brand + .footer-col {
  transform: translateX(clamp(3rem, 5vw, 5rem));
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  justify-self: stretch;
  width: 100%;
  min-height: 1.35rem;
}

.footer-col-social h3 {
  white-space: nowrap;
}

.footer-list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
  justify-self: center;
  width: max-content;
  max-width: 100%;
}

.footer-list-contacts {
  grid-template-columns: max-content max-content;
  column-gap: 0.35rem;
  row-gap: 0.3rem;
}

.footer-list li {
  line-height: 1.45;
  font-size: 0.98rem;
}

.footer-list a {
  color: inherit;
  text-underline-offset: 0.18em;
  text-decoration: none;
}

.footer-list-quick a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-list-quick a::before {
  content: "";
  flex: 0 0 0.95rem;
  width: 0.95rem;
  height: 0.95rem;
  background-color: currentColor;
  -webkit-mask-image: var(--footer-quick-icon);
  mask-image: var(--footer-quick-icon);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-list-quick li:nth-child(1) {
  --footer-quick-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik0xMiAzbDIuMiA1LjJMMjAgMTBsLTQuNCAzLjdMMTcgMjBsLTUtMy01IDMgMS40LTYuM0w0IDEwbDUuOC0xLjhMMTIgM3oiLz48L3N2Zz4=");
}

.footer-list-quick li:nth-child(2) {
  --footer-quick-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik00IDEzdi0yYTggOCAwIDAxMTYgMHYyIi8+PHBhdGggZD0iTTQgMTNhMiAyIDAgMDAyIDJoMXYtNkg2YTIgMiAwIDAwLTIgMnYyem0xNiAwYTIgMiAwIDAxLTIgMmgtMVY5aDFhMiAyIDAgMDEyIDJ2MnpNMTcgMTdjLTEgMi0zIDMtNSAzIi8+PC9zdmc+");
}

.footer-list-quick li:nth-child(3) {
  --footer-quick-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxjaXJjbGUgY3g9IjkiIGN5PSI4IiByPSIzIi8+PGNpcmNsZSBjeD0iMTciIGN5PSI5IiByPSIyLjUiLz48cGF0aCBkPSJNMyAyMGMwLTQgMi41LTYgNi02czYgMiA2IDZNMTUgMTVjMy41IDAgNSAyIDUgNSIvPjwvc3ZnPg==");
}

.footer-list-quick li:nth-child(4) {
  --footer-quick-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxyZWN0IHg9IjMiIHk9IjUiIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNiIgcng9IjIiLz48cGF0aCBkPSJNOCAzdjRtOC00djRNMyAxMGgxOCIvPjxwYXRoIGQ9Ik04IDE0aDJtNCAwaDJtLTggNGgyIi8+PC9zdmc+");
}

.footer-list-quick li:nth-child(5) {
  --footer-quick-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjkiLz48cGF0aCBkPSJNOS44IDlhMi41IDIuNSAwIDAxNC43IDEuMmMwIDItMi41IDIuMS0yLjUgNE0xMiAxOGguMDEiLz48L3N2Zz4=");
}

.footer-list-quick li:nth-child(6) {
  --footer-quick-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik00IDIxVjdsOC00IDggNHYxNCIvPjxwYXRoIGQ9Ik04IDEwaDJtNCAwaDJtLTggNGgybTQgMGgyTTkgMjF2LTNoNnYzIi8+PC9zdmc+");
}

.footer-list-quick li:nth-child(7) {
  --footer-quick-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxyZWN0IHg9IjMiIHk9IjUiIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNCIgcng9IjIiLz48cGF0aCBkPSJNMyA3bDkgNiA5LTYiLz48L3N2Zz4=");
}

.footer-list-quick li:nth-child(8) {
  --footer-quick-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjkiLz48cGF0aCBkPSJNMTIgOHY4bS00LTRoOCIvPjwvc3ZnPg==");
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-list strong {
  color: #ffffff;
  font-weight: 700;
}

.footer-list-contacts li:nth-child(1),
.footer-list-contacts li:nth-child(2),
.footer-list-contacts li:nth-child(3),
.footer-list-contacts li:nth-child(4) {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-list-contacts li:nth-child(1)::before,
.footer-list-contacts li:nth-child(2)::before,
.footer-list-contacts li:nth-child(3)::before,
.footer-list-contacts li:nth-child(4)::before {
  display: inline-block;
  flex: 0 0 1.05rem;
  width: 1.05rem;
  margin-top: 0.04rem;
  text-align: center;
  font-size: 0.92rem;
}

.footer-list-contacts li:nth-child(1)::before {
  content: "\1F310";
}

.footer-list-contacts li:nth-child(1),
.footer-list-contacts li:nth-child(4),
.footer-list-contacts .footer-piva {
  grid-column: 1 / -1;
}

.footer-list-contacts li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  white-space: nowrap;
}

.footer-list-contacts li:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  gap: 0.35rem;
  white-space: nowrap;
}

.footer-list-contacts li:nth-child(2)::before,
.footer-list-contacts li:nth-child(3)::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.12rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nI2ZmZmZmZic+PHBhdGggZD0nTTMuNjU0IDEuMzI4YS42NzguNjc4IDAgMCAwLTEuMDE1LS4wNjNMMS42MDUgMi4zYy0uNDgzLjQ4NC0uNjYxIDEuMTY5LS40NSAxLjc3YTE3LjYgMTcuNiAwIDAgMCA0LjE2OCA2LjYwOCAxNy42IDE3LjYgMCAwIDAgNi42MDggNC4xNjhjLjYwMS4yMTEgMS4yODYuMDMzIDEuNzctLjQ1bDEuMDM0LTEuMDM0YS42NzguNjc4IDAgMCAwLS4wNjMtMS4wMTVsLTIuMzA3LTEuNzk0YS42OC42OCAwIDAgMC0uNTgtLjEyMmwtMi4xOS41NDdhMS43NSAxLjc1IDAgMCAxLTEuNjU3LS40NTlMNS40ODIgOC4wNjJhMS43NSAxLjc1IDAgMCAxLS40Ni0xLjY1N2wuNTQ4LTIuMTlhLjY4LjY4IDAgMCAwLS4xMjItLjU4ek0xLjg4NC41MTFhMS43NDUgMS43NDUgMCAwIDEgMi42MTIuMTYzTDYuMjkgMi45OGMuMzI5LjQyMy40NDUuOTc0LjMxNSAxLjQ5NGwtLjU0NyAyLjE5YS42OC42OCAwIDAgMCAuMTc4LjY0M2wyLjQ1NyAyLjQ1N2EuNjguNjggMCAwIDAgLjY0NC4xNzhsMi4xODktLjU0N2ExLjc1IDEuNzUgMCAwIDEgMS40OTQuMzE1bDIuMzA2IDEuNzk0Yy44MjkuNjQ1LjkwNSAxLjg3LjE2MyAyLjYxMWwtMS4wMzQgMS4wMzRjLS43NC43NC0xLjg0NiAxLjA2NS0yLjg3Ny43MDJhMTguNiAxOC42IDAgMCAxLTcuMDEtNC40MiAxOC42IDE4LjYgMCAwIDEtNC40Mi03LjAwOWMtLjM2Mi0xLjAzLS4wMzctMi4xMzcuNzAzLTIuODc3eicvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.86rem 0.86rem;
}

.footer-list-contacts li:nth-child(3)::before {
  content: "-";
  flex: 0 0 auto;
  width: auto;
  height: auto;
  margin-top: 0;
  background-image: none;
  font-size: inherit;
  line-height: 1.45;
}

.footer-list-contacts li:nth-child(4)::before {
  content: "\2709";
}

.footer-list-contacts .footer-piva {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-list-contacts .footer-piva::before {
  content: "";
  display: inline-block;
  flex: 0 0 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.04rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nI2ZmZmZmZic+PHBhdGggZD0nTTQgMS41QTEuNSAxLjUgMCAwIDAgMi41IDN2MTBBMS41IDEuNSAwIDAgMCA0IDE0LjVoOEExLjUgMS41IDAgMCAwIDEzLjUgMTNWNS41TDkuNSAxLjVINHptNS41LjdMMTIuOCA1SDEwYS41LjUgMCAwIDEtLjUtLjVWMi4yek01IDdoNnYxSDVWN3ptMCAyaDZ2MUg1Vjl6bTAgMmg0djFINXYtMXonLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.88rem 0.88rem;
}

.footer-spacer {
  margin-top: 0.8rem;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.48rem;
  margin-top: 0.35rem;
  justify-self: center;
  width: max-content;
  max-width: 100%;
}

.footer-social {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  width: 126px;
  min-height: 34px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  background:
    linear-gradient(135deg, var(--social-start, #1877f2), var(--social-end, #0a55b7) 78%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 22px -20px var(--social-shadow, rgba(24, 119, 242, 0.85));
  transform: translateZ(0);
  transition:
    border-color 0.2s ease,
    box-shadow 0.22s ease,
    filter 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.22) 50%,
      transparent 62%,
      transparent 100%
    );
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 0.24s ease,
    transform 0.5s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  filter: brightness(1.07);
  outline: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 26px -20px var(--social-shadow, rgba(24, 119, 242, 0.9));
  transform: translateY(-1px);
}

.footer-social:hover::before,
.footer-social:focus-visible::before {
  opacity: 1;
  transform: translateX(120%);
}

.footer-social svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 999px;
  background-color: transparent;
  fill: currentColor;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.footer-social:hover svg,
.footer-social:focus-visible svg {
  transform: scale(1.08);
}

.footer-social[aria-label*="Facebook"] {
  --social-start: #2a8cff;
  --social-end: #075bd8;
  --social-shadow: rgba(24, 119, 242, 0.9);
}

.footer-social[aria-label*="Instagram"] {
  --social-start: #f04a67;
  --social-end: #c92f86;
  --social-shadow: rgba(228, 64, 95, 0.9);
}

.footer-social[aria-label*="LinkedIn"] {
  --social-start: #0a72d8;
  --social-end: #064f9a;
  --social-shadow: rgba(10, 102, 194, 0.9);
}

.footer-social[aria-label*="WhatsApp"] {
  --social-start: #2ee678;
  --social-end: #169b52;
  --social-shadow: rgba(37, 211, 102, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .footer-social,
  .footer-social::before,
  .footer-social svg {
    transition: none;
  }

  .footer-social:hover,
  .footer-social:focus-visible,
  .footer-social:hover svg,
  .footer-social:focus-visible svg {
    transform: none;
  }
}

.footer-map-col {
  display: grid;
  grid-template-rows: 1.35rem auto;
  align-self: start;
  justify-items: center;
  width: min(250px, 100%);
  max-width: 100%;
  margin-left: clamp(1rem, 2.8vw, 3.2rem);
}

.footer-map-col h3 {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  justify-self: stretch;
  width: 100%;
  min-height: 1.35rem;
}

.footer-mini-map {
  position: relative;
  width: 100%;
  height: 128px;
  margin-top: 0.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  background:
    linear-gradient(28deg, transparent 0 44%, rgba(255, 255, 255, 0.5) 44% 47%, transparent 47%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.42) 38% 41%, transparent 41%),
    linear-gradient(0deg, transparent 0 48%, rgba(255, 255, 255, 0.38) 48% 51%, transparent 51%),
    linear-gradient(90deg, transparent 0 58%, rgba(255, 255, 255, 0.36) 58% 61%, transparent 61%),
    linear-gradient(135deg, #dceadf 0%, #b7d1db 48%, #d8e2cb 100%);
  box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.65);
}

.footer-mini-map iframe {
  position: absolute;
  left: -74px;
  top: -42px;
  display: block;
  width: calc(100% + 102px);
  height: calc(100% + 84px);
  border: 0;
  filter: saturate(0.92) contrast(0.98);
}

.footer-map-ping {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 2;
  width: 17px;
  height: 17px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(213, 72, 74, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.footer-map-ping::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background-color: rgba(213, 72, 74, 0.3);
  animation: mapPing 1.8s infinite ease-out;
}

.footer-map-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  border-radius: inherit;
  background: transparent;
  text-decoration: none;
}

.footer-map-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(220, 231, 245, 0.25);
  padding: 1.05rem clamp(0.8rem, 1.8vw, 1.6rem) 1.2rem clamp(0.8rem, 1.8vw, 1.6rem);
}

.footer-bottom-copy {
  margin: 0;
  justify-self: start;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
}

.footer-bottom-links {
  margin: 0;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-bottom-links a {
  color: #f4f8ff;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
}

.footer-bottom-links a + a::before {
  content: "|";
  display: inline-block;
  margin: 0 0.4rem;
  color: #f4f8ff;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  text-decoration: underline;
}

.footer-bottom-spacer {
  justify-self: end;
  width: 1px;
  height: 1px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.has-reveal-motion .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.has-reveal-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1080px) {
  .footer-brand + .footer-col {
    transform: none;
  }

  .hero-visual {
    min-height: 470px;
  }

  .contact-stage {
    width: min(920px, 92vw);
    grid-template-columns: 1fr;
  }

  .contact-stage.has-contact-visual {
    width: min(1080px, 96vw);
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  }

  .contact-form-visual {
    --contact-visual-top-offset: 7rem;
    height: 780px;
  }

  .contact-form-visual img {
    width: 980px;
    transform: translate(1.5rem, 2.25rem);
  }

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

  .audience-card-a,
  .audience-card-b {
    max-width: 100%;
  }

  .partner-grid,
  .partner-grid-3,
  .partner-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .advantage-highlight,
  .advantage-next,
  .training-digital,
  .office-suite,
  .eipass-overview,
  .eipass-market,
  .polo-support,
  .polo-next,
  .support-system,
  .support-next {
    grid-template-columns: 1fr;
  }

  .advantage-roadmap,
  .training-roadmap,
  .office-crm-grid,
  .eipass-workflow-grid,
  .polo-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vantaggi-page .adv-grid,
  .vantaggi-page .advantage-highlight-grid,
  .vantaggi-page .advantage-value-grid,
  .vantaggi-page .panel .role-grid {
    grid-template-columns: 1fr;
  }

  .vantaggi-page .advantage-roadmap::before {
    display: none;
  }

  .partner-page .panel .role-grid {
    grid-template-columns: 1fr;
  }

  .partner-page .partner-insight {
    grid-template-columns: 1fr;
  }

  .partner-page .partner-insight .role-grid {
    grid-template-columns: 1fr;
  }

  .support-page .panel .role-grid,
  .support-page .support-system-grid,
  .support-page .support-output-grid {
    grid-template-columns: 1fr;
  }

  .apri-polo-page .support-grid,
  .apri-polo-page .adv-grid,
  .apri-polo-page .polo-support-grid,
  .apri-polo-page .polo-impact-grid,
  .apri-polo-page .role-grid {
    grid-template-columns: 1fr;
  }

  .apri-polo-page .polo-path-grid::before {
    display: none;
  }

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

  .eipass-market .btn,
  .polo-next .btn,
  .support-next .btn {
    justify-self: start;
  }

  .advantage-next-actions {
    justify-content: flex-start;
  }

  .home-audience {
    grid-template-columns: 1fr;
  }

  .partner-trust {
    grid-template-columns: 1fr;
  }

  .about-story,
  .about-red-band-inner,
  .about-evolution-grid {
    grid-template-columns: 1fr;
  }

  .about-band-copy {
    position: static;
  }

  .about-evolution {
    padding: 2.4rem 0;
  }

  .network-shell {
    grid-template-columns: 1fr;
  }

  .network-copy p {
    max-width: none;
  }

  .network-copy .network-cta {
    align-self: flex-start;
    margin-left: 0;
  }

  #network-map {
    height: 470px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .contact-stage,
  .contact-stage.has-contact-visual {
    width: min(920px, 92vw);
    grid-template-columns: 1fr;
  }

  .contact-form-visual {
    display: none !important;
    width: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .header-inner {
    gap: 0.52rem;
  }

  .brand img {
    width: clamp(142px, 38vw, 168px);
  }

  .contact-hero {
    margin-top: 0;
    min-height: 300px;
    padding: 2.8rem 1rem;
  }

  .hero {
    margin-top: 0;
  }

  .hero-inner {
    min-height: 720px;
    padding: 0.55rem 0.9rem 0.35rem;
    align-content: start;
  }

  .hero h1,
  .hero .lead {
    max-width: none;
  }

  .hero .eyebrow,
  .hero h1 {
    transform: none;
  }

  .hero .lead {
    margin-top: clamp(15rem, 56vw, 17.5rem);
    margin-bottom: 0.45rem;
  }

  .support-hero {
    margin-top: 0;
  }

  .support-hero-inner {
    min-height: 280px;
    padding: 2.35rem 0.9rem;
  }

  .support-hero h1,
  .support-hero .lead {
    max-width: none;
  }

  .support-page .support,
  .support-page .panel,
  .support-page .support-system,
  .support-page .support-areas,
  .support-page .support-output,
  .support-page .support-next {
    border-radius: 12px;
  }

  .support-page .support-grid article,
  .support-page .support-system-grid article,
  .support-page .support-areas-grid article,
  .support-page .support-output-grid article,
  .support-page .role-grid ul {
    padding: 1rem;
  }

  .support-page .support-system-copy {
    padding: 1rem;
  }

  .apri-polo-hero {
    margin-top: 0;
  }

  .apri-polo-hero h1,
  .apri-polo-hero .lead {
    max-width: none;
  }

  .apri-polo-page .support,
  .apri-polo-page .panel,
  .apri-polo-page .advantages,
  .apri-polo-page .polo-path,
  .apri-polo-page .polo-support,
  .apri-polo-page .polo-impact {
    border-radius: 12px;
  }

  .apri-polo-page .support-grid article,
  .apri-polo-page .adv-grid article,
  .apri-polo-page .polo-path-grid article,
  .apri-polo-page .polo-support-grid article,
  .apri-polo-page .polo-impact-grid article,
  .apri-polo-page .role-grid p,
  .apri-polo-page .role-grid ul {
    padding: 1rem;
  }

  .apri-polo-page .polo-support-copy {
    padding: 1rem;
  }

  .partner-hero {
    margin-top: 0;
  }

  .partner-hero-inner {
    min-height: 280px;
    padding: 2.35rem 0.9rem;
  }

  .partner-hero h1,
  .partner-hero .lead {
    max-width: none;
  }

  .partner-page .partner-trust,
  .partner-page .support,
  .partner-page .panel {
    border-radius: 12px;
  }

  .partner-page .partner-trust-copy,
  .partner-page .partner-trust-list article,
  .partner-page .support-grid article,
  .partner-page .role-grid p,
  .partner-page .role-grid ul {
    padding: 1rem;
  }

  .partner-page .partner-insight {
    padding: 1.15rem;
  }

  .partner-page .partner-insight .role-grid p,
  .partner-page .partner-insight .role-grid ul {
    padding: 0;
  }

  .partner-page .partner-insight .role-grid li {
    border-radius: 8px;
  }

  .partner-page .partner-trust-list span,
  .partner-page .support-grid span {
    width: 32px;
    height: 32px;
  }

  .vantaggi-hero {
    margin-top: 0;
  }

  .vantaggi-page .vantaggi-hero {
    background-position: 24% center;
  }

  .vantaggi-hero-inner {
    min-height: 280px;
    padding: 2.35rem 0.9rem;
  }

  .vantaggi-hero h1,
  .vantaggi-hero .lead {
    max-width: none;
  }

  .vantaggi-page .advantages,
  .vantaggi-page .panel,
  .vantaggi-page .advantage-highlight,
  .vantaggi-page .advantage-path,
  .vantaggi-page .advantage-value {
    border-radius: 12px;
  }

  .vantaggi-page .adv-grid article,
  .vantaggi-page .advantage-highlight-grid article,
  .vantaggi-page .advantage-roadmap article,
  .vantaggi-page .advantage-value-grid article,
  .vantaggi-page .role-grid article {
    padding: 1rem;
  }

  .vantaggi-page .advantage-highlight-copy {
    padding: 1rem;
  }

  .contact-hero-content .lead {
    max-width: none;
  }

  .about-story {
    gap: 1rem;
  }

  .about-card {
    padding: 1rem;
  }

  .about-story-copy h2 {
    max-width: 100%;
  }

  .about-milestone-grid,
  .about-focus-list,
  .about-vision-grid {
    grid-template-columns: 1fr;
  }

  .about-band-copy h2,
  .about-evolution-copy h2,
  .about-vision-head h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .cookie-fab {
    right: 0.72rem;
    bottom: 0.72rem;
    width: 46px;
    height: 46px;
  }

  .cookie-fab-icon {
    width: 25px;
    height: 25px;
  }

  .cookie-preferences {
    padding: 0.55rem;
  }

  .cookie-preferences-panel {
    border-radius: 14px;
    padding: 1rem;
  }

  .cookie-preferences-item {
    padding: 0.72rem;
  }

  .cookie-preferences-item h3 {
    font-size: 1rem;
  }

  .cookie-preferences-item p {
    font-size: 0.9rem;
  }

  .cookie-preferences-btn {
    font-size: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 38px;
    border: 1px solid #b83235;
    border-radius: 8px;
    background-color: var(--brand-red);
    font-size: 0;
    padding: 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--white);
  }

  .menu-toggle::before {
    top: 12px;
    box-shadow: 0 6px 0 var(--white);
  }

  .menu-toggle::after {
    top: 24px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: auto;
    right: 0.75rem;
    width: min(278px, calc(100vw - 1.5rem));
    max-height: calc(100dvh - 98px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.45rem;
    border-radius: 12px;
    border: 1px solid var(--brand-line);
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
    margin-left: 0;
    justify-content: stretch;
    justify-items: stretch;
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }

  .main-nav a {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    padding: 0.52rem 0.68rem;
    border-radius: 10px;
  }

  .main-nav .mobile-nav-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-top: 0.22rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background:
      linear-gradient(
        120deg,
        #b83235 0%,
        var(--brand-red) 36%,
        #ec6668 68%,
        #b83235 100%
      );
    background-size: 260% 260%;
    color: #ffffff;
    font-weight: 700;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 14px 30px -22px rgba(213, 72, 74, 0.95);
    transition:
      background-position 0.4s ease,
      border-color 0.2s ease,
      box-shadow 0.22s ease,
      filter 0.22s ease,
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    animation: faadButtonColorFlow 8s ease-in-out infinite;
  }

  .main-nav .mobile-nav-cta:hover,
  .main-nav .mobile-nav-cta:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background-position: 100% 50%;
    filter: brightness(1.07);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 18px 34px -24px rgba(213, 72, 74, 0.95);
    transform: translateY(-1px);
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
    width: 100%;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: auto;
    padding: 0.08rem 0 0.18rem 0.55rem;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    justify-items: stretch;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-dropdown-menu a {
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.86rem;
    margin-block: 0.08rem;
    padding: 0.44rem 0.62rem;
    text-transform: none;
  }

  .nav-dropdown-menu a.nav-dropdown-overview {
    display: flex;
    color: var(--brand-blue-deep);
    font-weight: 700;
  }

  .header-cta {
    display: none;
  }

  .hero-stats,
  .advantage-roadmap,
  .advantage-value-grid,
  .training-roadmap,
  .training-digital-grid,
  .training-assets-grid,
  .training-outcomes-grid,
  .office-suite-grid,
  .office-crm-grid,
  .office-minisite-grid,
  .office-results-grid,
  .eipass-overview-grid,
  .eipass-workflow-grid,
  .eipass-benefits-grid,
  .polo-path-grid,
  .polo-support-grid,
  .polo-impact-grid,
  .support-system-grid,
  .support-areas-grid,
  .support-output-grid,
  .home-audience-grid,
  .mission-grid,
  .process-grid,
  .support-grid,
  .adv-grid,
  .partner-grid,
  .partner-grid-3,
  .partner-grid-5,
  .contact-map-wrap,
  .contact,
  .role-grid,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: clamp(0.35rem, 2vw, 0.65rem);
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 44px;
    padding: 0.62rem 0.42rem;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.18;
    white-space: normal;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.85rem;
  }

  .hero-stats article {
    padding: 0.58rem 0.45rem;
    border-radius: 12px;
  }

  .hero-stats strong {
    font-size: 1.32rem;
    line-height: 1;
  }

  .hero-stats span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.68rem;
    line-height: 1.22;
  }

  .panel,
  .advantage-highlight,
  .advantage-path,
  .advantage-value,
  .advantage-next,
  .training-path,
  .training-digital,
  .training-assets,
  .training-outcomes,
  .office-suite,
  .office-crm,
  .office-minisite,
  .office-results,
  .eipass-overview,
  .eipass-workflow,
  .eipass-benefits,
  .eipass-market,
  .polo-path,
  .polo-support,
  .polo-impact,
  .polo-next,
  .support-system,
  .support-areas,
  .support-output,
  .support-next,
  .home-audience,
  .home-mission,
  .home-process,
  .partner-trust,
  .support,
  .advantages,
  .partners,
  .about-story,
  .about-partners,
  .contact-map-wrap,
  .contact {
    padding: 1.3rem;
  }

  .home-audience,
  .home-mission,
  .home-process,
  .advantage-highlight,
  .advantage-path,
  .advantage-value,
  .advantage-next,
  .training-path,
  .training-digital,
  .training-assets,
  .training-outcomes,
  .office-suite,
  .office-crm,
  .office-minisite,
  .office-results,
  .eipass-overview,
  .eipass-workflow,
  .eipass-benefits,
  .eipass-market,
  .polo-path,
  .polo-support,
  .polo-impact,
  .polo-next,
  .support-system,
  .support-areas,
  .support-output,
  .support-next,
  .partner-trust {
    margin-top: 1.45rem;
  }

  .home-audience-card {
    min-height: auto;
  }

  .about-hero {
    min-height: 390px;
    margin-top: 0;
    padding: 3.2rem 1rem 2.4rem;
    background-position: 64% center;
  }

  .about-story {
    margin-top: 2.5rem;
    gap: 1.45rem;
  }

  .about-red-band-inner,
  .about-vision-inner {
    padding: 2rem 0;
  }

  .about-evolution {
    padding: 2rem 0;
  }

  .about-evolution-grid {
    gap: 1.45rem;
  }

  .about-partners {
    margin-top: 2.1rem;
    margin-bottom: 2rem;
  }

  .contact-map-wrap {
    padding: 0;
    margin-top: 1rem;
  }

  .contact-map {
    min-height: 430px;
  }

  .contact-map iframe {
    height: 430px;
  }

  .contact-map-link {
    clip-path: inset(128px 0 64px);
  }

  .hero-visual {
    min-height: 0;
    display: grid;
    gap: 0.95rem;
  }

  .audience-card-a,
  .audience-card-b {
    position: static;
    width: 100%;
  }

  .network-showcase {
    margin-top: 1.45rem;
  }

  .network-showcase::after {
    display: none;
  }

  .network-shell {
    padding: 2.2rem 0;
  }

  .network-copy h2 {
    font-size: clamp(1.65rem, 6.8vw, 2.3rem);
  }

  .network-copy p {
    margin: 0.95rem 0 1.35rem;
    font-size: 1.02rem;
  }

  .network-map-panel {
    padding: 0;
  }

  .network-showcase .network-map-panel {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  #network-map {
    height: 420px;
    min-height: 360px;
  }

  .network-map-search {
    padding: 0.2rem 0.26rem;
  }

  .network-map-panel.is-network-map .network-map-search {
    top: 0.55rem;
    right: 0.55rem;
    left: auto;
    transform: none;
    width: min(72%, 190px);
  }

  .network-map-panel.is-contact-map .network-map-search {
    top: 0.55rem;
    right: 0.55rem;
    left: auto;
    transform: none;
    width: min(92%, 330px);
  }

  .network-map-search select {
    min-width: 54px;
    padding: 0.3rem;
  }

  .network-map-search input {
    min-width: 0;
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding-bottom: 1.45rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 168px;
  }

  .footer-col h3 {
    margin-bottom: 0.65rem;
  }

  .footer-list-quick {
    width: min(100%, 21rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    column-gap: clamp(1.5rem, 8vw, 3rem);
  }

  .footer-socials {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    align-items: start;
  }

  .footer-map-col {
    width: min(100%, 320px);
    margin-left: 0;
  }

  .footer-mini-map {
    width: 100%;
    height: 145px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.9rem 0.8rem 1.05rem;
  }

  .footer-bottom-copy,
  .footer-bottom-links {
    justify-self: start;
  }

  .footer-bottom-links {
    gap: 0.7rem;
  }

  .footer-bottom-copy,
  .footer-bottom-links a {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .footer-bottom-spacer {
    display: none;
  }
}

@media (max-width: 840px) {
  .about-partners .partner-grid:not(.partner-logo-marquee) {
    display: flex;
    grid-template-columns: none;
    gap: 0.75rem;
    max-width: none;
    margin-inline: -1.3rem;
    padding: 0 1.3rem 0.2rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: auto;
    scroll-snap-type: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-partners .partner-grid:not(.partner-logo-marquee)::-webkit-scrollbar {
    display: none;
  }

  .about-partners .partner-grid:not(.partner-logo-marquee) img {
    flex: 0 0 clamp(160px, 58vw, 220px);
    height: 78px;
  }
}

@media (max-width: 640px) {
  .hero {
    max-width: 100vw;
    overflow: hidden;
  }

  .hero .container,
  .hero-inner,
  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hero-inner {
    min-height: auto;
    padding: 1.25rem 0.9rem 1.45rem;
  }

  .hero-copy,
  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero-actions,
  .hero-stats {
    max-width: calc(100vw - 1.8rem);
    min-width: 0;
  }

  .hero .eyebrow,
  .hero h1,
  .hero .lead {
    width: 100%;
    overflow-wrap: break-word;
  }

  .hero h1 {
    font-size: clamp(1.62rem, 7.2vw, 2rem);
    line-height: 1.13;
  }

  .hero .lead {
    margin-top: clamp(10.75rem, 48vw, 13.25rem);
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-inline: 0.38rem;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
    overflow: hidden;
  }

  .hero-stats article {
    min-width: 0;
    padding: 0.56rem 0.4rem;
    overflow: hidden;
  }

  .hero-stats strong {
    font-size: clamp(1.05rem, 5vw, 1.36rem);
  }

  .hero-stats span {
    font-size: 0.64rem;
    line-height: 1.2;
  }
}

@media (max-width: 840px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .hero-inner.container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-inner {
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero-copy,
  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero-actions,
  .hero-stats {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    width: min(100%, 20rem);
    font-size: clamp(1.68rem, 6.7vw, 2.05rem);
    line-height: 1.13;
  }

  .hero .lead {
    width: min(100%, 21.5rem);
    font-size: clamp(0.9rem, 3.8vw, 1rem);
  }

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

  .hero-actions .btn {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats article {
    min-width: 0;
  }
}

@media (max-width: 840px) {
  .hero-actions,
  .hero-stats {
    width: min(100%, 22.25rem);
    max-width: 22.25rem;
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .hero-actions,
  .hero-stats {
    width: min(100%, 20.5rem);
    max-width: 20.5rem;
  }
}

@media (max-width: 340px) {
  .hero-actions,
  .hero-stats {
    width: min(100%, 18rem);
    max-width: 18rem;
  }
}

@media (max-width: 840px) {
  .support-hero,
  .apri-polo-hero,
  .partner-hero,
  .vantaggi-hero,
  .contact-hero,
  .about-hero {
    max-width: 100%;
    overflow-x: hidden;
  }

  .support-hero-inner,
  .partner-hero-inner,
  .vantaggi-hero-inner,
  .contact-hero-content,
  .about-hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .support-hero h1,
  .support-hero .lead,
  .apri-polo-hero h1,
  .apri-polo-hero .lead,
  .partner-hero h1,
  .partner-hero .lead,
  .vantaggi-hero h1,
  .vantaggi-hero .lead,
  .contact-hero-content h1,
  .contact-hero-content .lead,
  .about-hero-content h1,
  .about-hero-content p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .partner-hero-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 0.9rem;
    justify-items: start;
  }

  .partner-hero h1,
  .partner-hero .lead {
    width: 100% !important;
    max-width: 330px !important;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .partner-hero h1 {
    font-size: clamp(1.72rem, 7.2vw, 2rem);
    line-height: 1.16;
  }
}

@media (max-width: 360px) {
  .partner-hero h1,
  .partner-hero .lead {
    max-width: 292px !important;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding-top: 3.9rem;
    text-align: center;
  }

  .site-footer .container.footer-inner {
    width: min(100%, 23rem);
    margin-inline: auto;
    padding-inline: 0.75rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    gap: 1.15rem;
    padding-bottom: 1.55rem;
  }

  .footer-brand {
    width: 100%;
    transform: none;
  }

  .footer-brand img {
    width: min(190px, 68vw);
  }

  .footer-col,
  .footer-map-col {
    width: 100%;
    max-width: 21rem;
    margin-left: 0;
    justify-items: center;
  }

  .footer-col h3,
  .footer-map-col h3 {
    margin-bottom: 0.7rem;
  }

  .footer-list {
    width: 100%;
    justify-items: center;
  }

  .footer-list-contacts {
    grid-template-columns: 1fr;
    row-gap: 0.38rem;
  }

  .footer-list-contacts li:nth-child(1),
  .footer-list-contacts li:nth-child(2),
  .footer-list-contacts li:nth-child(3),
  .footer-list-contacts li:nth-child(4),
  .footer-list-contacts .footer-piva {
    grid-column: 1;
    grid-row: auto;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .footer-list-contacts li:nth-child(3)::before {
    content: "";
    width: 0.95rem;
    height: 0.95rem;
    margin-top: 0.12rem;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nI2ZmZmZmZic+PHBhdGggZD0nTTMuNjU0IDEuMzI4YS42NzguNjc4IDAgMCAwLTEuMDE1LS4wNjNMMS42MDUgMi4zYy0uNDgzLjQ4NC0uNjYxIDEuMTY5LS40NSAxLjc3YTE3LjYgMTcuNiAwIDAgMCA0LjE2OCA2LjYwOCAxNy42IDE3LjYgMCAwIDAgNi42MDggNC4xNjhjLjYwMS4yMTEgMS4yODYuMDMzIDEuNzctLjQ1bDEuMDM0LTEuMDM0YS42NzguNjc4IDAgMCAwLS4wNjMtMS4wMTVsLTIuMzA3LTEuNzk0YS42OC42OCAwIDAgMC0uNTgtLjEyMmwtMi4xOS41NDdhMS43NSAxLjc1IDAgMCAxLTEuNjU3LS40NTlMNS40ODIgOC4wNjJhMS43NSAxLjc1IDAgMCAxLS40Ni0xLjY1N2wuNTQ4LTIuMTlhLjY4LjY4IDAgMCAwLS4xMjItLjU4ek0xLjg4NC41MTFhMS43NDUgMS43NDUgMCAwIDEgMi42MTIuMTYzTDYuMjkgMi45OGMuMzI5LjQyMy40NDUuOTc0LjMxNSAxLjQ5NGwtLjU0NyAyLjE5YS42OC42OCAwIDAgMCAuMTc4LjY0M2wyLjQ1NyAyLjQ1N2EuNjguNjggMCAwIDAgLjY0NC4xNzhsMi4xODktLjU0N2ExLjc1IDEuNzUgMCAwIDEgMS40OTQuMzE1bDIuMzA2IDEuNzk0Yy44MjkuNjQ1LjkwNSAxLjg3LjE2MyAyLjYxMWwtMS4wMzQgMS4wMzRjLS43NC43NC0xLjg0NiAxLjA2NS0yLjg3Ny43MDJhMTguNiAxOC42IDAgMCAxLTcuMDEtNC40MiAxOC42IDE4LjYgMCAwIDEtNC40Mi03LjAwOWMtLjM2Mi0xLjAzLS4wMzctMi4xMzcuNzAzLTIuODc3eicvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.86rem 0.86rem;
    font-size: 0;
  }

  .footer-socials {
    width: 100%;
    max-width: 20.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: stretch;
    align-items: center;
    gap: 0.55rem;
  }

  .footer-social {
    width: 100%;
    min-height: 36px;
  }

  .footer-mini-map {
    width: min(100%, 21rem);
    height: 148px;
    margin-inline: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.35rem;
    padding-inline: 0.75rem;
  }

  .footer-bottom-copy,
  .footer-bottom-links {
    justify-self: center;
    text-align: center;
  }
}

/* EIPASS page refresh */
.eipass-page {
  position: relative;
  isolation: isolate;
  background: #ffffff;
}

.eipass-page::before {
  display: none;
}

.eipass-page .vantaggi-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(103deg, rgba(2, 65, 106, 0.96) 0%, rgba(4, 92, 180, 0.82) 50%, rgba(213, 72, 74, 0.48) 100%),
    url("./assets/vantaggi-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.eipass-page .vantaggi-hero::before {
  display: none;
}

.eipass-page .vantaggi-hero::after {
  display: none;
}

.eipass-page .vantaggi-hero-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(360px, 38vw, 510px);
  padding-left: clamp(1.35rem, 4vw, 3.5rem);
}

.eipass-page .vantaggi-hero .eyebrow,
.eipass-page .vantaggi-hero h1,
.eipass-page .vantaggi-hero .lead {
  color: #ffffff;
}

.eipass-page .vantaggi-hero h1 {
  max-width: 24ch;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  line-height: 1.06;
}

.eipass-page .vantaggi-hero .lead {
  max-width: 59ch;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

.eipass-page > section:not(.sub-hero) {
  margin-top: clamp(2.2rem, 4vw, 3.7rem);
}

.eipass-page .support,
.eipass-page .panel,
.eipass-page .advantages,
.eipass-page .eipass-workflow,
.eipass-page .eipass-benefits {
  padding: clamp(0.25rem, 1.3vw, 0.8rem) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.eipass-page .section-head {
  display: grid;
  gap: 0.45rem;
  max-width: 900px;
  margin-bottom: clamp(1.1rem, 2vw, 1.55rem);
}

.eipass-page .section-head h2,
.eipass-page .eipass-overview-copy h2 {
  max-width: 850px;
  line-height: 1.12;
}

.eipass-page .section-head p:not(.eyebrow),
.eipass-page .eipass-overview-copy p:not(.eyebrow) {
  color: var(--brand-slate);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
}

.eipass-page .eyebrow {
  color: var(--brand-red);
  font-weight: 800;
}

.eipass-page .support-grid,
.eipass-page .adv-grid,
.eipass-page .eipass-overview-grid,
.eipass-page .eipass-benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.45vw, 1.15rem);
  align-items: stretch;
}

.eipass-page .eipass-workflow-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.45vw, 1.15rem);
  align-items: stretch;
}

.eipass-page .support-grid article,
.eipass-page .adv-grid article,
.eipass-page .eipass-overview-grid article,
.eipass-page .eipass-workflow-grid article,
.eipass-page .eipass-benefits-grid article,
.eipass-page .role-grid p,
.eipass-page .role-grid ul {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(1rem, 1.7vw, 1.22rem);
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.78) 100%);
  box-shadow: 0 18px 46px -38px rgba(7, 34, 60, 0.48);
}

.eipass-page .support-grid article::before,
.eipass-page .adv-grid article::before,
.eipass-page .eipass-overview-grid article::before,
.eipass-page .eipass-workflow-grid article::before,
.eipass-page .eipass-benefits-grid article::before,
.eipass-page .role-grid > *::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand-blue-deep);
}

.eipass-page .support-grid article:nth-child(2n)::before,
.eipass-page .adv-grid article:nth-child(2n)::before,
.eipass-page .eipass-overview-grid article:nth-child(2n)::before,
.eipass-page .eipass-workflow-grid article:nth-child(2n)::before,
.eipass-page .eipass-benefits-grid article:nth-child(2n)::before,
.eipass-page .role-grid > :nth-child(2n)::before {
  background: var(--brand-red);
}

.eipass-page .support-grid article::after,
.eipass-page .adv-grid article::after,
.eipass-page .eipass-overview-grid article::after,
.eipass-page .eipass-workflow-grid article::after,
.eipass-page .eipass-benefits-grid article::after,
.eipass-page .role-grid p::after,
.eipass-page .role-grid ul::after {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  border-top: 2px solid rgba(4, 107, 210, 0.18);
  border-right: 2px solid rgba(213, 72, 74, 0.26);
  pointer-events: none;
}

.eipass-page .support-grid h3,
.eipass-page .adv-grid h3,
.eipass-page .eipass-overview-grid h3,
.eipass-page .eipass-workflow-grid h3,
.eipass-page .eipass-benefits-grid h3 {
  color: var(--brand-navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.eipass-page .support-grid p,
.eipass-page .adv-grid p,
.eipass-page .eipass-overview-grid p,
.eipass-page .eipass-workflow-grid p,
.eipass-page .eipass-benefits-grid p {
  color: var(--brand-slate);
}

.eipass-page .eipass-overview {
  position: relative;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(1.1rem, 2.8vw, 2rem);
  padding: clamp(1.35rem, 3vw, 2.3rem);
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 65, 106, 0.98), rgba(4, 92, 180, 0.9));
  box-shadow: 0 28px 76px -58px rgba(7, 34, 60, 0.78);
}

.eipass-page .eipass-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 88px),
    linear-gradient(125deg, transparent 0 62%, rgba(213, 72, 74, 0.22) 62% 63%, transparent 63% 100%);
  opacity: 0.55;
}

.eipass-page .eipass-overview-copy,
.eipass-page .eipass-overview-grid {
  position: relative;
  z-index: 1;
}

.eipass-page .eipass-overview-grid {
  align-self: center;
}

@media (min-width: 1081px) {
  .eipass-page .eipass-overview-grid {
    transform: translateY(clamp(0.35rem, 0.7vw, 0.55rem));
  }
}

.eipass-page .eipass-overview-copy .eyebrow,
.eipass-page .eipass-overview-copy h2,
.eipass-page .eipass-overview-copy p:not(.eyebrow) {
  color: #ffffff;
}

.eipass-page .eipass-overview-grid article {
  background-color: rgba(255, 255, 255, 0.96);
}

.eipass-page .eipass-workflow {
  padding-top: clamp(0.6rem, 1.8vw, 1.1rem);
}

.eipass-page .role-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
  align-items: stretch;
}

.eipass-page .role-grid ul {
  margin: 0;
  padding-left: clamp(1rem, 1.7vw, 1.22rem);
  list-style: none;
  line-height: 1.76;
}

.eipass-page .role-grid li {
  position: relative;
  padding-left: 1.45rem;
}

.eipass-page .role-grid li + li {
  margin-top: 0.42rem;
}

.eipass-page .role-grid li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0.18rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: var(--brand-red);
  transform: translateY(-50%);
}

.eipass-page .role-grid li:nth-child(2n)::before {
  background-color: var(--brand-blue-deep);
}

.eipass-page .eipass-market {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding: clamp(1.45rem, 3vw, 2.35rem);
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(2, 65, 106, 0.97), rgba(4, 92, 180, 0.9) 58%, rgba(213, 72, 74, 0.78)),
    url("./assets/vantaggi-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 76px -58px rgba(7, 34, 60, 0.78);
}

.eipass-page .eipass-market::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 86px),
    linear-gradient(135deg, transparent 0 64%, rgba(255, 255, 255, 0.18) 64% 64.5%, transparent 64.5% 100%);
  opacity: 0.62;
}

.eipass-page .eipass-market > * {
  position: relative;
  z-index: 1;
}

.eipass-page .eipass-market .btn {
  min-height: 48px;
  border-radius: 8px;
  justify-self: center;
}

.eipass-page .eipass-market .btn-primary {
  color: var(--brand-blue-deep);
  border: 1px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 16px 35px -24px rgba(255, 255, 255, 0.85);
}

.eipass-page .eipass-market .btn-primary:hover,
.eipass-page .eipass-market .btn-primary:focus-visible {
  color: var(--brand-blue-deep);
  border-color: #eaf3ff;
  background: #eaf3ff;
}

.eipass-page h1,
.eipass-page h2,
.eipass-page h3,
.eipass-page p,
.eipass-page li {
  overflow-wrap: break-word;
  word-break: normal;
}

@media (min-width: 1081px) {
  .eipass-page .eipass-workflow-grid::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(4, 92, 180, 0.18), rgba(213, 72, 74, 0.34));
  }

  .eipass-page .eipass-workflow-grid article {
    padding-top: 2.8rem;
  }

  .eipass-page .eipass-workflow-grid article::after {
    top: 1rem;
    left: 1rem;
    right: auto;
    width: 14px;
    height: 14px;
    border: 3px solid #ffffff;
    border-radius: 999px;
    background-color: var(--brand-blue-deep);
    box-shadow: 0 0 0 5px rgba(4, 107, 210, 0.14);
  }

  .eipass-page .eipass-workflow-grid article:nth-child(2n)::after {
    background-color: var(--brand-red);
    box-shadow: 0 0 0 5px rgba(213, 72, 74, 0.14);
  }
}

@media (hover: hover) and (pointer: fine) {
  .eipass-page .support-grid article:hover,
  .eipass-page .adv-grid article:hover,
  .eipass-page .eipass-overview-grid article:hover,
  .eipass-page .eipass-workflow-grid article:hover,
  .eipass-page .eipass-benefits-grid article:hover,
  .eipass-page .role-grid p:hover,
  .eipass-page .role-grid ul:hover {
    transform: translateY(-7px);
    border-color: rgba(4, 92, 180, 0.3);
    box-shadow:
      0 28px 60px -34px rgba(7, 34, 60, 0.58),
      0 14px 30px -26px rgba(213, 72, 74, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .eipass-page .vantaggi-hero::before {
    animation: none;
  }

  .eipass-page .support-grid article:hover,
  .eipass-page .adv-grid article:hover,
  .eipass-page .eipass-overview-grid article:hover,
  .eipass-page .eipass-workflow-grid article:hover,
  .eipass-page .eipass-benefits-grid article:hover,
  .eipass-page .role-grid p:hover,
  .eipass-page .role-grid ul:hover {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .eipass-page .eipass-overview,
  .eipass-page .eipass-market {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 840px) {
  .eipass-page .vantaggi-hero-inner {
    min-height: 330px;
    padding: 2.6rem 1rem 2.6rem 1.45rem;
  }

  .eipass-page .vantaggi-hero h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .eipass-page .support-grid,
  .eipass-page .adv-grid,
  .eipass-page .eipass-overview-grid,
  .eipass-page .eipass-workflow-grid,
  .eipass-page .eipass-benefits-grid,
  .eipass-page .role-grid {
    grid-template-columns: 1fr;
  }

  .eipass-page .support,
  .eipass-page .panel,
  .eipass-page .advantages,
  .eipass-page .eipass-workflow,
  .eipass-page .eipass-benefits {
    padding: 0;
  }

  .eipass-page .eipass-overview,
  .eipass-page .eipass-market {
    padding: 1.15rem;
  }

  .eipass-page .eipass-market .btn {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 840px) {
  .partner-page .partner-insight-alt .section-head,
  .partner-page .partner-insight-alt .role-grid,
  .partner-page .partner-insight-alt .role-grid p,
  .partner-page .partner-insight-alt .role-grid ul {
    order: 0;
  }

  .partner-page .partner-insight-alt .role-grid p {
    margin-top: 2rem;
    margin-left: 0;
  }
}

.support-next .eyebrow,
.support-page .support-system-copy .eyebrow,
.training-digital .eyebrow,
.digital-office-page .office-suite-copy .eyebrow,
.formazione-page .training-digital-copy .eyebrow,
.eipass-market .eyebrow,
.polo-next .eyebrow,
.apri-polo-page .polo-support-copy .eyebrow,
.vantaggi-page .advantage-highlight-copy .eyebrow,
.partner-page .partner-trust-copy .eyebrow,
.home-process .eyebrow,
.eipass-page .eipass-overview-copy .eyebrow {
  color: var(--brand-red);
  font-size: clamp(0.84rem, 0.95vw, 0.94rem);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .btn.header-cta,
  .btn.header-cta::before,
  .main-nav .mobile-nav-cta,
  .main-nav .mobile-nav-cta::before,
  .network-cta,
  .network-cta::before,
  .network-cta span {
    animation: none;
    transition: none;
  }

  .btn.header-cta:hover,
  .btn.header-cta:focus-visible,
  .main-nav .mobile-nav-cta:hover,
  .main-nav .mobile-nav-cta:focus-visible,
  .network-cta:hover,
  .network-cta:focus-visible,
  .network-cta:hover span,
  .network-cta:focus-visible span {
    transform: none;
  }
}

/* Internal-page heroes: titles only, centered on the cover image. */
.support-hero-inner,
.partner-hero-inner,
.vantaggi-hero-inner,
.contact-hero-content,
.about-hero-content {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.support-hero h1,
.apri-polo-hero h1,
.partner-hero h1,
.vantaggi-hero h1,
.contact-hero h1,
.about-hero h1,
.policy-hero h1 {
  width: min(100%, 30ch);
  max-width: 30ch;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.support-hero .lead,
.apri-polo-hero .lead,
.partner-hero .lead,
.vantaggi-hero .lead,
.contact-hero .lead {
  width: min(100%, 56ch);
  max-width: 56ch;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.about-hero-subtitle {
  width: min(calc(100% - 2rem), 56ch);
  max-width: 56ch;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 700px) {
  .about-hero {
    min-height: 390px;
  }

  .about-hero-team-grid {
    bottom: 0;
  }

  .about-hero-content {
    padding: 3.2rem 1rem 2.4rem;
  }

  .about-hero-subtitle {
    bottom: 0.55rem;
    width: calc(100% - 1rem);
    min-height: 0;
    padding: 0;
    display: block;
    background: transparent;
    text-shadow:
      0 2px 5px rgba(0, 0, 0, 0.96),
      0 0 14px rgba(0, 0, 0, 0.82);
  }

  .about-hero-content .about-hero-subtitle p {
    margin-top: 0.18rem;
    font-size: clamp(0.78rem, 3.5vw, 0.9rem);
    line-height: 1.25;
  }

  .about-hero-content .about-hero-strong {
    margin-top: 0;
  }
}

/* Eventi Network */
.events-page {
  padding-bottom: 3.5rem;
  background:
    radial-gradient(circle at 8% 72%, rgba(4, 107, 210, 0.08), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(213, 72, 74, 0.07), transparent 24%),
    #ffffff;
}

.events-hero {
  position: relative;
  min-height: clamp(420px, 34vw, 520px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(100deg, rgba(4, 45, 76, 0.78), rgba(4, 72, 120, 0.58)),
    url("./assets/eventi-network-hero.jpg") center 46% / cover no-repeat;
}

.events-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 7px;
  background: linear-gradient(90deg, var(--brand-blue) 0 68%, var(--brand-red) 68% 100%);
}

.events-hero-inner {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding-block: clamp(4rem, 9vw, 7rem);
  color: #ffffff;
  text-align: center;
}

.events-hero h1 {
  width: min(100%, 24ch);
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.04;
  text-wrap: balance;
}

.events-hero .lead {
  width: min(100%, 60ch);
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
}

.events-intro {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: end;
  justify-items: center;
  text-align: center;
}

.events-intro::after {
  content: "";
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue-deep) 0 68%, var(--brand-red) 68% 100%);
}

.events-intro > div {
  width: min(100%, 60rem);
}

.events-intro h2 {
  margin-top: 0.55rem;
  color: var(--brand-navy);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  text-wrap: balance;
}

.events-intro-copy {
  margin: 0.75rem auto 0;
  color: var(--brand-slate);
  line-height: 1.75;
}

.events-archive {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(0.7rem, 1.5vw, 1.15rem);
  border: 1px solid rgba(4, 107, 210, 0.13);
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 80px -62px rgba(7, 34, 60, 0.72);
}

.network-calendar-section {
  margin-top: clamp(2.75rem, 6vw, 5rem);
  padding-block: clamp(2.8rem, 6vw, 5rem);
  border-block: 1px solid rgba(4, 107, 210, 0.12);
  background:
    radial-gradient(circle at 14% 10%, rgba(4, 107, 210, 0.15), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(213, 72, 74, 0.11), transparent 30%),
    linear-gradient(135deg, #eef5fb 0%, #fbfcfe 48%, #f5f8fb 100%);
}

.network-calendar-shell {
  display: grid;
  width: min(1280px, 94vw);
  gap: clamp(1.8rem, 4vw, 2.8rem);
}

.network-calendar-intro {
  display: grid;
  justify-items: center;
  text-align: center;
}

.network-calendar-intro > p:last-child {
  max-width: 48ch;
  margin: 0.85rem 0 0;
  color: var(--brand-slate);
  line-height: 1.65;
}

.network-calendar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.1rem);
  margin-top: 0.65rem;
}

.network-calendar-controls h2 {
  min-width: min(48vw, 18rem);
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.1;
  text-transform: capitalize;
}

.network-calendar-control {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--brand-navy);
  border: 1px solid rgba(2, 65, 106, 0.22);
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 26px rgba(2, 65, 106, 0.16);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.network-calendar-control:hover,
.network-calendar-control:focus-visible {
  color: #ffffff;
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  box-shadow: 0 15px 32px rgba(2, 65, 106, 0.34);
  transform: translateY(-2px);
}

.network-calendar-control:focus-visible {
  outline: 3px solid rgba(4, 107, 210, 0.24);
  outline-offset: 3px;
}

.network-calendar-arrow {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.network-calendar-arrow::before,
.network-calendar-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
}

.network-calendar-arrow::before {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background-color: currentColor;
  transform: translateY(-50%);
}

.network-calendar-arrow::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.network-calendar-arrow-prev::before {
  left: 4px;
}

.network-calendar-arrow-prev::after {
  left: 3px;
  transform: translateY(-50%) rotate(-135deg);
}

.network-calendar-arrow-next::before {
  right: 4px;
}

.network-calendar-arrow-next::after {
  right: 3px;
  transform: translateY(-50%) rotate(45deg);
}

.network-calendar-scroll {
  box-sizing: border-box;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.45rem clamp(0.65rem, 1.4vw, 1rem) 1rem;
  scroll-padding-inline: clamp(0.65rem, 1.4vw, 1rem);
  scrollbar-color: rgba(4, 70, 125, 0.42) rgba(255, 255, 255, 0.68);
  scrollbar-width: thin;
}

.network-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  min-width: 760px;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.network-calendar-grid.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.network-calendar-weekday {
  display: grid;
  min-height: 38px;
  place-items: center;
  color: rgba(4, 45, 76, 0.74);
  border: 1px solid rgba(4, 70, 125, 0.08);
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.network-calendar-day {
  position: relative;
  min-height: 120px;
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 12px;
  color: var(--brand-navy);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(231, 240, 248, 0.7));
  box-shadow: 0 10px 24px rgba(7, 34, 60, 0.11);
}

.network-calendar-day time {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 800;
}

.network-calendar-day.is-outside {
  color: rgba(4, 45, 76, 0.34);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.network-calendar-day.is-today {
  border-color: rgba(213, 72, 74, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(213, 72, 74, 0.14),
    0 12px 28px rgba(7, 34, 60, 0.14);
}

.network-calendar-day.is-today time {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), #bd3136);
  box-shadow: 0 8px 18px rgba(213, 72, 74, 0.25);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.event-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(4, 107, 210, 0.17);
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 24px 52px -42px rgba(7, 34, 60, 0.72);
}

.event-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #e9f1f8;
}

.event-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-card-date {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  color: #ffffff;
  background-color: rgba(4, 45, 76, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.event-card-body {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-items: start;
  padding: 1.15rem;
}

.event-card-tag {
  display: inline-flex;
  width: fit-content;
  color: var(--brand-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card h2 {
  min-height: 3.05rem;
  margin-top: 0.55rem;
  color: var(--brand-navy);
  font-size: 1.22rem;
  line-height: 1.25;
}

.event-card p {
  margin: 0.65rem 0 0;
  color: var(--brand-slate);
  font-size: 0.9rem;
  line-height: 1.65;
}

.event-card-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--brand-blue-deep);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.event-card-link:hover,
.event-card-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (hover: hover) and (pointer: fine) {
  .event-card:hover .event-card-media img {
    transform: scale(1.045);
  }
}

@media (max-width: 1080px) {
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .events-hero {
    min-height: 350px;
  }

  .events-intro,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card h2 {
    min-height: 0;
  }

  .network-calendar-section {
    padding-block: 2.5rem;
  }

  .network-calendar-controls {
    width: 100%;
  }

  .network-calendar-controls h2 {
    min-width: 0;
    flex: 1 1 auto;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .network-calendar-control {
    width: 42px;
    height: 42px;
  }

  .network-calendar-grid {
    min-width: 680px;
    gap: 0.42rem;
  }

  .network-calendar-day {
    min-height: 88px;
    padding: 0.6rem;
  }

}

@media (min-width: 841px) and (max-width: 1200px) {
  .header-inner {
    gap: 0.45rem;
  }

  .brand img {
    width: clamp(132px, 13vw, 154px);
  }

  .main-nav {
    gap: 0.15rem;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown > .nav-dropdown-trigger {
    padding: 0.42rem;
    font-size: 0.78rem;
  }

  .btn.header-cta {
    padding-inline: 0.85rem;
    font-size: 0.78rem;
  }
}

/* Metodo FAAD */
.metodo-faad-page {
  padding-bottom: 0;
}

.metodo-faad-page h1,
.metodo-faad-page h2,
.metodo-faad-page h3 {
  text-wrap: balance;
}

.method-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0.9rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 20%, rgba(47, 144, 239, 0.4), transparent 31%),
    radial-gradient(circle at 12% 92%, rgba(213, 72, 74, 0.26), transparent 28%),
    linear-gradient(122deg, #052d4e 0%, #064b7d 54%, #07345a 100%);
}

.method-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 66%, rgba(255, 255, 255, 0.08) 66% 66.15%, transparent 66.15%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 112px);
  pointer-events: none;
}

.method-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -250px;
  z-index: -1;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.method-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: clamp(2rem, 4.5vw, 4.8rem);
  align-items: center;
  min-height: clamp(460px, 50vw, 560px);
  padding-block: clamp(2.8rem, 5vw, 4.8rem);
}

.method-hero-copy {
  position: relative;
  z-index: 2;
}

.method-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-breadcrumb a {
  color: #ffffff;
  text-underline-offset: 0.24em;
}

.method-hero .eyebrow {
  color: #b9dcff;
}

.method-hero h1 {
  max-width: 15ch;
  margin-top: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.4vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.method-hero .lead {
  max-width: 64ch;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
  line-height: 1.75;
}

.method-secondary-action {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.method-secondary-action:hover,
.method-secondary-action:focus-visible {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.method-compass {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.method-compass::before,
.method-compass::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.method-compass::after {
  inset: 50% -2%;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  transform: rotate(-34deg);
}

.method-compass-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-content: center;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.26), transparent 36%),
    rgba(4, 92, 180, 0.46);
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.035),
    0 25px 60px -30px rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  animation: methodCompassCorePulse 2.8s ease-in-out infinite;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.method-compass-core::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(138, 198, 255, 0.72);
  border-radius: 50%;
  pointer-events: none;
  animation: methodCompassRingPulse 2.8s ease-in-out infinite;
}

.method-compass-core:hover,
.method-compass-core:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background-color: rgba(4, 107, 210, 0.68);
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.07),
    0 28px 64px -26px rgba(0, 0, 0, 0.82);
  filter: brightness(1.08);
}

.method-compass-core:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 5px;
}

.method-compass-core span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.method-compass-core strong {
  margin-top: 0.15rem;
  font-family: "Lora", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.method-compass-core small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.58rem auto 0;
  padding: 0.3rem 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.13);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.15;
}

@keyframes methodCompassCorePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@keyframes methodCompassRingPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.method-compass-item {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 118px;
  padding: 0.72rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background-color: rgba(4, 44, 76, 0.78);
  box-shadow: 0 16px 34px -24px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(7px);
}

.method-compass-item span {
  color: #8ac6ff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-compass-item strong {
  margin-top: 0.12rem;
  font-family: "Lora", serif;
  font-size: 1rem;
}

.method-compass-item-one {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.method-compass-item-two {
  top: 24%;
  right: -7%;
}

.method-compass-item-three {
  right: 2%;
  bottom: 9%;
}

.method-compass-item-four {
  bottom: 9%;
  left: -6%;
}

.method-compass-item-five {
  top: 24%;
  left: -7%;
}

.method-definition,
.method-pillars,
.method-system,
.method-roles,
.method-indicators {
  margin-top: clamp(2.2rem, 5vw, 4.4rem);
}

.method-definition {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 4.2rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid rgba(4, 107, 210, 0.15);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
  box-shadow: 0 28px 70px -58px rgba(7, 34, 60, 0.58);
}

.method-definition h2,
.method-pillars h2,
.method-process h2,
.method-system h2,
.method-roles h2,
.method-indicators h2 {
  margin-top: 0.55rem;
  color: var(--brand-navy);
  font-size: clamp(1.8rem, 3.6vw, 3.15rem);
  line-height: 1.1;
}

.method-definition-copy > p:not(.eyebrow) {
  max-width: 72ch;
  margin: 1rem 0 0;
  line-height: 1.75;
}

.method-promise {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(2, 65, 106, 0.98), rgba(4, 92, 180, 0.94));
  box-shadow: 0 24px 54px -38px rgba(2, 65, 106, 0.9);
}

.method-promise::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.035);
}

.method-promise-kicker {
  display: block;
  color: #acd7ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.method-promise blockquote {
  position: relative;
  z-index: 1;
  margin: 0.75rem 0 0;
  font-family: "Lora", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
}

.method-promise p {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

.method-pillars,
.method-system,
.method-roles {
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
  box-shadow: 0 28px 70px -60px rgba(7, 34, 60, 0.56);
}

.method-pillars .section-head > p:not(.eyebrow),
.method-process-head > p:not(.eyebrow),
.method-system-intro > p:not(.eyebrow) {
  max-width: 72ch;
  margin: 0.85rem 0 0;
  line-height: 1.75;
}

.method-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.method-pillars-grid article {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(240, 245, 250, 0.72) 100%);
}

.method-pillars-grid article::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(4, 107, 210, 0.1);
  border-radius: 50%;
}

.method-pillars-grid article:nth-child(even) {
  border-top: 3px solid var(--brand-red);
}

.method-pillars-grid article:nth-child(odd) {
  border-top: 3px solid var(--brand-blue-deep);
}

.method-pillars-grid span {
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.method-pillars-grid h3 {
  margin-top: 0.72rem;
  color: var(--brand-navy);
  font-size: 1.08rem;
}

.method-pillars-grid p {
  position: relative;
  z-index: 1;
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
  line-height: 1.68;
}

.method-process {
  margin-top: clamp(2.2rem, 5vw, 4.4rem);
  scroll-margin-top: 110px;
  padding-block: clamp(2.8rem, 6vw, 5.3rem);
  background:
    radial-gradient(circle at 100% 0, rgba(4, 107, 210, 0.13), transparent 30%),
    radial-gradient(circle at 0 100%, rgba(213, 72, 74, 0.1), transparent 27%),
    #f3f8fc;
}

@media (min-width: 1081px) {
  .method-process .container {
    width: min(1420px, 94vw);
  }
}

.method-process-head {
  max-width: 830px;
  margin-inline: auto;
  text-align: center;
}

.method-process-head > p:not(.eyebrow) {
  margin-inline: auto;
}

.method-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.method-steps::before {
  display: none;
}

.method-steps > li {
  position: relative;
  display: grid;
  grid-column: span 4;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  align-content: start;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border: 1px solid rgba(4, 107, 210, 0.14);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.11) 0%, rgba(4, 107, 210, 0) 36%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.1) 0%, rgba(213, 72, 74, 0) 40%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 57%, #fff9f9 100%);
  box-shadow: 0 20px 50px -42px rgba(7, 34, 60, 0.5);
}

.method-steps > li > .method-step-output {
  grid-column: 2;
}

.method-steps > li:last-child {
  grid-column: 7 / span 5;
  grid-template-columns: 44px minmax(0, 1fr);
}

.method-steps > li:last-child > .method-step-output {
  grid-column: 2;
}

.method-steps > li:nth-child(4) {
  grid-column: 2 / span 5;
}

.method-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background-color: var(--brand-blue-deep);
  box-shadow: 0 0 0 1px rgba(4, 107, 210, 0.2);
  font-size: 0.68rem;
  font-weight: 800;
}

.method-step-kicker {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-step-content h3 {
  margin-top: 0.28rem;
  color: var(--brand-navy);
  font-size: clamp(1.18rem, 1.65vw, 1.42rem);
  line-height: 1.18;
}

.method-step-content > p:not(.method-step-kicker) {
  max-width: 72ch;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.58;
}

.method-step-content ul {
  display: grid;
  gap: 0.28rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.method-step-content li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.method-step-content li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  transform: translateY(-50%);
}

.method-step-output {
  display: grid;
  align-self: stretch;
  align-content: center;
  gap: 0.3rem;
  padding: 0.72rem 0.8rem;
  border-left: 3px solid var(--brand-red);
  border-radius: 0 10px 10px 0;
  background-color: var(--brand-cloud);
}

.method-step-output span {
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-step-output strong {
  color: var(--brand-navy);
  font-family: "Lora", serif;
  font-size: 1rem;
  line-height: 1.35;
}

.method-system {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 107, 210, 0.15) 0%, rgba(4, 107, 210, 0) 40%),
    radial-gradient(circle at 100% 100%, rgba(213, 72, 74, 0.14) 0%, rgba(213, 72, 74, 0) 42%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 56%, #fff8f8 100%);
}

.method-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.method-system-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.1rem;
  border: 1px solid rgba(4, 107, 210, 0.16);
  border-radius: var(--radius-md);
  background-color: #ffffff;
}

.method-system-grid article:nth-child(2) {
  transform: translateY(1.2rem);
}

.method-system-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  color: var(--brand-blue-deep);
  background-color: rgba(4, 107, 210, 0.1);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-system-grid h3 {
  margin-top: 0.8rem;
  color: var(--brand-navy);
  font-size: 1.06rem;
}

.method-system-grid p {
  margin: 0.58rem 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.66;
}

.method-roles .section-head {
  max-width: 850px;
}

.method-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.method-roles-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: var(--radius-md);
}

.method-role-faad {
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(140deg, var(--brand-navy), var(--brand-blue-deep));
}

.method-role-polo {
  border: 1px solid rgba(4, 107, 210, 0.16);
  background:
    radial-gradient(circle at 100% 0, rgba(213, 72, 74, 0.13), transparent 30%),
    var(--brand-cloud);
}

.method-role-name {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-role-faad .method-role-name {
  color: #acd7ff;
}

.method-roles-grid h3 {
  margin-top: 0.55rem;
  color: var(--brand-navy);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.method-role-faad h3 {
  color: #ffffff;
}

.method-roles-grid ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.method-roles-grid li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.55;
}

.method-roles-grid li::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
}

.method-role-faad li {
  color: rgba(255, 255, 255, 0.84);
}

.method-role-faad li::before {
  border-color: #8ac6ff;
}

.method-indicators {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 10%, rgba(4, 107, 210, 0.34), transparent 34%),
    linear-gradient(135deg, #071f34 0%, #063c65 100%);
}

.method-indicators h2 {
  color: #ffffff;
}

.method-indicators .eyebrow {
  color: #acd7ff;
}

.method-indicators-copy > p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.method-indicators-list {
  display: grid;
  gap: 0.62rem;
}

.method-indicators-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.86rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.06);
}

.method-indicators-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background-color: var(--brand-red);
  font-size: 0.67rem;
  font-weight: 800;
}

.method-indicators-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.method-indicators-list strong {
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .method-pillars-grid article,
  .method-system-grid article,
  .method-steps > li,
  .method-roles-grid article {
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.22s ease,
      border-color 0.22s ease;
  }

  .method-indicators-list > div {
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      background-color 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  .method-indicators-list span {
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.22s ease;
  }

  .method-pillars-grid article:hover,
  .method-system-grid article:hover,
  .method-steps > li:hover {
    border-color: rgba(4, 107, 210, 0.3);
    box-shadow: 0 28px 58px -44px rgba(4, 92, 180, 0.62);
    transform: translateY(-3px);
  }

  .method-system-grid article:nth-child(2):hover {
    transform: translateY(calc(1.2rem - 3px));
  }

  .method-role-faad:hover {
    box-shadow: 0 30px 58px -38px rgba(4, 92, 180, 0.88);
    transform: translateY(-4px);
  }

  .method-role-polo:hover {
    border-color: rgba(213, 72, 74, 0.38);
    box-shadow: 0 30px 58px -40px rgba(213, 72, 74, 0.72);
    transform: translateY(-4px);
  }

  .method-indicators-list > div:hover {
    border-color: rgba(138, 198, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 18px 34px -26px rgba(0, 0, 0, 0.7);
    transform: translateX(5px);
  }

  .method-indicators-list > div:hover span {
    box-shadow: 0 10px 24px -14px rgba(213, 72, 74, 0.95);
    transform: scale(1.07);
  }
}

@media (max-width: 1080px) {
  .method-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 2rem;
  }

  .method-compass-item {
    min-width: 104px;
    padding: 0.58rem 0.7rem;
  }

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

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

  .method-steps > li {
    grid-column: auto;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .method-steps > li:nth-child(4) {
    grid-column: auto;
  }

  .method-steps > li:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 44px minmax(0, 1fr);
    width: calc((100% - 0.85rem) / 2);
    justify-self: center;
  }

  .method-step-output {
    grid-column: 2;
  }

  .method-system {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .method-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 2.6rem 3.2rem;
  }

  .method-hero h1 {
    max-width: 17ch;
    font-size: clamp(2.25rem, 9.5vw, 3.85rem);
  }

  .method-compass {
    width: min(350px, 86%);
    margin-top: 0.25rem;
    justify-self: center;
  }

  .method-definition,
  .method-indicators {
    grid-template-columns: 1fr;
  }

  .method-steps {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    gap: 0.85rem;
    overflow-x: auto;
    margin-inline: -0.2rem;
    padding: 0.2rem 0.2rem 1rem;
    scroll-padding-inline: 0.2rem;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(4, 92, 180, 0.42) rgba(4, 107, 210, 0.08);
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
  }

  .method-steps > li,
  .method-steps > li:last-child {
    grid-column: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    width: auto;
    justify-self: stretch;
    scroll-snap-align: start;
  }

  .method-steps > li:last-child > .method-step-output {
    grid-column: 2;
  }

  .method-system-grid {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    overflow-x: auto;
    padding: 0.2rem 0 1.2rem;
    scroll-snap-type: x proximity;
  }

  .method-system-grid article {
    scroll-snap-align: start;
  }

  .method-system-grid article:nth-child(2) {
    transform: none;
  }

}

@media (max-width: 840px) and (hover: hover) and (pointer: fine) {
  .method-system-grid article:nth-child(2):hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 620px) {
  .method-hero-grid {
    width: min(100% - 2rem, 1140px);
    gap: 2.2rem;
  }

  .method-compass {
    width: min(330px, 88vw);
  }

  .method-compass-item {
    min-width: 92px;
    padding: 0.48rem 0.58rem;
  }

  .method-compass-item strong {
    font-size: 0.82rem;
  }

  .method-compass-item-one {
    top: 0;
    left: 50%;
  }

  .method-compass-item-two {
    top: 22%;
    right: -3%;
  }

  .method-compass-item-three {
    right: 0;
    bottom: 6%;
  }

  .method-compass-item-four {
    bottom: 6%;
    left: -3%;
  }

  .method-compass-item-five {
    top: 22%;
    left: -3%;
  }

  .method-definition,
  .method-pillars,
  .method-system,
  .method-roles,
  .method-indicators {
    width: min(100% - 1.5rem, 1140px);
    border-radius: 18px;
  }

  .method-pillars-grid,
  .method-roles-grid {
    grid-template-columns: 1fr;
  }

  .method-process .container {
    width: min(100% - 1.5rem, 1140px);
  }

  .method-steps::before {
    display: none;
  }

  .method-steps {
    grid-auto-columns: 86%;
  }

  .method-steps > li,
  .method-steps > li:last-child {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.15rem;
  }

  .method-step-output,
  .method-steps > li:last-child > .method-step-output {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-compass-core,
  .method-compass-core::after,
  .method-pillars-grid article,
  .method-system-grid article,
  .method-steps > li,
  .method-roles-grid article,
  .method-indicators-list > div,
  .method-indicators-list span {
    transition: none;
  }
}
