:root {
      --pf-blue-1: #1e3a8a;
      --pf-blue-2: #2563eb;
      --pf-blue-3: #60a5fa;
      --ink: #0f172a;
      --muted: #334155;
      --left-offset: 0px;
      --stack-gap-btn: 20px;
      --anchor-offset: 40px;
    }

    html,
    body {
      margin: 0;
      overflow-x: hidden;
      font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      box-sizing: border-box;
    }

    *,
    *::before,
    *::after {
      box-sizing: inherit;
    }

    .cs-section {
      position: relative;
      width: 100%;
      padding: 82px 0 32px;
      /* base */
      overflow: visible;
    }

    /* Desktop/Tablet: +50px sul padding-top */
    @media (min-width: 481px) {
      .cs-section {
        padding-top: 132px;
      }
    }

    /* 82 + 50 */

    .cs-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(16px, 4vw, 32px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .cs-left {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      transform: none;
      z-index: 2;
    }

    .cs-eyebrow {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--pf-blue-2);
      font-weight: 700;
      white-space: normal;
    }

    .cs-eyebrow .eyebrow-label {
      line-height: 1;
    }

    .cs-eyebrow .eyebrow-list {
      color: #8a8a8a;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }

    .cs-title {
      font-size: clamp(36px, 5vw, 50px);
      line-height: 1.04;
      margin: 0;
      color: var(--ink);
      font-weight: 800;
      max-width: 100%;
    }

    .cs-title .brand-blue {
      color: var(--pf-blue-2);
    }

    .cs-desc {
      font-size: 18px;
      line-height: 1.6;
      color: #000;
      /* sottotitolo in nero */
      max-width: 60ch;
      margin: 0;
    }

    .cs-actions {
      display: flex;
      gap: 10px;
      margin-top: var(--stack-gap-btn);
    }

    .cs-btn {
      appearance: none;
      border: none;
      padding: 14px 22px;
      border-radius: 14px;
      cursor: pointer;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: .2px;
      position: relative;
      overflow: hidden;
      transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s cubic-bezier(.2, .8, .2, 1), filter .18s ease;
      text-decoration: none;
      display: inline-block;
    }

    .cs-btn-primary {
      color: var(--pf-blue-2);
      background: linear-gradient(90deg, #f6f7f9 0%, #ffffff 48%, #eef2f5 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 10px 26px rgba(2, 6, 23, .10), 0 0 0 2px rgba(255, 255, 255, .80) inset;
      padding: 14px 28px;
    }

    .cs-btn-primary:hover {
      filter: brightness(.99);
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 28px rgba(2, 6, 23, .12), 0 0 0 2px rgba(255, 255, 255, .85) inset;
    }

    .cs-btn-primary:active {
      transform: translateY(0);
    }

    .cs-btn-primary::after {
      content: "";
      position: absolute;
      inset: -40% -120%;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .38) 45%, rgba(255, 255, 255, 0) 60%);
      transform: translateX(-120%) rotate(16deg);
      opacity: 0;
      pointer-events: none;
    }

    .cs-btn-primary:hover::after,
    .cs-btn-primary:focus-visible::after {
      animation: btnShimmer 1.2s ease-out 1 forwards;
    }

    @keyframes btnShimmer {
      0% {
        transform: translateX(-120%) rotate(16deg);
        opacity: 0;
      }

      30% {
        opacity: .18;
      }

      55% {
        opacity: .28;
      }

      100% {
        transform: translateX(120%) rotate(16deg);
        opacity: 0;
      }
    }

    .cs-progress-h {
      width: clamp(220px, 36vw, 460px);
      height: 5px;
      background: rgba(15, 23, 42, .08);
      border-radius: 999px;
      overflow: hidden;
      margin-top: var(--stack-gap-btn);
      position: relative;
      pointer-events: none;
    }

    .cs-progress-h .cs-progress-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #60a5fa, #2563eb 60%, #1e3a8a);
    }

    .cs-right {
      position: relative;
      min-height: calc(320px + 48px);
      overflow: visible !important;
    }

    /* =================== CARDS (desktop) =================== */
    .card-swap-container {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, 24px);
      transform-origin: center top;
      perspective: 900px;
      overflow: visible;
      z-index: 5;
      width: 460px;
      height: 320px;
    }

    .card {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 460px;
      height: 320px;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      background: #f8fafc;
      color: #0b1220;
      transform-style: preserve-3d;
      will-change: transform;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      box-shadow: 0 20px 44px rgba(0, 0, 0, .16);
      overflow: hidden;
      visibility: hidden;
      opacity: 0;
    }

    .card-media {
      position: absolute;
      inset: 0;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(.9) contrast(1.02);
    }

    .card-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(37, 99, 235, .82);
      backdrop-filter: blur(12px) saturate(1);
      -webkit-backdrop-filter: blur(12px) saturate(1);
    }

    .card-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13, 37, 94, .28) 0%, rgba(13, 37, 94, .46) 58%, rgba(13, 37, 94, .62) 100%);
      mix-blend-mode: multiply;
    }

    .card-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 16px;
    }

    .svc-tag {
      align-self: flex-start;
      background: rgba(37, 99, 235, .9);
      color: #fff;
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      letter-spacing: .2px;
      box-shadow: 0 6px 18px rgba(37, 99, 235, .35);
    }

    .card h3 {
      margin: 4px 0 2px;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      text-shadow: 0 3px 16px rgba(0, 0, 0, .45), 0 1px 2px rgba(0, 0, 0, .35);
    }

    .card p {
      margin: 0;
      opacity: 1;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.68;
      color: #fff;
      text-shadow: 0 3px 16px rgba(0, 0, 0, .5), 0 1px 3px rgba(0, 0, 0, .45);
    }

    /* =================== CAROSELLO MOBILE (colonna SINISTRA) =================== */
    .cs-carousel {
      display: none;
    }

    .cs-carousel .cs-carousel-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 100%;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      padding: 4px 2px 2px;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }

    .cs-carousel .cs-carousel-track::-webkit-scrollbar {
      display: none;
    }

  .cs-carousel-item {
    scroll-snap-align: center;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 26px rgba(2, 6, 23, .12);
    border: 1px solid #e5e7eb;
    background: #f8fafc;
  }

  .cs-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 768px) {
    .cs-carousel-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0) 20%, rgba(15, 23, 42, 0.82) 100%);
      pointer-events: none;
      transition: opacity .25s ease;
      opacity: 1;
      z-index: 1;
    }

    .cs-caption {
      position: absolute;
      inset: auto 0 0 0;
      padding: clamp(14px, 5vw, 22px);
      color: #fff;
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 2;
      pointer-events: none;
      text-shadow: 0 4px 18px rgba(15, 23, 42, .55);
    }

    .cs-caption-tag {
      align-self: flex-start;
      background: rgba(37, 99, 235, .92);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 999px;
    }

    .cs-caption-title {
      margin: 0;
      font-size: clamp(20px, 6vw, 26px);
      font-weight: 800;
      line-height: 1.1;
    }

    .cs-caption-desc {
      margin: 0;
      font-size: clamp(13px, 4.2vw, 15px);
      line-height: 1.5;
      color: #e2e8f0;
    }
  }

    /* =================== RESPONSIVE =================== */
    @media (max-width: 1200px) {
      .cs-container {
        max-width: 1100px;
      }
    }

    @media (max-width: 1024px) {
      .cs-container {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .cs-right {
        min-height: 360px;
      }

      .cs-left {
        transform: none;
      }

      .cs-progress-h {
        width: clamp(200px, 60vw, 420px);
      }

      .card-swap-container {
        transform: translate(-50%, 18px) scale(.9);
        transform-origin: center top;
      }
    }

    /* ======== PHONE (layout stabile) ======== */
    @media (max-width: 480px) {

      /* PAD MOBILE: 0px sopra */
      .cs-section {
        padding-top: 0px;
      }

      .cs-title {
        font-size: clamp(28px, 8.5vw, 36px);
        line-height: 1.12;
        word-break: break-word;
        overflow-wrap: anywhere;
        -webkit-hyphens: auto;
        hyphens: auto;
      }

      .cs-desc {
        max-width: none;
        font-size: 16px;
        word-break: break-word;
        overflow-wrap: anywhere;
        -webkit-hyphens: auto;
        hyphens: auto;
      }

      .cs-eyebrow .eyebrow-list {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
      }

      /* Nascondi stack 3D, mostra carosello sotto il sottotitolo */
      .card-swap-container {
        display: none !important;
      }

      .cs-carousel {
        display: block;
        margin: 12px 0 0;
        width: 100%;
      }

      /* Barra subito sotto IMMAGINI, poi pulsante a sinistra */
      .cs-progress-h {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
      }

      .cs-actions {
        justify-content: flex-start;
        margin-top: 14px;
        flex-wrap: wrap;
      }

      .cs-right {
        min-height: 0;
      }

      .cs-container {
        padding-left: clamp(12px, 5vw, 24px);
        padding-right: clamp(12px, 5vw, 24px);
      }
    }

    .rimando-anchor {
      scroll-margin-top: var(--anchor-offset);
    }

/* ===== helper full-bleed ===== */
    .full-bleed {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      margin-left: 0;
      margin-right: 0;
    }

    .pf-strengths {
      --pfb1: #1e3a8a;
      --pfb2: #2563eb;
    --brand-blue: #2563eb;
      --pfb3: #60a5fa;
    --brand-blue: #2563eb;
      --ink: #0f172a;
      --muted: #64748b;
      --card: #fff;
      --bdr: #e6edf6;
      --radius: 16px;
      --icon-bg: linear-gradient(180deg, #f7faff 0%, #eaf2ff 100%);
      --icon-bg-hover: linear-gradient(180deg, #eef4ff 0%, #dfeaff 100%);
      font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      background: #fff;
      padding: clamp(8px, 1.2vw, 14px) 0 clamp(42px, 6vw, 80px);
    }

    .pf-strengths .pfz-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 clamp(16px, 3vw, 32px);
    }

    .pfz-head {
      text-align: center;
    }

    .pfz-title {
      margin: 0;
      font-weight: 900;
      color: var(--ink);
      font-size: clamp(36px, 5vw, 50px);
      line-height: 1.04;
      letter-spacing: -.015em;
      line-height: 1.08;
    }

    .pfz-title .brand {
      color: var(--pfb2);
    }

    /* ===== Tabs (mobile) ===== */
    .pfz-mobile-tabs {
      display: none;
      justify-content: center;
      gap: 14px;
      margin-top: 8px;
      user-select: none;
    }

    .pfz-tab {
      position: relative;
      border: 0;
      background: none;
      padding: 6px 2px 18px;
      margin: 0;
      color: #94a3b8;
      font-weight: 800;
      letter-spacing: .2px;
      line-height: 1;
      white-space: nowrap;
      font-size: 13px;
    }

    .pfz-tab[aria-selected="true"] {
      color: #475569;
    }

    .pfz-tab[aria-selected="true"]::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 4px;
      width: 38px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(140deg, var(--pfb1), var(--pfb2), var(--pfb3));
      box-shadow: 0 4px 10px rgba(37, 99, 235, .22);
    }

    /* ===== Desktop / tablet: griglia 4 ===== */
    .pfz-grid {
      display: grid;
      gap: clamp(18px, 2.2vw, 26px);
      justify-content: center;
      justify-items: stretch;
    }

    .pfz-grid--4 {
      grid-template-columns: repeat(4, minmax(260px, 1fr));
    }

    @media (max-width:1100px) {
      .pfz-grid--4 {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
      }
    }

    @property --rot {
      syntax: "<angle>";
      initial-value: 0deg;
      inherits: false;
    }

    .pfz-card {
      box-sizing: border-box;
      position: relative;
      isolation: isolate;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 18px 18px 20px;
      background: var(--card);
      border-radius: var(--radius);
      border: 1px solid var(--bdr);
      box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      height: 100%;
      max-width: 320px;
    }

    .pfz-card:focus-visible {
      outline: 2px solid var(--pfb3);
      outline-offset: 2px;
    }

    .pfz-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background:
        linear-gradient(#fff, #fff) padding-box,
        conic-gradient(from var(--rot), var(--pfb1), var(--pfb2), var(--pfb3), var(--pfb1)) border-box;
      -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0) border-box;
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity .18s ease;
      z-index: -1;
    }

    .pfz-card:hover::before,
    .pfz-card:focus-visible::before {
      opacity: 1;
      animation: spin 2.2s linear infinite;
    }

    .pfz-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 34px rgba(37, 99, 235, .16);
      border-color: rgba(37, 99, 235, .35);
    }

    @keyframes spin {
      to {
        --rot: 360deg;
      }
    }

    .pfz-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pfz-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      flex: 0 0 56px;
      background: var(--icon-bg);
      display: grid;
      place-items: center;
      color: var(--pfb2);
      border: 1px solid rgba(37, 99, 235, .22);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
      transition: background .18s ease, transform .18s ease;
    }

    .pfz-card:hover .pfz-icon {
      background: var(--icon-bg-hover);
      transform: scale(1.03);
    }

    .pfz-icon svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .pfz-h3 {
      margin: 0;
      font-weight: 800;
      color: var(--ink);
      font-size: clamp(16px, 1.7vw, 18px);
      letter-spacing: -.005em;
    }

    .pfz-desc {
      margin: 6px 2px 0;
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.65;
    }

    .pfz-desc strong {
      font-weight: 600;
      color: inherit;
    }

    /* === NASCONDI carosello su desktop/tablet === */
    .pfz-slider {
      display: none;
    }

    /* ===== MOBILE: tabs + carosello con scorrimento fluido (niente snap/centratura) ===== */
    @media (max-width:560px) {
      .full-bleed {
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
      }

      .pfz-head {
        margin-bottom: 16px;
      }

      .pfz-grid {
        display: none;
      }

      .pfz-mobile-tabs {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 8px;
        gap: 12px;
      }

      .pfz-slider {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* rimosso scroll-snap per evitare "blocchi" */
        padding: 8px 0 12px;
        /* CONSENTE ANCHE LO SCORRIMENTO VERTICALE DELLA PAGINA SOPRA LE CARD */
        touch-action: pan-x pan-y;
        overscroll-behavior-x: contain;
        scrollbar-width: thin;
        scroll-behavior: smooth;
        /* scorrimento più morbido */
      }

      .pfz-slider::-webkit-scrollbar {
        height: 6px;
      }

      .pfz-slider::-webkit-scrollbar-track {
        background: #e5e7eb;
        border-radius: 999px;
      }

      .pfz-slider::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 999px;
      }

      .pfz-slider::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
      }

      .pfz-slide {
        /* rimosso scroll-snap-align */
        flex: 0 0 86vw;
        max-width: 86vw;
      }

      .pfz-slide .pfz-card {
        width: 100%;
        max-width: 100%;
        padding: 16px 16px 18px;
      }

      .pfz-icon {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
      }

      .pfz-icon svg {
        width: 24px;
        height: 24px;
      }
    }

/* ===== Helper full-bleed per i divisori obliqui ===== */
    .full-bleed {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      margin-left: 0;
      margin-right: 0;
    }

    .divider-svg {
      display: block;
      width: 100%;
      height: clamp(70px, 14vw, 160px);
      pointer-events: none;
    }

    /* ====== Wrapper, palette, base ====== */
    #alc-partners-and-reviews.alc-wrap {
      --brand-blue: #2563eb;
      --brand-blue-2: #60a5fa;
      --brand-blue-1: #1e3a8a;
      --ink: #0f172a;
      --muted: #5b728a;
      --edge-pad: clamp(16px, 3vw, 24px);
      font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      color: var(--ink);
      background: #e5e7eb;
      position: relative;
      overflow: hidden;
    }

    /* ====== TITOLO ====== */
    .pr-section {
      padding: 42px 0 12px;
    }

    .pr-container {
      max-width: 1200px;
      padding: 0 var(--edge-pad);
      margin: 0 auto;
    }

    .pr-title {
      margin: 0;
      text-align: center;
      font-weight: 900;
      letter-spacing: -.015em;
      font-size: clamp(36px, 5vw, 50px);
      line-height: 1.04;
    }

    .pr-title .pr-accent {
      color: var(--brand-blue);
    }

    .alc-gap {
      height: 16px;
    }

    /* ====== CAROSELLO 3D (dimensioni guidate da variabili CSS) ====== */
    .pf-3d-carousel-section {
      padding: 8px 0 42px;
    }

    .pf-3d-carousel-container {
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 var(--edge-pad);
      position: relative;
    }

    .pf-3d-carousel {
      /* dimensioni card base (desktop) */
      --cw: 360px;
      /* card width */
      --ch: 420px;
      /* card height */
      position: relative;
      width: 100%;
      height: 520px;
      perspective: 800px;
      margin: 0 auto;
      transform-style: preserve-3d;
      touch-action: pan-y;
      /* swipe orizzontale senza conflitti con scroll verticale */
    }

    .pf-3d-carousel-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
    }

    .pf-3d-card-container {
      position: absolute;
      width: var(--cw);
      height: var(--ch);
      left: calc(50% - (var(--cw) / 2));
      top: calc(50% - (var(--ch) / 2));
      transition: transform .38s cubic-bezier(.22, .61, .36, 1), filter .38s cubic-bezier(.22, .61, .36, 1), opacity .25s ease;
      transform-origin: center;
      transform-style: preserve-3d;
      will-change: transform, filter, opacity;
    }

    .pf-3d-card {
      width: 100%;
      height: 100%;
      border: none;
      padding: 0;
      border-radius: 1rem;
      overflow: hidden;
      background: transparent;
      box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .38s cubic-bezier(.22, .61, .36, 1);
      backface-visibility: hidden;
    }

    .pf-3d-card--empty {
      background: #ffffff;
      box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .08);
    }

    /* *** CENTRALE PIÙ GRANDE ANCHE SU DESKTOP *** */
    .pf-3d-card-container[data-active="true"] .pf-3d-card {
      transform: scale(1.24);
      box-shadow: 0 14px 34px rgba(0, 0, 0, .12), 0 0 0 3px rgba(37, 99, 235, .12);
    }

    .pf-3d-media {
      width: 100%;
      height: 100%;
      border-radius: inherit;
    }

    .pf-3d-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .28s ease;
    }

    .pf-3d-media--empty {
      width: 100%;
      height: 100%;
      background: #f8fafc;
    }

    .pf-3d-card:hover .pf-3d-media img {
      transform: scale(1.02);
    }

    /* ====== NAV (desktop) ====== */
    .pf-3d-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: 46px;
      min-width: 46px;
      padding: 0 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      z-index: 10;
      font-weight: 800;
      font-size: 20px;
      letter-spacing: .2px;
      color: var(--brand-blue);
      background: linear-gradient(90deg, #f6f7f9 0%, #ffffff 48%, #eef2f5 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 10px 26px rgba(2, 6, 23, .10), 0 0 0 2px rgba(255, 255, 255, .80) inset;
      transition: filter .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .pf-3d-nav:hover {
      filter: brightness(.99);
      transform: translateY(-50%) translateZ(0) scale(1.02);
    }

    .pf-3d-nav-left {
      left: 100px;
    }

    .pf-3d-nav-right {
      right: 100px;
    }

    /* ====== Tablet ====== */
    @media (max-width: 1024px) {
      .pf-3d-carousel {
        height: 480px;
        --cw: 320px;
        --ch: 380px;
      }

      .pf-3d-nav-left {
        left: 78px;
      }

      .pf-3d-nav-right {
        right: 78px;
      }
    }

    @media (max-width: 768px) {
      .pf-3d-carousel {
        height: 440px;
        --cw: 300px;
        --ch: 360px;
      }

      .pf-3d-nav-left {
        left: 52px;
      }

      .pf-3d-nav-right {
        right: 52px;
      }
    }

    /* ====== Mobile (=600px): centrale ancora più grande, laterali più vicine e sotto ====== */
    @media (max-width: 600px) {
      .full-bleed {
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
      }

      .pf-3d-carousel {
        height: 360px;
        perspective: 700px;
        /* più “drammatico” del desktop */
        --cw: 140px;
        --ch: 168px;
      }

      /* centrale più protagonista su mobile */
      .pf-3d-card-container[data-active="true"] .pf-3d-card {
        transform: scale(1.50);
        box-shadow: 0 16px 36px rgba(0, 0, 0, .14), 0 0 0 3px rgba(37, 99, 235, .12);
      }

      /* nascondi le frecce su mobile: swipe per scorrere */
      .pf-3d-nav {
        display: none;
      }
    }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap');
  }

  /* full-bleed */
  .full-bleed {
    width: 100vw;
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    left: 0;
    z-index: 0;
  }

  @keyframes heroScrollRun {
    0% {
      top: 6px;
    }

    100% {
      top: 28px;
    }
  }

  .hero-gap {
    height: 0 !important;
    background: #fff;
  }

  .hero-title {
    margin: 0 0 16px;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(24px, 3.1vw, 46px);
    letter-spacing: .01em;
  }

  .hero-desc {
    margin: 0;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 1.6;
    max-width: 52ch;
    opacity: .95;
  }

  /* ▼▼▼ Desktop: abbassa di 30px l’indicatore (senza toccare il bottom) */
  @media (min-width: 769px) {
    .pf-hero-slashed .hero-scroll-cue {
      transform: translate(-50%, 30px);
      /* 30px più in basso rispetto alla posizione base */
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pf-hero-slashed .hero-scroll-cue__runner {
      animation: none !important;
    }
  }

  @media (max-width:1024px) {
    .page-wrapper[data-page="home"] .pf-hero-slashed h1,
    .page-wrapper[data-page="home"] .hero__content h1 {
      font-size: clamp(22px, 6vw, 30px) !important;
      line-height: 1.15 !important;
    }

    .page-wrapper[data-page="home"] .pf-hero-slashed p,
    .page-wrapper[data-page="home"] .hero__content .hero-desc,
    .page-wrapper[data-page="home"] .hero__content .subtitle {
      font-size: clamp(14px, 3.6vw, 17px) !important;
      line-height: 1.5 !important;
      opacity: .95;
    }
  }

  .rimando-anchor {
    scroll-margin-top: var(--hdr-h);
  }

  /* ============== SOLO MOBILE (=768px) ============== */
  @media (max-width:768px) {
    .pf-hero-slashed {
      /* hero sopra l'header */

      /* ? ridotto di 10px (prima 90px) */

      /* aria per lo scroll-cue */
    }


    /* contenuti centrati su mobile */
    .pf-hero-slashed .hero-overlay {
      justify-content: center;
    }

    /* ? Glass container sui testi (solo mobile) */
    .hero-content--left {
      transform: none !important;
      margin-left: 0;
      max-width: 92%;
      padding: 12px 14px;
      padding-left: max(14px, env(safe-area-inset-left, 0px));
      padding-right: max(14px, env(safe-area-inset-right, 0px));
      text-align: center;

      background: rgba(0, 0, 0, .14);
      backdrop-filter: saturate(115%) blur(2.5px);
      -webkit-backdrop-filter: saturate(115%) blur(2.5px);
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
      /* border: 1px solid rgba(255,255,255,.12); */
      z-index: 2;
    }

    /* nascondi logo sotto-patina su mobile */
    /* scroll-cue compatto e più alto su mobile */
    .pf-hero-slashed .hero-scroll-cue {
      /* mobile: molto più in alto */
      height: 42px;
      transform: translateX(-50%);
      /* niente offset verticale extra su mobile */
    }

    .pf-hero-slashed .hero-scroll-cue__runner {
      height: 14px;
    }

    @keyframes heroScrollRun {
      0% {
        top: 6px;
      }

      100% {
        top: 20px;
      }
    }

    .hero-desc {
      margin-bottom: 0;
      max-width: 60ch;
    }

    .rimando-anchor {
      scroll-margin-top: var(--hdr-h);
    }
  }

/* ===== Helper full-bleed ===== */
  .full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }

  .divider-svg {
    display: block;
    width: 100%;
    height: clamp(70px, 14vw, 160px);
    pointer-events: none;
  }

  /* ===== Sezione ABOUT (sfondo più grigio) ===== */
  .about-section {
    --left-offset: 0px;
    --left-nudge-y: 0px;
    --cards-nudge-x: 0px;
    --cards-nudge-y: 0px;

    --band: #e5e7eb;
    --band-pad-top: 72px;
    --band-pad-bottom: 72px;

    --brand-blue: #2563eb;
    --ink: #0f172a;
    --muted: #334155;
  }

  .about-section.band-blue {
    position: relative;
    padding: var(--band-pad-top) 0 var(--band-pad-bottom);
  }

  .about-section .ab-bleed {
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: var(--band);
    z-index: 0;
  }

  .about-section .cs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  .about-section .cs-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: none;
  }

  .about-section .cs-eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-blue);
    font-weight: 800;
  }

  .about-section .cs-title {
    font-size: clamp(36px, 5vw, 50px);
    line-height: 1.04;
    margin: 0;
    color: var(--ink);
    font-weight: 800;
  }

  .about-section .brand-blue {
    color: var(--brand-blue);
  }

  .about-section .cs-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    max-width: 60ch;
    margin: 0;
  }

  .about-section .cs-actions {
    display: flex;
    gap: 10px;
  }

  .about-section .cs-btn {
    appearance: none;
    border: none;
    padding: 15px 24px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .2px;
  }

  /* Bottone leggero */
  .about-section .cs-btn-primary {
    position: relative;
    overflow: hidden;
    color: var(--brand-blue);
    background: linear-gradient(90deg, #f6f7f9 0%, #ffffff 48%, #eef2f5 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9),
      0 10px 26px rgba(2, 6, 23, .10),
      0 0 0 2px rgba(255, 255, 255, .80) inset;
    transition: filter .18s ease, transform .2s ease;
  }

  .about-section .cs-btn-primary:hover {
    filter: brightness(.99);
    transform: translateY(-1px);
  }

  .about-section .cs-btn-primary:active {
    transform: translateY(0);
  }

  .about-section .cs-btn-primary::after {
    content: "";
    position: absolute;
    inset: -40% -120%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .38) 45%,
        rgba(255, 255, 255, 0) 60%);
    transform: translateX(-120%) rotate(16deg);
    opacity: 0;
  }

  .about-section .cs-btn-primary:hover::after,
  .about-section .cs-btn-primary:focus-visible::after {
    animation: btnShimmer 1.2s ease-out 1 forwards;
  }

  @keyframes btnShimmer {
    0% {
      transform: translateX(-120%) rotate(16deg);
      opacity: 0;
    }

    30% {
      opacity: .18;
    }

    55% {
      opacity: .28;
    }

    100% {
      transform: translateX(120%) rotate(16deg);
      opacity: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .about-section .cs-btn-primary::after {
      display: none !important;
    }
  }

  /* ===== Destra: figura singola con scenografia ===== */
  .about-section .about-right {
    justify-self: center;
    position: relative;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-figure {
    position: relative;
    width: clamp(22rem, 34vw, 34rem);
    height: clamp(16rem, 27vw, 27rem);
    display: grid;
    place-items: center;
    margin: 0;
  }

  .af-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(60% 60% at 50% 50%, rgba(96, 165, 250, .45), rgba(37, 99, 235, .18) 55%, rgba(37, 99, 235, 0) 70%);
    filter: blur(18px);
    z-index: 0;
    transform: translateY(6px);
  }

  .af-orbit {
    position: absolute;
    width: 118%;
    height: 118%;
    border-radius: 999px;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, .85) 0deg, rgba(96, 165, 250, .9) 40deg, rgba(37, 99, 235, .9) 140deg, rgba(59, 130, 246, .85) 220deg, rgba(255, 255, 255, .85) 360deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(50% - 11px), #000 calc(50% - 10px));
    mask: radial-gradient(farthest-side, transparent calc(50% - 11px), #000 calc(50% - 10px));
    opacity: .35;
    animation: afSpin 22s linear infinite;
    z-index: 0;
    filter: blur(.2px);
  }

  @keyframes afSpin {
    to {
      transform: rotate(360deg);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .af-orbit {
      animation: none;
    }
  }

  .af-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .18), 0 1px 0 rgba(255, 255, 255, .8) inset;
    transform-style: preserve-3d;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
    z-index: 1;
  }

  .af-frame:hover {
    transform: perspective(900px) rotateX(1.5deg) rotateY(-1.5deg) translateZ(0);
    box-shadow: 0 26px 70px rgba(37, 99, 235, .28), 0 1px 0 rgba(255, 255, 255, .85) inset;
  }

  .af-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    filter: saturate(.98) contrast(1.02);
    user-select: none;
    -webkit-user-drag: none;
    transform: scale(1.06);
  }

  .af-shine {
    position: absolute;
    inset: -40% -140%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .55) 48%, rgba(255, 255, 255, 0) 62%);
    transform: translateX(-120%) rotate(16deg);
    opacity: 0;
    pointer-events: none;
  }

  .af-frame:hover .af-shine,
  .af-frame:focus-visible .af-shine {
    animation: afSweep 1.15s ease-out 1 forwards;
  }

  /* ===== Responsive ===== */
  @media (max-width: 1200px) {
    .about-section .cs-container {
      max-width: 1100px;
    }
  }

  /* 🔒 Nascondi SEMPRE il pulsante mobile su desktop (specificità più alta della regola .cs-actions) */
  .about-section .cs-actions.cs-actions--mobile {
    display: none;
  }

  /* ======= MOBILE / TABLET ======= */
  @media (max-width:1024px) {
    .about-section .cs-container {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    /* Ordine: titolo/sottotitolo -> immagine -> pulsante mobile */
    .about-section .cs-left {
      order: 1;
      align-items: flex-start;
    }

    .about-section .about-right {
      order: 2;
      /* l'immagine viene sotto al sottotitolo */
      justify-self: center;
      margin-top: 0;
    }

    /* Nascondo il pulsante "desktop" vicino al testo su mobile */
    .about-section .cs-left .cs-actions {
      display: none;
    }

    /* Mostro il pulsante mobile sotto all'immagine e lo allineo a sinistra */
    .about-section .cs-actions.cs-actions--mobile {
      order: 3;
      display: flex;
      align-self: flex-start;
      /* allineamento a sinistra */
      justify-content: flex-start;
      margin-top: 4px;
    }
  }

  @media (max-width:480px) {
    .about-figure {
      width: clamp(18rem, 80vw, 28rem);
      height: clamp(12rem, 52vw, 20rem);
    }
  }

/* ===== Helper full-bleed e svg ===== */
  .full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }

  .divider-svg {
    display: block;
    width: 100%;
    height: clamp(70px, 14vw, 160px);
    pointer-events: none
  }

  /* ===== Sezione ISO ===== */
  .alc-iso-elegant {
    --blue-1: #1e3a8a;
    --blue-2: #2563eb;
    --blue-3: #60a5fa;
    --ink: #0b1220;
    --muted: #5b6b7d;
    --card: #fff;
    --b: rgba(2, 6, 23, .10);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --pad-top: 56px;
    --pad-bottom: 92px;
    --wm-tilt: -12deg;
    --wm-size: clamp(560px, 58vmin, 820px);
    --wm-top: 56%;
    --wm-right: -1vw;
    --wm-opacity: .18;
    --left-offset: 120px;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: #e5e7eb;
    position: relative
  }

  .alc-iso-elegant .iso-bleed {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    overflow: visible;
    background: #e5e7eb
  }

  .alc-iso-elegant .iso-watermark {
    position: absolute;
    top: var(--wm-top);
    right: var(--wm-right);
    width: var(--wm-size);
    height: auto;
    transform: translateY(-50%) rotate(var(--wm-tilt));
    transform-origin: center;
    opacity: var(--wm-opacity);
    mix-blend-mode: multiply;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none
  }

  .alc-iso-elegant .iso-container {
    max-width: 1600px;
    margin: 0;
    padding: var(--pad-top) clamp(12px, 3vw, 24px) var(--pad-bottom);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr
  }

  .alc-iso-elegant .iso-left {
    transform: translateX(var(--left-offset));
    transform-origin: top left;
    max-width: 920px
  }

  .alc-iso-elegant .eyebrow {
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--blue-2);
    font-weight: 800;
    margin-bottom: 6px
  }

  .alc-iso-elegant .title {
    margin: 0 0 4px;
    font-weight: 900;
    letter-spacing: -.015em;
    font-size: clamp(36px, 5vw, 50px);
    line-height: 1.04;
    color: var(--ink)
  }

  .alc-iso-elegant .title .brand {
    color: var(--blue-2)
  }

  .alc-iso-elegant .subtitle {
    margin: 10px 0 0;
    color: #334155;
    font-size: 18px;
    line-height: 1.6
  }

  .alc-iso-elegant .subtitle.subtitle--nero {
    color: #000;
  }

  .alc-iso-elegant .mini-divider {
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 14px 0 24px
  }

  .alc-iso-elegant .mini-divider .line {
    height: 3px;
    border-radius: 999px;
    display: inline-block;
    background: linear-gradient(90deg, var(--blue-1), var(--blue-2), var(--blue-3));
    transform: skewX(-16deg)
  }

  .alc-iso-elegant .mini-divider .line-1 {
    width: 84px
  }

  .alc-iso-elegant .mini-divider .line-2 {
    width: 58px;
    opacity: .9;
    background: linear-gradient(90deg, var(--blue-3), var(--blue-2))
  }

  /* ===== CARD STACK (desktop) ===== */
  #iso-cardstack {
    position: relative;
    z-index: 3;
    margin-top: 8px
  }

  #iso-cardstack .iso-cards {
    position: relative;
    display: flex;
    width: clamp(360px, 68vw, 1120px);
    min-height: 270px
  }

  #iso-cardstack .iso-card {
    --stack-overlap: -64px;
    --stack-shift: 64px;
    --hover-raise: 12px;
    --hover-scale: 1.065;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 260px;
    min-height: 230px;
    background: #fff;
    border: 1px solid rgba(2, 6, 23, .08);
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(2, 6, 23, .08);
    position: relative;
    padding: 14px 14px 16px;
    overflow: hidden;
    z-index: 4;
    transform: translateZ(0);
    will-change: transform;
    transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .45s ease, background .45s ease, filter .6s var(--ease), opacity .45s var(--ease), max-height .6s var(--ease), padding .45s var(--ease), margin .45s var(--ease)
  }

  #iso-cardstack .iso-card:not(:first-child) {
    margin-left: var(--stack-overlap)
  }

  #iso-cardstack .iso-card:hover {
    transform: translateY(calc(var(--hover-raise)*-1)) scale(var(--hover-scale));
    box-shadow: 0 20px 46px rgba(37, 99, 235, .18);
    border-color: rgba(37, 99, 235, .28);
    z-index: 5
  }

  #iso-cardstack .iso-card:hover~.iso-card {
    transform: translateX(var(--stack-shift))
  }

  #iso-cardstack .card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
  }

  #iso-cardstack .ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    color: #2563eb;
    background: linear-gradient(180deg, #f7faff 0%, #eef5ff 100%);
    border: 1px solid rgba(37, 99, 235, .18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9)
  }

  #iso-cardstack .ico svg {
    width: 22px;
    height: 22px;
    display: block
  }

  #iso-cardstack .card-title {
    margin: 0;
    font-weight: 900;
    letter-spacing: -.01em;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.25
  }

  #iso-cardstack .card-title strong {
    color: #2563eb;
    font-weight: 900
  }

  #iso-cardstack .bar {
    position: relative;
    height: 5px;
    width: calc(100% - 28px);
    margin: 10px 0 10px 6px
  }

  #iso-cardstack .emptybar {
    background: #e6edf6;
    width: 100%;
    height: 100%;
    border-radius: 999px
  }

  #iso-cardstack .filledbar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 55%, #1e3a8a 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .18);
    transition: width .6s ease-out
  }

  #iso-cardstack .iso-card.fill-static .filledbar {
    width: var(--fill-target);
  }

  #iso-cardstack .iso-card.fill-hover .filledbar {
    width: 0;
  }

  #iso-cardstack .iso-card.fill-hover:hover .filledbar {
    width: var(--fill-target);
  }

  #iso-cardstack .card-text {
    margin: 8px 2px 0;
    color: #2b3240;
    font-size: 14px;
    line-height: 1.6
  }

  #iso-cardstack .iso-card::after {
    content: "";
    position: absolute;
    inset: -40% -120%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .26) 48%, transparent 62%);
    transform: translateX(-120%) rotate(14deg);
    opacity: 0;
    pointer-events: none
  }

  #iso-cardstack .iso-card:hover::after {
    animation: isoCardShine 1.05s ease-out 1 forwards
  }

  @keyframes isoCardShine {
    0% {
      transform: translateX(-120%) rotate(14deg);
      opacity: 0
    }

    30% {
      opacity: .16
    }

    55% {
      opacity: .22
    }

    100% {
      transform: translateX(120%) rotate(14deg);
      opacity: 0
    }
  }

  /* ======= MOBILE (=860px): quattro card tutte visibili, con leggera sovrapposizione; la attiva si ingrandisce ======= */
  @media (max-width:1100px) {
    .alc-iso-elegant {
      --left-offset: 32px
    }
  }

  @media (max-width:860px) {
    .alc-iso-elegant {
      --underlap: 14px;
      /* piccola porzione della card sotto che finisce dietro a quella sopra */
      --stack-gap: 16px;
      /* distanza base tra le card */
      --active-scale: 1.04;
      /* ingrandimento card attiva */
    }

    .alc-iso-elegant .iso-left {
      transform: none;
      max-width: min(780px, 92vw);
      margin: 0 auto
    }

    .alc-iso-elegant .iso-container {
      padding: 46px 16px 140px
    }

    #iso-cardstack .iso-cards {
      flex-direction: column;
      gap: 0;
      width: 100%;
      min-height: unset;
      position: relative;
      overflow: visible;
      isolation: isolate;
    }

    /* Tutte le card piene e visibili, una sotto l'altra */
    #iso-cardstack .iso-card {
      width: 100%;
      min-height: auto;
      margin-left: 0 !important;
      border-radius: 12px;
      position: relative;
      transform: scale(1);
      opacity: 1;
      margin-top: var(--stack-gap);
      box-shadow: 0 10px 26px rgba(2, 6, 23, .10);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    }

    /* Leggera sovrapposizione: ogni card entra un po' sotto la precedente */
    #iso-cardstack .iso-card+.iso-card {
      margin-top: calc(var(--stack-gap) - var(--underlap));
    }

    /* Strati: la prima sopra, poi a scendere; la attiva sempre sopra */
    #iso-cardstack .iso-card:nth-child(1) {
      z-index: 4;
    }

    #iso-cardstack .iso-card:nth-child(2) {
      z-index: 3;
    }

    #iso-cardstack .iso-card:nth-child(3) {
      z-index: 2;
    }

    #iso-cardstack .iso-card:nth-child(4) {
      z-index: 1;
    }

    #iso-cardstack .iso-card.is-active {
      transform: scale(var(--active-scale));
      z-index: 10;
      box-shadow: 0 18px 40px rgba(2, 6, 23, .16);
    }

    /* NIENTE hide dei contenuti: barra e testo restano sempre visibili */
    .alc-iso-elegant .title,
    .alc-iso-elegant .subtitle {
      overflow-wrap: anywhere;
      word-break: break-word
    }
  }

  @media (max-width:720px) {
    .alc-iso-elegant .title {
      font-size: clamp(36px, 5vw, 50px)
    }
  }

#pf-successi3 {
    --pfb1: #1e3a8a;
    --pfb2: #2563eb;
    --brand-blue: #2563eb;
    --pfb3: #60a5fa;
    --ink: #0f172a;
    --muted: #5b6b7d;
    --card: #fff;
    --bdr: rgba(37, 99, 235, .35);
    --radius: 18px;
    --dur: 420ms;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --left-offset: 0px;
    --left-y-nudge: -10px;
    --right-nudge: 0px;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    padding: 28px 0 32px;
    overflow-x: clip;
  }

  #pf-successi3 * {
    box-sizing: border-box
  }

  .pf-s3-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 24px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch
  }

  .pf-s3-left {
    position: relative;
    transform: translateX(var(--left-offset)) translateY(var(--left-y-nudge));
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 440px
  }

  .pf-s3-left-bg {
    position: absolute;
    top: clamp(-80px, -6vw, -24px);
    left: clamp(-100px, -7vw, -28px);
    width: clamp(300px, 36vw, 440px);
    height: clamp(300px, 36vw, 440px);
    pointer-events: none;
    z-index: 0
  }

  .pf-s3-left-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .08))
  }

  .pf-s3-left> :not(.pf-s3-left-bg) {
    position: relative;
    z-index: 1
  }

  .pf-s3-eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pfb2);
    font-weight: 800;
    margin-bottom: 6px
  }

  .pf-s3-title {
    margin: 0 0 10px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.02em;
    font-size: clamp(36px, 5vw, 50px);
    line-height: 1.04
  }

  .pf-s3-title .pf-s3-brand {
    color: var(--pfb2)
  }

  .pf-s3-rule {
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(140deg, var(--pfb1), var(--pfb2), var(--pfb3));
    box-shadow: 0 6px 16px rgba(37, 99, 235, .25);
    display: block;
    margin: 6px 0 14px
  }

  .pf-s3-lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 18px;
    max-width: 54ch
  }

  /* Solo il sottotitolo scelto in nero */
  .pf-s3-lead.pf-s3-lead--nero {
    color: #000;
  }

  .pf-s3-mobile {
    display: none
  }

  .pf-s3-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px
  }

  .pf-s3-q {
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    min-height: clamp(44px, 11vw, 58px);
    padding: 10px 12px 20px;
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: .2px;
    border: 1px solid rgba(37, 99, 235, .25);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    transition: box-shadow .18s, border-color .18s;
    line-height: 1
  }

  .pf-s3-q[aria-selected="true"] {
    box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
    border-color: rgba(37, 99, 235, .40)
  }

  .pf-s3-q[aria-selected="true"]::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(140deg, var(--pfb1), var(--pfb2), var(--pfb3));
    box-shadow: 0 4px 10px rgba(37, 99, 235, .22)
  }

  .pf-s3-mobile-detail {
    margin-top: 14px;
    border: 1px solid rgba(37, 99, 235, .14);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .10);
    padding: 10px 10px 14px
  }

  .pf-s3-mobile-card .pf-s3-head {
    padding: 12px 12px 8px
  }

  .pf-s3-mobile-card .pf-s3-body {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 6px 12px 12px
  }

  .pf-s3-mobile-card .pf-s3-toggle {
    display: none !important
  }

  .pf-s3-mobile-card .pf-s3-mini-line {
    width: 100%;
    height: 120px
  }

  .pf-s3-mobile-card .pf-s3-mini-area {
    width: 100%;
    height: 160px
  }

  .pf-s3-right {
    position: relative;
    transform: translateX(var(--right-nudge))
  }

  .pf-s3-stage {
    position: relative;
    height: 440px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .10);
    overflow: hidden;
    padding: 12px
  }

  .pf-s3-card {
    position: absolute;
    background: var(--card);
    border: 2px solid var(--bdr);
    border-radius: var(--radius);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .12);
    transition: left var(--dur) var(--ease), top var(--dur) var(--ease), width var(--dur) var(--ease), height var(--dur) var(--ease), transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    overflow: hidden;
    cursor: pointer;
    z-index: 0
  }

  .pf-s3-card.open {
    z-index: 10
  }

  .pf-s3-card:focus-visible {
    outline: 2px solid var(--pfb3);
    outline-offset: 2px
  }

  .pf-s3-stage.is-base .pf-s3-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 42px rgba(15, 23, 42, .16)
  }

  .pf-s3-toggle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 4;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, .25);
    background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s, box-shadow .18s, border-color .18s;
    pointer-events: auto
  }

  .pf-s3-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(37, 99, 235, .18);
    border-color: rgba(37, 99, 235, .38)
  }

  .pf-s3-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--pfb2)
  }

  .pf-s3-card.open .pf-s3-toggle svg {
    transform: rotate(45deg);
    transition: transform .25s ease
  }

  .pf-s3-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 8px
  }

  .pf-s3-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pfb2);
    background: linear-gradient(180deg, #f7faff 0%, #eef5ff 100%);
    border: 1px solid rgba(37, 99, 235, .18);
    flex: 0 0 auto
  }

  .pf-s3-ico svg {
    width: 30px;
    height: 30px;
    display: block
  }

  .pf-s3-text {
    display: flex;
    flex-direction: column;
    min-width: 0
  }

  .pf-s3-h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.01em;
    color: #0f172a
  }

  .pf-s3-sub {
    margin: 2px 0 0;
    color: #6b7a92;
    font-size: 13px
  }

  .pf-s3-body {
    padding: 6px 16px 16px;
    color: #2b3240;
    line-height: 1.65;
    font-size: 15px;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease)
  }

  .pf-s3-card.open .pf-s3-body {
    height: calc(100% - 88px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden
  }

  .pf-s3-card.open.pf-s3-revealed .pf-s3-body {
    opacity: 1;
    transform: none;
    pointer-events: auto
  }

  .pf-s3-badges.inline {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px
  }

  .pf-s3-badge {
    background: linear-gradient(140deg, var(--pfb1), var(--pfb2), var(--pfb3));
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, .18)
  }

  .pf-s3-chip {
    background: #f3f7ff;
    border: 1px solid rgba(37, 99, 235, .18);
    color: #0b1220;
    font-weight: 700;
    font-size: 11px;
    padding: 5px 9px;
    border-radius: 999px
  }

  .pf-s3-mini-line {
    width: 100%;
    height: 90px
  }

  .pf-s3-mini-area {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
    border: 1px solid rgba(37, 99, 235, .08)
  }

  .pf-s3-card[data-id="b"].open .pf-s3-mini-area,
  .pf-s3-card[data-id="d"].open .pf-s3-mini-area {
    height: 200px
  }

  .pf-s3-card[data-id="c"].open .pf-s3-mini-line {
    height: 170px
  }

  .pf-s3-card.pf-s3-mini {
    opacity: .9;
    transform: scale(.68)
  }

  .pf-s3-card.pf-s3-mini .pf-s3-text,
  .pf-s3-card.pf-s3-mini .pf-s3-body {
    display: none !important
  }

  .pf-s3-card.pf-s3-mini .pf-s3-head {
    justify-content: center;
    padding: 10px
  }

  .pf-s3-card.pf-s3-mini .pf-s3-ico {
    width: 46px;
    height: 46px
  }

  .pf-s3-card.pf-s3-mini .pf-s3-toggle {
    bottom: 8px
  }

  .pf-s3-card.pf-s3-mini-right .pf-s3-toggle {
    left: 8px;
    right: auto
  }

  .pf-s3-card.pf-s3-mini-left .pf-s3-toggle {
    right: 8px;
    left: auto
  }

  .pf-s3-grid-tiles {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 8px
  }

  .pf-s3-grid-tiles span {
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(180deg, #f1f6ff, #eaf2ff);
    border: 1px solid rgba(37, 99, 235, .08)
  }

  /* ===== Responsive ===== */
  @media (max-width:1024px) {
    .pf-s3-wrap {
      grid-template-columns: 1fr;
      max-width: 1100px
    }

    .pf-s3-left,
    .pf-s3-right {
      transform: none
    }

    .pf-s3-stage {
      height: 520px;
      width: 100%;
      max-width: 100%;
      margin: 0 auto
    }

    .pf-s3-left-bg {
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: clamp(260px, 70vw, 420px);
      height: clamp(260px, 70vw, 420px)
    }
  }

  @media (max-width:640px) {
    .pf-s3-wrap {
      padding-left: clamp(12px, 4vw, 24px);
      padding-right: clamp(12px, 4vw, 24px)
    }

    .pf-s3-left {
      transform: none;
      min-height: auto
    }

    .pf-s3-stage {
      height: auto;
      min-height: 520px
    }

    .pf-s3-mobile {
      display: block
    }

    .pf-s3-right {
      display: none
    }

    .pf-s3-left-bg {
      left: auto;
      transform: none;
      right: clamp(-40px, -6vw, -16px);
      top: clamp(-120px, -18vw, -32px)
    }
  }

.where-section {
    --pfb1: #1e3a8a;
    --pfb2: #2563eb;
    --brand-blue: #2563eb;
    --pfb3: #60a5fa;
    --ink: #0b132a;
    --muted: #5b728a;
    --card: #fff;
    --b: rgba(2, 6, 23, .12);
    /* === Nuove var per mobile === */
    --map-ratio-mobile: 16/9;
    /* cambia in 3/2 o 21/9 se vuoi più "schiacciata" */
    --map-height-fallback: clamp(180px, 44vw, 260px);
    /* fallback per browser senza aspect-ratio */

    font-family: "Montserrat", sans-serif;
    background: #fff;
  }

  .where-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px;
  }

  .where-header {
    text-align: center;
    margin-bottom: 42px;
  }
  .where-title {
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--ink);
    margin: 0;
  }

  .where-title .brand-blue {
    color: var(--brand-blue);
  }

  .where-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 auto;
    max-width: 60ch;
  }

  .where-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }

  @media(min-width:1024px) {
    .where-grid {
      grid-template-columns: minmax(0, 1fr) 420px;
    }
  }

  /* ===== MAPPA ===== */
  .map-box {
    border: 1px solid var(--b);
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .06);
    overflow: hidden;
    min-height: 420px;
    /* Desktop default */
    height: 100%;
  }

  .map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Mobile: mappa più orizzontale (meno alta) */
  @media (max-width: 1023.98px) {
    .map-box {
      min-height: 0;
      /* annulla i 420px */
      height: auto;
      /* lascia calcolare all'aspect-ratio */
      aspect-ratio: var(--map-ratio-mobile);
    }

    /* Fallback per browser che non supportano aspect-ratio */
    @supports not (aspect-ratio: 1 / 1) {
      .map-box {
        height: var(--map-height-fallback);
      }
    }

    .map-iframe {
      height: 100%;
    }
  }

  /* ===== CARD INFO ===== */
  .info-card {
    border: 1px solid var(--b);
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .06);
    background: var(--card);
    height: 100%;
  }

  .info-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
  }

  .info-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 0 20px;
    letter-spacing: -.01em;
    color: var(--ink);
  }

  .info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f7faff 0%, #eaf2ff 100%);
    border: 1px solid rgba(37, 99, 235, .20);
    color: var(--pfb2);
    flex: 0 0 36px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  }

  .info-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .info-icon svg * {
    fill: none !important;
  }

  .info-label {
    font-size: 13px;
    color: #6b7a92;
    margin-bottom: 2px;
    font-weight: 600;
  }

  .info-value {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.5;
  }

  .info-value a {
    color: var(--ink) !important;
    text-decoration: none;
  }

  .info-value a:hover {
    text-decoration: underline;
  }

  .info-spacer {
    flex: 1 1 auto;
  }

  /* === Bottone IDENTICO a “Conosci ALC” (stile chiaro, testo blu, shimmer) === */
  .btn-map {
    margin-top: 22px;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--pfb2);
    background: linear-gradient(90deg, #f6f7f9 0%, #ffffff 48%, #eef2f5 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 10px 26px rgba(2, 6, 23, .10), 0 0 0 2px rgba(255, 255, 255, .80) inset;
    position: relative;
    overflow: hidden;
    transition: filter .18s ease;
  }

  .btn-map:hover {
    filter: brightness(.99);
  }

  .btn-map::after {
    content: "";
    position: absolute;
    inset: -40% -120%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .38) 45%, rgba(255, 255, 255, 0) 60%);
    transform: translateX(-120%) rotate(16deg);
    opacity: 0;
    pointer-events: none;
  }

  .btn-map:hover::after,
  .btn-map:focus-visible::after {
    animation: btnShimmer 1.2s ease-out 1 forwards;
  }

  @keyframes btnShimmer {
    0% {
      transform: translateX(-120%) rotate(16deg);
      opacity: 0;
    }

    30% {
      opacity: .18;
    }

    55% {
      opacity: .28;
    }

    100% {
      transform: translateX(120%) rotate(16deg);
      opacity: 0;
    }
  }

  .btn-map svg {
    width: 20px;
    height: 20px;
    stroke: var(--pfb2);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .btn-map svg * {
    fill: none !important;
  }




