/* visibile + scroll senza bloccare transform Framer */
    [data-framer-name="Posters"] [data-framer-name="Section Content"] {
      opacity: 1 !important;
      transform: none !important;
    }
    [data-framer-name="Posters"] [style*="opacity:0"] {
      opacity: 1 !important;
    }
    /* 3 anelli concentrici — sezione posters */
    @keyframes posters-ring-ccw {
      from { transform: rotate(0deg); }
      to   { transform: rotate(-360deg); }
    }
    @keyframes posters-ring-cw {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    /* anello esterno + interno: -360° / 40s */
    [data-framer-name="Posters"] .framer-K5QaK,
    [data-framer-name="Posters"] .framer-ugu71b {
      animation: posters-ring-ccw 40s linear infinite !important;
      transform-origin: 50% 50%;
    }
    /* anello centrale: +360° / 50s (senso opposto) */
    [data-framer-name="Posters"] .framer-a6fmv9 {
      animation: posters-ring-cw 50s linear infinite !important;
      transform-origin: 50% 50%;
    }
  
    html, body { margin: 0; padding: 0; background: #F9F6F1; }
    #main, [data-framer-root] { min-height: auto !important; height: auto !important; }
    [data-framer-name="Posters"] { margin: 0 auto; max-width: 100%; }

/* isola hero dal CSS Framer — overflow-x solo sui poster, non sul body (rompe sticky) */
    .periodiq-page {
      position: relative;
      font-family: var(--font-tt-firs-neue);
      overflow: visible;
      background: transparent;
      --header-h: 72px;
      --scene-w: 622px;
      --scene-h: 558px;
      --scene-scale: 1;
      --hero-banner-bg-color: #F9F6F1;
      --hero-banner-bg-image: url("banner.jpg");
      --hero-content-x: var(--page-content-x);
    }

    .periodiq-page .hero-banner,
    .periodiq-page .shell,
    .periodiq-page .scroll-stage,
    .periodiq-page .hero-pin {
      overflow: visible;
    }

    .periodiq-page .hero-banner {
      position: relative;
      z-index: 3;
      width: 100%;
      min-height: 0;
      background-color: transparent;
      background-image: none;
    }

    /* pattern unico su hero-banner — header trasparente lo lascia passare */
    .periodiq-page .hero-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-color: var(--hero-banner-bg-color);
      background-image: var(--hero-banner-bg-image);
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-attachment: fixed;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    .periodiq-page .hero-banner:not(.is-inview)::before {
      visibility: hidden;
    }

    .periodiq-page .hero-banner::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 180px;
      pointer-events: none;
      z-index: 1;
      background: linear-gradient(
        180deg,
        rgba(249, 246, 241, 0) 0%,
        rgba(249, 246, 241, 0.72) 52%,
        #F9F6F1 100%
      );
    }

    .periodiq-page .hero-banner .shell {
      max-width: none;
      margin: 0;
      padding: 0;
      position: relative;
      z-index: 2;
    }

    .periodiq-page .hero {
      max-width: var(--page-max-w);
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      box-sizing: border-box;
      padding: 16px var(--hero-content-x) 20px;
    }

    /* desktop: header sticky con stesso pattern fixed (allineato al ::before) */
    .periodiq-page .hero-banner > header {
      position: sticky !important;
      top: 0 !important;
      z-index: 300 !important;
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
      padding-left: max(var(--hero-content-x), calc((100% - var(--page-max-w)) / 2 + var(--hero-content-x))) !important;
      padding-right: max(var(--hero-content-x), calc((100% - var(--page-max-w)) / 2 + var(--hero-content-x))) !important;
      box-sizing: border-box !important;
      border-bottom: 1px solid rgba(35, 37, 35, 0.1) !important;
      background-color: var(--hero-banner-bg-color) !important;
      background-image: var(--hero-banner-bg-image) !important;
      background-size: cover !important;
      background-position: center top !important;
      background-repeat: no-repeat !important;
      background-attachment: fixed !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }

    .periodiq-page .scroll-stage {
      margin-top: 0;
      height: auto !important;
      min-height: 0 !important;
    }

    .periodiq-page .hero-pin {
      position: relative;
      height: auto;
      background: transparent;
      z-index: 1;
      overflow: visible;
      display: flex;
      flex-direction: column;
    }

    .periodiq-page .hero-visual,
    .periodiq-page .hero-scene,
    .periodiq-page .float-card,
    .periodiq-page .hunt-badge {
      z-index: 1;
    }

    .periodiq-page .phone {
      box-shadow:
        0 24px 40px rgba(15, 23, 42, 0.1),
        0 8px 16px rgba(15, 23, 42, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .periodiq-page .float-card {
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    }

    .periodiq-page .hero-copy {
      padding-top: 0;
    }

    @media (min-width: 1025px) {
      :root {
        --page-edge-x: 40px;
        --content-shift-x: clamp(40px, 5vw, 72px);
      }

      .periodiq-page .hero-banner > header {
        padding-left: var(--page-edge-x) !important;
        padding-right: var(--page-edge-x) !important;
      }

      .site-footer-inner {
        padding: 28px var(--page-edge-x);
      }

      .periodiq-page .scroll-stage {
        position: relative;
        height: auto !important;
        min-height: 0 !important;
        padding-bottom: 0;
      }

      .periodiq-page .hero-pin {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        overflow: visible !important;
      }

      .periodiq-page .hero {
        display: grid !important;
        grid-template-columns: 1fr 1.08fr !important;
        grid-template-rows: auto auto !important;
        align-items: center !important;
        text-align: left !important;
        gap: 32px 8px !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 44px var(--page-edge-x) 0 !important;
        flex: 0 0 auto !important;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
      }

      .hero-proof-bar {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-top: 12px;
        padding-bottom: 8px;
      }

      .hero-proof-viewport {
        mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 100%);
      }

      .periodiq-page .hero-banner::after {
        display: none;
      }

      .periodiq-page .hero-copy {
        order: unset;
        width: auto;
        z-index: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: center;
        margin-left: var(--content-shift-x);
      }

      .periodiq-page h1,
      .periodiq-page .lead {
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .periodiq-page .lead {
        display: block !important;
        -webkit-line-clamp: unset;
        overflow: visible;
      }

      .periodiq-page .actions {
        justify-content: flex-start !important;
      }

      .posters-wrap {
        overflow-x: visible;
      }

      .posters-wrap [data-framer-name="Posters"].framer-3i3lvz,
      .posters-wrap [data-framer-name="Posters"] > .framer-3i3lvz {
        justify-content: flex-start !important;
        place-content: center flex-end !important;
        padding: 100px 0 100px calc(var(--page-edge-x) + var(--content-shift-x)) !important;
        overflow: visible !important;
      }

      .posters-wrap [data-framer-name="Posters"] {
        overflow: visible !important;
      }

      .posters-wrap .framer-198u3qb {
        width: 100% !important;
        max-width: none !important;
        display: flex !important;
        flex-flow: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: clamp(48px, 6vw, 80px) !important;
        overflow: visible !important;
      }

      .posters-wrap .framer-jbmfu2,
      .posters-wrap [data-framer-name="Section Content"] {
        flex: 0 0 420px !important;
        width: 420px !important;
        align-items: flex-start !important;
        align-content: flex-start !important;
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 2 !important;
      }

      .posters-wrap .framer-1bzrap4 {
        flex: 1 0 0 !important;
        width: 1px !important;
        min-width: clamp(320px, calc(100vw - 640px), 680px) !important;
        max-width: none !important;
        height: 680px !important;
        overflow: visible !important;
        position: relative !important;
        margin: 0 0 0 auto !important;
      }

      /* 1025–1199: nascondi varianti tablet/mobile duplicate, mostra desktop */
      @media (min-width: 1025px) and (max-width: 1199.98px) {
        .posters-wrap .ssr-variant.hidden-12ilb05:not(.hidden-6z2ajy),
        .posters-wrap .ssr-variant.hidden-ylb0ax:not(.hidden-6z2ajy) {
          display: none !important;
        }

        .posters-wrap .ssr-variant.hidden-6z2ajy {
          display: block !important;
        }

        .posters-wrap .framer-jbmfu2,
        .posters-wrap [data-framer-name="Section Content"] {
          flex: 0 0 min(360px, 32vw) !important;
          width: min(360px, 32vw) !important;
        }

        .posters-wrap .framer-1bzrap4 {
          height: 680px !important;
          overflow: visible !important;
          --posters-adapt-scale: clamp(0.68, calc(100vw / 1560), 0.88);
          transform: scale(var(--posters-adapt-scale));
          transform-origin: 100% 50%;
        }

        /* CSS tablet Framer (810–1200) usa left:48% — ripristiniamo posizioni desktop */
        .posters-wrap .framer-16tgzvp-container {
          bottom: -1066px !important;
          right: -784px !important;
          left: auto !important;
          top: auto !important;
          height: auto !important;
          transform: none !important;
        }

        .posters-wrap .framer-18k70e2-container {
          top: 210px !important;
          right: -627px !important;
          left: auto !important;
          bottom: auto !important;
          transform: none !important;
        }

        .posters-wrap .framer-17f30ek-container {
          top: 330px !important;
          right: -489px !important;
          left: auto !important;
          bottom: auto !important;
          transform: none !important;
        }
      }

      /* 1200–1400: variante desktop già attiva, solo scala proporzionale */
      @media (min-width: 1200px) and (max-width: 1400px) {
        .posters-wrap .framer-jbmfu2,
        .posters-wrap [data-framer-name="Section Content"] {
          flex: 0 0 min(360px, 32vw) !important;
          width: min(360px, 32vw) !important;
        }

        .posters-wrap .framer-1bzrap4 {
          --posters-adapt-scale: clamp(0.75, calc(100vw / 1560), 0.94);
          transform: scale(var(--posters-adapt-scale));
          transform-origin: 100% 50%;
        }
      }

      .posters-wrap .framer-u8iiuh {
        align-items: flex-start !important;
      }

      .posters-wrap .framer-a3tpi1-container {
        align-self: flex-start !important;
        margin-left: 0 !important;
        margin-right: auto !important;
      }

      .posters-wrap [data-framer-name="Section Content"] .framer-text {
        --framer-text-alignment: left !important;
        text-align: left !important;
      }

      .register-section .register-inner {
        max-width: none;
        width: 100%;
        padding: 56px var(--page-edge-x);
      }

      .register-section .register-grid {
        grid-template-columns: 1fr minmax(0, 380px) !important;
        gap: clamp(48px, 8vw, 120px) !important;
        align-items: start;
      }

      .register-section .col-intro {
        grid-column: 1;
        max-width: 36rem;
        padding-left: var(--content-shift-x);
      }

      .register-section .register-grid .col-form {
        grid-column: 2;
        justify-self: start;
      }

      .periodiq-page .hero-visual {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        order: unset;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 24px !important;
        min-height: 0 !important;
        height: auto !important;
        overflow: visible !important;
      }

      .periodiq-page .phone {
        top: 46%;
      }

      .shell > header,
      .hero-banner > header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
      }
      .shell > header .header-right,
      .hero-banner > header .header-right {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center !important;
        margin-left: auto !important;
      }

      .posters-wrap {
        margin-top: 0;
        z-index: 2;
      }


    }

    /* mobile + iPad: colonna + sticky scroll schermi */
    @media (max-width: 1024px) {
      .periodiq-page .hero-banner {
        min-height: 0;
        z-index: auto;
      }

      .shell > header,
      .hero-banner > header {
        --header-content-h: 72px;
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: space-between !important;
        gap: 14px 16px !important;
        min-height: calc(var(--header-content-h) + env(safe-area-inset-top, 0px)) !important;
        height: calc(var(--header-content-h) + env(safe-area-inset-top, 0px)) !important;
        padding-top: env(safe-area-inset-top, 0px) !important;
        padding-bottom: 0 !important;
        box-sizing: border-box !important;
      }
      .shell > header .brand,
      .hero-banner > header .brand {
        display: flex !important;
        align-items: center !important;
        align-self: stretch !important;
        height: 100% !important;
        min-height: var(--header-content-h) !important;
      }
      .shell > header .header-right,
      .hero-banner > header .header-right {
        display: flex !important;
        align-items: center !important;
        align-self: stretch !important;
        height: 100% !important;
        min-height: var(--header-content-h) !important;
        margin-left: auto !important;
        gap: 8px;
      }

      .periodiq-page {
        --scene-h: 600px;
        --scene-scale: var(--initial-scene-scale, 0.52);
      }

      .periodiq-page .hero-banner {
        z-index: auto;
        padding-bottom: 12px;
      }

      /* mobile/iPad: un solo layer, scroll naturale, header non sticky */
      .periodiq-page .hero-banner::before {
        background-attachment: scroll;
      }

      .periodiq-page .hero-banner > header {
        position: relative !important;
        top: auto !important;
        background: transparent !important;
        background-image: none !important;
      }

      .periodiq-page .hero-banner::after {
        display: none !important;
      }

      .periodiq-page .scroll-stage {
        position: relative;
        height: auto !important;
        margin-top: 0;
        padding-bottom: 0;
      }

      .periodiq-page .hero-pin {
        position: relative !important;
        top: auto !important;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 1 !important;
      }

      .periodiq-page .hero {
        display: flex !important;
        flex-direction: column !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
        gap: 30px !important;
        padding: 16px var(--hero-content-x) 0 !important;
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        width: 100% !important;
        overflow: visible !important;
      }

      .periodiq-page .hero-copy {
        flex: 0 0 auto;
        width: 100%;
        max-width: 520px;
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0;
      }

      .periodiq-page h1,
      .periodiq-page .lead {
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .periodiq-page h1 {
        font-size: clamp(1.65rem, 4.5vw, 2.75rem) !important;
        margin-bottom: 10px !important;
      }

      .periodiq-page .lead {
        display: block !important;
        font-size: clamp(14px, 3.5vw, 17px);
        font-weight: 700;
        line-height: 1.55;
        text-align: center;
        max-width: min(20rem, 82%);
        margin-bottom: 16px !important;
        -webkit-line-clamp: unset;
        overflow: visible;
      }

      .periodiq-page .actions {
        justify-content: center !important;
      }

      .periodiq-page .hero-visual {
        flex: 0 0 auto;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: calc(100% + 2 * var(--hero-content-x));
        max-width: 100vw;
        margin-left: calc(-1 * var(--hero-content-x)) !important;
        margin-right: calc(-1 * var(--hero-content-x)) !important;
        height: calc(var(--scene-h) * var(--scene-scale));
        min-height: calc(var(--scene-h) * var(--scene-scale));
        max-height: calc(var(--scene-h) * var(--scene-scale));
        padding: 0 !important;
        overflow: visible !important;
      }

      .periodiq-page .hero-scene-viewport {
        flex-shrink: 0;
        position: relative;
        overflow: visible;
      }

      .periodiq-page .hero-proof-bar {
        flex-shrink: 0;
        width: 100%;
        max-width: none;
        margin: 18px 0 0 0 !important;
        padding: 0 var(--hero-content-x) 12px !important;
        position: relative;
        z-index: 10;
        overflow-x: hidden;
        overflow-y: visible;
        box-sizing: border-box;
      }

      .periodiq-page .hero-proof-viewport {
        mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
      }

      .periodiq-page .hero-proof-set { gap: 8px; }

      .periodiq-page .hero-proof-track { animation-duration: 24s; }

      .how-wrap {
        margin-top: 0;
      }


    }

    @media (max-width: 768px) {
      .periodiq-page .hero-banner > header,
      .shell > header {
        --header-content-h: 80px;
        min-height: calc(80px + env(safe-area-inset-top, 0px)) !important;
        height: calc(80px + env(safe-area-inset-top, 0px)) !important;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .periodiq-page .hero {
        padding: 44px var(--hero-content-x) 16px !important;
      }

      .periodiq-page h1 {
        font-size: clamp(1.75rem, 3.5vw, 2.35rem) !important;
        margin-bottom: 8px !important;
      }

      .periodiq-page .actions {
        margin-bottom: 10px !important;
        gap: 14px;
      }
    }

    @media (max-width: 768px) {
      .periodiq-page { --hero-content-x: 20px; }

      .periodiq-page .hero-banner .shell { padding: 0 !important; }

      .periodiq-page h1 {
        font-size: clamp(1.55rem, 6.8vw, 2rem) !important;
        margin-bottom: 8px !important;
      }

      .periodiq-page .lead {
        font-size: clamp(13px, 3.8vw, 16px);
        max-width: min(16.5rem, 72%);
        margin-bottom: 14px !important;
      }

      .periodiq-page .actions {
        gap: 12px;
      }

      .periodiq-page .cta-btn {
        padding: 11px 22px;
        font-size: 13px;
      }

      .hero-proof-item {
        font-size: 11.5px;
        padding: 7px 13px;
      }
    }

    @media (max-width: 640px) {
      .periodiq-page .hero-banner .shell { padding: 0 !important; }
      .hero-proof-item {
        font-size: 12px;
        padding: 7px 14px;
      }
    }

    .posters-wrap {
      width: 100%;
      overflow-x: clip;
      background: #F9F6F1;
      position: relative;
      z-index: 2;
      margin-top: 0;
      padding-top: 0;
      content-visibility: visible;
    }

    .posters-wrap::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 80px;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(
        180deg,
        rgba(249, 246, 241, 0) 0%,
        rgba(249, 246, 241, 0.72) 52%,
        #F9F6F1 100%
      );
    }

    .posters-wrap #main,
    .posters-wrap [data-framer-root] {
      min-height: auto !important;
      height: auto !important;
      position: relative;
      z-index: 1;
      background-color: #F9F6F1 !important;
      background-image: none !important;
    }

    .posters-wrap [data-framer-name="Background Gradient"],
    .posters-wrap .framer-hgeq96 {
      display: none !important;
    }

    .posters-wrap [data-framer-name="Posters"] {
      min-height: 680px !important;
      height: 680px !important;
      position: relative;
      z-index: 1;
      background-color: #F9F6F1 !important;
      background-image: none !important;
      margin: 0 auto;
      max-width: 100%;
      overflow-x: clip;
    }

    @media (max-width: 1024px) {
      .posters-wrap [data-framer-name="Posters"] {
        min-height: 500px !important;
        height: auto !important;
        overflow: visible !important;
      }
    }

    /* Framer tablet (810–1200px): altrimenti il titolo sparisce (height:1px + overflow:hidden) */
    @media (min-width: 810px) and (max-width: 1199.98px) {
      .posters-wrap .framer-198u3qb {
        height: auto !important;
        min-height: min-content !important;
        overflow: visible !important;
        flex: none !important;
        width: 100% !important;
      }

      .posters-wrap .framer-jbmfu2,
      .posters-wrap [data-framer-name="Section Content"] {
        position: relative !important;
        z-index: 2 !important;
        flex-shrink: 0 !important;
      }
    }

    @media (max-width: 640px) {
      .posters-wrap [data-framer-name="Posters"] {
        min-height: 460px !important;
        height: auto !important;
      }
    }

    /* mobile: dopo le regole base */
    @media (max-width: 1024px) {
      .periodiq-page .hero-banner {
        z-index: auto;
        padding-bottom: 16px;
      }

      .posters-wrap {
        position: relative;
        z-index: auto;
        margin-top: 0;
        padding-top: 40px;
        background: #F9F6F1;
      }

      .posters-wrap::before {
        height: 48px;
      }
    }

    @media (max-width: 640px) {
      .posters-wrap {
        padding-top: 32px;
      }
    }


    .how-wrap,
    .zigzag-wrap,
    .testimonials-wrap,
    .faq-wrap {
      position: relative;
      z-index: 6;
      content-visibility: auto;
      contain-intrinsic-size: auto 720px;
    }

    .site-footer {
      content-visibility: visible;
      position: relative;
      z-index: 20;
    }

    /* ── Register form ── */
    html {
      scroll-padding-top: 0 !important;
    }

    .register-section {
      position: relative;
      z-index: 6;
      margin-top: 0;
      background: #232523 url("contact.jpg") center / cover no-repeat;
      scroll-margin-top: 0 !important;
      font-family: var(--font-tt-firs-neue);
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
    }

    .register-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px;
      color: #f9f6f1;
    }

    @media (min-width: 768px) {
      .register-inner { padding: 56px 32px; }
    }

    .register-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .col-intro {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    @media (min-width: 900px) {
      .register-grid {
        grid-template-columns: 1fr minmax(0, 380px);
        gap: 32px 40px;
        align-items: start;
      }

      .col-intro {
        grid-column: 1;
        grid-row: 1;
        gap: 20px;
        max-width: 36rem;
      }

      .register-grid .col-form {
        grid-column: 2;
        grid-row: 1;
      }
    }

    .register-section .col-label h3 {
      display: flex;
      align-items: center;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 400;
    }

    .register-section .col-label h3::before {
      content: "";
      display: block;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #017e48;
      margin-right: 8px;
      flex-shrink: 0;
    }

    .register-section .col-copy h1 {
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      line-height: 1.15;
      font-weight: 400;
      color: inherit;
      margin-bottom: 0;
    }

    .register-section .col-copy p {
      margin-top: 10px;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 300;
      max-width: 28rem;
    }

    .register-section .col-form {
      background: #fff;
      border-radius: 12px;
      color: #232523;
    }

    .register-section .form-card {
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (min-width: 640px) {
      .register-section .form-card { padding: 28px 24px; }
    }

    .register-section .form-benefits {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }

    .register-section .form-benefits li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      line-height: 1.4;
    }

    .register-section .form-benefits .check {
      color: #017e48;
      font-size: 15px;
      line-height: 1;
      margin-top: 1px;
      flex-shrink: 0;
    }

    .register-section .signup-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .register-section .field,
    .register-section .phone-row input {
      width: 100%;
      height: 42px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid #d0d0d0;
      background: #fff;
      font: inherit;
      font-size: 15px;
      color: #222;
    }

    .register-section .field::placeholder,
    .register-section .phone-row input::placeholder {
      color: #999;
    }

    .register-section .field:focus,
    .register-section .phone-row input:focus {
      outline: none;
      border-color: #017e48;
    }

    .register-section .field:disabled,
    .register-section .phone-row input:disabled,
    .register-section .submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .register-section .phone-row {
      display: flex;
      align-items: stretch;
      gap: 8px;
    }

    .register-section .phone-prefix {
      display: flex;
      align-items: center;
      height: 42px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid #d0d0d0;
      background: #f5f3ef;
      font-size: 15px;
      font-weight: 500;
      color: #222;
      user-select: none;
      flex-shrink: 0;
    }

    .register-section .phone-row input {
      flex: 1;
      min-width: 0;
    }

    .register-section .submit-btn {
      width: 100%;
      height: 42px;
      border: none;
      border-radius: 999px;
      background: #232523;
      color: #fff;
      font: inherit;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .register-section .submit-btn:hover:not(:disabled) {
      background: #014d2c;
    }

    .register-section .form-note {
      text-align: center;
      font-size: 11px;
      color: #999;
      margin-top: 8px;
    }

    .register-section .form-error {
      font-size: 13px;
      color: #b42318;
      min-height: 1.1em;
    }

    .register-section .success-panel {
      display: none;
      border: 1px solid #d0d0d0;
      border-radius: 12px;
      background: #fff;
      padding: 16px;
      text-align: center;
    }

    .register-section .success-panel.is-visible {
      display: block;
    }

    .register-section .success-panel .icon {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .register-section .success-panel h2 {
      font-size: 16px;
      font-weight: 600;
      color: #222;
      margin-bottom: 4px;
    }

    .register-section .success-panel p {
      font-size: 14px;
      color: #666;
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .register-section .success-panel .email {
      font-weight: 500;
      color: #222;
    }

    .register-section .success-reset {
      border: none;
      background: none;
      font: inherit;
      font-size: 14px;
      color: #017e48;
      text-decoration: underline;
      cursor: pointer;
    }

    /* ── How It Works ── */
    .how-wrap {
      background: transparent;
      font-family: var(--font-tt-firs-neue);
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
    }

    .how-wrap .how-section {
      padding: 48px 24px 40px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .how-wrap .how-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 40px;
    }

    .how-wrap .how-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(35, 37, 35, 0.12);
      background: rgba(249, 246, 241, 0.92);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #374151;
      margin-bottom: 22px;
    }

    .how-wrap .how-badge svg {
      flex-shrink: 0;
      color: #374151;
      opacity: 1;
    }

    .how-wrap .how-title {
      font-size: clamp(1.75rem, 3.2vw, 2.65rem);
      font-weight: 400;
      line-height: 1.22;
      letter-spacing: -0.03em;
      color: #0a0a0a;
      text-align: center;
    }

    .how-wrap .how-track {
      display: flex;
      flex-wrap: nowrap;
      align-items: stretch;
      justify-content: center;
      width: 100%;
      --card-gap: 6px;
      gap: var(--card-gap);
      overflow: visible;
    }

    .how-wrap .how-card-wrap {
      flex: 1 1 0;
      min-width: 0;
      position: relative;
      overflow: visible;
    }

    .how-wrap .how-card {
      width: 100%;
      height: 100%;
      background: rgba(255, 251, 244, 0.55);
      border: 1px solid rgba(181, 164, 138, 0.22);
      border-radius: 14px;
      padding: 22px 18px 18px;
      display: flex;
      flex-direction: column;
      min-height: 340px;
      position: relative;
      overflow: hidden;
    }

    .how-wrap .how-step {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: #737373;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .how-wrap .how-card-title {
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #0a0a0a;
      margin-bottom: 18px;
    }

    .how-wrap .how-art {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      min-height: 168px;
      margin-bottom: 12px;
      --art-w: 160px;
      --art-h: 152px;
    }

    .how-wrap .how-art-visual {
      width: var(--art-w);
      height: var(--art-h);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      isolation: isolate;
      transition: filter 0.45s ease;
    }

    .how-wrap .how-art-visual > * {
      position: relative;
      z-index: 1;
    }

    .how-wrap .how-art-visual::before,
    .how-wrap .how-art-visual::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      pointer-events: none;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.45s ease;
    }

    .how-wrap .how-art-visual::before {
      width: 200px;
      height: 200px;
      z-index: 0;
      background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 208, 130, 0.34) 0%,
        rgba(255, 218, 152, 0.14) 34%,
        rgba(255, 210, 140, 0.04) 58%,
        transparent 72%
      );
      filter: blur(18px);
    }

    .how-wrap .how-art-visual::after {
      width: 140px;
      height: 140px;
      z-index: 2;
      background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 214, 145, 0.52) 0%,
        rgba(255, 220, 158, 0.22) 38%,
        rgba(255, 210, 135, 0.06) 62%,
        transparent 78%
      );
      filter: blur(10px);
    }

    .how-wrap .how-art-visual.is-lit {
      filter:
        drop-shadow(0 0 16px rgba(255, 200, 120, 0.42))
        drop-shadow(0 0 28px rgba(255, 200, 120, 0.18));
    }

    .how-wrap .how-art-visual.is-lit::before {
      opacity: 0.55;
    }

    .how-wrap .how-art-visual.is-lit::after {
      opacity: 1;
    }

    .how-wrap .how-art-visual--list {
      height: auto;
      min-height: var(--art-h);
    }

    .how-wrap .art-signup-list {
      width: var(--art-w);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
    }

    .how-wrap .art-signup-list .pick-row {
      display: flex;
      align-items: center;
      padding: 10px 12px;
      background: #efefef;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    }

    .how-wrap .art-signup-list .pick-row.selected {
      background: #f5f5f5;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    }

    .how-wrap .art-signup-list .bars { flex: 1; min-width: 0; }

    .how-wrap .art-signup-list .bar {
      height: 5px;
      border-radius: 999px;
      background: #d4d4d4;
      margin-bottom: 6px;
    }

    .how-wrap .art-signup-list .bar.short { width: 58%; margin-bottom: 0; }

    .how-wrap .art-signup-list .dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1.5px solid #d4d4d4;
      background: #f5f5f5;
      flex-shrink: 0;
      margin-left: 10px;
    }

    .how-wrap .art-signup-list .check {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #22c55e;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-left: 10px;
      box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
    }

    .how-wrap .art-signup-list .check svg { display: block; }

    .how-wrap .how-desc {
      margin: 0;
      font-size: 13.5px;
      font-weight: 500;
      line-height: 1.5;
      color: #404040;
      max-width: 100%;
      text-align: center;
    }

    .how-wrap .how-arrow {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(calc(50% + var(--card-gap) / 2), -50%);
      z-index: 4;
      pointer-events: none;
      width: 36px;
      height: 36px;
      overflow: visible;
    }

    .how-wrap .how-arrow svg {
      display: block;
      width: 36px;
      height: 36px;
      position: relative;
      z-index: 1;
    }

    @media (prefers-reduced-motion: reduce) {
      .how-wrap .how-art-visual.is-lit {
        filter: none;
      }

      .how-wrap .how-art-visual::before,
      .how-wrap .how-art-visual::after {
        display: none;
      }
    }

    .how-wrap .how-art svg.illustration {
      display: block;
      width: var(--art-w);
      height: var(--art-h);
      flex-shrink: 0;
    }

    @media (min-width: 768px) and (max-width: 1099px) {
      .how-wrap .how-section { padding: 36px 24px 32px; }
      .how-wrap .how-header { margin-bottom: 32px; }
      .how-wrap .how-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        --card-gap: 10px;
        gap: var(--card-gap);
        align-items: stretch;
      }
      .how-wrap .how-card-wrap {
        flex: none;
        min-width: 0;
        width: auto;
        position: relative;
        overflow: visible;
      }
      .how-wrap .how-arrow {
        display: block;
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        width: 36px;
        height: 36px;
        transform: translate(calc(50% + var(--card-gap) / 2), -50%);
      }
      .how-wrap .how-card-wrap:nth-child(2) .how-arrow { display: none; }
      .how-wrap .how-card { min-height: 300px; }
    }

    @media (max-width: 767px) {
      .how-wrap .how-section { padding: 24px 16px 28px; }
      .how-wrap .how-header { margin-bottom: 24px; }
      .how-wrap .how-title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
      .how-wrap .how-track {
        flex-direction: column;
        align-items: stretch;
        --card-gap: 14px;
        gap: var(--card-gap);
        overflow: visible;
      }
      .how-wrap .how-card-wrap { flex: none; width: 100%; }
      .how-wrap .how-card { min-height: 0; padding: 20px 18px 18px; }
      .how-wrap .how-art { min-height: 152px; margin-bottom: 14px; }
      .how-wrap .how-card-title { font-size: 1.08rem; margin-bottom: 16px; }
      .how-wrap .how-desc { font-size: 14px; }
      .how-wrap .how-arrow {
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 36px;
        height: 36px;
        transform: translate(-50%, calc(50% + var(--card-gap) / 2)) rotate(90deg);
      }
      .how-wrap .how-arrow svg { width: 36px; height: 36px; }
    }

    /* ── Zigzag features ── */
    .zigzag-wrap {
      position: relative;
      z-index: 1;
      background: transparent;
    }

    .zigzag-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 48px 36px 48px;
      overflow: visible;
    }

    .zigzag-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 72px;
    }

    .zigzag-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(35, 37, 35, 0.12);
      background: rgba(249, 246, 241, 0.92);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 20px;
    }

    .zigzag-intro {
      font-size: clamp(1.75rem, 3vw, 2.35rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.18;
      text-align: center;
    }

    .zigzag-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 72px);
      align-items: center;
      padding: clamp(44px, 6vw, 76px) 0;
    }

    .zigzag-row + .zigzag-row {
      border-top: 1px solid rgba(17, 24, 39, 0.06);
    }

    .zigzag-row--reverse .zigzag-visual { order: 2; }
    .zigzag-row--reverse .zigzag-copy { order: 1; }

    .zigzag-copy,
    .zigzag-visual {
      align-self: center;
    }

    .zigzag-copy { max-width: 440px; }
    .zigzag-row:not(.zigzag-row--reverse) .zigzag-copy { justify-self: end; }
    .zigzag-row--reverse .zigzag-copy { justify-self: start; }

    .zigzag-title {
      font-size: clamp(1.55rem, 2.5vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.14;
      margin-bottom: 16px;
    }

    .zigzag-body {
      font-size: 15px;
      line-height: 1.68;
      color: #475569;
    }

    .zigzag-body em {
      font-style: normal;
      font-weight: 600;
      color: var(--text);
    }

    .zigzag-cta {
      display: flex;
      justify-content: center;
      margin-top: clamp(56px, 10vw, 96px);
      padding: 0 0 clamp(24px, 4vw, 40px);
    }

    .zigzag-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 24px;
      background: #000;
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 550;
      letter-spacing: -0.02em;
      border-radius: 4px;
    }

    .zigzag-cta-btn:hover { opacity: 0.85; }

    .zigzag-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 0;
      width: 100%;
      min-width: 0;
      overflow: visible;
      background: transparent;
    }

    /* Scala l'intera illustrazione in proporzione se non entra nella colonna */
    .art-scale-fit {
      --art-base-w: 400;
      --art-base-h: 300;
      width: 100%;
      max-width: calc(var(--art-base-w) * 1px);
      aspect-ratio: 4 / 3;
      margin-inline: auto;
      position: relative;
      flex-shrink: 1;
      min-width: 0;
      overflow: visible;
      background: transparent;
    }

    .art-scale-fit--calendar {
      --art-base-w: 340;
      --art-base-h: 300;
      aspect-ratio: 34 / 30;
    }

    .art-scale-fit--walk {
      --art-base-w: 400;
      --art-base-h: 300;
      aspect-ratio: 4 / 3;
    }

    .art-scale-fit--verify {
      --art-base-w: 380;
      --art-base-h: 190;
      aspect-ratio: 380 / 190;
      container-type: inline-size;
    }

    .art-scale-fit--stones,
    .art-scale-fit--frame {
      --art-base-w: 380;
      --art-base-h: 260;
      aspect-ratio: 380 / 260;
    }

    .art-scale-fit--stones {
      container-type: inline-size;
    }

    .art-scale-fit--verify .art-scale-inner {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .art-scale-inner {
      position: absolute;
      inset: 0;
      background: transparent;
    }

    .art-frame,
    .art-calendar,
    .art-stones {
      position: relative;
      width: 100%;
      height: 100%;
    }

    /* ── 1. Urban adventure — camera sul campo ── */
    .art-walk {
      position: absolute;
      inset: 0;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(17, 24, 39, 0.06);
      box-shadow: 0 28px 56px rgba(15, 23, 42, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .art-walk-viewfinder {
      position: relative;
      flex: 1;
      margin: 14px 14px 0;
      border-radius: 18px;
      overflow: hidden;
      background: linear-gradient(165deg, #c4a574 0%, #a8845a 38%, #8b6914 100%);
    }

    .art-walk-facade {
      position: absolute;
      inset: 0;
      padding: 18px 16px;
      overflow: hidden;
    }

    .art-walk-facade .art-walk-scan {
      position: absolute;
      left: 0;
      right: 0;
      height: 32%;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
      transform: translateY(-120%);
      opacity: 0;
      pointer-events: none;
      z-index: 2;
    }

    .art-walk-window {
      position: absolute;
      top: 16%;
      right: 14%;
      width: 52px;
      height: 68px;
      border-radius: 4px 4px 2px 2px;
      background: linear-gradient(180deg, #87ceeb 0%, #bae6fd 100%);
      border: 3px solid #6b5344;
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    }

    .art-walk-window::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 48%, #6b5344 48%, #6b5344 52%, transparent 52%);
    }

    .art-walk-door {
      position: absolute;
      bottom: 0;
      left: 18%;
      width: 64px;
      height: min(46%, 88px);
      border-radius: 6px 6px 0 0;
      background: linear-gradient(180deg, #5c4033 0%, #3d2817 100%);
      border: 3px solid #4a3728;
    }

    .art-walk-door-knob {
      position: absolute;
      right: 10px;
      top: 52%;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #fbbf24;
    }

    .art-walk-ring {
      position: absolute;
      left: calc(50% - 52px);
      top: calc(50% - 52px);
      width: 104px;
      height: 104px;
      border-radius: 50%;
      border: 3px solid var(--orange);
      box-shadow: 0 0 0 5px rgba(4, 126, 72, 0.14);
      pointer-events: none;
      z-index: 5;
    }

    .art-walk-plaque {
      position: absolute;
      left: calc(50% - 34px);
      top: calc(50% - 14px);
      z-index: 6;
      width: 68px;
      height: 28px;
      padding: 0 6px;
      border-radius: 6px;
      background: #fff;
      border: 2px solid #d6d3d1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.14em;
      color: #57534e;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      box-sizing: border-box;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      contain: layout style paint;
      transform: none;
    }

    .art-walk-corners {
      position: absolute;
      inset: 10px;
      pointer-events: none;
      z-index: 7;
    }

    .art-walk-corners span {
      position: absolute;
      width: 16px;
      height: 16px;
      border-color: rgba(255, 255, 255, 0.9);
      border-style: solid;
    }

    .art-walk-corners span:nth-child(1) { top: 0; left: 0; border-width: 2.5px 0 0 2.5px; border-radius: 4px 0 0 0; }
    .art-walk-corners span:nth-child(2) { top: 0; right: 0; border-width: 2.5px 2.5px 0 0; border-radius: 0 4px 0 0; }
    .art-walk-corners span:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2.5px 2.5px; border-radius: 0 0 0 4px; }
    .art-walk-corners span:nth-child(4) { bottom: 0; right: 0; border-width: 0 2.5px 2.5px 0; border-radius: 0 0 4px 0; }

    .art-walk-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 14px 14px;
    }

    .art-walk-shutter {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 3px solid #e2e8f0;
      background: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    }

    .art-walk-shutter::after {
      content: "";
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 2px solid var(--text);
    }

    .art-walk-flash {
      position: absolute;
      inset: 0;
      background: #fff;
      opacity: 0;
      pointer-events: none;
      z-index: 8;
    }

    @keyframes walk-scan {
      from { transform: translateY(-120%); }
      to { transform: translateY(380%); }
    }

    @keyframes walk-ring-in {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes walk-shutter-press {
      0%, 100% { transform: scale(1); }
      45% { transform: scale(0.86); }
    }

    @keyframes walk-flash {
      0%, 100% { opacity: 0; }
      16% { opacity: 0.94; }
      38% { opacity: 0.12; }
    }

    @media (prefers-reduced-motion: no-preference) {
      .art-walk[data-animate] .art-walk-ring {
        opacity: 0;
      }

      .art-walk[data-animate] .art-walk-corners span {
        opacity: 0.45;
      }

      .art-walk[data-animate].is-scanning .art-walk-scan {
        animation: walk-scan 0.85s ease-in-out both;
        opacity: 1;
      }

      .art-walk[data-animate].is-locked .art-walk-ring {
        animation: walk-ring-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .art-walk[data-animate].is-locked .art-walk-corners span {
        opacity: 1;
        transition: opacity 0.28s ease;
      }

      .art-walk[data-animate].is-locked .art-walk-shutter {
        box-shadow:
          0 4px 14px rgba(15, 23, 42, 0.08),
          0 0 0 4px rgba(4, 126, 72, 0.14);
        transition: box-shadow 0.3s ease;
      }

      .art-walk[data-animate].is-snapping .art-walk-shutter {
        animation: walk-shutter-press 0.34s ease both;
      }

      .art-walk[data-animate].is-snapping .art-walk-flash {
        animation: walk-flash 0.42s ease both;
      }
    }

    /* ── 2. Weekly themes — calendario stilizzato ── */
    .art-calendar {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 16px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(17, 24, 39, 0.06);
      box-shadow: 0 28px 56px rgba(15, 23, 42, 0.1);
      display: flex;
      flex-direction: column;
      gap: 12px;
      overflow: hidden;
    }

    .cal-chrome {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .cal-chrome-bar {
      height: 7px;
      border-radius: 999px;
      background: #e8edf2;
    }

    .cal-chrome-bar.long { flex: 1; max-width: 42%; }
    .cal-chrome-bar.mid { width: 22%; }
    .cal-chrome-dots {
      display: flex;
      gap: 4px;
      margin-left: auto;
    }

    .cal-chrome-dots i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #e2e8f0;
    }

    .cal-grid-shell {
      flex: 1;
      position: relative;
      min-height: 0;
    }

    .cal-grid {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      grid-template-rows: repeat(4, 1fr);
      gap: 6px;
      min-height: 0;
    }

    .cal-slot {
      border-radius: 8px;
      background: #eef2f6;
      min-height: 0;
    }

    .cal-slot.soft { background: #f4f6f9; opacity: 0.85; }

    .cal-launch-layer {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 5;
    }

    .cal-launch-layer .cal-event {
      position: absolute;
      left: 0;
      top: 0;
      grid-column: unset;
      opacity: 0;
      pointer-events: none;
      will-change: transform, opacity;
    }

    .cal-launch-layer .cal-event.is-flying {
      opacity: 1;
      z-index: 6;
      animation: cal-event-launch 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .cal-event {
      grid-column: span 2;
      border-radius: 10px;
      padding: 4px 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 8.5px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: #fff;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
      min-height: 0;
    }

    .cal-event--1 { background: linear-gradient(145deg, #312e81, #4338ca); }
    .cal-event--2 { background: linear-gradient(145deg, #035c35, var(--orange)); }
    .cal-event--3 { background: linear-gradient(145deg, #059669, var(--green)); }
    .cal-event--4 { background: linear-gradient(145deg, #2563eb, #3b82f6); }

    @keyframes cal-event-launch {
      0% {
        opacity: 0;
        transform: translate(var(--launch-x, 0), var(--launch-y, 0)) scale(0.28);
        box-shadow: 0 26px 48px rgba(15, 23, 42, 0.3);
        filter: brightness(1.45) saturate(1.2);
      }
      22% {
        opacity: 1;
        transform: translate(var(--launch-x, 0), calc(var(--launch-y, 0) - 14px)) scale(1.18);
        box-shadow: 0 34px 60px rgba(15, 23, 42, 0.34);
        filter: brightness(1.28);
      }
      42% {
        opacity: 1;
        transform: translate(calc(var(--launch-x, 0) * 0.18), calc(var(--launch-y, 0) * 0.18)) scale(1.06);
        filter: brightness(1.1);
      }
      100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
        filter: brightness(1);
      }
    }

    @keyframes cal-chrome-flash {
      0%, 100% { background: #e8edf2; }
      40% { background: #c7d2fe; }
    }

    @media (prefers-reduced-motion: no-preference) {
      .art-calendar[data-animate].is-flash-chrome .cal-chrome-bar {
        animation: cal-chrome-flash 0.45s ease-out;
      }
    }

    /* ── 3. Italy map ── */
    .art-italy {
      position: absolute;
      inset: 0;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(17, 24, 39, 0.06);
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
      display: grid;
      place-items: center;
      overflow: hidden;
      padding: 10px 14px;
    }

    .italy-svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .italy-svg .italy-fill {
      fill: #ebe6dc;
      stroke: none;
    }

    .italy-svg .city-pin {
      fill: #047E48;
      stroke: rgba(255, 255, 255, 0.85);
      stroke-width: 0.35;
    }

    @keyframes city-pin-light-on {
      0% {
        opacity: 0;
        fill: #fffdf5;
      }
      8% {
        opacity: 1;
        fill: #fff3b0;
      }
      18% {
        opacity: 0.06;
        fill: #ff8a2a;
      }
      28% {
        opacity: 1;
        fill: #ffe08a;
      }
      42% {
        opacity: 0.35;
        fill: #ff9a40;
      }
      100% {
        opacity: var(--pin-op, 1);
        fill: #047E48;
      }
    }

    @media (prefers-reduced-motion: no-preference) {
      .italy-svg[data-animate] .city-pin {
        opacity: 0;
        fill: #047E48;
      }

      .italy-svg[data-animate].is-live .city-pin {
        animation: city-pin-light-on 0.2s linear both;
        animation-delay: var(--pin-delay, 0ms);
        filter: drop-shadow(0 0 1.5px rgba(255, 160, 40, 0.55));
      }
    }

    /* ── 4. Anti-cheat ── */
    .art-verify-fan {
      position: relative;
      width: 94%;
      height: 168px;
      margin-top: -14px;
      background: transparent;
      flex-shrink: 0;
    }

    .verify-scenario {
      position: absolute;
      bottom: 10%;
      width: 38%;
      border-radius: 16px;
      background: #fff;
      border: 1.5px solid rgba(17, 24, 39, 0.06);
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
      padding: 7% 6% 6%;
      display: flex;
      flex-direction: column;
      transform-origin: 50% 115%;
    }

    .verify-scenario--wrong {
      left: 0;
      transform: rotate(-17deg);
      z-index: 1;
      border-color: rgba(220, 38, 38, 0.22);
    }

    .verify-scenario--ok {
      left: 50%;
      transform: translateX(-50%) translateY(-8%) rotate(0deg);
      z-index: 3;
      border-color: rgba(34, 165, 89, 0.28);
    }

    .verify-scenario--fake {
      right: 0;
      transform: rotate(17deg);
      z-index: 2;
      border-color: rgba(245, 158, 11, 0.35);
    }

    .verify-photo {
      aspect-ratio: 5 / 4;
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 7%;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--paper-bg);
      border: 1.5px solid rgba(17, 24, 39, 0.07);
    }

    .verify-photo--wrong {
      background: #fffafa;
      border-color: rgba(220, 38, 38, 0.12);
    }

    .verify-photo--ok {
      background: #f8fdf9;
      border-color: rgba(34, 165, 89, 0.14);
    }

    .verify-photo--fake {
      background: #fffdf8;
      border-color: rgba(245, 158, 11, 0.16);
    }

    .verify-photo-icon {
      position: relative;
      z-index: 2;
      width: 28%;
      height: auto;
      aspect-ratio: 1;
      stroke: #b8c5d1;
      opacity: 0.65;
    }

    .verify-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 5% 4%;
      border-radius: 999px;
      font-size: clamp(5px, 2.15cqi, 9px);
      font-weight: 700;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .verify-badge.ok {
      background: #ecfdf5;
      color: var(--green);
    }

    .verify-badge.bad {
      background: #fef2f2;
      color: #dc2626;
    }

    .verify-badge.warn {
      background: #fffbeb;
      color: #d97706;
    }

    .verify-badge-icon {
      width: 1.75em;
      height: 1.75em;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1em;
      flex-shrink: 0;
    }

    .verify-badge.ok .verify-badge-icon { background: #dcfce7; }
    .verify-badge.bad .verify-badge-icon { background: #fee2e2; }
    .verify-badge.warn .verify-badge-icon { background: #fef3c7; }

    @keyframes verify-photo-flash {
      0% { opacity: 0; }
      18% { opacity: 0.9; }
      100% { opacity: 0; }
    }

    @keyframes verify-photo-in {
      0% {
        transform: scale(0.95);
        filter: brightness(0.9);
      }
      45% {
        transform: scale(1);
        filter: brightness(1.18);
      }
      100% {
        transform: scale(1);
        filter: brightness(1);
      }
    }

    @keyframes verify-badge-in {
      from {
        opacity: 0;
        transform: translateY(10px) scale(0.86);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes verify-scan {
      from { transform: translateY(-130%); }
      to { transform: translateY(330%); }
    }

    @media (prefers-reduced-motion: no-preference) {
      .art-verify-fan[data-animate] .verify-scenario {
        border-color: rgba(17, 24, 39, 0.06);
      }

      .art-verify-fan[data-animate] .verify-photo-icon {
        transition: opacity 0.28s ease, transform 0.28s ease;
      }

      .art-verify-fan[data-animate] .verify-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.32s ease;
      }

      .art-verify-fan[data-animate] .verify-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #fff;
        opacity: 0;
        pointer-events: none;
      }

      .art-verify-fan[data-animate] .verify-photo-scan {
        position: absolute;
        left: 0;
        right: 0;
        height: 34%;
        z-index: 3;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62), transparent);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
      }

      .art-verify-fan[data-animate] .verify-photo--wrong::before {
        background: linear-gradient(145deg, #fff5f5 0%, #ffe4e6 50%, #fecaca 100%);
      }

      .art-verify-fan[data-animate] .verify-photo--ok::before {
        background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
      }

      .art-verify-fan[data-animate] .verify-photo--fake::before {
        background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
      }

      .art-verify-fan[data-animate] .verify-badge {
        opacity: 0;
        transform: translateY(10px) scale(0.86);
      }

      .art-verify-fan[data-animate] .verify-scenario.is-photo-ready .verify-photo {
        animation: verify-photo-in 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .art-verify-fan[data-animate] .verify-scenario.is-photo-ready .verify-photo-icon {
        opacity: 0;
        transform: scale(0.55);
      }

      .art-verify-fan[data-animate] .verify-scenario.is-photo-ready .verify-photo::before {
        opacity: 1;
      }

      .art-verify-fan[data-animate] .verify-scenario.is-photo-ready .verify-photo::after {
        animation: verify-photo-flash 0.42s ease-out both;
      }

      .art-verify-fan[data-animate] .verify-scenario.is-photo-ready:not(.is-verdict-ready) .verify-photo-scan {
        animation: verify-scan 0.62s ease-in-out 0.1s both;
        opacity: 1;
      }

      .art-verify-fan[data-animate] .verify-scenario.is-verdict-ready .verify-badge {
        animation: verify-badge-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .art-verify-fan[data-animate] .verify-scenario--wrong.is-verdict-ready {
        border-color: rgba(220, 38, 38, 0.22);
        transition: border-color 0.35s ease;
      }

      .art-verify-fan[data-animate] .verify-scenario--ok.is-verdict-ready {
        border-color: rgba(34, 165, 89, 0.28);
        transition: border-color 0.35s ease;
      }

      .art-verify-fan[data-animate] .verify-scenario--fake.is-verdict-ready {
        border-color: rgba(245, 158, 11, 0.35);
        transition: border-color 0.35s ease;
      }
    }

    /* ── 5. Stones + exclusive ── */
    .art-stones {
      position: relative;
      width: 100%;
      height: 100%;
      margin: 0;
      background: transparent;
    }

    .stones-panel {
      position: absolute;
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(17, 24, 39, 0.06);
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
      padding: 4.5cqi;
    }

    .stones-panel--left {
      left: 0;
      top: 10%;
      width: 47.5%;
      transform: rotate(-5deg);
      z-index: 1;
    }

    .stones-panel--right {
      right: 0;
      bottom: 0;
      width: 55%;
      transform: rotate(4deg);
      z-index: 3;
    }

    .stones-label {
      font-size: clamp(5px, 2.25cqi, 9px);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2.5cqi;
    }

    .stone-count {
      display: flex;
      align-items: center;
      gap: 2cqi;
      margin-bottom: 3cqi;
      font-size: clamp(16px, 10cqi, 40px);
      line-height: 1;
    }

    .stone-icon-wrap {
      width: 1em;
      height: 1em;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      overflow: visible;
    }

    .stone-icon {
      width: 108%;
      height: 108%;
      display: block;
    }

    .stone-count-num {
      font-size: 1em;
      font-weight: 800;
      line-height: 1;
      color: #111827;
      letter-spacing: -0.03em;
    }

    .points-bar {
      height: clamp(4px, 2cqi, 8px);
      border-radius: 999px;
      background: rgba(17, 24, 39, 0.07);
      overflow: hidden;
      margin-bottom: 1.5cqi;
    }

    .points-fill {
      height: 100%;
      width: 72%;
      border-radius: 999px;
      background: linear-gradient(90deg, #3daf7a, var(--orange));
    }

    .points-text {
      font-size: clamp(5px, 2.75cqi, 11px);
      font-weight: 700;
      color: var(--orange);
    }

    .exclusive-hunt {
      display: flex;
      align-items: center;
      gap: 2.5cqi;
      padding: 2.5cqi;
      border-radius: 2.5cqi;
      background: linear-gradient(135deg, #1e1b4b, #4338ca);
      color: #fff;
    }

    .exclusive-lock {
      position: relative;
      width: 8cqi;
      height: 8cqi;
      border-radius: 2.5cqi;
      background: rgba(255, 255, 255, 0.15);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .exclusive-lock .lock-icon {
      width: 50%;
      height: 50%;
      grid-area: 1 / 1;
      transition:
        opacity 0.3s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .exclusive-lock .lock-icon--closed {
      opacity: 1;
      transform: scale(1);
    }

    .exclusive-lock .lock-icon--open {
      opacity: 0;
      transform: scale(0.65) rotate(-12deg);
    }

    .exclusive-lock.is-unlocked .lock-icon--closed {
      opacity: 0;
      transform: scale(0.7) translateY(3px);
    }

    .exclusive-lock.is-unlocked .lock-icon--open {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .exclusive-hunt.is-unlocked {
      background: linear-gradient(135deg, #1e3a5f, #4f46e5);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    }

    .exclusive-hunt.is-unlocked .exclusive-sub {
      opacity: 1;
      color: #bbf7d0;
    }

    .exclusive-title {
      font-size: clamp(5px, 2.75cqi, 11px);
      font-weight: 700;
      line-height: 1.3;
    }

    .exclusive-sub {
      font-size: clamp(4px, 2.25cqi, 9px);
      opacity: 0.7;
      font-weight: 500;
    }

    /* ── Stones animation ── */
    @keyframes stones-card-left {
      from {
        opacity: 0.35;
        transform: rotate(-10deg) translate(-10px, 14px);
      }
      to {
        opacity: 1;
        transform: rotate(-5deg) translate(0, 0);
      }
    }

    @keyframes stones-card-right {
      from {
        opacity: 0.35;
        transform: rotate(9deg) translate(10px, 14px);
      }
      to {
        opacity: 1;
        transform: rotate(4deg) translate(0, 0);
      }
    }

    @keyframes stone-bob {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    @keyframes lock-glow {
      0%, 100% {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
      }
      50% {
        background: rgba(255, 255, 255, 0.24);
        box-shadow: 0 0 14px rgba(167, 139, 250, 0.35);
      }
    }

    @keyframes lock-box-unlock {
      0% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 rgba(74, 222, 128, 0);
      }
      35% {
        transform: scale(1.14);
        background: rgba(187, 247, 208, 0.45);
        box-shadow: 0 0 16px rgba(74, 222, 128, 0.55);
      }
      100% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.24);
        box-shadow: 0 0 10px rgba(74, 222, 128, 0.28);
      }
    }

    @media (prefers-reduced-motion: no-preference) {
      .art-stones[data-animate] .points-fill {
        width: 0;
      }

      .art-stones[data-animate].is-live .stones-panel--left {
        animation: stones-card-left 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .art-stones[data-animate].is-live .stones-panel--right {
        animation: stones-card-right 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
      }

      .art-stones[data-animate].is-live .points-fill {
        width: 72%;
        transition: width 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.42s;
      }

      .art-stones[data-animate].is-live .stone-icon {
        animation: stone-bob 2.8s ease-in-out infinite 0.85s;
      }

      .art-stones[data-animate]:not(.is-unlocked) .exclusive-lock {
        animation: lock-glow 2.6s ease-in-out infinite 1s;
      }

      .art-stones[data-animate].is-unlocked .exclusive-lock {
        animation: lock-box-unlock 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .art-stones[data-animate].is-unlocked .exclusive-hunt {
        transition: background 0.45s ease, box-shadow 0.45s ease;
      }
    }

    @media (max-width: 1024px) {
      .zigzag-section {
        padding: 40px 28px 40px;
      }

      .zigzag-row,
      .zigzag-row--reverse {
        gap: clamp(24px, 4vw, 48px);
      }

      .zigzag-visual {
        overflow: visible;
        min-height: auto;
        padding: 12px 0;
      }

      .art-frame,
      .art-calendar,
      .art-stones,
      .art-scale-fit {
        max-width: 100%;
      }
    }

    @media (max-width: 860px) {
      .zigzag-section { padding: 36px 20px 36px; }
      .zigzag-header { margin-bottom: 48px; }

      .zigzag-row,
      .zigzag-row--reverse {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(10px, 3vw, 20px);
        padding: 36px 0;
        align-items: center;
        overflow: visible;
      }

      /* zig-zag su mobile: dispari visual sx, pari visual dx */
      .zigzag-row .zigzag-visual,
      .zigzag-row .zigzag-copy { order: 0; }

      .zigzag-row:nth-of-type(odd) .zigzag-visual { order: 1; }
      .zigzag-row:nth-of-type(odd) .zigzag-copy { order: 2; }

      .zigzag-row:nth-of-type(even) .zigzag-visual { order: 2; }
      .zigzag-row:nth-of-type(even) .zigzag-copy { order: 1; }

      .zigzag-copy {
        max-width: none;
        justify-self: stretch !important;
      }

      .zigzag-title {
        font-size: clamp(0.95rem, 3.8vw, 1.35rem);
        margin-bottom: 6px;
      }

      .zigzag-body {
        font-size: clamp(11px, 2.8vw, 13px);
        line-height: 1.5;
      }

      .zigzag-visual {
        min-height: auto;
        min-width: 0;
        overflow: visible;
        padding: 0;
        width: 100%;
        background: transparent;
      }

      .art-scale-fit {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        overflow: visible;
        background: transparent;
      }

      .art-scale-fit--verify {
        --art-base-w: 380;
        --art-base-h: 190;
        aspect-ratio: 380 / 190;
      }

      .art-scale-fit--stones,
      .art-scale-fit--frame {
        --art-base-w: 380;
        --art-base-h: 260;
        aspect-ratio: 380 / 260;
      }

      .art-verify-fan {
        height: 148px;
        margin-top: -4px;
      }

      /* ── Walk / camera: proporzioni 4:3, non allungata ── */
      .art-scale-fit--walk {
        --art-base-w: 200;
        --art-base-h: 150;
        aspect-ratio: 4 / 3;
      }

      .art-walk-viewfinder {
        margin: 7px 7px 0;
        border-radius: 12px;
      }

      .art-walk-window {
        width: 28px;
        height: 36px;
        border-width: 2px;
      }

      .art-walk-door {
        width: 34px;
        border-width: 2px;
      }

      .art-walk-door-knob {
        width: 5px;
        height: 5px;
        right: 6px;
      }

      .art-walk-ring {
        width: 58px;
        height: 58px;
        left: calc(50% - 29px);
        top: calc(50% - 29px);
        border-width: 2px;
        box-shadow: 0 0 0 3px rgba(4, 126, 72, 0.14);
      }

      .art-walk-plaque {
        width: 42px;
        height: 18px;
        left: calc(50% - 21px);
        top: calc(50% - 9px);
        font-size: 6.5px;
        letter-spacing: 0.08em;
        border-width: 1.5px;
        padding: 0 3px;
      }

      .art-walk-corners {
        inset: 5px;
      }

      .art-walk-corners span {
        width: 8px;
        height: 8px;
      }

      .art-walk-corners span:nth-child(1) { border-width: 2px 0 0 2px; }
      .art-walk-corners span:nth-child(2) { border-width: 2px 2px 0 0; }
      .art-walk-corners span:nth-child(3) { border-width: 0 0 2px 2px; }
      .art-walk-corners span:nth-child(4) { border-width: 0 2px 2px 0; }

      .art-walk-bar {
        padding: 6px 6px 8px;
        overflow: hidden;
      }

      .art-walk-shutter {
        width: 28px;
        height: 28px;
        border-width: 2px;
      }

      .art-walk-shutter::after {
        width: 20px;
        height: 20px;
        border-width: 1.5px;
      }

      .art-walk[data-animate].is-locked .art-walk-shutter {
        box-shadow:
          0 2px 8px rgba(15, 23, 42, 0.08),
          0 0 0 2px rgba(4, 126, 72, 0.12);
      }

      .art-stones {
        overflow: visible;
      }

      /* Ventaglio e pannelli: stesso look, leggermente più contenuti */
      .verify-scenario--wrong { transform: rotate(-12deg); }
      .verify-scenario--ok { transform: translateX(-50%) translateY(-7%) rotate(0deg); }
      .verify-scenario--fake { transform: rotate(12deg); }

      .stones-panel--left {
        width: 50%;
        transform: rotate(-3deg);
      }

      .stones-panel--right {
        width: 58%;
        transform: rotate(3deg);
      }
    }

    @media (max-width: 380px) {
      .zigzag-row,
      .zigzag-row--reverse {
        gap: 8px;
        padding: 28px 0;
      }

      .zigzag-title { font-size: 0.9rem; }
      .zigzag-body { font-size: 10.5px; }

      .art-scale-fit--walk {
        --art-base-w: 160;
        --art-base-h: 120;
        aspect-ratio: 4 / 3;
      }
    }

    /* ── Testimonials ── */
    .testimonials-wrap {
      position: relative;
      z-index: 1;
      background: transparent;
    }

    .testimonials-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 48px 48px 64px;
    }

    .testimonials-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      color: #232523;
      margin-bottom: 40px;
      text-align: center;
    }

    .testimonials-viewport {
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.45s ease;
    }

    .testimonials-slide {
      flex: 0 0 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      min-width: 0;
    }

    .testimonial-card {
      background: rgba(255, 251, 244, 0.72);
      border: 1px solid rgba(181, 164, 138, 0.18);
      border-radius: 28px;
      padding: 32px 34px 36px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
    }

    .testimonial-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: #ece6dc;
    }

    .testimonial-name {
      font-size: 17px;
      font-weight: 700;
      color: #232523;
      line-height: 1.2;
    }

    .testimonial-quote {
      margin: 0;
      font-size: 15px;
      line-height: 1.55;
      font-style: italic;
      color: rgba(35, 37, 35, 0.88);
    }

    .testimonials-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 36px;
    }

    .testimonials-arrow {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(35, 37, 35, 0.14);
      background: rgba(255, 255, 255, 0.45);
      color: #232523;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .testimonials-arrow:hover {
      background: rgba(255, 255, 255, 0.8);
      border-color: rgba(35, 37, 35, 0.22);
    }

    .testimonials-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .testimonials-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      padding: 0;
      background: rgba(35, 37, 35, 0.18);
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .testimonials-dot.is-active {
      background: #232523;
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .testimonials-section { padding: 40px 40px 48px; }
      .testimonials-title { margin-bottom: 28px; }

      .testimonials-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 12px;
      }

      .testimonials-viewport::-webkit-scrollbar { display: none; }

      .testimonials-track {
        transform: none !important;
        transition: none;
        gap: 0;
      }

      .testimonials-slide {
        display: contents;
      }

      .testimonial-card {
        flex: 0 0 var(--testimonial-card-width, 100%);
        width: var(--testimonial-card-width, 100%);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-height: 0;
        padding: 24px 22px 28px;
      }
    }

    /* ── FAQ ── */
    .faq-wrap {
      position: relative;
      z-index: 1;
      background: transparent;
    }

    .faq-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 48px 36px 40px;
    }

    .faq-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      color: #232523;
      margin-bottom: 48px;
      text-align: center;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 72px;
    }

    .faq-item {
      border-bottom: 1px solid rgba(35, 37, 35, 0.12);
    }

    .faq-item summary {
      list-style: none;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 22px 0;
      cursor: pointer;
      font-size: 15px;
      line-height: 1.45;
      color: #232523;
      user-select: none;
    }

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

    .faq-plus {
      flex-shrink: 0;
      width: 14px;
      font-size: 18px;
      line-height: 1.2;
      color: #232523;
      transition: transform 0.2s ease;
    }

    .faq-item[open] .faq-plus {
      transform: rotate(45deg);
    }

    .faq-answer {
      margin: 0 0 22px 24px;
      max-width: 46ch;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(35, 37, 35, 0.72);
    }

    /* ── Footer ── */
    .site-footer {
      position: relative;
      z-index: 1;
      background-color: #F9F6F1;
      background-image: url("footer.png");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .site-footer::after {
      display: none;
    }

    .site-footer-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: none;
      margin: 0 auto;
      padding: 28px var(--page-edge-x);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
    }

    .site-footer-copy {
      margin: 0;
      font-size: 13px;
      color: rgba(35, 37, 35, 0.72);
      justify-self: start;
    }

    .site-footer-social {
      display: flex;
      justify-content: center;
      justify-self: center;
    }

    .site-footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      color: #232523;
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .site-footer-social a:hover { opacity: 0.65; }

    .site-footer-nav {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-end;
      justify-self: end;
      gap: 32px;
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
    }

    .site-footer-nav a {
      font-size: 18px;
      font-weight: 200;
      color: #232523;
      text-decoration: none;
      padding: 0;
      border-radius: 0;
      background: transparent;
      white-space: nowrap;
      transition: opacity 0.2s ease;
    }

    .site-footer-nav a:hover { opacity: 0.65; }

    @media (max-width: 768px) {
      .faq-section { padding: 40px 24px 32px; }
      .faq-title { margin-bottom: 32px; }
      .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .site-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
      }

      .site-footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 16px;
        width: 100%;
        min-height: 200px;
        padding: 32px 20px;
      }

      .site-footer-copy { order: 1; }
      .site-footer-social { order: 2; }
      .site-footer-nav { order: 3; }

      .site-footer-nav {
        align-self: center;
        flex-direction: row;
        gap: 12px;
        justify-content: center;
      }
    }

    html,
    body,
    body *:not(.framer-Y8mbW):not(.framer-Y8mbW *),
    input,
    textarea,
    select,
    button:not(.framer-Y8mbW) {
      font-family: var(--font-tt-firs-neue) !important;
      font-weight: 400;
    }

    /* Posters CTA — keep Framer “Filled” button (TWK 550, 52px) */
    .posters-wrap .framer-a3tpi1-container {
      height: auto !important;
      min-height: 52px;
    }

    .posters-wrap a.framer-Y8mbW.framer-xm6lsq {
      height: 52px !important;
      min-height: 52px !important;
      padding: 0 24px !important;
      width: min-content !important;
      max-width: none !important;
      box-sizing: border-box !important;
      border-radius: 4px !important;
    }

    .posters-wrap a.framer-Y8mbW .framer-text,
    .posters-wrap a.framer-Y8mbW p.framer-text {
      font-family: "TWK Lausanne Pan 550", sans-serif !important;
      font-weight: 550 !important;
      letter-spacing: -0.02em !important;
      line-height: 1.4em !important;
      white-space: nowrap;
    }

    /* Poster thumbnails: below the fold, deprioritize vs hero LCP */
    .posters-wrap img[loading="lazy"] {
      fetchpriority: low;
    }
