@layer reset, tokens, base, components, util;

    /* ---------------- TOKENS ---------------- */
    @layer tokens {
      :root{
        --palette-grey-900:#2F3034;
        --palette-grey-800:#45474D;
        --palette-grey-0:#FFFFFF;
        --palette-grey-1200:#121317;
        --palette-grey-15:#F0F1F5;

        --palette-grey-1000-rgb:33,34,38;

        --theme-surface-surface:var(--palette-grey-0);
        --theme-surface-on-surface:var(--palette-grey-1200);
        --theme-surface-on-surface-variant:var(--palette-grey-800);

        --theme-outline-variant:rgba(var(--palette-grey-1000-rgb),.06);

        --theme-primary-primary:var(--theme-surface-on-surface);
        --theme-primary-on-primary:var(--theme-surface-surface);

        --theme-secondary-button:rgba(183,191,217,.10);

        /* Header height */
        --ff-header-h: 82px;
        /* Layout widths */
        --ff-content-max: 1360px;
        --ff-text-max: 1100px;
      }

      /* Mobile nav */
      @media (max-width: 720px){
        .ff-header__inner{
          grid-template-columns: auto 1fr auto;
          gap: 12px;
        }
        .ff-cta{ display:none !important; }
        .ff-nav-toggle{
          display:inline-flex;
          width:44px;
          height:44px;
          padding:8px;
          gap:4px;
          justify-content:center;
          align-items:center;
        }
        .ff-nav-toggle span{
          display:block;
          width:100%;
          height:2px;
          background: currentColor;
          border-radius:4px;
          transition: transform .18s ease, opacity .18s ease;
        }
        .ff-nav-toggle.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
        .ff-nav-toggle.is-open span:nth-child(2){ opacity:0; }
        .ff-nav-toggle.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
        .ff-nav{
          display:none;
          position:absolute;
          top: var(--ff-header-h);
          right: 12px;
          left: 12px;
          flex-direction:column;
          align-items: stretch;
          gap: 8px;
          padding: 12px;
          background: rgba(255,255,255,.96);
          border: 1px solid var(--theme-outline-variant);
          border-radius: 16px;
          box-shadow: 0 14px 38px rgba(18,19,23,.16);
          z-index: 60;
        }
        .ff-nav.is-open{ display:flex; }
        .ff-nav a{
          width:100%;
          justify-content:flex-start;
          font-size: 1.05em;
        }
        .ff-nav__cta{
          display:inline-flex;
          align-items:center;
          justify-content:center;
          padding: .62em 1.05em;
          border-radius: 12px;
          background: var(--theme-primary-primary);
          color: var(--theme-primary-on-primary);
          font-weight: 560;
          text-decoration:none;
        }
        .ff-nav__cta:focus-visible,
        .ff-nav__cta:hover{
          background: var(--palette-grey-900);
          color: var(--theme-primary-on-primary);
        }
      }
      @media (width < 640px){
        :root{ --ff-header-h: 70px; }
      }
    }

    /* ---------------- RESET ---------------- */
    @layer reset{
      html,body{height:100%}
      body{margin:0}
      *{box-sizing:border-box}
      button{font-family:inherit;font-size:inherit}
      a:focus-visible,button:focus-visible{outline-offset:.2rem}
      img{max-width:100%;height:auto}
    }

    /* ---------------- UTIL ---------------- */
    @layer util{
      .sr-only{
        position:absolute;width:1px;height:1px;padding:0;margin:-1px;
        overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0;
      }
    }

    /* ---------------- BASE ---------------- */
    @layer base{
      html{
        background:var(--theme-surface-surface);
        font-family:"Google Sans Flex",sans-serif;
        font-weight:400;
        font-size:16px;
        color:var(--theme-surface-on-surface);
      }
      body{ min-height:100dvh; }

      /* ---------------- HEADER ---------------- */
      .ff-header{
        position:fixed;
        top:0; left:0; right:0;
        height:var(--ff-header-h);
        z-index:50;

        display:flex;
        align-items:center;

        background: rgba(255,255,255,.74);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        border-bottom: 1px solid var(--theme-outline-variant);
      }

      /* Grid 3 colonne: brand | nav (centro perfetto) | CTA */
      .ff-header__inner{
        width:100%;
        max-width: var(--ff-content-max);
        margin:0 auto;
        padding: 0 24px;

        display:grid;
        grid-template-columns: auto 1fr auto;
        align-items:center;
        gap: 20px;
      }
      @media (width < 640px){
        .ff-header__inner{ padding:0 16px; gap:14px; }
      }

      .ff-brand{
        display:inline-flex;
        align-items:center;
        gap: 0;
        text-decoration:none;
        color: var(--theme-surface-on-surface);
        white-space: nowrap;
      }

      .ff-initials{
        font-weight: 600;
        letter-spacing: .04em;
        font-size: 30px;
        line-height: 1;
      }

      .ff-brand img{
        height: 46px;
        width:auto;
        display:block;
        margin-left: -4px; /* avvicina ulteriormente al testo FF */
      }
      @media (width < 640px){
        .ff-brand img{ height: 48px; }
        .ff-initials{ font-size: 24px; }
      }
    }

    /* ---------------- COMPONENTS ---------------- */
    @layer components{
      .ff-nav{
        display:flex;
        justify-content:center;
        gap: .2rem;

        overflow-x:auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .ff-nav::-webkit-scrollbar{ display:none; }

      .ff-nav a{
        display:inline-flex;
        align-items:center;
        padding: .55em 1.05em;
        border-radius:999px;

        text-decoration:none;
        color: var(--theme-surface-on-surface-variant);
        font-weight: 540;
        font-size: 1.18em;
        white-space: nowrap;

        transition: background .15s ease-out, color .15s ease-out, transform .15s ease-out;
      }
      .ff-nav a:hover,
      .ff-nav a:focus-visible{
        background: var(--theme-secondary-button);
        color: var(--theme-surface-on-surface);
      }

      .ff-nav__cta{
        display:none;
      }

      .ff-nav-toggle{
        display:none;
        width:44px;
        height:44px;
        border-radius:12px;
        border:1px solid var(--theme-outline-variant);
        background: rgba(255,255,255,.82);
        color: var(--theme-surface-on-surface);
        cursor:pointer;
        align-items:center;
        justify-content:center;
        gap:4px;
        flex-direction:column;
        padding:8px;
      }
      .ff-nav-toggle span{
        display:block;
        width:100%;
        height:2px;
        background: currentColor;
        border-radius:4px;
        transition: transform .18s ease, opacity .18s ease;
      }
      .ff-nav-toggle.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
      .ff-nav-toggle.is-open span:nth-child(2){ opacity:0; }
      .ff-nav-toggle.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

      /* ✅ CTA "Contattaci" nero + testo bianco (solo click, nessuna funzione extra) */
      .ff-cta{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        white-space: nowrap;

        padding: 0.62em 1.20em;
        border-radius: 999px;

        text-decoration:none;
        background: var(--theme-primary-primary); /* nero */
        color: var(--theme-primary-on-primary);   /* bianco */
        border: 1px solid transparent;

        font-weight: 600;
        font-size: 1.15em;
        line-height: 1.02;

        cursor:pointer;
        transition: transform .15s ease-out, background .15s ease-out;
      }
      .ff-cta:hover,
      .ff-cta:focus-visible{
        transform: translateY(-1px);
        background: var(--palette-grey-900);
        outline:none;
      }
    }

/* ---- section ---- */

@layer reset, tokens, base, components, util;

    @layer tokens {
      :root{
        --palette-grey-900:#2F3034;
        --palette-grey-800:#45474D;
        --palette-grey-0:#FFFFFF;
        --palette-grey-1200:#121317;
        --palette-grey-15:#F0F1F5;

        --palette-grey-1000-rgb:33,34,38;

        --theme-surface-surface:var(--palette-grey-0);
        --theme-surface-on-surface:var(--palette-grey-1200);
        --theme-surface-on-surface-variant:var(--palette-grey-800);

        --theme-outline-variant:rgba(var(--palette-grey-1000-rgb),.06);

        --theme-primary-primary:var(--theme-surface-on-surface);
        --theme-primary-on-primary:var(--theme-surface-surface);

        --theme-button-states-primary-hovered:var(--palette-grey-900);
        --theme-secondary-button:rgba(183,191,217,.10);
        --theme-button-secondary-hover:var(--palette-grey-15);
      }
    }

    @layer reset{
      html,body{height:100%}
      body{margin:0}
      *{box-sizing:border-box}
      button{font-family:inherit;font-size:inherit}
      a:focus-visible,button:focus-visible{outline-offset:.2rem}
    }

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

    @layer base{
      html{
        background:var(--theme-surface-surface);
        font-family:"Google Sans Flex",sans-serif;
        font-weight:400;
        font-size:16px;
        color:var(--theme-surface-on-surface);
      }
      body{min-height:100dvh}
      section{min-height:100dvh}
      section.center{
        display:grid;
        place-content:safe center;
        justify-items:center;
        text-align:center;
      }

      #welcome{
        width:100%;
        padding:clamp(48px,8vw,96px);
        position:relative;
        overflow:hidden;
        isolation:isolate;
      }

      #ringCanvas{
        position:absolute;
        inset:0;
        z-index:-1;
        width:100%;
        height:100%;
        pointer-events:none;
      }

      #welcome p{
        margin:0;
        font-size:clamp(48px,6.8vw,100px);
        line-height:1.03;
        font-weight:500;
        color:var(--theme-surface-on-surface);
      }
      #welcome p span{
        display:block;
        margin-top:8px;
        font-size:0.31em;
        color:var(--theme-surface-on-surface-variant);
        line-height:1.28;
        max-width:72ch;
      }

      .cta{
        display:flex;
        justify-content:center;
        margin-top:40px;
      }
    }

    @layer components{
      button{
        background:var(--theme-primary-primary);
        color:var(--theme-primary-on-primary);

        border:1px solid transparent;
        border-radius:999px;

        /* ✅ ancora un po' più basso */
        padding:0.60em 1.85em;
        font-size:1.15em;
        line-height:1.02;

        display:inline-flex;
        align-items:center;
        justify-content:center;
        gap:.65rem;

        cursor:pointer;
        transition:.15s background ease-out, .15s color ease-out, .15s border-color ease-out;
      }

      .cta button:hover,
      .cta button:focus-visible{
        background:var(--theme-secondary-button);
        color:var(--theme-surface-on-surface);
        border-color:var(--theme-outline-variant);
      }

      .btn-ico{
        width:32px;
        height:32px;
        flex:0 0 32px;
        display:block;
      }
      .cta button:hover .btn-ico path,
      .cta button:focus-visible .btn-ico path{
        fill:var(--theme-surface-on-surface);
      }
    }

/* ---- section ---- */

.ff-help, .ff-help *{ box-sizing:border-box; }
  .ff-help img{ display:block; max-width:100%; height:auto; }

  .ff-help{
    --ff-surface:#ffffff;
    --ff-ink:#121317;
    --ff-muted:#45474D;
    --ff-outline: rgba(33,34,38,.06);
    --ffp-rgb: 10,20,120;

    font-family:"Google Sans Flex",sans-serif;
    background: var(--ff-surface);
    color: var(--ff-ink);

    width:100%;
    /* ✅ TOP 96px / BOTTOM 116px (+30px) */
    padding: 96px clamp(16px, 2.6vw, 28px) 116px;
  }

  .ff-help__inner{ max-width: var(--ff-content-max); margin: 0 auto; }
  .ff-help__head{ text-align:center; }

  .ff-help__head h2{
    margin:0;
    font-weight:500;
    letter-spacing:-.02em;
    font-size: clamp(32px, 5vw, 72px);
    line-height:1.05;
    color: var(--ff-ink);
  }

  /* ✅ sottotitolo coerente col resto del sito */
  .ff-help__sub{
    margin: 16px auto 0;
    font-size: clamp(21px, 2vw, 26px);
    line-height:1.72;
    color: var(--ff-muted);
    max-width: 72ch;
  }
  .ff-help__sub strong{ color: var(--ff-ink); font-weight:560; }

  .ff-help__gap{ height: clamp(46px, 5.4vw, 80px); }

  .ff-help__grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 1.8vw, 24px);
    align-items: stretch;
  }

  .ff-help__banner{
    position:relative;
    display:grid;
    grid-template-columns: 0.42fr 0.58fr;
    overflow:hidden;

    border-radius: 26px;
    border: 1px solid var(--ff-outline);
    background: var(--ff-surface);
    box-shadow: 0 16px 44px rgba(33,34,38,.07);

    height: clamp(240px, 19.5vw, 340px);
  }

  .ff-help__media{
    position:relative;
    overflow:hidden;
    background:#F0F1F5;
  }

  .ff-help__media::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(90deg, rgba(33,34,38,.10), rgba(33,34,38,0));
    pointer-events:none;
    opacity:.55;
    z-index:2;
  }

  .ffp-canvas{
    position:absolute; inset:0;
    width:100%; height:100%;
    display:block;
    z-index:1;
  }

  .ff-help__body{
    padding: clamp(18px, 2.2vw, 30px);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    gap: 10px;
  }

  /* ✅ MICRO */
  .ff-help__micro{
    margin: 0 0 2px;
    font-size: clamp(13px, 0.95vw, 14px);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ff-muted);
    line-height: 1;
  }

  .ff-help__body h3{
    margin:0;
    font-weight:560;
    letter-spacing:-.02em;
    font-size: clamp(21px, 2.05vw, 36px);
    line-height:1.08;
    color: var(--ff-ink);
  }

  .ff-help__body p{
    margin:0;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height:1.62;
    color: var(--ff-muted);
    max-width: 64ch;
  }

  .ff-help__badge{
    position:absolute;
    top: 12px;
    right: 12px;
    width: 62px;
    height: 62px;
    object-fit: contain;
    opacity: .98;
    pointer-events:none;
    user-select:none;
    -webkit-user-drag:none;
    filter: drop-shadow(0 10px 18px rgba(33,34,38,.14));
    z-index: 3;
  }
  .ff-help__banner--conv .ff-help__badge{
    width: 84px;
    height: 84px;
    top: 8px;
    right: 8px;
  }

  @media (width < 980px){
    .ff-help__grid{ grid-template-columns: 1fr; }
    .ff-help__banner{
      grid-template-columns: 1fr;
      grid-template-rows: 220px auto;
      height: auto;
    }
    .ff-help__badge{ width: 56px; height: 56px; }
    .ff-help__banner--conv .ff-help__badge{ width: 70px; height: 70px; }
  }

/* ---- section ---- */

/* ===================== STILE AUTONOMO (FONT INVARIATI) ===================== */
    .pf-bento-social{
      --ff-surface:#ffffff;
      --ff-ink:#121317;
      --ff-muted:#45474D;
      --ff-outline: rgba(33,34,38,.06);

      --ff-card-vetrina: #F3F6FB;
      --ff-card-conv: #EDEDF5;

      --ff-box-grey: #F0F1F5;
      --ff-box-border: rgba(33,34,38,.08);

      --r: 26px;
      --r2: 18px;

      --gap: clamp(16px, 2.2vw, 28px);

      /* padding-top standard bento */
      --pfb-pt: 96px;

      /* padding-bottom ff-help che annulliamo (base storica) */
      --ff-stack-fix: 86px;

      /* ✅ QUANTO SPAZIO VUOI *IN PIU'* TRA SEZIONE 2 E 3 */
      --ff-gap-extra: 90px; /* aumenta a 80/90/100 se vuoi ancora più aria */

      font-family:"Google Sans Flex",sans-serif;
      background: var(--ff-surface);
      color: var(--ff-ink);

      width:100%;
      padding: var(--pfb-pt) clamp(16px, 2.6vw, 28px) 86px;

      position: relative;
      overflow:hidden;
      isolation:isolate;
    }

    /* ✅ SPAZIATURA TRA SEZIONE 2 (ff-help) E SEZIONE 3 (bento)
       Prima annullavi tutto (--ff-stack-fix).
       Ora annulli "stack-fix - gap-extra", quindi ti resta gap-extra visibile. */
    .ff-help + .pf-bento-social{
      margin-top: calc(-1 * (var(--ff-stack-fix) - var(--ff-gap-extra))) !important;
      --pfb-pt: 28px; /* top interno compatto come volevi */
    }

    .pf-bento-social, .pf-bento-social *{ box-sizing:border-box; }
    .pf-bento-social h2, .pf-bento-social h3, .pf-bento-social p{ margin:0; }
    .pf-bento-social a{ color:inherit; text-decoration:none; }
    .pf-bento-social img{ display:block; max-width:100%; height:auto; }

    .pf-bento-social .pfb-wrap{
      max-width: var(--ff-content-max);
      margin: 0 auto;
      position: relative;
      z-index:1;
    }

    /* HEAD (font invariati) */
    .pf-bento-social .pfb-head{ text-align:center; }
    .pf-bento-social .pfb-title{
      font-weight:500;
      letter-spacing:-.02em;
      font-size: clamp(32px, 5vw, 72px);
      line-height:1.05;
      color: var(--ff-ink);
    }
    .pf-bento-social .pfb-subtitle{
      margin-top: 16px;
      font-size: clamp(21px, 2vw, 26px);
      line-height:1.72;
      color: var(--ff-muted);
      max-width: 66ch;
      margin-left:auto;
      margin-right:auto;
    }
    .pf-bento-social .pfb-subtitle strong{ color: var(--ff-ink); font-weight:560; }

    .pf-bento-social .pfb-grid{
      display:grid;
      gap: var(--gap);
      margin-top: clamp(34px, 4vw, 60px);
    }

    .pf-bento-social .pfb-row{
      display:grid;
      gap: var(--gap);
      align-items: stretch;
    }
    .pf-bento-social .pfb-row--top{ grid-template-columns: 1.15fr 1.85fr; }
    .pf-bento-social .pfb-row--bottom{ grid-template-columns: 1.85fr 1.15fr; }

    .pf-bento-social .pfb-card{
      position:relative;
      border: 1px solid var(--ff-outline);
      border-radius: var(--r);
      box-shadow: 0 10px 26px rgba(33,34,38,.07);
      overflow:hidden;

      padding: clamp(12px, 1.4vw, 18px);
      display:flex;
      flex-direction:column;
      min-height: 0;

      opacity:0;
      transform: translateY(14px);
      transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1);

      contain: paint;
      transform: translateY(14px) translateZ(0);
    }
    .pf-bento-social .pfb-card.is-in{ opacity:1; transform: translateZ(0); }

    .pf-bento-social .pfb-row--top .pfb-card{ background: var(--ff-card-vetrina); }
    .pf-bento-social .pfb-row--bottom .pfb-card{
      background: var(--ff-card-conv);
      border-color: rgba(10,20,120,.14);
    }

    .pf-bento-social .pfb-card--previewOnly{ gap: 12px; }
    .pf-bento-social .pfb-card--previewOnly .pfb-visual{
      height: clamp(150px, 12.5vw, 210px);
      flex: 0 0 auto;
    }

    .pf-bento-social .pfb-visual{
      border-radius: var(--r2);
      position:relative;
      overflow:hidden;
      background: #F0F1F5;
      border: 1px solid var(--ff-outline);
      display:block;
      min-height: auto;
    }

    .pf-bento-social .pfb-previewThumb{
      width: 100%;
      height: auto;
      border-radius: calc(var(--r2) - 2px);
      overflow:hidden;
      background:#fff;
      box-shadow: 0 10px 22px rgba(18,19,23,.06);
      border: 1px solid var(--ff-outline);
      contain: paint;
      transform: translateZ(0);
    }
    .pf-bento-social .pfb-previewThumb img{
      width:100%;
      height:auto;
      object-fit: cover;
      object-position: center center;
      transform: none;
    }

    .pf-bento-social .pfb-actions{
      display:flex;
      justify-content:center;
      margin-top: 0;
    }

    .pf-bento-social .pfb-link{
      background: var(--ff-ink);
      color: var(--ff-surface);
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.54em 1.20em;
      font-size: clamp(15px, 1.1vw, 16.5px);
      line-height: 1.02;
      font-weight: 500;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition:.15s background ease-out, .15s color ease-out, .15s border-color ease-out;
    }
    .pf-bento-social .pfb-link:hover,
    .pf-bento-social .pfb-link:focus-visible{
      background: rgba(183,191,217,.10);
      color: var(--ff-ink);
      border-color: var(--ff-outline);
      outline: none;
    }

    .pf-bento-social .pfb-case{
      display:flex;
      flex-direction:column;
      gap: 10px;
      height: 100%;
    }

    .pf-bento-social .pfb-case__top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;
      margin-top: 0;
    }
    .pf-bento-social .pfb-tagRow{
      order: 2;
      justify-content:flex-end;
      margin-top: 0;
      flex: 0 0 auto;
    }

    .pf-bento-social .pfb-case__title{
      order: 1;
      font-weight:560;
      letter-spacing:-.02em;
      font-size: clamp(19px, 1.9vw, 32px);
      line-height:1.08;
      color: var(--ff-ink);

      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;

      flex: 1 1 auto;
      max-width: none;
    }

    .pf-bento-social .pfb-tag{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      height: 44px;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid var(--ff-outline);
      background: rgba(33,34,38,.04);
      max-width: 100%;
      overflow: visible;
    }

    .pf-bento-social .pfb-tag__img{
      width: 32px;
      height: 32px;
      object-fit: contain;
      flex: 0 0 32px;
      filter: drop-shadow(0 10px 18px rgba(33,34,38,.14));
    }

    .pf-bento-social .pfb-tag__img--conv{
      width: 92px;
      height: 92px;
      flex: 0 0 92px;
      margin: -28px 0 -28px -8px;
      transform: rotate(-2deg);
      filter: drop-shadow(0 14px 26px rgba(33,34,38,.20));
    }

    .pf-bento-social .pfb-tag__txt{
      font-size: clamp(12px, .92vw, 13px);
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ff-muted);
      line-height: 1;
      font-weight:500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 42ch;
    }

    .pf-bento-social .pfb-case__grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(12px, 1.6vw, 18px);
      margin-top: 0;
    }

    .pf-bento-social .pfb-case__item{
      background: var(--ff-box-grey);
      border: 1px solid var(--ff-box-border);
      border-radius: 20px;
      padding: 12px 12px;
      contain: paint;
      box-shadow: none;
    }
    .pf-bento-social .pfb-row--bottom .pfb-card--case .pfb-case__item{
      background: var(--ff-box-grey);
      border-color: rgba(10,20,120,.10);
    }

    .pf-bento-social .pfb-case__item--wide{ grid-column: 1 / -1; }

    .pf-bento-social .pfb-v{
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.62;
      color: var(--ff-muted);
      max-width: 64ch;
    }
    .pf-bento-social .pfb-v strong{ color: var(--ff-ink); font-weight:560; }

    @media (width < 980px){
      .pf-bento-social .pfb-row--top,
      .pf-bento-social .pfb-row--bottom{ grid-template-columns: 1fr; }

      .pf-bento-social .pfb-case__grid{ grid-template-columns: 1fr; }
      .pf-bento-social .pfb-case__item--wide{ grid-column: auto; }

      .pf-bento-social .pfb-case__top{
        flex-direction:column;
        align-items:flex-start;
        gap: 10px;
      }
      .pf-bento-social .pfb-tagRow{ order: 1; justify-content:flex-start; }
      .pf-bento-social .pfb-case__title{
        order: 2;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
      }

      .pf-bento-social .pfb-card--previewOnly .pfb-visual{
        height: 220px;
      }
    }

    @media (prefers-reduced-motion: reduce){
      .pf-bento-social .pfb-card{
        transition: none;
        transform: none;
        opacity: 1;
      }
    }

/* ---- section ---- */

/* -------------------- SEZIONE AUTONOMA + RESET BASE -------------------- */
    #ff-problem{
      --ff-surface:#ffffff;
      --ff-ink:#121317;
      --ff-muted:#45474D;
      --ff-outline: rgba(33,34,38,.06);
      --ff-shadow: 0 16px 44px rgba(33,34,38,.07);

      --ff-card-vetrina: #F3F6FB;
      --ff-card-conv: #EDEDF5;
      --ff-blue-rgb: 10,20,120;

      font-family:"Google Sans Flex",sans-serif;
      background: var(--ff-surface);
      color: var(--ff-ink);

      width:100%;
      padding: 96px clamp(16px, 2.6vw, 28px) 86px;

      position:relative;
      overflow:hidden;
      isolation:isolate;
    }
    #ff-problem, #ff-problem *{ box-sizing:border-box; }
    #ff-problem h2, #ff-problem h3, #ff-problem p, #ff-problem ul{ margin:0; }
    #ff-problem a{ color:inherit; text-decoration:none; }

    .ff-problem__wrap{ max-width:var(--ff-content-max); margin:0 auto; }

    .ff-problem__head{ text-align:center; max-width:var(--ff-text-max); margin:0 auto; }
    .ff-problem__head h2{
      font-weight:500;
      letter-spacing:-.02em;
      font-size: clamp(32px, 5vw, 72px);
      line-height:1.05;
      color: var(--ff-ink);
    }
    .ff-problem__sub{
      margin-top: 18px;
      font-size: clamp(21px, 2vw, 26px);
      line-height:1.72;
      color: var(--ff-muted);
    }

    .ff-problem__grid{
      margin-top: clamp(36px, 4.4vw, 62px);
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(14px, 1.8vw, 24px);
      align-items:stretch;
    }

    /* LEFT */
    .ff-problem__lead{
      background: var(--ff-card-vetrina);
      border: 1px solid rgba(33,34,38,.08);
      border-radius: 26px;
      box-shadow: var(--ff-shadow);
      padding: clamp(16px, 2.0vw, 26px);
      height:100%;
    }
    .ff-problem__h3{
      font-weight:560;
      letter-spacing:-.02em;
      font-size: clamp(19px, 2.2vw, 34px);
      line-height:1.10;
      color: var(--ff-ink);
    }
    .ff-problem__h3l{ display:block; }

    .ff-problem__p{
      margin-top: 12px;
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.66;
      color: var(--ff-muted);
      max-width: 68ch;
    }
    .ff-problem__list{
      margin-top: 14px;
      padding:0;
      list-style:none;
      display:grid;
      gap: 11px;
      color: var(--ff-muted);
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.55;
    }
    .ff-problem__dot{
      width: 10px; height: 10px;
      border-radius: 999px;
      display:inline-block;
      margin-right: 10px;
      background: rgba(var(--ff-blue-rgb), .22);
      outline: 1px solid rgba(var(--ff-blue-rgb), .18);
      vertical-align: middle;
    }

    /* RIGHT */
    .ff-flow{
      background: var(--ff-card-conv);
      border: 1px solid rgba(var(--ff-blue-rgb), .14);
      border-radius: 26px;
      box-shadow: var(--ff-shadow);
      padding: clamp(16px, 2.0vw, 24px);
      height:100%;
      overflow:hidden;
    }

    .ff-flow__topSlot{
      position:relative;
      border: 1px solid rgba(33,34,38,.08);
      border-radius: 18px;
      background: #ffffff;
      padding: 14px;
      min-height: 360px;
      overflow:hidden;
    }

    .ff-flow__view{
      position:absolute;
      inset: 14px;
      opacity:0;
      transform: scale(.992);
      pointer-events:none;
      transition:
        opacity .42s cubic-bezier(.22,.61,.36,1),
        transform .42s cubic-bezier(.22,.61,.36,1);
    }

    .ff-flow[data-state="search"] .ff-flow__view[data-view="search"],
    .ff-flow[data-state="arrow"]  .ff-flow__view[data-view="arrow"],
    .ff-flow[data-state="bad"]    .ff-flow__view[data-view="bad"],
    .ff-flow[data-state="good"]   .ff-flow__view[data-view="good"]{
      opacity:1;
      transform: none;
      pointer-events:auto;
    }

    /* Search */
    .ff-flow__google{
      border: 1px solid rgba(33,34,38,.08);
      border-radius: 18px;
      background: #F0F1F5;
      padding: 14px;
      height: 100%;
    }
    .ff-flow__topbar{ display:flex; align-items:center; gap:8px; margin-bottom:10px; }
    .ff-flow__dot{ width:10px; height:10px; border-radius:999px; background: rgba(33,34,38,.10); }
    .ff-flow__label{
      margin-left:auto;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ff-muted);
    }
    .ff-flow__search{
      position:relative;
      border: 1px solid rgba(33,34,38,.08);
      background: rgba(255,255,255,.90);
      border-radius: 999px;
      padding: 11px 14px;
      overflow:hidden;
    }
    .ff-flow__glass{
      position:absolute; inset:-40%;
      background: radial-gradient(circle at 30% 50%, rgba(10,20,120,.10), transparent 45%);
      opacity:.9; pointer-events:none;
    }
    .ff-flow__query{ position:relative; z-index:1; font-size: 14px; color: var(--ff-muted); }
    .ff-flow__results{ margin-top:12px; display:grid; gap:10px; }
    .ff-flow__res{
      border: 1px solid rgba(33,34,38,.08);
      background: rgba(255,255,255,.92);
      border-radius: 14px;
      padding: 10px 12px;
    }
    .ff-flow__res.hit{
      outline: 1px solid rgba(10,20,120,.18);
      box-shadow: 0 10px 24px rgba(10,20,120,.08);
    }
    .ff-flow__t{ height:10px; width:62%; border-radius:999px; background: rgba(33,34,38,.14); margin-bottom:8px; }
    .ff-flow__l{ height:8px; width:92%; border-radius:999px; background: rgba(33,34,38,.10); margin-bottom:6px; }
    .ff-flow__l.s{ width:68%; margin-bottom:0; }

    /* Arrow */
    .ff-flow__arrowInline{
      height: 100%;
      border-radius: 18px;
      border: 1px solid rgba(33,34,38,.08);
      background: #F0F1F5;
      display:grid;
      place-items:center;
      position:relative;
      overflow:hidden;
    }
    .ff-flow__aLine{
      width: 62%;
      height: 2px;
      background: rgba(33,34,38,.18);
      border-radius: 999px;
    }
    .ff-flow__aHead{
      width: 12px; height: 12px;
      border-right: 2px solid rgba(33,34,38,.18);
      border-bottom: 2px solid rgba(33,34,38,.18);
      transform: rotate(-45deg);
      position:absolute;
      right: 18%;
    }
    .ff-flow__arrowTxt{
      position:absolute;
      left: 0; right: 0;
      bottom: 18px;
      text-align:center;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ff-muted);
      margin:0;
    }

    /* BAD/GOOD */
    .ff-flow__miniHead{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      margin-bottom: 10px;
    }
    .ff-flow__pill{
      display:inline-flex; align-items:center;
      height:34px; padding:0 12px;
      border-radius:999px;
      border: 1px solid rgba(33,34,38,.08);
      font-size: 12px;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-weight:560;
      white-space: nowrap;
      background: rgba(255,255,255,.96);
      color: var(--ff-ink);
    }
    .ff-flow__pill.good{
      outline: 1px solid rgba(10,20,120,.16);
      box-shadow: 0 10px 24px rgba(10,20,120,.06);
    }
    .ff-flow__pill.bad{
      outline: 1px solid rgba(33,34,38,.10);
      background: rgba(255,255,255,.92);
    }
    .ff-flow__hint{ font-size:13px; color: var(--ff-muted); white-space: nowrap; }

    .ff-flow__site{ display:flex; flex-direction:column; gap: 10px; height: 100%; }
    .ff-flow__siteTop{ display:flex; align-items:center; gap:8px; }
    .ff-flow__sdot{ width:9px; height:9px; border-radius:999px; background: rgba(33,34,38,.10); }
    .ff-flow__slabel{
      margin-left:auto;
      font-size:12px;
      letter-spacing:.12em;
      text-transform:uppercase;
      color: var(--ff-muted);
    }

    .ff-flow__body{
      border: 1px solid rgba(33,34,38,.08);
      border-radius: 16px;
      background: #F0F1F5;
      padding: 12px;
      display:grid;
      gap: 10px;
      align-content:start;
    }
    .ff-flow__body.bad{ background: rgba(33,34,38,.04); }

    .ff-flow__hero{
      height:56px;
      border-radius: 14px;
      background: rgba(10,20,120,.14);
      outline: 1px solid rgba(10,20,120,.10);
    }
    .ff-flow__hero.bad{ background: rgba(33,34,38,.10); outline-color: rgba(33,34,38,.08); }

    .ff-flow__line{ height:8px; border-radius:999px; background: rgba(33,34,38,.14); width:92%; }
    .ff-flow__line.s{ width:68%; background: rgba(33,34,38,.12); }
    .ff-flow__line.bad{ background: rgba(33,34,38,.10); }
    .ff-flow__line.bad.s{ background: rgba(33,34,38,.08); }

    .ff-flow__chips{ display:flex; gap:8px; flex-wrap:wrap; }
    .ff-flow__chip{ height:10px; width:26%; min-width:70px; border-radius:999px; background: rgba(33,34,38,.10); }

    .ff-flow__mess{
      border: 1px dashed rgba(33,34,38,.18);
      border-radius: 14px;
      padding: 10px;
      display:grid;
      gap: 8px;
      background: rgba(255,255,255,.65);
    }
    .ff-flow__m{ height:8px; width:90%; border-radius:999px; background: rgba(33,34,38,.12); }
    .ff-flow__m.s{ width:62%; }
    .ff-flow__m.t{ width:44%; background: rgba(33,34,38,.09); }

    .ff-flow__ctaRow{ display:flex; gap:10px; align-items:center; }
    .ff-flow__cta{ height:30px; width:46%; border-radius:999px; background: rgba(33,34,38,.80); }
    .ff-flow__cta.ghost{ width:30%; background: rgba(33,34,38,.12); outline: 1px solid rgba(33,34,38,.10); }
    .ff-flow__cta.bad{ width:58%; background: rgba(33,34,38,.12); outline: 1px solid rgba(33,34,38,.10); }

    .ff-flow__note{
      font-size: clamp(15px, 1.15vw, 18px);
      line-height: 1.62;
      color: var(--ff-muted);
    }
    .ff-flow__note strong{ color: var(--ff-ink); font-weight:560; }

    @media (width < 980px){
      .ff-problem__grid{ grid-template-columns: 1fr; }
      .ff-flow__topSlot{ min-height: 400px; }
    }

    @media (prefers-reduced-motion: reduce){
      .ff-flow__view{
        position: static !important;
        opacity: 1 !important;
        transform:none !important;
        pointer-events:auto !important;
        transition:none !important;
      }
      .ff-flow__view.is-arrow{ display:none; }
      .ff-flow__view.is-good{ margin-top: 14px; }
    }

    /* -------------------- OVERRIDE SPACING (ANTI CSS GLOBALI) -------------------- */
    #ff-problem .ff-problem__sub{ margin-top: 16px !important; }  /* come Bento */
    #ff-problem .ff-problem__p{ margin-top: 16px !important; }    /* più spazio sotto H3 */
    #ff-problem .ff-problem__list{ margin-top: 18px !important; gap: 12px !important; } /* più respiro prima bullet */

/* ---- section ---- */

.ff-solution{
      --ff-surface:#ffffff;
      --ff-ink:#121317;
      --ff-muted:#45474D;
      --ff-outline: rgba(33,34,38,.06);
      --ff-shadow: 0 16px 44px rgba(33,34,38,.07);

      /* blu coerente col hero */
      --ff-blue-rgb: 10,20,120;

      /* tinte PIATTE (leggibili e soft) */
      --ff-card-vetrina: #F3F6FB;
      --ff-card-conv:    rgba(var(--ff-blue-rgb), .075);

      --ff-note-vetrina: #EEF2F8;
      --ff-note-conv:    rgba(var(--ff-blue-rgb), .105);

      font-family:"Google Sans Flex",sans-serif;
      background: var(--ff-surface);
      color: var(--ff-ink);

      width:100%;
      padding: 96px clamp(16px, 2.6vw, 28px) 86px;

      position:relative;
      overflow:hidden;
      isolation:isolate;
    }
    .ff-solution, .ff-solution *{ box-sizing:border-box; }
    .ff-solution h2, .ff-solution h3, .ff-solution p, .ff-solution ul{ margin:0; }
    .ff-solution button{ font-family:inherit; }

    .ff-solution__wrap{ max-width:var(--ff-content-max); margin:0 auto; }

    /* ✅ FIX A PROVA DI CSS GLOBALI:
       usiamo gap sul contenitore header invece del margin-top del <p> */
    .ff-solution__head{
      text-align:center;
      max-width:var(--ff-text-max);
      margin:0 auto;

      display:grid;
      gap: 24px; /* <-- aumenta qui lo spazio tra H2 e sottotitolo */
    }

    .ff-solution__head h2{
      font-weight:500;
      letter-spacing:-.02em;
      font-size: clamp(32px, 5vw, 72px);
      line-height:1.05;
      color: var(--ff-ink);
    }

    /* ✅ sottotitolo: niente margin-top, così i global non lo azzerano */
    .ff-solution__sub{
      margin-top: 0 !important;
      font-size: clamp(21px, 2vw, 26px);
      line-height:1.72;
      color: var(--ff-muted);
    }
    .ff-solution__sub strong{ color: var(--ff-ink); font-weight:560; }

    .ff-solution__grid{
      margin-top: clamp(38px, 4.6vw, 66px);
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(14px, 1.8vw, 24px);
      align-items:stretch;
    }

    /* Cards */
    .ff-pack{
      position:relative;
      border-radius: 26px;
      border: 1px solid rgba(33,34,38,.08);
      box-shadow: var(--ff-shadow);
      padding: clamp(18px, 2.2vw, 30px);

      display:flex;
      flex-direction:column;
      gap: 16px;
      min-height: 410px;
      overflow:hidden;
    }

    .ff-pack--vetrina{ background: var(--ff-card-vetrina); }
    .ff-pack--conv{
      background: var(--ff-card-conv);
      border-color: rgba(var(--ff-blue-rgb), .14);
    }

    /* badge top-right */
    .ff-pack__badge{
      position:absolute;
      top: 14px;
      right: 14px;
      pointer-events:none;
      user-select:none;
      -webkit-user-drag:none;
      filter: drop-shadow(0 12px 22px rgba(33,34,38,.16));
      opacity: .98;
    }
    .ff-pack__badge--vetrina{
      width: 60px;
      height: 60px;
      object-fit: contain;
    }
    .ff-pack__badge--conv{
      width: 92px;
      height: 92px;
      object-fit: contain;
      top: 8px;
      right: 8px;
      transform: rotate(-2deg);
    }

    /* top */
    .ff-pack__title{
      padding-right: 120px; /* spazio per badge */
      font-weight:560;
      letter-spacing:-.02em;
      font-size: clamp(22px, 2.2vw, 34px);
      line-height:1.10;
      color: var(--ff-ink);
    }

    .ff-pack__desc{
      margin-top: 12px;
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.66;
      color: var(--ff-muted);
      max-width: 70ch;
      padding-right: 120px;
    }

    .ff-pack__body{
      margin-top: 4px;
      border-top: 1px solid rgba(33,34,38,.10);
      padding-top: 16px;
      display:flex;
      flex-direction:column;
      gap: 14px;
      flex: 1 1 auto;
    }
    .ff-pack--conv .ff-pack__body{
      border-top-color: rgba(var(--ff-blue-rgb), .16);
    }

    .ff-pack__list{
      padding:0;
      list-style:none;
      display:grid;
      gap: 11px;
      color: var(--ff-muted);
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.58;
    }
    .ff-pack__list strong{ color: var(--ff-ink); font-weight:560; }

    .ff-pack__dot{
      width: 10px; height: 10px;
      border-radius: 999px;
      display:inline-block;
      margin-right: 10px;
      background: rgba(var(--ff-blue-rgb), .24);
      outline: 1px solid rgba(var(--ff-blue-rgb), .20);
      vertical-align: middle;
    }

    .ff-pack__note{
      border-radius: 18px;
      padding: 12px 14px;
      color: var(--ff-muted);
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.60;
      border: 1px solid rgba(33,34,38,.10);
      background: var(--ff-note-vetrina);
    }
    .ff-pack--conv .ff-pack__note{
      border-color: rgba(var(--ff-blue-rgb), .16);
      background: var(--ff-note-conv);
    }

    .ff-pack__actions{
      margin-top: 2px;
      padding-top: 14px;
      border-top: 1px solid rgba(33,34,38,.10);
      display:flex;
      gap: 12px;
      align-items:center;
      flex-wrap:wrap;
    }
    .ff-pack--conv .ff-pack__actions{
      border-top-color: rgba(var(--ff-blue-rgb), .16);
    }

    .ff-pack__btn{
      background: var(--ff-ink);
      color: var(--ff-surface);
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.60em 1.85em;
      font-size: 1.15em;
      line-height: 1.02;
      font-weight: 500;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition:.15s background ease-out, .15s color ease-out, .15s border-color ease-out;
    }
    .ff-pack__btn:hover,
    .ff-pack__btn:focus-visible{
      background: rgba(183,191,217,.12);
      color: var(--ff-ink);
      border-color: rgba(33,34,38,.14);
      outline:none;
    }

    @media (width < 980px){
      .ff-solution__grid{ grid-template-columns: 1fr; }
      .ff-pack{ min-height: 0; }
      .ff-pack__title,
      .ff-pack__desc{ padding-right: 0; }
      .ff-pack__badge--conv{ width: 82px; height: 82px; }
    }

/* ---- section ---- */

.ff-tlclean{
      --ff-surface:#ffffff;
      --ff-ink:#121317;
      --ff-muted:#45474D;
      --ff-outline: rgba(33,34,38,.06);
      --ff-hair: rgba(33,34,38,.10);
      --ff-shadow: 0 16px 44px rgba(33,34,38,.07);

      /* blu coerente col hero */
      --ff-blue-rgb: 10,20,120;

      font-family:"Google Sans Flex",sans-serif;
      background: var(--ff-surface);
      color: var(--ff-ink);

      width:100%;
      padding: 96px clamp(16px, 2.6vw, 28px) 78px;
      margin-top: clamp(36px, 5vw, 82px);
      position:relative;
      overflow:hidden;
      isolation:isolate;
    }

    .ff-tlclean, .ff-tlclean *{ box-sizing:border-box; }
    .ff-tlclean h2, .ff-tlclean h3, .ff-tlclean p{ margin:0; }
    .ff-tlclean button{ font-family:inherit; font-size:inherit; }

    .ff-tlclean__wrap{ max-width:var(--ff-content-max); margin:0 auto; }

    .ff-tlclean__head{
      text-align:center;
      max-width:var(--ff-text-max);
      margin:0 auto;
      display:grid;
      gap: clamp(18px, 2.6vw, 32px);
    }
    .ff-tlclean__head h2{
      font-weight:500;
      letter-spacing:-.02em;
      font-size: clamp(32px, 5vw, 72px);
      line-height:1.05;
      color: var(--ff-ink);
    }

    /* ✅ più grande e più staccato */
    .ff-tlclean__sub{
      text-align:center;
      margin: 0 auto;
      font-size: clamp(21px, 2vw, 26px);
      line-height:1.72;
      color: var(--ff-muted);
      max-width: var(--ff-text-max);
    }

    /* ✅ schiacciata: una card grande */
    .ff-tlclean__card{
      margin-top: clamp(38px, 4.4vw, 62px);
      border: 1px solid var(--ff-outline);
      border-radius: 26px;
      box-shadow: var(--ff-shadow);
      background:
        radial-gradient(circle at 20% 15%, rgba(var(--ff-blue-rgb), .055), transparent 55%),
        radial-gradient(circle at 85% 35%, rgba(var(--ff-blue-rgb), .040), transparent 60%),
        #ffffff;
      overflow:hidden;
      padding: clamp(16px, 2.0vw, 22px);
    }

    .ff-tlclean__grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items:stretch;
    }

    .ff-tlclean__item{
      border: 1px solid rgba(33,34,38,.10);
      background: rgba(240,241,245,.55);
      border-radius: 18px;
      padding: 14px 14px;
      display:grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items:start;
    }

    .ff-tlclean__n{
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display:grid;
      place-items:center;
      font-size: 13px;
      letter-spacing:.12em;
      color: rgba(33,34,38,.55);
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(33,34,38,.10);
      user-select:none;
      margin-top: 1px;
    }

    /* ✅ gerarchia più leggibile */
    .ff-tlclean__h3{
      font-weight:560;
      letter-spacing:-.02em;
      font-size: clamp(18px, 1.6vw, 24px);
      line-height:1.25;
      color: var(--ff-ink);
    }
    .ff-tlclean__p{
      margin-top: 7px;
      font-size: clamp(14.5px, 1.10vw, 17.5px);
      line-height:1.55;
      color: var(--ff-muted);
      max-width: 64ch;
    }

    /* ✅ CTA styles lasciati fuori perché il bottone è rimosso
       (puoi cancellare queste regole se vuoi pulizia totale) */
    .ff-tlclean__cta{
      margin-top: clamp(18px, 2.6vw, 34px);
      display:flex;
      justify-content:center;
    }
    .ff-tlclean__btn{
      background: var(--ff-ink);
      color: var(--ff-surface);
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.60em 1.85em;
      font-size: 1.15em;
      line-height: 1.02;
      font-weight: 500;
      cursor:pointer;
      transition:.15s background ease-out, .15s color ease-out, .15s border-color ease-out;
    }
    .ff-tlclean__btn:hover,
    .ff-tlclean__btn:focus-visible{
      background: rgba(183,191,217,.12);
      color: var(--ff-ink);
      border-color: rgba(33,34,38,.14);
      outline:none;
    }

    @media (width < 980px){
      .ff-tlclean__grid{ grid-template-columns: 1fr; }
    }

/* ---- section ---- */

.ff-steps{
      --ff-surface:#ffffff;
      --ff-ink:#121317;
      --ff-muted:#45474D;
      --ff-outline: rgba(33,34,38,.08);
      --ff-hair: rgba(33,34,38,.12);
      --ff-shadow: 0 16px 44px rgba(33,34,38,.07);
      --ffp-rgb: 10,20,120;

      font-family:"Google Sans Flex",sans-serif;
      background: var(--ff-surface);
      color: var(--ff-ink);

      width:100%;
      padding: 0 clamp(16px, 2.6vw, 28px) 72px;
      position:relative;
      overflow:hidden;
      isolation:isolate;
    }
    .ff-steps, .ff-steps *{ box-sizing:border-box; }
    .ff-steps h2, .ff-steps h3, .ff-steps p, .ff-steps ul{ margin:0; }
    .ff-steps a{ color:inherit; text-decoration:none; }
    .ff-steps button{ font-family:inherit; font-size:inherit; }

    .ff-steps__wrap{ max-width:var(--ff-content-max); margin:0 auto; }

    /* HEAD */
    .ff-steps .ff-steps__head{ text-align:center !important; max-width:var(--ff-text-max); margin:0 auto; }
    .ff-steps__head h2{
      font-weight:500;
      letter-spacing:-.02em;
      font-size: clamp(32px, 5vw, 72px);
      line-height:1.05;
    }

    /* ✅ SOTTOTITOLO: centrato “bloccato” + più distante dal titolo */
    .ff-steps .ff-steps__sub{
      margin-top: 18px !important;
      text-align: center !important;
      display:block !important;
      width: min(78ch, 100%) !important;
      margin-left:auto !important;
      margin-right:auto !important;

      font-size: clamp(21px, 2vw, 26px);
      line-height:1.72;
      color: var(--ff-muted);
    }

    /* TABELLINA: contenitore arrotondato, celle rettangoli */
    .ff-steps__table{
      margin-top: clamp(34px, 4.2vw, 50px);
      border: 1px solid var(--ff-outline);
      border-radius: 16px;      /* solo il contenitore */
      overflow:hidden;
      display:flex;
      width:100%;
      background: rgba(255,255,255,.88);
      box-shadow: 0 10px 26px rgba(33,34,38,.06);
    }

    .ff-steps__cell{
      appearance:none;
      border:0;
      border-radius:0 !important;   /* ✅ no smusso sulle celle */
      background: transparent;

      flex: 1 1 0;
      min-width: 0;

      padding: 14px 12px 12px;
      cursor:pointer;
      text-align:left;

      display:flex;
      flex-direction:column;
      gap: 6px;

      border-right: 1px solid rgba(33,34,38,.10); /* linea netta */
      transition: background .15s ease, color .15s ease;
      position:relative;
    }
    .ff-steps__cell:last-child{ border-right:0; }

    .ff-steps__cell:focus-visible{
      outline: 2px solid rgba(var(--ffp-rgb), .25);
      outline-offset: -2px;
    }

    .ff-steps__cellN{
      font-size: 13px;
      letter-spacing: .14em;
      color: rgba(33,34,38,.50);
    }
    .ff-steps__cellT{
      font-weight:560;
      letter-spacing:-.01em;
      font-size: 16px;
      color: var(--ff-ink);
      line-height:1.2;
      white-space: nowrap;
      overflow:hidden;
      text-overflow: ellipsis;
    }

    /* active: rettangolo “pieno blu” (senza riga scura sotto) */
    .ff-steps__cell.is-active{
      background: rgba(var(--ffp-rgb), .12);
    }
    .ff-steps__cell.is-active .ff-steps__cellT{
      color: rgb(var(--ffp-rgb));
    }
    /* ✅ riga scura sotto rimossa */
    .ff-steps__cell.is-active::after{ display:none !important; }

    @media (hover:hover){
      .ff-steps__cell:hover{ background: rgba(33,34,38,.015); }
      .ff-steps__cell.is-active:hover{ background: rgba(var(--ffp-rgb), .12); }
    }

    /* Mobile: scrollabile, ma SENZA auto-scroll via JS */
    @media (width < 980px){
      .ff-steps__table{
        overflow:auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
      }
      .ff-steps__cell{
        flex: 0 0 auto;
        min-width: 170px;
        scroll-snap-align: start;
      }
      .ff-steps__cellT{ max-width: 18ch; }
    }

    /* CARD */
    .ff-steps__card{
      margin-top: clamp(18px, 2.8vw, 30px);
      position:relative;
      overflow:hidden;

      border-radius: 26px;
      border: 1px solid var(--ff-outline);
      background: rgba(255,255,255,.82);
      box-shadow: var(--ff-shadow);

      min-height: clamp(360px, 38vw, 520px);
      display:grid;
      grid-template-columns: 0.46fr 0.54fr;
      align-items: stretch;
    }

    .ff-steps__media{
      position:relative;
      background:#F0F1F5;
      overflow:hidden;
    }
    .ff-steps__canvas{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      display:block;
      pointer-events:none;
    }
    .ff-steps__fade{
      position:absolute; inset:0;
      background: linear-gradient(90deg, rgba(33,34,38,.10), rgba(33,34,38,0));
      opacity:.55;
      pointer-events:none;
    }

    .ff-steps__body{
      padding: clamp(18px, 2.2vw, 30px);
      padding-bottom: 92px; /* ✅ spazio per frecce fisse */
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap: 12px;
      position:relative;
    }

    .ff-steps__micro{
      font-size: clamp(13px, 0.95vw, 14px);
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ff-muted);
      line-height: 1;
    }
    .ff-steps__h3{
      font-weight:560;
      letter-spacing:-.02em;
      font-size: clamp(23px, 2.2vw, 36px);
      line-height:1.08;
    }
    .ff-steps__p{
      font-size: clamp(15px, 1.10vw, 18px);
      line-height:1.60;
      color: var(--ff-muted);
      max-width: 64ch;
    }

    .ff-steps__bul{
      padding:0;
      list-style:none;
      display:grid;
      gap: 10px;
      color: var(--ff-muted);
      font-size: clamp(15px, 1.10vw, 18px);
      line-height:1.60;
      margin-top: 2px;
    }
    .ff-steps__bul li{
      position:relative;
      padding-left: 18px;
    }
    .ff-steps__bul li::before{
      content:"";
      position:absolute;
      left:0;
      top:.62em;
      width: 10px; height: 10px;
      border-radius:999px;
      background: rgba(var(--ffp-rgb), .18);
      outline: 1px solid rgba(var(--ffp-rgb), .16);
      transform: translateY(-50%);
    }

    .ff-steps__footer{
      margin-top: 12px;
      display:flex;
      align-items:center;
      justify-content:flex-start;
      gap: 14px;
      flex-wrap:wrap;
    }

    .ff-steps__btn{
      background: var(--ff-ink);
      color: var(--ff-surface);
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.68em 2.10em;
      font-size: 1.20em;
      line-height: 1.02;
      font-weight: 560;
      cursor:pointer;
      transition:.15s background ease-out, .15s color ease-out, .15s border-color ease-out;
    }
    .ff-steps__btn:hover,
    .ff-steps__btn:focus-visible{
      background: rgba(183,191,217,.12);
      color: var(--ff-ink);
      border-color: rgba(33,34,38,.14);
      outline:none;
    }

    /* ✅ frecce fisse: sempre nello stesso punto */
    .ff-steps__nav{
      position:absolute;
      right: clamp(16px, 1.8vw, 22px);
      bottom: clamp(10px, 1.4vw, 16px); /* ✅ più in basso e fisso */
      display:flex;
      gap: 10px;
      align-items:center;
      z-index: 5;
    }
    .ff-steps__navBtn{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(33,34,38,.10);
      background: rgba(255,255,255,.78);
      color: var(--ff-ink);
      display:grid;
      place-items:center;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .ff-steps__navBtn span{
      font-size: 22px;
      line-height: 1;
      transform: translateY(-1px);
      color: rgba(33,34,38,.75);
    }
    .ff-steps__navBtn:hover{
      background: rgba(var(--ffp-rgb), .06);
      border-color: rgba(var(--ffp-rgb), .16);
      transform: translateY(-1px);
    }
    .ff-steps__navBtn:focus-visible{
      outline: 2px solid rgba(var(--ffp-rgb), .25);
      outline-offset: 2px;
    }

    @media (width < 980px){
      .ff-steps__card{
        grid-template-columns: 1fr;
        grid-template-rows: 260px auto;
        min-height: 0;
      }
      .ff-steps__body{ justify-content:flex-start; }
    }

/* ---- section ---- */

/* ===== Scoped: SOLO questa sezione ===== */
    #ff-portfolio.ff-portfolio{
      --ff-surface:#ffffff;
      --ff-ink:#121317;
      --ff-muted:#45474D;
      --ff-outline: rgba(33,34,38,.08);
      --ff-shadow: 0 16px 44px rgba(33,34,38,.07);
      --ff-blue-rgb: 10,20,120;

      font-family:"Google Sans Flex",sans-serif;
      background: var(--ff-surface);
      color: var(--ff-ink);
      width:100%;
      padding: 96px clamp(16px, 2.6vw, 28px) 0;
      position:relative;
      overflow:hidden;
      isolation:isolate;
    }
    #ff-portfolio, #ff-portfolio *{ box-sizing:border-box; }
    #ff-portfolio h2, #ff-portfolio h3, #ff-portfolio p{ margin:0; }
    #ff-portfolio a{ color:inherit; text-decoration:none; }

    #ff-portfolio .ff-portfolio__wrap{ max-width:var(--ff-content-max); margin:0 auto; }
    #ff-portfolio .ff-portfolio__head{ text-align:center; max-width:var(--ff-text-max); margin:0 auto; }

    #ff-portfolio .ff-portfolio__micro{
      margin: 0 0 10px;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(33,34,38,.55);
    }
    #ff-portfolio .ff-portfolio__head h2{
      font-weight:500;
      letter-spacing:-.02em;
      font-size: clamp(32px, 5vw, 72px);
      line-height:1.05;
    }
    #ff-portfolio .ff-portfolio__sub{
      margin-top: 18px;
      font-size: clamp(21px, 2vw, 26px);
      line-height:1.72;
      color: var(--ff-muted);
    }

    /* 3 blocchi desktop */
    #ff-portfolio .ff-portfolio__grid{
      margin-top: clamp(38px, 4.6vw, 66px);
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(14px, 1.8vw, 24px);
      align-items:start;
    }

    #ff-portfolio .ff-portfolio__card{
      border: 1px solid var(--ff-outline);
      border-radius: 22px;
      box-shadow: var(--ff-shadow);
      background:#fff;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      min-width:0;
    }

    #ff-portfolio .ff-portfolio__preview{
      background:#F0F1F5;
      border-bottom: 1px solid rgba(33,34,38,.08);
    }

    #ff-portfolio .ff-portfolio__chrome{
      height:44px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(33,34,38,.08);
    }
    #ff-portfolio .ff-portfolio__dots{ display:flex; gap:6px; }
    #ff-portfolio .ff-portfolio__dots i{
      width:10px; height:10px;
      border-radius:999px;
      background: rgba(33,34,38,.12);
      display:block;
    }
    #ff-portfolio .ff-portfolio__domain{
      font-size:12px;
      letter-spacing:.02em;
      color: rgba(33,34,38,.70);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:68%;
    }

    /* ✅ Bottone "Apri sito" nero + testo bianco */
    #ff-portfolio .ff-portfolio__open{
      margin-left:auto;
      height:28px;
      padding:0 12px;
      border-radius:999px;
      border: 1px solid transparent;
      background: var(--ff-ink);
      color: #fff;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size: 12px;
      font-weight: 650;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    #ff-portfolio .ff-portfolio__open:hover{
      background: rgba(18,19,23,.86);
      transform: translateY(-1px);
    }
    #ff-portfolio .ff-portfolio__open:focus-visible{
      outline: none;
      border-color: rgba(var(--ff-blue-rgb), .28);
      box-shadow: 0 0 0 3px rgba(var(--ff-blue-rgb), .10);
    }

    /* BLOCCO ORIZZONTALE */
    #ff-portfolio .ff-portfolio__stage{
      position:relative;
      display:block;
      overflow:hidden;
      background:
        radial-gradient(1100px 520px at 30% 12%, rgba(var(--ff-blue-rgb), .10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(240,241,245,.95));
    }

    #ff-portfolio .ff-portfolio__cover{
      position:relative;
      display:block;
      width:100%;
      height:auto;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.01);
      transition: transform .28s ease;
    }
    #ff-portfolio .ff-portfolio__stage:hover .ff-portfolio__cover{
      transform: scale(1.03);
    }

    #ff-portfolio .ff-portfolio__veil{
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.16));
      opacity:.22;
      pointer-events:none;
    }

    #ff-portfolio .ff-portfolio__badge{
      position:absolute;
      left: 14px;
      bottom: 14px;
      height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(33,34,38,.10);
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(33,34,38,.75);
      display:inline-flex;
      align-items:center;
      pointer-events:none;
    }

    /* meta sotto */
    #ff-portfolio .ff-portfolio__meta{
      padding: 12px 14px 14px;
      display:flex;
      flex-direction:column;
      gap: 10px;
      background: linear-gradient(180deg, rgba(255,255,255,1), rgba(243,246,251,.35));
    }

    /* titolo + tag: sempre dentro */
    #ff-portfolio .ff-portfolio__row{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap: 10px;
      min-width:0;
    }

    #ff-portfolio .ff-portfolio__h3{
      font-weight:560;
      letter-spacing:-.02em;
      font-size: 18px;
      line-height:1.12;
      color: var(--ff-ink);
      max-width: 100%;
      white-space: normal;
      overflow: visible;
    }

    #ff-portfolio .ff-portfolio__tags{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap: wrap;
      overflow: visible;
      max-width: 100%;
    }

    #ff-portfolio .ff-portfolio__tag{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      height:28px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid rgba(33,34,38,.10);
      background: rgba(255,255,255,.92);
      font-size:12px;
      letter-spacing:.10em;
      text-transform: uppercase;
      color: rgba(33,34,38,.72);
      white-space:nowrap;
    }
    #ff-portfolio .ff-portfolio__tag.is-accent{
      border-color: rgba(var(--ff-blue-rgb), .16);
      color: rgb(var(--ff-blue-rgb));
      box-shadow: 0 10px 24px rgba(var(--ff-blue-rgb), .06);
    }

    /* responsive */
    @media (width < 1100px){
      #ff-portfolio .ff-portfolio__grid{ grid-template-columns: repeat(2, 1fr); }
      #ff-portfolio .ff-portfolio__stage{ min-height: clamp(200px, 22vw, 290px); }
    }
    @media (width < 820px){
      #ff-portfolio .ff-portfolio__grid{ grid-template-columns: 1fr; }
      #ff-portfolio .ff-portfolio__stage{ min-height: clamp(220px, 56vw, 360px); }
    }

/* ---- section ---- */

/* ===== Scoped: SOLO questa sezione ===== */
    #ff-final.ff-final{
      --ff-surface:#ffffff;
      --ff-ink:#121317;
      --ff-muted:#45474D;
      --ff-outline: rgba(33,34,38,.08);
      --ff-shadow: 0 16px 44px rgba(33,34,38,.07);
      --ff-blue-rgb: 10,20,120;

      font-family:"Google Sans Flex",sans-serif;
      background: var(--ff-surface);
      color: var(--ff-ink);

      width:100%;
      padding: 0 clamp(16px, 2.6vw, 28px) 60px;
      margin-top: -48px;
      position:relative;
      overflow:hidden;
      isolation:isolate;
    }
    #ff-final, #ff-final *{ box-sizing:border-box; }
    #ff-final h2, #ff-final h3, #ff-final p, #ff-final ul{ margin:0; }
    #ff-final a{ color:inherit; text-decoration:none; }

    #ff-final .ff-final__wrap{ max-width:var(--ff-content-max); margin:0 auto; }

    #ff-final .ff-final__head{
      text-align:center;
      max-width:var(--ff-text-max);
      margin:0 auto;
      display:grid;
      gap: 18px;
    }
    #ff-final .ff-final__micro{
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(33,34,38,.55);
    }
    #ff-final .ff-final__head h2{
      font-weight:500;
      letter-spacing:-.02em;
      font-size: clamp(32px, 5vw, 72px);
      line-height:1.05;
    }
    #ff-final .ff-final__sub{
      font-size: clamp(21px, 2vw, 26px);
      line-height:1.72;
      color: var(--ff-muted);
    }
    #ff-final .ff-final__sub strong{ color: var(--ff-ink); font-weight:560; }

    /* Card */
    #ff-final .ff-final__card{
      margin-top: clamp(38px, 4.6vw, 66px);
      border: 1px solid var(--ff-outline);
      border-radius: 26px;
      box-shadow: var(--ff-shadow);
      overflow:hidden;

      display:grid;
      grid-template-columns: 1.15fr 0.85fr;
      background:
        radial-gradient(900px 420px at 18% 18%, rgba(var(--ff-blue-rgb), .06), transparent 58%),
        radial-gradient(900px 420px at 86% 38%, rgba(var(--ff-blue-rgb), .04), transparent 60%),
        #fff;
    }

    #ff-final .ff-final__left{
      padding: clamp(18px, 2.2vw, 30px);
      border-right: 1px solid rgba(33,34,38,.08);
      display:flex;
      flex-direction:column;
      gap: 12px;
    }

    #ff-final .ff-final__h3{
      font-weight:560;
      letter-spacing:-.02em;
      font-size: clamp(21px, 2.05vw, 36px);
      line-height:1.08;
    }
    #ff-final .ff-final__p{
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.66;
      color: var(--ff-muted);
      max-width: 70ch;
    }

    #ff-final .ff-final__list{
      margin-top: 4px;
      padding:0;
      list-style:none;
      display:grid;
      gap: 11px;
      color: var(--ff-muted);
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.55;
    }
    #ff-final .ff-final__dot{
      width: 10px; height: 10px;
      border-radius: 999px;
      display:inline-block;
      margin-right: 10px;
      background: rgba(var(--ff-blue-rgb), .22);
      outline: 1px solid rgba(var(--ff-blue-rgb), .18);
      vertical-align: middle;
    }

    #ff-final .ff-final__note{
      margin-top: 6px;
      border-radius: 18px;
      padding: 12px 14px;
      border: 1px solid rgba(var(--ff-blue-rgb), .14);
      background: rgba(var(--ff-blue-rgb), .06);
      color: var(--ff-muted);
      font-size: clamp(14.5px, 1.10vw, 17.5px);
      line-height:1.60;
    }
    #ff-final .ff-final__note strong{ color: var(--ff-ink); font-weight:560; }

    /* Right CTA box */
    #ff-final .ff-final__right{
      padding: clamp(18px, 2.2vw, 30px);
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap: 14px;
      background:
        linear-gradient(180deg, rgba(240,241,245,.65), rgba(255,255,255,.92));
    }

    #ff-final .ff-final__proof{
      border-radius: 18px;
      border: 1px solid rgba(33,34,38,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 10px 26px rgba(33,34,38,.06);
      padding: 12px 12px;
      display:grid;
      gap: 10px;
    }
    #ff-final .ff-final__proofTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
    }
    #ff-final .ff-final__proofK{
      font-size: 12px;
      letter-spacing:.12em;
      text-transform:uppercase;
      color: rgba(33,34,38,.60);
      white-space:nowrap;
    }
    #ff-final .ff-final__proofV{
      font-weight:700;
      color: rgb(var(--ff-blue-rgb));
      letter-spacing: -.01em;
      white-space:nowrap;
    }
    #ff-final .ff-final__bar{
      height: 10px;
      border-radius: 999px;
      background: rgba(33,34,38,.08);
      overflow:hidden;
    }
    #ff-final .ff-final__barFill{
      display:block;
      height:100%;
      width: 0%;
      background: rgba(var(--ff-blue-rgb), .38);
      border-radius: 999px;
      transition: width .45s cubic-bezier(.22,.61,.36,1);
    }
    #ff-final .ff-final__proofS{
      font-size: 13px;
      line-height:1.45;
      color: var(--ff-muted);
    }

    /* Button (coerente col sito) */
    #ff-final .ff-final__btn{
      background: var(--ff-ink);
      color: var(--ff-surface);
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.60em 1.85em;
      font-size: 1.15em;
      line-height: 1.02;
      font-weight: 500;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.65rem;
      cursor:pointer;
      transition:.15s background ease-out, .15s color ease-out, .15s border-color ease-out, transform .15s ease;
    }
    #ff-final .ff-final__btn:hover,
    #ff-final .ff-final__btn:focus-visible{
      background: rgba(183,191,217,.12);
      color: var(--ff-ink);
      border-color: rgba(33,34,38,.14);
      outline:none;
      transform: translateY(-1px);
    }
    #ff-final .ff-final__ico{
      width: 26px;
      height: 26px;
      flex: 0 0 26px;
      display:block;
      color: var(--ff-surface);
    }
    #ff-final .ff-final__btn:hover .ff-final__ico,
    #ff-final .ff-final__btn:focus-visible .ff-final__ico{
      color: var(--ff-ink);
    }

    #ff-final .ff-final__small{
      font-size: 13px;
      line-height:1.55;
      color: rgba(33,34,38,.70);
    }

    @media (width < 980px){
      #ff-final .ff-final__card{
        grid-template-columns: 1fr;
      }
      #ff-final .ff-final__left{
        border-right: 0;
        border-bottom: 1px solid rgba(33,34,38,.08);
      }
    }

    @media (prefers-reduced-motion: reduce){
      #ff-final .ff-final__barFill{ transition:none; }
      #ff-final .ff-final__btn{ transition:none; }
    }

/* ---- section ---- */

.ff-faq{
      --ff-surface:#ffffff;
      --ff-ink:#121317;
      --ff-muted:#45474D;
      --ff-outline: rgba(33,34,38,.08);
      --ff-shadow: 0 16px 44px rgba(33,34,38,.07);
      --ff-blue-rgb: 10,20,120;

      font-family:"Google Sans Flex",sans-serif;
      background: var(--ff-surface);
      color: var(--ff-ink);

      width:100%;
      /* ✅ padding-bottom ridotto di molto */
      padding: 96px clamp(16px, 2.6vw, 28px) 28px;
      position:relative;
      overflow:hidden;
      isolation:isolate;
    }
    .ff-faq, .ff-faq *{ box-sizing:border-box; }
    .ff-faq h2, .ff-faq p{ margin:0; }

    .ff-faq__wrap{ max-width:var(--ff-content-max); margin:0 auto; }

    .ff-faq__head{
      text-align:center;
      max-width:var(--ff-text-max);
      margin:0 auto;
      display:grid;
      gap: 18px;
    }
    .ff-faq__head h2{
      font-weight:500;
      letter-spacing:-.02em;
      font-size: clamp(32px, 5vw, 72px);
      line-height:1.05;
      color: var(--ff-ink);
    }
    .ff-faq__sub{
      margin: 0;
      font-size: clamp(21px, 2vw, 26px);
      line-height:1.72;
      color: var(--ff-muted);
    }

    .ff-faq__grid{
      margin-top: clamp(38px, 4.6vw, 66px);
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(12px, 1.5vw, 18px);
      align-items:start;
    }

    .ff-faq__item{
      border-radius: 18px;
      border: 1px solid rgba(33,34,38,.10);
      background: rgba(255,255,255,.92);
      box-shadow: var(--ff-shadow);
      overflow:hidden;
    }

    .ff-faq__q{
      list-style:none;
      cursor:pointer;
      user-select:none;

      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;

      padding: 16px 16px;
      font-weight:560;
      letter-spacing:-.01em;
      font-size: clamp(17px, 1.35vw, 21px);
      color: var(--ff-ink);

      background: rgba(240,241,245,.65);
      transition: background .15s ease, color .15s ease;
    }
    .ff-faq__q::-webkit-details-marker{ display:none; }

    .ff-faq__ico{
      width: 12px; height: 12px;
      position:relative;
      flex: 0 0 12px;
      opacity:.75;
    }
    .ff-faq__ico::before,
    .ff-faq__ico::after{
      content:"";
      position:absolute; left:50%; top:50%;
      width: 12px; height: 2px;
      background: rgba(33,34,38,.55);
      border-radius: 999px;
      transform: translate(-50%, -50%);
    }
    .ff-faq__ico::after{ width:2px; height:12px; }

    .ff-faq__item[open] .ff-faq__q{
      background: rgba(var(--ff-blue-rgb), .06);
      color: rgb(var(--ff-blue-rgb));
    }
    .ff-faq__item[open] .ff-faq__ico::after{
      transform: translate(-50%, -50%) scaleY(0);
    }

    .ff-faq__q:focus-visible{
      outline: 2px solid rgba(var(--ff-blue-rgb), .22);
      outline-offset: -2px;
      border-radius: 14px;
    }

    .ff-faq__a{
      padding: 0 16px 16px;
      color: var(--ff-muted);
      font-size: clamp(15px, 1.12vw, 17.5px);
      line-height: 1.66;
    }
    .ff-faq__a strong{ color: var(--ff-ink); font-weight:560; }

    @media (hover:hover){
      .ff-faq__item:hover .ff-faq__q{ background: rgba(33,34,38,.02); }
      .ff-faq__item[open]:hover .ff-faq__q{ background: rgba(var(--ff-blue-rgb), .06); }
    }
    @media (width < 980px){
      .ff-faq__grid{ grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce){
      .ff-faq__q{ transition:none; }
    }

/* ---- section ---- */

#ff-footer-easy{
      --ff-font:"Google Sans Flex",sans-serif;

      --ff-surface: var(--theme-surface-surface, #fff);
      --ff-ink: var(--theme-surface-on-surface, #121317);
      --ff-muted: var(--theme-surface-on-surface-variant, #45474D);

      --ff-grey-15: var(--palette-grey-15, #F0F1F5);
      --ff-outline: var(--theme-outline-variant, rgba(33,34,38,.06));

      --ff-blue-rgb: 10,20,120;

      /* ✅ FIX STACCO: quanto “tiri su” il footer (aumenta per avvicinare di più) */
      --ffe-pullup: clamp(56px, 6.5vw, 118px);

      font-family: var(--ff-font);
      background: var(--ff-surface);
      color: var(--ff-ink);
      width:100%;

      /* ✅ questo è quello che riduce DAVVERO lo stacco tra FAQ e footer */
      margin: calc(-1 * var(--ffe-pullup)) 0 0 0;

      padding:0;
      position:relative;
      overflow:hidden;
      isolation:isolate;
    }
    #ff-footer-easy, #ff-footer-easy *{ box-sizing:border-box; }
    #ff-footer-easy a{ color:inherit; }

    .ffe-surface{
      position:relative;
      width:100%;
      /* ✅ ripristino “corpo” footer (NON lo schiaccio, così la curva resta ampia) */
      padding: 96px clamp(16px, 2.6vw, 28px) clamp(38px, 4.2vw, 52px);
      overflow:hidden;
      isolation:isolate;
    }

    /* BG clippato (curva) */
    .ffe-bg{
      position:absolute;
      inset:0;
      z-index:0;
      pointer-events:none;

      background:
        radial-gradient(980px 520px at 18% 16%, rgba(var(--ff-blue-rgb), .10), transparent 62%),
        radial-gradient(920px 520px at 86% 24%, rgba(var(--ff-blue-rgb), .07), transparent 66%),
        linear-gradient(180deg,
          rgba(var(--ff-blue-rgb), .06) 0%,
          var(--ff-grey-15) 44%,
          #ffffff 100%
        );

      border-top: 1px solid rgba(33,34,38,.08);
      box-shadow: 0 -18px 48px rgba(33,34,38,.08);

      clip-path: url(#ffe_clip);
      -webkit-clip-path: url(#ffe_clip);
    }

    /* particelle */
    #ffeCanvas{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      display:block;
      pointer-events:none;
      z-index:0;
      opacity: .38;
    }

    .ffe-wrap{
      max-width:var(--ff-content-max);
      margin:0 auto;
      position:relative;
      z-index:2;
      padding-top: clamp(10px, 1.2vw, 16px);
    }

    /* --------- layout: left | logo | right --------- */
    .ffe-top{
      display:grid;
      grid-template-columns: repeat(12, minmax(0,1fr));
      gap: clamp(14px, 1.8vw, 24px);
      align-items: start;
    }

    .ffe-left{ grid-column: 1 / span 5; min-width:0; }
    .ffe-mid { grid-column: 6 / span 3; display:grid; place-items:center; }
    .ffe-right{ grid-column: 9 / span 4; min-width:0; text-align:right; }

    .ffe-micro{
      margin:0 0 10px;
      font-size: clamp(13px, 0.95vw, 14px);
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ff-muted);
      line-height: 1;
      font-weight: 500;
    }

    .ffe-lines{
      margin:0;
      font-size: clamp(15px, 1.15vw, 18px);
      line-height:1.62;
      color: var(--ff-muted);
      display:grid;
      gap: 8px;
    }
    .ffe-lines strong{ color: var(--ff-ink); font-weight:560; }

    .ffe-lines a{
      text-decoration:none;
      color: var(--ff-ink);
      font-weight:560;
      border-bottom: 1px solid rgba(33,34,38,.18);
    }
    .ffe-lines a:hover{ border-bottom-color: rgba(33,34,38,.40); }

    /* logo magnetico */
    .ffe-magnet{
      width: clamp(150px, 16.5vw, 240px);
      aspect-ratio: 1/1;
      display:grid;
      place-items:center;
      --mx: 0px;
      --my: 0px;
    }
    .ffe-logo{
      width:100%;
      height:auto;
      object-fit:contain;
      filter: drop-shadow(0 18px 42px rgba(33,34,38,.18));
      transform: translate3d(var(--mx), var(--my), 0);
      will-change: transform;
      user-select:none;
      -webkit-user-drag:none;
    }

    .ffe-city{
      margin:0;
      font-weight:560;
      letter-spacing:-.02em;
      font-size: clamp(21px, 2.05vw, 36px);
      line-height:1.08;
      color: var(--ff-ink);
    }
    .ffe-clockRow{
      margin-top: 10px;
      display:flex;
      justify-content:flex-end;
      gap: 10px;
      flex-wrap:wrap;
      align-items:baseline;
    }
    .ffe-clockLbl{
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(33,34,38,.55);
      font-weight:500;
    }
    .ffe-clock{
      font-size: 18px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(33,34,38,.70);
      font-weight:560;
    }

    .ffe-social{
      margin-top: 14px;
      display:flex;
      justify-content:flex-end;
      gap: 10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .ffe-social a{
      display:inline-flex;
      align-items:center;
      gap: 8px;

      text-decoration:none;
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight:560;

      color: rgba(33,34,38,.72);
      transition: transform .15s ease, opacity .15s ease;
      opacity:.92;
    }
    .ffe-social a:hover{ opacity:1; transform: translateY(-1px); }
    .ffe-ico{
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      display:block;
      color: rgba(33,34,38,.72);
    }

    .ffe-bottom{
      margin-top: clamp(12px, 2.1vw, 22px);
      padding-top: 14px;
      border-top: 1px solid rgba(33,34,38,.10);

      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 12px 18px;
      flex-wrap:wrap;

      color: rgba(33,34,38,.60);
      font-size: 12px;
      line-height: 1.6;
    }

    .ffe-legal{
      display:flex;
      flex-wrap:wrap;
      gap: 12px 18px;
      align-items:center;

      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight:500;
      color: rgba(33,34,38,.70);
    }
    .ffe-legal a{
      text-decoration:none;
      background-image: linear-gradient(currentColor,currentColor);
      background-position: 0 100%;
      background-repeat:no-repeat;
      background-size: 0 1px;
      transition: background-size .18s ease, transform .15s ease, opacity .15s ease;
      opacity:.92;
    }
    .ffe-legal a:hover{ background-size:100% 1px; transform: translateY(-1px); opacity:1; }

    .ffe-powered strong{ color: rgba(33,34,38,.92); }

    @media (max-width: 980px){
      .ffe-top{ grid-template-columns: 1fr; }
      .ffe-left, .ffe-mid, .ffe-right{ grid-column: 1 / -1; }
      .ffe-right{ text-align:left; }
      .ffe-clockRow{ justify-content:flex-start; }
      .ffe-social{ justify-content:flex-start; }
    }

    @media (prefers-reduced-motion: reduce){
      .ffe-social a, .ffe-legal a{ transition:none !important; }
      .ffe-logo{ transform:none !important; }
    }
