  /* =========================
     BASE / VARIABILI
  ========================== */
  :root{
    --sw-bg:#fff;
    --sw-ink:#0b1220;
    --sw-muted:#6c757d;
    --sw-card:#ffffff;
    --sw-border:rgba(0,0,0,.08);
    --sw-shadow:0 18px 50px rgba(11,18,32,.10);
    --sw-radius:22px;
  }
  body{ background:var(--sw-bg); color:var(--sw-ink); }
  .sw-wrap{ max-width:1180px; }
  .sw-card{
    background:var(--sw-card);
    border:1px solid var(--sw-border);
    border-radius:var(--sw-radius);
    box-shadow:0 10px 28px rgba(0,0,0,.05);
  }
  .sw-soft{ border-radius:var(--sw-radius); overflow:hidden; }

  /* =========================
     HERO
  ========================== */
  .sw-hero{
    padding: 36px 0 8px;
  }
  .sw-hero-box{
    border-radius: 28px;
    overflow:hidden;
    position: relative;
    background: radial-gradient(1200px 420px at 10% 0%, rgba(13,110,253,.20), transparent 55%),
                linear-gradient(135deg, #0b1220, #111a2f);
    color:#fff;
    box-shadow: var(--sw-shadow);
  }
  .sw-hero-grid{
    display:grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 0;
    min-height: 420px;
  }
  .sw-hero-left{ padding: 44px 42px; position:relative; z-index:2; }

  .sw-pill{
    display:inline-flex; gap:10px; align-items:center;
    padding:.42rem .85rem;
    border-radius:999px;
    background: rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    font-weight:600;
    font-size:.92rem;
  }
  .sw-h1{
    font-weight:900;
    letter-spacing:-.4px;
    line-height:1.04;
    margin: 14px 0 12px;
    font-size: clamp(28px, 3.2vw, 54px);
  }
  .sw-lead{
    opacity:.92;
    font-size:1.08rem;
    max-width: 62ch;
  }
  .sw-hero-actions .btn{
    border-radius: 50rem;
    padding: .9rem 1.05rem;
    font-weight: 700;
  }
  .sw-hero-right{
    position:relative;
    display:flex;
    align-items:stretch;
    justify-content:stretch;
    min-height: 420px;
  }
  .sw-hero-img{
    position:absolute; inset:0;
    background-size:cover;
    background-position:center;
    opacity:.75;
    filter:saturate(1.05) contrast(1.02);
    transform:scale(1.02);
  }
  .sw-hero-img-overlay{
    /*position:absolute; inset:0;
    background: linear-gradient(90deg, rgba(11,18,32,.80), rgba(11,18,32,.25), rgba(11,18,32,.05));*/
  }

  /* =========================
     TRUST
  ========================== */
  .sw-trust{
    margin-top: 14px;
  }
  .sw-trustbar{
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    padding: 14px 16px;
  }
  .sw-trustbar .item{
    display:flex; gap:10px; align-items:flex-start;
    color: rgba(255,255,255,.92);
    font-size:.95rem;
  }
  .sw-trustbar .dot{
    width:10px; height:10px; border-radius:999px;
    background: rgba(13,110,253,.95);
    margin-top: 6px;
    flex:0 0 auto;
  }

  /* =========================
     SEZIONI / CONTENUTO
  ========================== */
  .sw-section{ padding: 40px 0; }
  .sw-section h2{
    font-weight:900; letter-spacing:-.2px;
    margin:0;
  }
  .sw-subtitle{ color: var(--sw-muted); margin-top:8px; }

  .sw-content{ font-size: 1.03rem; }
  .sw-content img{ max-width:100%; height:auto; border-radius:18px; }
  .sw-content iframe{ max-width:100%; }

  /* =========================
     BENEFIT CARD (chiaro)
  ========================== */
  .sw-benefit-card{
    height:100%;
    border-radius: 20px;
    border:1px solid var(--sw-border);
    background:#fff;
    padding: 18px;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .sw-benefit-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
  }
  .sw-iconbox{
    width:50px; height:50px;
    border-radius:16px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(13,110,253,.10);
    border:1px solid rgba(13,110,253,.15);
    font-size:18px;
    flex:0 0 auto;
  }

  /* =========================
     STEPS
  ========================== */
  .sw-steps{
    border-radius: var(--sw-radius);
    border:1px solid var(--sw-border);
    background:#fff;
    overflow:hidden;
  }
  .sw-step{
    padding: 18px 18px;
    border-top: 1px solid rgba(0,0,0,.06);
    display:flex; gap:14px;
  }
  .sw-step:first-child{ border-top:0; }
  .sw-step-num{
    width:42px; height:42px;
    border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(11,18,32,.06);
    font-weight:900;
    color: var(--sw-ink);
    flex:0 0 auto;
  }
  .sw-step-title{ font-weight:900; margin:0; }
  .sw-step-text{ color: var(--sw-muted); margin-top:6px; }

  /* =========================
     PRICING
  ========================== */
  .sw-price{
    border-radius: 24px;
    border:1px solid var(--sw-border);
    background:#fff;
    padding: 22px;
    height:100%;
    position:relative;
  }
  .sw-price.featured{
    border:1px solid rgba(13,110,253,.35);
    box-shadow: 0 16px 40px rgba(13,110,253,.10);
  }
  .sw-badge{
    position:absolute; top:16px; right:16px;
    background:#0d6efd;
    color:#fff;
    border-radius:999px;
    padding:.35rem .65rem;
    font-weight:800;
    font-size:.82rem;
  }
  .sw-price .name{ font-weight:900; font-size:1.2rem; margin:0; }
  .sw-price .sub{ color:var(--sw-muted); margin-top:6px; }
  .sw-price .price{ margin-top:14px; font-weight:900; font-size:1.25rem; }
  .sw-price ul{ margin:14px 0 0; padding-left: 1.2rem; color: var(--sw-muted); }
  .sw-price li{ margin-bottom:10px; }
  .sw-price .btn{ border-radius: 50rem; padding:.85rem 1rem; font-weight:800; }

  /* =========================
     CTA (vecchia)
  ========================== */
  .sw-cta{
    border-radius: 28px;
    padding: 26px;
    background: linear-gradient(135deg, rgba(13,110,253,.12), rgba(11,18,32,.02));
    border:1px solid rgba(13,110,253,.18);
  }

  /* =========================
     DUPLICATI CHE AVEVI (lasciati uguali)
  ========================== */
  .sw-wrap{max-width:1180px}
  .sw-section{padding:64px 0}

  /* =========================
     SEZIONE HEAD / SWIPE
  ========================== */
  .sw-section-head{
    display:flex;justify-content:space-between;align-items:flex-end;
    gap:16px;margin-bottom:22px;
  }
  .sw-h2{font-weight:900;letter-spacing:-.02em;font-size:clamp(28px,3.2vw,56px);margin:0}
  .sw-subtitle{color:#6c757d;font-size:1.1rem;margin-top:8px}

  .sw-nav{display:flex;gap:10px;align-items:center}
  .sw-nav-btn{
    width:46px;height:46px;border-radius:999px;
    border:2px solid rgba(17,24,39,.25);
    background:#fff;display:grid;place-items:center;
    transition:.15s ease;
  }
  .sw-nav-btn:hover{transform:translateY(-1px)}
  .sw-nav-btn i{font-size:16px}

  .sw-swiper{padding:10px 2px}
  .swiper-slide{height:auto}

  .sw-benefit-dark{
    border-radius:26px;
    background: radial-gradient(110% 110% at 0% 0%, #1a1f3a 0%, #0b1024 60%, #070a16 100%);
    color:#fff;
    padding:28px;
    min-height:330px;
    box-shadow:0 18px 40px rgba(2,6,23,.18);
  }
  .sw-benefit-ico{
    width:58px;height:58px;border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    display:grid;place-items:center;
    margin-bottom:22px;
  }
  .sw-benefit-ico i{font-size:20px}
  .sw-benefit-title{
    font-size:clamp(22px,2.2vw,40px);
    font-weight:900;line-height:1.05;margin-bottom:14px;
  }
  .sw-benefit-text{opacity:.92;font-size:1.05rem;line-height:1.55}
  .sw-benefit-text a{color:#7dd3fc;text-decoration:none}
  .sw-benefit-text a:hover{text-decoration:underline}

  /* =========================
     APPROCCIO (stile come allegato)
  ========================== */
  .sw-approach{ padding:64px 0; }
  .sw-approach-grid{
    display:grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items:start;
  }

  .sw-approach-title{
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.05;
    margin: 0 0 18px;
    color:#111827;
  }

  .sw-approach-lead{
    font-size: 1.15rem;
    line-height: 1.6;
    color:#111827;
    margin: 0 0 22px;
    max-width: 58ch;
  }

  .sw-approach-btn{
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
  }

  /* cards 2x2 */
  .sw-approach-cards{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 34px;
  }

  .sw-approach-card{
    position: relative;
    padding-top: 6px;
  }

  .sw-approach-num{
    width: 54px;
    height: 54px;
    border-radius: 50rem;
    background: #f3c969;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 900;
    font-size: 34px;
    line-height: 1;
    color:#111;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
  }

  .sw-approach-card-title{
    margin: 0 0 10px;
    font-weight: 900;
    font-size: 1.35rem;
    color:#111827;
  }

  .sw-approach-card-text{
    color:#374151;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  /* =========================
     VALUE
  ========================== */
  .sw-value {
    padding: 90px 0;
    background: #ffffff;
  }

  .sw-value-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .sw-value-item {
    position: relative;
    padding-left: 28px;
  }

  .sw-value-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #72549b; /* colore brand */
  }

  .sw-value-item h3 {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #0f1222;
  }

  .sw-value-item p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #5f6472;
    max-width: 820px;
  }

  /* =========================
     Titoli sezione (coerenti) - come avevi
  ========================== */
  .sw-sec-head{margin-bottom:18px}
  .sw-h2{
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.02em;
    margin: 0;
    color:#0f1222;
  }
  .sw-sec-sub{
    margin: 10px 0 0;
    font-size: 1.12rem;
    color:#6b7280;
  }

  /* =========================
     FAQ
  ========================== */
  .sw-faq{
    background:#fff;
    border:1px solid rgba(15,18,34,.08);
    border-radius: 22px;
    box-shadow: 0 18px 60px rgba(15,18,34,.06);
    overflow:hidden;
  }

  .sw-faq-item + .sw-faq-item{
    border-top:1px solid rgba(15,18,34,.08);
  }

  .sw-faq-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding: 18px 20px;
    background:#fff;
    border:0;
    text-align:left;
    font-size: 1.15rem;
    font-weight: 700;
    color:#1f2a44;
    transition: background .18s ease, color .18s ease;
  }

  .sw-faq-item:has(.collapse.show) .sw-faq-btn{
    background: #72549b;
    color:#fff;
  }

  .sw-faq-q{flex:1}

  .sw-faq-ico{
    width:38px;height:38px;
    border-radius:999px;
    border:1px solid rgba(15,18,34,.10);
    background: rgba(255,255,255,.75);
    position:relative;
    flex: 0 0 auto;
    transition: transform .18s ease;
  }
  .sw-faq-ico::before{
    content:"";
    position:absolute; inset:0;
    margin:auto;
    width:15px;height:15px;
    border-right:5px solid rgba(15,18,34,.55);
    border-bottom:5px solid rgba(15,18,34,.55);
    transform: rotate(45deg);
    top: -6px;
  }

  .sw-faq-item:has(.collapse.show) .sw-faq-ico{
    transform: rotate(180deg);
  }

  .sw-faq-body{
    padding: 18px 20px 24px;
    color:#404756;
    font-size: 1.05rem;
    line-height: 1.75;
    background:#fff;
  }

  /* =========================
     CTA pill grande
  ========================== */
  .sw-cta2{
    margin-top: 0px;
    padding: 58px;
      border-radius: 28px;
      overflow:hidden;
      position: relative;
      background: radial-gradient(1200px 420px at 10% 0%, rgba(13,110,253,.20), transparent 55%),
                  linear-gradient(135deg, #0b1220, #111a2f);
      color:#fff;
      box-shadow: var(--sw-shadow);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
  }

  .sw-cta2-title{
    margin:0;
    font-size: clamp(22px, 2.2vw, 36px);
    font-weight: 900;
    color:#0f1222;
  }
  .sw-cta2-sub{
    margin:8px 0 0;
    color:#5f6472;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .sw-cta2-right{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }

  .sw-btn-pill{
    border-radius: 50rem;
    padding: 12px 18px;
    font-weight: 700;
  }
  .sw-btn-pill2{
    border-radius: 50rem;
    padding: 12px 18px;
    font-weight: 700;
  }

  /* =========================================================
     @MEDIA UNIFICATI (SOLO QUESTO HO CAMBIATO)
     ========================================================= */

  /* --- 576px (era già unico) --- */
  @media (max-width: 576px){
    .sw-hero-left{ padding: 34px 20px; }
  }

  /* --- 1250px (unificato: hero-grid + hero-right + approach + flat mobile che avevi) --- */
  @media (max-width: 1250px){
    .sw-hero-grid{ grid-template-columns: 1fr; min-height:auto; }
    .sw-hero-right{ min-height: 240px; }

    .sw-approach-grid{
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .sw-approach-cards{
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .sw-card {
      background: #fff !important;
      border: 0px !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding-left:20px !important;
      padding-right: 20px !important;
      padding-bottom: 0px !important;
      margin-bottom: 0px !important;
    }

    .sw-section-2 {
      border: 0px !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding-left:20px !important;
      padding-right: 20px !important;
    }

    .sw-hero-box {
      border-radius: 0px !important;
    }

    .sw-section-3 {
      padding-top:0px !important;
    }

    .sw-section-4 {
      border: 0px !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding-left:10px !important;
      padding-right: 10px !important;
    }

    .sw-cta2{
      display: blocK !important;
      padding:30px;
    }
    .sezionecta{
      margin-top: 0px;
      border-radius: 0px;
      overflow:hidden;
      position: relative;
      background: radial-gradient(1200px 420px at 10% 0%, rgba(13,110,253,.20), transparent 55%),
                  linear-gradient(135deg, #0b1220, #111a2f);
      color:#fff;
      box-shadow: var(--sw-shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding-bottom:0 !important;
      text-align: center !important;
      align-items: center !important;
    }

    .margintop{
      margin-top:20px !important;
    }

    .sw-cta2-right{
      display: block !important;
    }

  }

  /* --- 768px (unificato: SOLO il blocco Mobile che avevi) --- */
  @media (max-width: 768px) {
    .sw-value {
      padding: 64px 0;
    }

    .sw-value-item h3 {
      font-size: 1.55rem;
    }

    .sw-card {
      background: #fff !important;
      border: 0px !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding-left:20px !important;
      padding-right: 20px !important;
      padding-bottom: 0px !important;
      margin-bottom: 0px !important;
    }

    .sw-section-2 {
      border: 0px !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding-left:20px !important;
      padding-right: 20px !important;
    }

    .sw-hero-box {
      border-radius: 0px !important;
    }

    .sw-section-3 {
      padding-top:0px !important;
    }

    .sw-section-4 {
      border: 0px !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding-left:10px !important;
      padding-right: 10px !important;
    }

    .sw-cta2{
      display: blocK !important;
      padding:30px;
    }
    .sezionecta{
      margin-top: 0px;
      border-radius: 0px;
      overflow:hidden;
      position: relative;
      background: radial-gradient(1200px 420px at 10% 0%, rgba(13,110,253,.20), transparent 55%),
                  linear-gradient(135deg, #0b1220, #111a2f);
      color:#fff;
      box-shadow: var(--sw-shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding-bottom:0 !important;
      text-align: center !important;
      align-items: center !important;
    }

    .margintop{
      margin-top:20px !important;
    }

    .sw-cta2-right{
      display: block !important;
    }
  }