/* Extracted from index.html */

/* ---- style block 1 ---- */
html, body { margin: 0; padding: 0; }

/* ---- style block 2 ---- */
:root{
    /* Verde header */
    --g: #15908D;
    --g-b: rgba(255,255,255,.16);
    --g-s: 0 18px 40px rgba(2,8,23,.18);

    /* ✅ Accent (stesso stile “elegante” del HERO v2) */
    --acc-1: #8B5CF6; /* violet soft */
    --acc-2: #F472B6; /* pink soft */

    --w: rgba(255,255,255,.97);
    --w2: rgba(255,255,255,.84);
    --w3: rgba(255,255,255,.68);

    --radius: 18px;
    --max: 1240px;
    --padX: 18px;
    --padY: 10px;
    --gap: 18px;
  }

  .aofHdrWrap, .aofHdrWrap *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .aofHdrWrap{
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
  }

  .aofHdr{
    pointer-events: auto;
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
    background: var(--g);
    border: 1px solid var(--g-b);
    border-radius: var(--radius);
    box-shadow: var(--g-s);
    overflow: clip;
    position: relative;
  }

  .aofHdr::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
      radial-gradient(900px 140px at 18% 0%, rgba(255,255,255,.14), transparent 60%),
      radial-gradient(900px 160px at 82% 0%, rgba(0,0,0,.10), transparent 62%),
      linear-gradient(180deg, rgba(255,255,255,.07), transparent 55%);
    opacity:.95;
  }

  .aofHdrInner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--padY) var(--padX);
  }

  /* ===== LOGO ===== */
  .aofLogo{
    display:flex;
    align-items:center;
    gap: 10px;
    text-decoration:none;
    color: var(--w);
    min-width: 180px;
  }

  /* wrapper con gradient border */
  .aofLogoMark{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    padding: 2px; /* spessore bordo sfumato */
    background: linear-gradient(135deg, #15908D, #0F766E);
    box-shadow: 0 14px 30px rgba(21,144,141,.16);
    flex: 0 0 auto;
  }
  /* inner box per mantenere il “vetro” sul verde */
  .aofLogoMark > .aofLogoMark__in{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }

  .aofLogoMark img{
    width: 32px;
    height: 32px;
    object-fit: contain;
    display:block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.20));
  }

  .aofLogoText{
    display:flex;
    flex-direction:column;
    line-height:1.05;
  }
  .aofLogoText strong{
    font-size: 14px;
    letter-spacing:.12em;
    text-transform: uppercase;
    font-weight: 850;
  }
  .aofLogoText span{
    font-size: 12.5px;
    color: var(--w3);
    letter-spacing:.01em;
    font-weight: 650;
  }

  /* ===== NAV ===== */
  .aofNav{
    display:flex;
    align-items:center;
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
  }
  .aofNav a{
    position: relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 10.5px 13px;
    border-radius: 12px;
    font-size: 14px;
    text-decoration:none;
    color: var(--w2);
    transition: transform .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
    font-weight: 750;
    letter-spacing: .01em;
  }
  .aofNav a:hover{
    background: rgba(255,255,255,.14);
    color: var(--w);
    transform: translateY(-1px);
  }
  .aofNav a[aria-current="page"]{
    background: rgba(255,255,255,.16);
    color: var(--w);
  }

  /* ✅ underline gradient viola/rosa (come richiesto) */
  .aofNav a[aria-current="page"]::after{
    content:"";
    position:absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
    opacity: .95;
  }

  /* ===== RIGHT ===== */
  .aofRight{
    display:flex;
    align-items:center;
    gap: 10px;
    min-width: 180px;
    justify-content: flex-end;
  }

  /* ✅ CTA come “Parlaci del tuo problema” (gradient + shadow) */
  .aofBtn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.26);
    color: rgba(255,255,255,.98);
    background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    font-weight: 900;
    letter-spacing: .01em;
    box-shadow: 0 16px 30px rgba(139,92,246,.14);
    user-select: none;
  }
  .aofBtn:hover{
    transform: translateY(-1px);
    box-shadow: 0 22px 44px rgba(139,92,246,.16);
    filter: saturate(1.03);
  }
  .aofBtn svg{ width: 18px; height: 18px; fill: rgba(255,255,255,.96); }

  /* HAMBURGER */
  .aofBurger{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition: transform .18s ease, background .18s ease;
  }
  .aofBurger:hover{ transform: translateY(-1px); background: rgba(255,255,255,.16); }
  .aofBurger span{
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,.92);
    position: relative;
    border-radius: 2px;
    display:block;
  }
  .aofBurger span::before,
  .aofBurger span::after{
    content:"";
    position:absolute;
    left:0;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,.92);
    border-radius: 2px;
    transition: transform .18s ease, top .18s ease, opacity .18s ease;
  }
  .aofBurger span::before{ top: -6px; }
  .aofBurger span::after{ top: 6px; }

  /* MOBILE DRAWER */
  .aofDrawer{
    display:none;
    padding: 0 12px 12px;
    position: relative;
  }
  .aofDrawerInner{
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    overflow: hidden;
  }
  .aofDrawerInner a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 14px 14px;
    text-decoration:none;
    color: var(--w);
    font-size: 14.5px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-weight: 800;
    letter-spacing: .01em;
  }
  .aofDrawerInner a:first-child{ border-top: 0; }
  .aofDrawerInner a small{
    color: rgba(255,255,255,.72);
    font-size: 12.5px;
    font-weight: 700;
  }

  .aofHdr.is-open .aofDrawer{ display:block; }
  .aofHdr.is-open .aofBurger span{ background: transparent; }
  .aofHdr.is-open .aofBurger span::before{ top:0; transform: rotate(45deg); }
  .aofHdr.is-open .aofBurger span::after{ top:0; transform: rotate(-45deg); }

  @media (max-width: 980px){
    .aofNav{ display:none; }
    .aofBurger{ display:flex; }
    .aofBtn{ display:none; }
  }

  .aofHdrSpacer{ height: 96px; }

  @media (prefers-reduced-motion: reduce){
    .aofNav a, .aofBtn, .aofBurger{ transition: none !important; }
  }

/* ---- style block 3 ---- */
:root{
    --aof-green: #15908D;
    --aof-accent-1: #8B5CF6;
    --aof-accent-2: #F472B6;

    --ink: #0f172a;
    --muted: rgba(15,23,42,.72);

    --max: 1240px;
    --r: 22px;
  }

  .aofHero, .aofHero *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .aofHero{ background:#fff; padding: 44px 0 72px; }

  .aofHero__wrap{
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 3vw, 44px);
    align-items: center;
  }

  /* LEFT */
  .aofHero__left{ text-align:left; }

  .aofHero__kicker{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 12px; border-radius:999px;
    border:1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight: 750; font-size:13px; letter-spacing:.02em;
    margin-bottom: 14px;
  }
  .aofHero__dot{
    width:10px; height:10px; border-radius:999px;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
      linear-gradient(135deg, var(--aof-accent-1), var(--aof-accent-2));
    box-shadow: 0 10px 22px rgba(139,92,246,.16);
  }

  .aofHero__title{
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 12px 0;
    font-weight: 900;
  }
  .aofHero__title .hl{
    background: linear-gradient(135deg, var(--aof-accent-1), var(--aof-accent-2));
    -webkit-background-clip:text; background-clip:text;
    color: transparent;
  }

  .aofHero__sub{
    margin: 0 0 18px 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 54ch;
  }

  /* ✅ riduco lo “spazio vuoto” sotto hint: tolgo margini e stringo il row */
  .aofHero__row{
    display:flex; flex-wrap:wrap;
    gap:10px;                 /* era 12 */
    align-items:center;
    margin-top: 12px;         /* era 18 */
    margin-bottom: 0;         /* sicurezza */
  }
  .aofHero__hint{ margin: 0; } /* evita margini strani se viene trasformato */

  .aofHero__btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:12px 16px; border-radius:14px;
    border:1px solid rgba(255,255,255,.26);
    color: rgba(255,255,255,.98);
    background: linear-gradient(135deg, var(--aof-accent-1), var(--aof-accent-2));
    text-decoration:none;
    font-weight: 900; letter-spacing:.01em;
    box-shadow: 0 16px 30px rgba(139,92,246,.16);
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    user-select:none;
  }
  .aofHero__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(139,92,246,.18);
    filter: saturate(1.03);
  }
  .aofHero__btn svg{ width:18px; height:18px; fill: rgba(255,255,255,.96); }

  .aofHero__hint{
    color: rgba(15,23,42,.60);
    font-size: 13.5px;
    line-height: 1.35;       /* un pelo più compatto */
    max-width: 38ch;
  }

  /* RIGHT */
  .aofHero__right{
    position: relative;
    display:grid;
    place-items:center;
    padding: 10px 0;
  }

  .aofVidWrap{
    position: relative;
    width: min(520px, 100%);
    display:grid;
    place-items:center;
    isolation:isolate;
  }

  /* shapes dietro */
  .aofShape{
    position:absolute;
    pointer-events:none;
    filter: drop-shadow(0 18px 40px rgba(2,8,23,.12));
    z-index: 1;
    opacity: .96;
  }

  /* ✅ viola un pelo più a destra */
  .aofShape--top{
    width: 230px; height: 260px;
    top: -46px;
    right: -14px;           /* era -18 → più a destra */
    transform: rotate(1deg);
  }

  /* ✅ verde più a destra (meno “sparata” a sinistra) */
  .aofShape--bot{
    width: 230px; height: 260px;
    bottom: -34px;
    left: -36px;            /* era -44 → più a destra */
    transform: rotate(-1deg);
  }

  .aofVidFrame{
    position: relative;
    width: 100%;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    outline: 1px solid rgba(15,23,42,.08);
    outline-offset: -1px;
    box-shadow: 0 22px 60px rgba(2,8,23,.14);
    background: #000;
    z-index: 2;
  }

  .aofVidFrame::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background: radial-gradient(900px 220px at 50% 0%, rgba(255,255,255,.10), transparent 65%);
    z-index: 3;
  }

  .aofVidRatio{ aspect-ratio:16/9; width:100%; position:relative; }
  .aofVidThumb{
    position:absolute; inset:0;
    background-size:cover; background-position:center;
    filter: saturate(1.02) contrast(1.02);
    transform: scale(1.02);
  }

  .aofVidPlay{
    position:absolute; inset:0;
    display:grid;
    place-items:end start;
    padding: 18px;
    cursor:pointer;
    background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.45));
    z-index: 4;
    transition: background .18s ease;
    border:0;
  }
  .aofVidPlay:hover{ background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.42)); }

  .aofPlayBtn{
    width:74px; height:74px;
    border-radius:22px;
    background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.10));
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display:grid; place-items:center;
    box-shadow: 0 18px 50px rgba(0,0,0,.26);
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
  }
  .aofVidPlay:hover .aofPlayBtn{ transform: translateY(-2px); box-shadow: 0 24px 64px rgba(0,0,0,.28); }
  .aofPlayBtn svg{ width:24px; height:24px; fill: rgba(255,255,255,.96); }

  /* CTA pill + pulse (keeps center text readable) */
  .aofPlayBtn::after{
    content: "Guarda il video";
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(2,8,23,.42);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.96);
    font-weight: 850;
    letter-spacing: .01em;
    font-size: 13.5px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
  }
  @media (max-width: 420px){
    .aofPlayBtn::after{ content: "Guarda"; }
  }

  @media (prefers-reduced-motion: no-preference){
    .aofPlayBtn::before{
      content:"";
      position:absolute;
      inset: -10px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.22);
      opacity: .65;
      animation: aofPulse 1.85s ease-out infinite;
    }
    @keyframes aofPulse{
      0%{ transform: scale(.96); opacity: .65; }
      70%{ transform: scale(1.18); opacity: 0; }
      100%{ transform: scale(1.18); opacity: 0; }
    }
  }

  .aofVidIframe{
    position:absolute; inset:0;
    width:100%; height:100%;
    border:0; display:none;
    z-index: 5;
  }

  @media (prefers-reduced-motion: no-preference){
    .aofShape--top{ animation: aofFloat1 6.5s ease-in-out infinite; }
    .aofShape--bot{ animation: aofFloat2 7.5s ease-in-out infinite; }
    @keyframes aofFloat1{ 0%,100%{ transform: translateY(0) rotate(1deg);} 50%{ transform: translateY(6px) rotate(1deg);} }
    @keyframes aofFloat2{ 0%,100%{ transform: translateY(0) rotate(-1deg);} 50%{ transform: translateY(-6px) rotate(-1deg);} }
  }

  /* MOBILE ORDER */
  .aofHero__mobileVideo{ display:none; }

  @media (max-width: 980px){
    .aofHero{ padding: 34px 0 58px; }
    .aofHero__wrap{ grid-template-columns: 1fr; }

    .aofHero__title{
      font-size: clamp(38px, 9vw, 52px);
      line-height: 1.03;
    }

    .aofHero__mobileVideo{ display:block; margin: 26px 0 22px; }
    .aofHero__right{ display:none; }

    .aofHero__sub{ max-width: 60ch; margin-top: 6px; margin-bottom: 14px; }

    /* ✅ ancora un pelo più compatto su mobile */
    .aofHero__row{ margin-top: 10px; gap: 10px; }

    .aofShape--top{
      width: 210px; height: 240px;
      top: -40px;
      right: -10px;         /* era -14 */
    }
    .aofShape--bot{
      width: 210px; height: 240px;
      bottom: -26px;
      left: -34px;          /* era -42 */
    }
  }

  @media (max-width: 520px){
    .aofHero__kicker{ font-size: 12.5px; }
    .aofHero__sub{ font-size: 16px; }
    .aofPlayBtn{ width: 68px; height: 68px; border-radius: 20px; }
  }

/* ---- style block 4 ---- */
:root{
    --aof-green: #15908D;
    --aof-acc-1: #8B5CF6;  /* violet soft */
    --aof-acc-2: #F472B6;  /* pink soft */

    --ink: #0f172a;
    --muted: rgba(15,23,42,.72);
    --muted2: rgba(15,23,42,.56);

    --max: 1240px;
    --r: 22px;
  }

  .aofWho, .aofWho *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .aofWho{
    background: #fff;
    padding: 78px 0;
  }

  .aofWho__wrap{
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
  }

  .aofWho__kicker{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .02em;
    margin-bottom: 14px;
  }
  .aofWho__dot{
    width: 10px; height: 10px; border-radius: 999px;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
      linear-gradient(135deg, var(--aof-acc-1), var(--aof-acc-2));
    box-shadow: 0 10px 22px rgba(139,92,246,.14);
  }

  /* ✅ effetto parole sfumate come HERO */
  .aofHl{
    background: linear-gradient(135deg, var(--aof-acc-1), var(--aof-acc-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* ✅ titolo un pelo più grande su desktop */
  .aofWho__title{
    margin: 0 0 10px 0;
    color: var(--ink);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 950;
    max-width: 36ch;
  }

  .aofWho__sub{
    margin: 0 0 26px 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 68ch;
  }

  .aofWho__grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .aofWhoCard{
    border-radius: var(--r);
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.02);
    padding: 18px 18px;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  }

  .aofWhoCard::before{
    content:"";
    position:absolute;
    inset:-40% -30%;
    background:
      radial-gradient(circle at 20% 20%, rgba(139,92,246,.10), transparent 55%),
      radial-gradient(circle at 80% 30%, rgba(244,114,182,.10), transparent 55%),
      radial-gradient(circle at 45% 90%, rgba(21,144,141,.08), transparent 55%);
    transform: rotate(10deg);
    opacity: .9;
    pointer-events:none;
  }

  .aofWhoCard__in{
    position: relative;
    z-index: 2;
    display:flex;
    gap: 12px;
    align-items:flex-start;
  }

  .aofWhoIcon{
    width: 40px;
    height: 40px;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, var(--aof-acc-1), var(--aof-acc-2));
    flex: 0 0 auto;
    box-shadow: 0 14px 30px rgba(139,92,246,.12);
  }
  .aofWhoIcon__in{
    width:100%;
    height:100%;
    border-radius: 12px;
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(15,23,42,.06);
    display:grid;
    place-items:center;
  }
  .aofWhoIcon svg{
    width: 18px; height: 18px;
    fill: rgba(15,23,42,.72);
  }

  .aofWhoCard h3{
    margin: 0 0 6px 0;
    font-size: 15.5px;
    line-height: 1.25;
    color: var(--ink);
    font-weight: 950;
    letter-spacing: -.01em;
  }
  .aofWhoCard p{
    margin: 0;
    color: var(--muted2);
    font-size: 14.3px;
    line-height: 1.55;
    font-weight: 650;
  }

  .aofWhoCard:hover{
    transform: translateY(-2px);
    border-color: rgba(15,23,42,.14);
    background: rgba(15,23,42,.015);
    box-shadow: 0 22px 56px rgba(2,8,23,.08);
  }

  .aofWho__note{
    margin-top: 18px;
    color: rgba(15,23,42,.62);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 650;
    max-width: 76ch;
    hyphens: none;
    word-break: normal;
  }
  .aofNoWrap{ white-space: nowrap; }

  @media (max-width: 980px){
    .aofWho{ padding: 62px 0; }
    .aofWho__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  /* ✅ titolo più grande su mobile */
  @media (max-width: 560px){
    .aofWho__grid{ grid-template-columns: 1fr; }
    .aofWho__title{
      font-size: 34px; /* un pelo più grande */
      max-width: 22ch;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .aofWhoCard{ transition: none !important; }
  }

/* ---- style block 5 ---- */
:root{
    --aof-green: #15908D;
    --aof-acc-1: #8B5CF6;
    --aof-acc-2: #F472B6;

    --ink: #0f172a;
    --muted: rgba(15,23,42,.70);

    --max: 1240px;
    --r: 22px;
  }

  .aofHow, .aofHow *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .aofHow{
    background:#fff;
    padding: 78px 0;
    --prog: 0%;
  }

  .aofHow__wrap{
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr; /* 2/5 + 3/5 */
    gap: clamp(18px, 3vw, 46px);
    align-items: center;
  }

  /* LEFT IMAGE (desktop only) */
  .aofHow__media{
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 22px 60px rgba(2,8,23,.10);
  }
  .aofHow__media::before{
    content:"";
    position:absolute; inset:0;
    pointer-events:none;
    background:
      radial-gradient(900px 240px at 35% 0%, rgba(139,92,246,.10), transparent 60%),
      radial-gradient(900px 240px at 75% 0%, rgba(244,114,182,.10), transparent 62%);
    opacity:.9;
  }
  .aofHow__img{
    width: 100%;
    height: auto;
    display:block;
    object-fit: contain;
    transform: scale(1.02);
  }

  /* RIGHT CONTENT */
  .aofHow__kicker{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .02em;
    margin-bottom: 14px;
  }
  .aofHow__dot{
    width: 10px; height: 10px; border-radius: 999px;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
      linear-gradient(135deg, var(--aof-acc-1), var(--aof-acc-2));
    box-shadow: 0 10px 22px rgba(139,92,246,.14);
  }

  /* ✅ titolo IDENTICO a "A chi è rivolto" v3 */
  .aofHow__title{
    margin: 0 0 10px 0;
    color: var(--ink);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 950;
    max-width: 38ch;
  }

  .aofHow__title .hl{
    background: linear-gradient(135deg, var(--aof-acc-1), var(--aof-acc-2));
    -webkit-background-clip:text;
    background-clip:text;
    color: transparent;
  }

  .aofHow__sub{
    margin: 0 0 18px 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 72ch;
  }

  /* STEPS */
  .aofSteps{
    position: relative;
    margin-top: 10px;
    padding-top: 10px;
  }

  /* ✅ linea desktop: più bassa + più evidente */
  .aofSteps::before{
    content:"";
    position:absolute;
    left: 22px;
    right: 22px;
    top: 74px;                 /* più bassa */
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg,
      rgba(139,92,246,.42),
      rgba(244,114,182,.42),
      rgba(21,144,141,.36)
    );
    opacity: 1;
  }

  .aofSteps__grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
  }

  .aofStep{
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    padding: 16px 16px 15px;
    box-shadow: 0 18px 46px rgba(2,8,23,.08);
    position: relative;
    overflow:hidden;
  }
  .aofStep::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background: radial-gradient(560px 160px at 25% 0%, rgba(139,92,246,.08), transparent 62%);
    opacity:.9;
  }
  .aofStep[data-step="3"]::before{
    background: radial-gradient(560px 160px at 25% 0%, rgba(21,144,141,.10), transparent 62%);
  }

  .aofStep__phase{
    display:flex;
    align-items:center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

  .aofStep__badge{
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display:grid;
    place-items:center;
    color: #fff;
    font-weight: 950;
    letter-spacing: .02em;
    background: linear-gradient(135deg, var(--aof-acc-1), var(--aof-acc-2));
    box-shadow: 0 14px 30px rgba(139,92,246,.16);
    border: 1px solid rgba(255,255,255,.24);
  }

  .aofStep__label{
    font-weight: 900;
    color: rgba(15,23,42,.88);
    font-size: 13px;
    letter-spacing: .10em;
    text-transform: uppercase;
  }

  .aofStep__h{
    margin: 0 0 6px 0;
    font-size: 16.5px;
    line-height: 1.25;
    color: var(--ink);
    font-weight: 950;
    letter-spacing: -.01em;
    position: relative;
    z-index: 1;
  }

  .aofStep__p{
    margin: 0;
    color: rgba(15,23,42,.70);
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 650;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 980px){
    .aofHow{ padding: 62px 0; }

    .aofHow__wrap{
      grid-template-columns: 1fr;
      gap: 16px;
      width: min(var(--max), calc(100% - 18px));
      transform: translateX(-6px); /* un pelo più a sinistra */
    }

    /* Show only the mobile video under the text */
    .aofHow__media{ display:none; }
    .aofHow__media.aofHow__media--mobile{ display:block; }

    .aofSteps{
      padding-left: 22px;
      padding-top: 2px;
      margin-top: 8px;
    }

    /* grigia base */
    .aofSteps::before{
      left: 12px;
      top: 6px;
      bottom: 6px;
      width: 3px;
      height: auto;
      right: auto;
      border-radius: 3px;
      background: rgba(15,23,42,.16);
    }

    /* verde progress */
    .aofSteps::after{
      content:"";
      position:absolute;
      left: 12px;
      top: 6px;
      width: 3px;
      height: var(--prog);
      border-radius: 3px;
      background: var(--aof-green);
      box-shadow: 0 14px 30px rgba(21,144,141,.18);
    }

    .aofSteps__grid{
      grid-template-columns: 1fr;
      gap: 12px;
      padding-left: 0;
    }
  }

  /* Looping “GIF” video */
  .aofHow__gif{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
  }

  /* ✅ titolo mobile IDENTICO a "A chi è rivolto" v3 */
  @media (max-width: 560px){
    .aofHow__title{
      font-size: 34px;
      max-width: 22ch;
    }
  }

  @media (max-width: 520px){
    .aofHow__sub{ font-size: 16px; }
    .aofStep__badge{ width: 40px; height: 40px; border-radius: 13px; }
  }

/* ---- style block 6 ---- */
:root{
    --aof-green: #15908D;
    --aof-acc-1: #8B5CF6;
    --aof-acc-2: #F472B6;

    --ink: #0f172a;
    --muted: rgba(15,23,42,.70);

    --max: 1240px;
    --r: 22px;
  }

  .aofBen, .aofBen *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .aofBen{
    background:#fff;
    padding: 78px 0;
  }

  .aofBen__wrap{
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
  }

  .aofBen__kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:999px;
    border:1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight:800;
    font-size:13px;
    letter-spacing:.02em;
    margin-bottom:14px;
  }

  .aofBen__dot{
    width:10px; height:10px; border-radius:999px;
    background: linear-gradient(135deg, var(--aof-acc-1), var(--aof-acc-2));
    box-shadow: 0 10px 22px rgba(139,92,246,.14);
  }

  /* titolo IDENTICO sezioni precedenti */
  .aofBen__title{
    margin:0 0 10px 0;
    color: var(--ink);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height:1.12;
    letter-spacing:-0.02em;
    font-weight:950;
    max-width: 38ch;
  }

  .aofBen__title .hl{
    background: linear-gradient(135deg, var(--aof-acc-1), var(--aof-acc-2));
    -webkit-background-clip:text;
    background-clip:text;
    color: transparent;
  }

  .aofBen__sub{
    margin:0 0 28px 0;
    color: var(--muted);
    font-size:16.5px;
    line-height:1.65;
    max-width: 72ch;
  }

  /* GRID */
  .aofBen__grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:16px;
  }

  .aofBenCard{
    border-radius: var(--r);
    border:1px solid rgba(15,23,42,.10);
    background:#fff;
    overflow:hidden;
    box-shadow: 0 18px 46px rgba(2,8,23,.08);
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .aofBenCard:hover{
    transform: translateY(-3px);
    box-shadow: 0 26px 60px rgba(2,8,23,.10);
  }

  /* ✅ IMAGE: QUADRATA + CROP CENTRATO (verticali OK) */
  .aofBenCard__img{
    position: relative;
    aspect-ratio: 1 / 1; /* quadrata */
    overflow:hidden;
    background:#f4f5f7;
  }

  .aofBenCard__img img{
    width:100%;
    height:100%;
    display:block;

    /* crop centrato */
    object-fit: cover;
    object-position: 50% 50%;

    /* “zoom” leggero per riempire bene */
    transform: scale(1.06);
    transform-origin: center center;
    filter: saturate(1.02) contrast(1.02);
  }

  .aofBenCard__img::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.38));
    pointer-events:none;
  }

  .aofBenCard__body{
    padding:16px 16px 18px;
  }

  .aofBenCard__h{
    margin:0 0 6px 0;
    font-size:16.5px;
    line-height:1.25;
    color: var(--ink);
    font-weight:950;
  }

  .aofBenCard__p{
    margin:0;
    font-size:14.5px;
    line-height:1.55;
    color: rgba(15,23,42,.70);
    font-weight:650;
  }

  @media (max-width: 980px){
    .aofBen{ padding:62px 0; }
    .aofBen__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  }

  @media (max-width: 560px){
    .aofBen__grid{ grid-template-columns: 1fr; }
    .aofBen__title{
      font-size:34px;
      max-width:22ch;
    }
  }

/* ---- style block 7 ---- */
:root{
    --aof-green: #15908D;
    --aof-accent-1: #8B5CF6;
    --aof-accent-2: #F472B6;

    --ink: #0f172a;
    --muted: rgba(15,23,42,.72);

    --max: 1240px;
    --r: 22px;
  }

  .aofVx, .aofVx *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .aofVx{
    background:#fff;
    padding: 78px 0;
  }

  .aofVx__wrap{
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
    display:grid;
    grid-template-columns: .95fr 1.05fr; /* video sx / testo dx */
    gap: clamp(22px, 4vw, 54px);
    align-items:center;
  }

  /* ---------- PRETITLE (pill) ---------- */
  .aofVx__kicker{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 12px; border-radius:999px;
    border:1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight: 800;
    font-size:13px;
    letter-spacing:.02em;
    margin-bottom: 14px;
  }
  .aofVx__dot{
    width:10px; height:10px; border-radius:999px;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
      linear-gradient(135deg, var(--aof-accent-1), var(--aof-accent-2));
    box-shadow: 0 10px 22px rgba(139,92,246,.14);
  }

  /* ---------- TITLE ---------- */
  .aofVx__title{
    margin:0 0 12px 0;
    color: var(--ink);
    font-size: clamp(32px, 3.6vw, 44px); /* identico alle sezioni */
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 950;
    max-width: 34ch;
  }
  .aofVx__title .hl{
    background: linear-gradient(135deg, var(--aof-accent-1), var(--aof-accent-2));
    -webkit-background-clip:text;
    background-clip:text;
    color: transparent;
  }

  /* ---------- DESCRIPTION ---------- */
  .aofVx__p{
    margin: 0 0 16px 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 62ch;
  }

  /* ---------- CHECKLIST + CTA (DESKTOP: CTA a destra) ---------- */
  .aofVx__bottom{
    display:flex;
    gap: 14px;
    align-items:flex-start;
    justify-content: space-between;
    margin-top: 6px;
  }

  .aofVx__list{
    display:grid;
    gap:10px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .aofVx__item{
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-size:14.5px;
    color: rgba(15,23,42,.78);
    font-weight: 650;
  }

  .aofVx__check{
    width:18px; height:18px;
    border-radius:6px;
    background: linear-gradient(135deg, var(--aof-accent-1), var(--aof-accent-2));
    display:grid; place-items:center;
    flex:0 0 auto;
    box-shadow: 0 12px 24px rgba(139,92,246,.12);
  }
  .aofVx__check svg{ width:12px; height:12px; fill:#fff; }

  .aofVx__cta{
    flex: 0 0 auto;
    display:flex;
    align-items:center;
    justify-content:flex-end;
  }

  .aofVx__btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.26);
    color: rgba(255,255,255,.98);
    background: linear-gradient(135deg, var(--aof-accent-1), var(--aof-accent-2));
    text-decoration:none;
    font-weight: 950;
    letter-spacing: .01em;
    box-shadow: 0 16px 30px rgba(139,92,246,.16);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    white-space: nowrap;
  }
  .aofVx__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(139,92,246,.18);
    filter: saturate(1.03);
  }
  .aofVx__btn svg{ width:18px; height:18px; fill:#fff; }

  /* ---------- VIDEO: COPIA INCOLLA HERO (stessi nomi ma prefisso aofVx) ---------- */
  .aofVx__video{
    position: relative;
    display:grid;
    place-items:center;
    padding: 10px 0;
  }

  .aofVxVidWrap{
    position: relative;
    width: min(520px, 100%);
    display:grid;
    place-items:center;
    isolation:isolate;
  }

  .aofVxShape{
    position:absolute;
    pointer-events:none;
    filter: drop-shadow(0 18px 40px rgba(2,8,23,.12));
    z-index: 1;         /* dietro al video */
    opacity: .96;
  }

  /* identico HERO v7 */
  .aofVxShape--top{
    width: 230px; height: 260px;
    top: -46px;
    right: -14px;
    transform: rotate(1deg);
  }
  .aofVxShape--bot{
    width: 230px; height: 260px;
    bottom: -34px;
    left: -36px;
    transform: rotate(-1deg);
  }

  .aofVxVidFrame{
    position: relative;
    width: 100%;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    outline: 1px solid rgba(15,23,42,.08);
    outline-offset: -1px;
    box-shadow: 0 22px 60px rgba(2,8,23,.14);
    background: #000;
    z-index: 2;         /* sopra shapes */
  }

  .aofVxVidFrame::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background: radial-gradient(900px 220px at 50% 0%, rgba(255,255,255,.10), transparent 65%);
    z-index: 3;
  }

  .aofVxVidRatio{ aspect-ratio:16/9; width:100%; position:relative; }
  .aofVxVidThumb{
    position:absolute; inset:0;
    background-size:cover; background-position:center;
    filter: saturate(1.02) contrast(1.02);
    transform: scale(1.02);
  }

  .aofVxVidPlay{
    position:absolute; inset:0;
    display:grid;
    place-items:end start;
    padding: 18px;
    cursor:pointer;
    background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.45));
    z-index: 4;
    transition: background .18s ease;
    border:0;
  }
  .aofVxVidPlay:hover{ background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.42)); }

  .aofVxPlayBtn{
    width:74px; height:74px;
    border-radius:22px;
    background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.10));
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display:grid; place-items:center;
    box-shadow: 0 18px 50px rgba(0,0,0,.26);
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
  }
  .aofVxVidPlay:hover .aofVxPlayBtn{
    transform: translateY(-2px);
    box-shadow: 0 24px 64px rgba(0,0,0,.28);
  }
  .aofVxPlayBtn svg{ width:24px; height:24px; fill: rgba(255,255,255,.96); }

  .aofVxPlayBtn::after{
    content: "Guarda il video";
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(2,8,23,.42);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.96);
    font-weight: 850;
    letter-spacing: .01em;
    font-size: 13.5px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
  }
  @media (max-width: 420px){
    .aofVxPlayBtn::after{ content: "Guarda"; }
  }
  @media (prefers-reduced-motion: no-preference){
    .aofVxPlayBtn::before{
      content:"";
      position:absolute;
      inset: -10px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.22);
      opacity: .65;
      animation: aofPulse 1.85s ease-out infinite;
    }
  }

  .aofVxVidIframe{
    position:absolute; inset:0;
    width:100%; height:100%;
    border:0; display:none;
    z-index: 5;
  }

  @media (prefers-reduced-motion: no-preference){
    .aofVxShape--top{ animation: aofVxFloat1 6.5s ease-in-out infinite; }
    .aofVxShape--bot{ animation: aofVxFloat2 7.5s ease-in-out infinite; }
    @keyframes aofVxFloat1{ 0%,100%{ transform: translateY(0) rotate(1deg);} 50%{ transform: translateY(6px) rotate(1deg);} }
    @keyframes aofVxFloat2{ 0%,100%{ transform: translateY(0) rotate(-1deg);} 50%{ transform: translateY(-6px) rotate(-1deg);} }
  }

  /* ---------- MOBILE: ordine ESATTO ---------- */
  .aofVx__mobileVideo{ display:none; }

  @media (max-width: 980px){
    .aofVx{ padding: 62px 0; }
    .aofVx__wrap{ grid-template-columns: 1fr; gap: 18px; }

    /* nascondo video desktop e uso video “mobile” in mezzo (come HERO) */
    .aofVx__video{ display:none; }
    .aofVx__mobileVideo{ display:block; margin: 26px 0 22px; }

    /* checklist + CTA: CTA sotto su mobile */
    .aofVx__bottom{
      flex-direction: column;
      gap: 14px;
      align-items:flex-start;
    }
    .aofVx__cta{ justify-content:flex-start; }

    /* shapes identiche HERO mobile sizing */
    .aofVxShape--top{
      width: 210px; height: 240px;
      top: -40px;
      right: -10px;
    }
    .aofVxShape--bot{
      width: 210px; height: 240px;
      bottom: -26px;
      left: -34px;
    }
  }

  @media (max-width: 560px){
    .aofVx__title{
      font-size: 34px; /* identico alle altre sezioni su mobile */
      max-width: 22ch;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .aofVx__btn, .aofVxVidPlay, .aofVxPlayBtn{ transition:none !important; }
    .aofVxShape--top, .aofVxShape--bot{ animation:none !important; }
  }

/* ---- style block 8 ---- */
:root{
    --pbw-green:#15908D;
    --pbw-acc-1:#8B5CF6;
    --pbw-acc-2:#F472B6;

    --pbw-ink:#0f172a;
    --pbw-muted:rgba(15,23,42,.72);
    --pbw-muted2:rgba(15,23,42,.58);

    --pbw-max:1240px;
    --pbw-r:22px;
  }

  .pbwFlow, .pbwFlow *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing:border-box;
  }

  .pbwFlow{
    --pbwProg: 0;        /* 0..1 */
    --pbwRailX: 50%;
    background:#fff;
    padding:78px 0;
    overflow: visible;
    border:0 !important;
    outline:0 !important;
  }

  .pbwFlow__wrap{
    width:min(var(--pbw-max), calc(100% - 28px));
    margin:0 auto;
  }

  .pbwFlow__head{ text-align:center; margin-bottom: 26px; }

  .pbwFlow__kicker{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 12px; border-radius:999px;
    border:1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight:800; font-size:13px; letter-spacing:.02em;
    margin:0 auto 14px;
  }
  .pbwFlow__dot{
    width:10px; height:10px; border-radius:999px;
    background: linear-gradient(135deg, var(--pbw-acc-1), var(--pbw-acc-2));
    box-shadow: 0 10px 22px rgba(139,92,246,.14);
  }

  .pbwFlow__title{
    margin:0 0 10px 0;
    color: var(--pbw-ink);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height:1.12;
    letter-spacing:-0.02em;
    font-weight:950;
  }
  .pbwFlow__hl{
    background: linear-gradient(135deg, var(--pbw-acc-1), var(--pbw-acc-2));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .pbwFlow__sub{
    margin:0 auto;
    color: var(--pbw-muted);
    font-size:16.5px;
    line-height:1.65;
    max-width: 80ch;
  }

  /* rail */
  .pbwRail{
    position:relative;
    margin-top: 28px;
    padding-top: 6px;
    overflow: visible;
  }

  .pbwRail::before{
    content:"";
    position:absolute;
    left: var(--pbwRailX);
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(15,23,42,.10);
    z-index: 0;
  }

  .pbwRail::after{
    content:"";
    position:absolute;
    left: var(--pbwRailX);
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%) scaleY(var(--pbwProg));
    transform-origin: top;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pbw-acc-2), var(--pbw-green), var(--pbw-acc-1));
    opacity: .92;
    z-index: 0;
    filter: drop-shadow(0 10px 18px rgba(139,92,246,.14));
  }

  .pbwList{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap: 18px;
    position:relative;
    z-index: 1;
  }

  .pbwItem{
    display:grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    align-items: stretch;
    position:relative;
  }

  .pbwNode{
    grid-column: 2;
    display:grid;
    place-items:center;
    position:relative;
    z-index: 2;
  }

  .pbwItem.is-left .pbwNode::before,
  .pbwItem.is-right .pbwNode::before{
    content:"";
    position:absolute;
    top: 50%;
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(15,23,42,.14), rgba(15,23,42,.06));
    transform: translateY(-50%);
    z-index: 1;
  }
  .pbwItem.is-left .pbwNode::before{ right: 52px; }
  .pbwItem.is-right .pbwNode::before{ left: 52px; }

  .pbwRing{
    width: 38px; height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pbw-acc-1), var(--pbw-acc-2));
    padding: 2px;
    box-shadow: 0 18px 44px rgba(139,92,246,.16);
  }
  .pbwCore{
    width:100%; height:100%;
    border-radius: 999px;
    background:#fff;
    border:1px solid rgba(15,23,42,.10);
    display:grid;
    place-items:center;
  }
  .pbwCore span{
    width:10px; height:10px;
    border-radius:999px;
    background: var(--pbw-green);
    box-shadow: 0 12px 24px rgba(21,144,141,.18);
  }

  /* ✅ CARD: nessun movimento */
  .pbwCard{
    border-radius: var(--pbw-r);
    border: 1px solid rgba(15,23,42,.10);
    background:#fff;
    box-shadow: 0 18px 46px rgba(2,8,23,.08);
    overflow:hidden;
    position:relative;
    padding: 20px 20px;
    min-height: 200px;
    opacity: .96;
    transition: box-shadow .22s ease, border-color .22s ease;
    transform: none !important;
  }

  .pbwCard::before{
    content:"";
    position:absolute;
    inset:-12% -10%;
    pointer-events:none;
    background:
      radial-gradient(circle at 18% 20%, rgba(139,92,246,.14), transparent 55%),
      radial-gradient(circle at 88% 28%, rgba(244,114,182,.14), transparent 56%),
      radial-gradient(circle at 42% 92%, rgba(21,144,141,.12), transparent 58%);
    opacity:.95;
  }
  .pbwCard__in{ position:relative; z-index:2; }

  .pbwTop{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    margin-bottom: 10px;
  }

  .pbwBadge{
    display:inline-flex; align-items:center; gap:8px;
    padding:8px 10px; border-radius:999px;
    border:1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight:900;
    font-size: 12px;
    letter-spacing:.01em;
    white-space: nowrap;
  }

  .pbwIcon{
    width: 42px; height: 42px;
    border-radius: 16px;
    padding:2px;
    background: linear-gradient(135deg, var(--pbw-acc-1), var(--pbw-acc-2));
    box-shadow: 0 14px 30px rgba(139,92,246,.12);
    flex: 0 0 auto;
  }
  .pbwIcon__in{
    width:100%; height:100%;
    border-radius: 14px;
    background: rgba(255,255,255,.82);
    border:1px solid rgba(15,23,42,.06);
    display:grid;
    place-items:center;
  }
  .pbwIcon svg{ width:18px; height:18px; fill: rgba(15,23,42,.72); }

  .pbwCard h3{
    margin: 0 0 8px 0;
    font-size: 17px;
    line-height:1.25;
    color: var(--pbw-ink);
    font-weight: 950;
    letter-spacing:-.01em;
  }

  .pbwCard p{
    margin: 0;
    font-size: 14.6px;
    line-height:1.6;
    color: var(--pbw-muted2);
    font-weight: 650;
  }

  .pbwItem.is-left .pbwCard{ grid-column: 1; justify-self:end; }
  .pbwItem.is-right .pbwCard{ grid-column: 3; justify-self:start; }

  /* ✅ ACTIVE: solo “boost” leggero, zero movimento */
  .pbwItem.is-on .pbwCard{
    border-color: rgba(15,23,42,.16);
    box-shadow: 0 26px 62px rgba(2,8,23,.11);
  }
  .pbwItem.is-on .pbwRing{
    box-shadow: 0 24px 70px rgba(139,92,246,.20);
  }

  @media (max-width: 980px){
    .pbwFlow{ padding: 62px 0; }
    .pbwItem{ grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr); }
  }

  /* MOBILE: linea a sinistra + card a destra */
  @media (max-width: 680px){
    .pbwFlow{ --pbwRailX: 28px; }
    .pbwFlow__title{ font-size: 34px; }

    .pbwItem{
      grid-template-columns: 56px minmax(0, 1fr);
      column-gap: 12px;
    }
    .pbwNode{ grid-column: 1; }

    .pbwItem.is-left .pbwCard,
    .pbwItem.is-right .pbwCard{
      grid-column: 2;
      justify-self: stretch;
    }

    .pbwItem.is-left .pbwNode::before,
    .pbwItem.is-right .pbwNode::before{
      left: 42px;
      right: auto;
      width: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .pbwRail::after{ transition: none !important; }
    .pbwCard{ transition:none !important; }
  }

/* ---- style block 9 ---- */
:root{
    --pbfaq2-green:#15908D;
    --pbfaq2-acc-1:#8B5CF6;
    --pbfaq2-acc-2:#F472B6;

    --pbfaq2-ink:#0f172a;
    --pbfaq2-muted:rgba(15,23,42,.72);

    --pbfaq2-max:1240px;
    --pbfaq2-r:22px;
  }

  .pbfaq2, .pbfaq2 *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing:border-box;
  }

  .pbfaq2{
    background:#fff;
    padding: 78px 0;
    overflow: visible;
  }

  .pbfaq2__wrap{
    width:min(var(--pbfaq2-max), calc(100% - 28px));
    margin:0 auto;
  }

  /* TITLES (center) */
  .pbfaq2__kicker{
    display:flex;                 /* ✅ invece di inline-flex */
    align-items:center;
    justify-content:center;       /* ✅ forza centratura */
    gap:10px;
    padding:10px 12px;
    border-radius:999px;
    border:1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight:800;
    font-size:13px;
    letter-spacing:.02em;
    margin:0 auto 14px;
    width: fit-content;           /* ✅ pill centrata */
    text-align:center;
  }
  .pbfaq2__dot{
    width:10px; height:10px; border-radius:999px;
    background: linear-gradient(135deg, var(--pbfaq2-acc-1), var(--pbfaq2-acc-2));
    box-shadow: 0 10px 22px rgba(139,92,246,.14);
  }

  .pbfaq2__title{
    margin:0 auto 10px;
    text-align:center;
    color: var(--pbfaq2-ink);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height:1.12;
    letter-spacing:-0.02em;
    font-weight:950;
    max-width: 30ch;
  }
  .pbfaq2__hl{
    background: linear-gradient(135deg, var(--pbfaq2-acc-1), var(--pbfaq2-acc-2));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .pbfaq2__sub{
    margin:0 auto 22px;
    text-align:center;
    color: var(--pbfaq2-muted);
    font-size:16.5px;
    line-height:1.65;
    max-width: 72ch;
  }

  /* BOX (slightly left ONLY on desktop) */
  .pbfaq2__box{
    width: min(860px, 100%);
    margin: 0 auto;
    border-radius: var(--pbfaq2-r);
    background:#fff;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 18px 46px rgba(2,8,23,.08);
    overflow: hidden;
    position: relative;
    transform: translateX(-10px);
  }

  .pbfaq2__box::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
      radial-gradient(circle at 18% 0%, rgba(139,92,246,.10), transparent 55%),
      radial-gradient(circle at 95% 12%, rgba(244,114,182,.10), transparent 58%),
      radial-gradient(circle at 50% 110%, rgba(21,144,141,.08), transparent 60%);
    opacity:.9;
  }

  .pbfaq2Item{
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(15,23,42,.08);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .pbfaq2Item:first-child{ border-top:0; }

  .pbfaq2Q{
    width:100%;
    border:0;
    background: transparent;
    text-align:left;
    cursor:pointer;
    padding: 16px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
  }

  .pbfaq2Q__l{
    display:flex;
    align-items:center;
    gap: 12px;
    min-width:0;
  }

  .pbfaq2Ico{
    width: 38px; height: 38px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.02);
    display:grid;
    place-items:center;
    flex: 0 0 auto;
  }
  .pbfaq2Ico svg{ width: 18px; height: 18px; fill: rgba(15,23,42,.62); }

  .pbfaq2Q strong{
    display:block;
    color: var(--pbfaq2-ink);
    font-weight: 950;
    font-size: 15.6px;
    line-height: 1.25;
    letter-spacing: -.01em;
    white-space: normal;
  }

  .pbfaq2Chev{
    width: 42px; height: 42px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.02);
    display:grid;
    place-items:center;
    flex: 0 0 auto;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }
  .pbfaq2Chev svg{
    width: 18px; height: 18px;
    fill: rgba(15,23,42,.62);
    transition: transform .18s ease;
  }

  .pbfaq2A{
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .26s ease;
  }
  .pbfaq2A__in{
    padding: 0 0 16px;
    color: rgba(15,23,42,.66);
    font-size: 14.6px;
    line-height: 1.65;
    font-weight: 650;
  }

  .pbfaq2Item.is-open .pbfaq2Chev{
    background: rgba(15,23,42,.03);
    border-color: rgba(15,23,42,.14);
  }
  .pbfaq2Item.is-open .pbfaq2Chev svg{ transform: rotate(180deg); }

  .pbfaq2Cta{
    margin-top: 16px;
    display:flex;
    justify-content:center;
  }
  .pbfaq2Btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.24);
    color: rgba(255,255,255,.98);
    background: linear-gradient(135deg, var(--pbfaq2-acc-1), var(--pbfaq2-acc-2));
    box-shadow: 0 16px 30px rgba(139,92,246,.14);
    font-weight: 950;
    font-size: 14px;
    letter-spacing: .01em;
    text-decoration:none;
    transition: transform .18s ease, box-shadow .18s ease;
    user-select:none;
  }
  .pbfaq2Btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 22px 44px rgba(139,92,246,.18);
  }
  .pbfaq2Btn svg{ width:18px; height:18px; fill: rgba(255,255,255,.92); }

  @media (max-width: 980px){
    .pbfaq2{ padding: 62px 0; }
    .pbfaq2__box{ transform: none; }
  }
  @media (max-width: 560px){
    .pbfaq2__title{ font-size: 34px; }
    .pbfaq2Q{ padding: 15px 14px; }
    .pbfaq2A{ padding: 0 14px; }
    .pbfaq2Chev{ width: 40px; height: 40px; border-radius: 15px; }
  }
  @media (prefers-reduced-motion: reduce){
    .pbfaq2A, .pbfaq2Chev, .pbfaq2Btn{ transition:none !important; }
  }

/* ---- style block 10 ---- */
:root{
    --pbrev-green:#15908D;
    --pbrev-acc-1:#8B5CF6;
    --pbrev-acc-2:#F472B6;

    --pbrev-ink:#0f172a;
    --pbrev-muted:rgba(15,23,42,.72);

    --pbrev-max:1240px;
    --pbrev-r:22px;
  }

  .pbrev, .pbrev *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing:border-box;
  }

  .pbrev{
    background:#fff;
    padding: 78px 0;
    overflow: visible;
  }

  .pbrev__wrap{
    width:min(var(--pbrev-max), calc(100% - 28px));
    margin:0 auto;
  }

  /* title centered */
  .pbrev__kicker{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:10px 12px;
    border-radius:999px;
    border:1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.78);
    font-weight:800;
    font-size:13px;
    letter-spacing:.02em;
    margin:0 auto 14px;
    width:fit-content;
  }
  .pbrev__dot{
    width:10px; height:10px; border-radius:999px;
    background: linear-gradient(135deg, var(--pbrev-acc-1), var(--pbrev-acc-2));
    box-shadow: 0 10px 22px rgba(139,92,246,.14);
  }

  .pbrev__title{
    margin:0 auto 10px;
    text-align:center;
    color: var(--pbrev-ink);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height:1.12;
    letter-spacing:-0.02em;
    font-weight:950;
    max-width: 34ch;
  }
  .pbrev__hl{
    background: linear-gradient(135deg, var(--pbrev-acc-1), var(--pbrev-acc-2));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .pbrev__sub{
    margin:0 auto 22px;
    text-align:center;
    color: var(--pbrev-muted);
    font-size:16.5px;
    line-height:1.65;
    max-width: 72ch;
  }

  /* controls */
  .pbrev__topRow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 14px;
  }
  .pbrev__hint{
    color: rgba(15,23,42,.58);
    font-weight: 650;
    font-size: 13.5px;
  }
  .pbrev__btns{
    display:flex;
    gap:10px;
  }
  .pbrev__nav{
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.02);
    display:grid;
    place-items:center;
    cursor:pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  }
  .pbrev__nav:hover{
    transform: translateY(-1px);
    background: rgba(15,23,42,.03);
    border-color: rgba(15,23,42,.14);
    box-shadow: 0 14px 34px rgba(2,8,23,.08);
  }
  .pbrev__nav:disabled{
    opacity:.45;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
  }
  .pbrev__nav svg{ width: 18px; height: 18px; fill: rgba(15,23,42,.72); }

  /* slider track */
  .pbrev__viewport{
    position: relative;
    overflow: hidden;
    border-radius: var(--pbrev-r);
  }

  .pbrev__track{
    display:flex;
    gap: 16px;
    will-change: transform;
    transition: transform .38s ease;
    padding: 4px; /* non tagliare shadow */
  }

  /* cards (3 per view desktop) */
  .pbrevCard{
    flex: 0 0 calc((100% - 32px) / 3);
    border-radius: var(--pbrev-r);
    border: 1px solid rgba(15,23,42,.10);
    background:#fff;
    box-shadow: 0 18px 46px rgba(2,8,23,.08);
    overflow:hidden;
    position: relative;
  }

  .pbrevCard::before{
    content:"";
    position:absolute;
    inset:-40% -30%;
    background:
      radial-gradient(circle at 20% 20%, rgba(139,92,246,.10), transparent 55%),
      radial-gradient(circle at 85% 25%, rgba(244,114,182,.10), transparent 58%),
      radial-gradient(circle at 50% 95%, rgba(21,144,141,.08), transparent 60%);
    transform: rotate(12deg);
    opacity: .9;
    pointer-events:none;
  }

  .pbrevCard__in{
    position: relative;
    z-index: 1;
    padding: 16px 16px 18px;
    display:flex;
    flex-direction:column;
    gap: 12px;
    min-height: 228px;
  }

  .pbrevCard__top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 10px;
  }

  .pbrevPerson{
    display:flex;
    align-items:center;
    gap: 10px;
    min-width:0;
  }

  .pbrevAvatar{
    width: 44px;
    height: 44px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--pbrev-acc-1), var(--pbrev-acc-2));
    box-shadow: 0 14px 30px rgba(139,92,246,.12);
    flex: 0 0 auto;
  }
  .pbrevAvatar__in{
    width:100%;
    height:100%;
    border-radius: 14px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(15,23,42,.06);
    display:grid;
    place-items:center;
    font-weight: 950;
    color: rgba(15,23,42,.78);
    letter-spacing: -.01em;
  }

  .pbrevName{
    min-width:0;
    display:flex;
    flex-direction:column;
    line-height:1.1;
  }
  .pbrevName strong{
    font-size: 14.8px;
    color: var(--pbrev-ink);
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pbrevName span{
    font-size: 12.8px;
    color: rgba(15,23,42,.56);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pbrevStars{
    display:inline-flex;
    gap: 2px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.02);
    flex: 0 0 auto;
    align-items:center;
  }
  .pbrevStars svg{ width: 14px; height: 14px; fill: rgba(15,23,42,.72); opacity:.92; }

  .pbrevQuote{
    margin:0;
    color: rgba(15,23,42,.72);
    font-size: 14.6px;
    line-height: 1.65;
    font-weight: 650;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
  }

  .pbrevMore{
    align-self: flex-start;
    margin-top: -2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.12);
    background: rgba(255,255,255,.86);
    color: rgba(15,23,42,.82);
    font-size: 12.8px;
    font-weight: 950;
    letter-spacing: .01em;
    cursor: pointer;
    user-select: none;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    box-shadow: 0 14px 30px rgba(2,8,23,.06);
  }
  .pbrevMore:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(2,8,23,.10);
    filter: saturate(1.03);
  }
  .pbrevMore:active{ transform: translateY(0); }
  .pbrevMore:focus-visible{
    outline: 3px solid rgba(139,92,246,.28);
    outline-offset: 2px;
  }

  /* overlay “leggi tutto” */
  .pbrevPopBack, .pbrevPop, .pbrevPopBack *, .pbrevPop *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter","Segoe UI",Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .pbrevPopBack{
    position: fixed;
    inset: 0;
    background: rgba(2,8,23,.46);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 10040;
  }
  .pbrevPopBack.is-open{
    opacity: 1;
    pointer-events: auto;
  }

  .pbrevPop{
    position: fixed;
    z-index: 10050;
    border-radius: var(--pbrev-r);
    border: 1px solid rgba(15,23,42,.12);
    background: #fff;
    box-shadow: 0 28px 70px rgba(2,8,23,.22);
    overflow: auto;
    opacity: 0;
    transform: translateZ(0);
    will-change: transform, opacity;
    transition: transform .55s cubic-bezier(.2,.9,.2,1), opacity .2s ease;
  }
  .pbrevPop.is-open{
    opacity: 1;
  }
  .pbrevPop__in{
    position: relative;
    padding: 18px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .pbrevPop__top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 10px;
  }
  .pbrevPop__close{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.02);
    display:grid;
    place-items:center;
    cursor:pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    flex: 0 0 auto;
  }
  .pbrevPop__close:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(2,8,23,.12);
    filter: saturate(1.02);
  }
  .pbrevPop__close svg{ width: 18px; height: 18px; fill: rgba(15,23,42,.72); }

  .pbrevPopQuote{
    margin:0;
    color: rgba(15,23,42,.78);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
    display:block;
    overflow: visible;
  }
  .pbrevPopQuote .pbrevPop__rest{
    background: linear-gradient(90deg, rgba(139,92,246,.14), rgba(244,114,182,.14));
    border-radius: 10px;
    padding: 1px 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .pbrevPop .pbrevTagRow{ margin-top: 4px; }

  .pbrevTagRow{
    margin-top:auto;
    display:flex;
    gap: 8px;
    flex-wrap:wrap;
  }
  .pbrevTag{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.86);
    font-size: 12.6px;
    font-weight: 800;
    color: rgba(15,23,42,.70);
  }
  .pbrevTag i{
    width: 10px; height: 10px; border-radius: 999px;
    background: var(--pbrev-green);
    box-shadow: 0 10px 22px rgba(21,144,141,.16);
  }

  /* CTA card */
  .pbrevCard--cta{
    border-color: rgba(15,23,42,.12);
    background: #fff;
  }
  .pbrevCard--cta::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
      radial-gradient(900px 220px at 40% 0%, rgba(139,92,246,.10), transparent 65%),
      radial-gradient(900px 240px at 70% 100%, rgba(244,114,182,.10), transparent 65%);
    opacity:.9;
  }
  .pbrevCtaTitle{
    margin: 2px 0 2px;
    font-size: 16.8px;
    line-height: 1.25;
    color: var(--pbrev-ink);
    font-weight: 950;
    letter-spacing: -.01em;
  }
  .pbrevCtaText{
    margin: 0;
    color: rgba(15,23,42,.70);
    font-size: 14.6px;
    line-height: 1.65;
    font-weight: 650;
  }
  .pbrevCtaBtn{
    margin-top: 2px;
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.26);
    color: rgba(255,255,255,.98);
    background: linear-gradient(135deg, var(--pbrev-acc-1), var(--pbrev-acc-2));
    text-decoration:none;
    font-weight: 950;
    letter-spacing:.01em;
    box-shadow: 0 16px 30px rgba(139,92,246,.16);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    user-select:none;
    width: fit-content;
  }
  .pbrevCtaBtn:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(139,92,246,.18);
    filter: saturate(1.03);
  }
  .pbrevCtaBtn svg{ width: 18px; height: 18px; fill: rgba(255,255,255,.96); }

  /* responsive: 2 per view */
  @media (max-width: 980px){
    .pbrev{ padding: 62px 0; }
    .pbrevCard{ flex-basis: calc((100% - 16px) / 2); }
    .pbrev__topRow{ margin-bottom: 12px; }
    .pbrevQuote{ -webkit-line-clamp: 8; }
  }

  /* mobile: 1 per view */
  @media (max-width: 560px){
    .pbrev__title{ font-size: 34px; }
    .pbrevCard{ flex-basis: 100%; }
    .pbrev__topRow{
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .pbrev__hint{ text-align:center; }
    .pbrevQuote{ -webkit-line-clamp: 10; }
  }

  @media (prefers-reduced-motion: reduce){
    .pbrev__track{ transition:none !important; }
    .pbrev__nav{ transition:none !important; }
    .pbrevCtaBtn{ transition:none !important; }
    .pbrevMore{ transition:none !important; }
    .pbrevPopBack, .pbrevPop{ transition:none !important; }
  }

/* ---- style block 11 ---- */
:root{
    --aof-green: #15908D;
    --aof-wa-shadow: 0 18px 40px rgba(2,8,23,.22);
  }

  .aofWAFab, .aofWAFab *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .aofWAFab{
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9998;
  }

  .aofWAFab__btn{
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: var(--aof-green);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: var(--aof-wa-shadow);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  }

  .aofWAFab__btn::before{
    content:"";
    position:absolute;
    inset:-40%;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 55%);
    transform: rotate(18deg);
    opacity: .75;
    pointer-events:none;
  }

  .aofWAFab__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(2,8,23,.26);
    filter: saturate(1.02);
  }

  .aofWAFab__icon{
    width: 30px;
    height: 30px;
    display:block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.18));
  }

  /* ✅ sposto SOLO il “telefono” dentro al bubble (dx + giù) */
  .aofWAFab__icon .wa-phone{
    transform: translate(0.7px, 0.9px);
    transform-origin: 50% 50%;
  }

  .aofWAFab__tip{
    position: absolute;
    right: 74px;
    bottom: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(15,23,42,.92);
    color: rgba(255,255,255,.95);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
    box-shadow: 0 18px 40px rgba(2,8,23,.22);
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .aofWAFab__btn:hover + .aofWAFab__tip{
    opacity: 1;
    transform: translateX(0);
  }

  @media (max-width: 520px){
    .aofWAFab{ right: 14px; bottom: 14px; }
    .aofWAFab__btn{ width: 58px; height: 58px; }
    .aofWAFab__icon{ width: 28px; height: 28px; }
    .aofWAFab__tip{ display:none; }
  }

  @media (prefers-reduced-motion: reduce){
    .aofWAFab__btn, .aofWAFab__tip{ transition:none !important; }
  }

/* ---- style block 12 ---- */
:root{
    --g:#15908D;
    --acc-1:#8B5CF6;
    --acc-2:#F472B6;

    --w: rgba(255,255,255,.97);
    --w2: rgba(255,255,255,.84);
    --w3: rgba(255,255,255,.68);

    --max: 1240px;
    --r: 22px;
  }

  .aofFtr, .aofFtr *{
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
                 "Inter","Segoe UI",Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  .aofFtr{
    position: relative;
    background: var(--g);
    color: var(--w);
    padding: 78px 0 26px;
    overflow: hidden; /* no “bordi” visivi */
  }

  /* underline gradient in alto */
  .aofFtr::before{
    content:"";
    position:absolute;
    left:0; right:0; top:0;
    height: 2px;
    background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
    opacity: .95;
  }

  /* glow */
  .aofFtr::after{
    content:"";
    position:absolute;
    inset:-30% -20%;
    background:
      radial-gradient(700px 320px at 15% 25%, rgba(255,255,255,.14), transparent 60%),
      radial-gradient(820px 380px at 85% 30%, rgba(0,0,0,.14), transparent 62%),
      radial-gradient(700px 360px at 55% 95%, rgba(139,92,246,.12), transparent 60%),
      radial-gradient(700px 360px at 80% 85%, rgba(244,114,182,.10), transparent 60%);
    pointer-events:none;
    opacity:.92;
  }

  .aofFtr__wrap{
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
  }

  .aofFtr__grid{
    display:grid;
    grid-template-columns: 1.15fr .85fr 1.1fr;
    gap: 16px;
    align-items:start;
  }

  /* ✅ card interne ok, ma nessun bordo “esterno” del footer */
  .aofFtrCard{
    border-radius: var(--r);
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    box-shadow: 0 18px 40px rgba(2,8,23,.14);
    overflow: hidden;
    position: relative;
  }
  .aofFtrCard::before{
    content:"";
    position:absolute; inset:0;
    pointer-events:none;
    background:
      radial-gradient(900px 200px at 20% 0%, rgba(255,255,255,.12), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.06), transparent 60%);
    opacity:.95;
  }
  .aofFtrCard__in{
    position: relative;
    padding: 18px 18px;
  }

  /* brand */
  .aofFtrBrand{
    display:flex;
    gap: 12px;
    align-items:flex-start;
  }
  .aofFtrMark{
    width: 46px; height: 46px;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
    box-shadow: 0 14px 30px rgba(139,92,246,.16);
    flex: 0 0 auto;
  }
  .aofFtrMark__in{
    width:100%; height:100%;
    border-radius: 12px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    display:grid;
    place-items:center;
    overflow:hidden;
  }
  .aofFtrMark img{
    width: 32px; height: 32px;
    object-fit: contain;
    display:block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.22));
  }

  .aofFtrTitle{
    margin: 0 0 6px 0;
    font-size: 14px;
    letter-spacing:.12em;
    text-transform: uppercase;
    font-weight: 900;
  }
  .aofFtrSub{
    margin: 0;
    color: var(--w3);
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 700;
    max-width: 50ch;
  }

  /* CTA */
  .aofFtrCtaRow{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    align-items:center;
  }
  .aofFtrBtn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.26);
    color: rgba(255,255,255,.98);
    background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
    text-decoration:none;
    font-weight: 900;
    letter-spacing: .01em;
    box-shadow: 0 16px 30px rgba(139,92,246,.16);
    user-select:none;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  }
  .aofFtrBtn:hover{
    transform: translateY(-1px);
    box-shadow: 0 22px 44px rgba(139,92,246,.18);
    filter: saturate(1.03);
  }
  .aofFtrBtn svg{ width:18px; height:18px; fill: rgba(255,255,255,.96); }

  .aofFtrMini{
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    max-width: 44ch;
  }

  /* headings */
  .aofFtrH{
    margin: 0 0 12px 0;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 950;
    color: var(--w);
  }

  /* links */
  .aofFtrLinks{ display:grid; gap: 8px; }
  .aofFtrLink{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    text-decoration:none;
    color: var(--w2);
    font-weight: 850;
    letter-spacing:.01em;
    transition: transform .18s ease, background .18s ease, color .18s ease;
  }
  .aofFtrLink:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.10);
    color: var(--w);
  }
  .aofFtrLink small{
    color: rgba(255,255,255,.72);
    font-weight: 750;
    font-size: 12.5px;
  }

  /* contacts */
  .aofFtrList{
    margin: 0;
    padding: 0;
    list-style: none;
    display:grid;
    gap: 10px;
  }
  .aofFtrItem{
    display:flex;
    gap: 10px;
    align-items:flex-start;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
  }
  .aofFtrIcon{
    width: 34px; height: 34px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
    flex: 0 0 auto;
    box-shadow: 0 14px 30px rgba(139,92,246,.12);
  }
  .aofFtrIcon__in{
    width:100%; height:100%;
    border-radius: 10px;
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(2,8,23,.10);
    display:grid;
    place-items:center;
  }
  .aofFtrIcon svg{ width: 16px; height:16px; fill: rgba(15,23,42,.72); }

  .aofFtrText{ display:grid; gap: 2px; min-width: 0; }
  .aofFtrText b{
    font-size: 13px;
    letter-spacing:.01em;
    font-weight: 950;
    color: rgba(255,255,255,.96);
  }
  .aofFtrText a, .aofFtrText span{
    color: rgba(255,255,255,.78);
    font-size: 13.5px;
    line-height: 1.35;
    font-weight: 750;
    text-decoration:none;
  }
  .aofFtrText a:hover{ text-decoration: underline; text-underline-offset: 3px; }

  /* ✅ orari compatti: Lun–Ven / Sab / Dom */
  .aofFtrHours{
    margin-top: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.14);
    overflow:hidden;
    background: rgba(255,255,255,.06);
  }
  .aofFtrHoursRow{
    display:flex;
    justify-content:space-between;
    gap: 10px;
    padding: 10px 12px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13.5px;
    font-weight: 800;
    color: rgba(255,255,255,.84);
  }
  .aofFtrHoursRow:first-child{ border-top:0; }
  .aofFtrHoursRow strong{
    color: rgba(255,255,255,.96);
    font-weight: 950;
  }
  .aofFtrHoursRow em{
    font-style: normal;
    color: rgba(255,255,255,.76);
    font-weight: 850;
    text-align:right;
    white-space: nowrap;
  }

  /* bottom bar */
  .aofFtrBar{
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.16);
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items:center;
    justify-content: space-between;
  }
  .aofFtrLegal{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items:center;
    color: rgba(255,255,255,.72);
    font-size: 12.8px;
    font-weight: 750;
  }
  .aofFtrLegal a{
    color: rgba(255,255,255,.84);
    text-decoration:none;
    font-weight: 850;
  }
  .aofFtrLegal a:hover{ text-decoration: underline; text-underline-offset: 3px; }

  .aofFtrCopy{
    color: rgba(255,255,255,.72);
    font-size: 12.8px;
    font-weight: 750;
  }

  @media (max-width: 980px){
    .aofFtr{ padding: 64px 0 24px; }
    .aofFtr__grid{ grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce){
    .aofFtrBtn, .aofFtrLink{ transition: none !important; }
  }
