     /* =========================================================
       BASE
    ========================================================= */
 
    :root{
      --bg:#ffffff;
      --text:#0f172a;
      --muted:#64748b;
      --border:#cbd5e1;
      --border2:#e2e8f0;
      --soft:#f8fafc;
      --dark:#0f172a;
      --white:#ffffff;
      --radius:18px;
      --radius-sm:12px;
      --radius-md:16px;
      --container: 1200px;
      
    }

    *{ box-sizing:border-box; }
    body{
      margin:0;
      font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
      background:var(--bg);
      color:var(--text);
    }
    img{ max-width:100%; display:block; }
    a{ color:inherit; }
     .container{ max-width:var(--container); margin:0 auto; padding:0 20px; }
    
    /* ===== Header ===== */
     .site-header{
      background: linear-gradient(180deg, rgba(7,16,33,0.94), rgba(7,16,33,0.70));
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(234,243,255,0.10);
      position:sticky; top:0; z-index:100;
    }
     .header-inner{
      display:flex;
      align-items:center;
      gap:16px;
      padding:12px 0;
    }
     .brand{
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      color:#eaf3ff;
      min-width:180px;
    }
     .brand-logo{
      width:44px;
      height:44px;
      display:block;
      filter:
        drop-shadow(0 2px 6px rgba(0,0,0,0.55))
        drop-shadow(0 0 8px rgba(14,116,144,0.35));
    }
    .brand-name{
      font-weight:800;
      font-size:18px;
      opacity:.95;
    }
     .header-right{
     	display:flex; 
     	align-items:center; 
     	gap:18px;
     	margin-left:auto;
     }
    .header-cta{
      text-decoration:none;
      color:#fff;
      padding:10px 18px;
      border-radius:999px;
      font-weight:900;
      font-size:14px;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 10px 26px rgba(0,0,0,.25);
      white-space:nowrap;
      transition: transform .18s ease, filter .18s ease;
      background: var(--dark);
    }
    .header-cta:hover{ transform: translateY(-1px); filter: brightness(1.05); }
    

    /* ===== Breadcrumb ===== */
    .breadcrumb{
      font-size:13px;
      color:var(--muted);
      margin-bottom:14px;
      margin-top:14px;
    }
    .breadcrumb a{
      color:var(--muted);
      text-decoration:none;
    }
    .breadcrumb a:hover{ text-decoration:underline; }
    .breadcrumb-sep{ padding:0 8px; }
    .breadcrumb-current{
      color:var(--text);
      font-weight:800;
    }

    /* ===== Card / sections ===== */
    .card{
      border:1px solid var(--border);
      border-radius:var(--radius);
      overflow:hidden;
      background:var(--white);
    }
    .card-pad{ padding:20px; }

    /* ===== Hero ===== */
    .hero-media{
      position:relative;
      height:300px;
      background-size:cover;
      background-position:center;
    }
    .hero-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.12));
    }
    .hero-inner{
      position:relative;
      height:100%;
      display:flex;
      align-items:flex-end;
    }
    .hero-content{
      padding:20px;
      color:#fff;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border:1px solid rgba(255,255,255,.25);
      border-radius:999px;
      background:rgba(255,255,255,.10);
      font-size:12px;
      font-weight:700;
      line-height:1.2;
    }
    .hero-dot{
      width:8px;
      height:8px;
      border-radius:999px;
      background:#22c55e;
      display:inline-block;
      flex:0 0 auto;
    }
    .hero-title{
      margin:10px 0 6px;
      font-size:30px;
      line-height:1.15;
      letter-spacing:-.2px;
    }
    .hero-sub{
      margin:0;
      max-width:820px;
      line-height:1.65;
      font-size:15.5px;
      opacity:.95;
    }

    /* ===== Pills ===== */
    .pills{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:16px;
    }
    .pill{
      padding:8px 10px;
      border:1px solid var(--border2);
      border-radius:999px;
      background:var(--soft);
      font-size:13px;
      font-weight:800;
    }

    .grid-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .box{
      border:1px solid var(--border2);
      border-radius:var(--radius-md);
      padding:14px;
      background:#fff;
    }
    .box-title{
      font-weight:900;
      margin-bottom:6px;
    }
    .box-text{
      color:#334155;
      line-height:1.7;
      font-size:14.5px;
    }
    .box-list{
      margin:0;
      padding-left:18px;
      color:#334155;
      line-height:1.9;
      font-size:14.5px;
    }

    /* ===== Applications ===== */
    .applications{
      margin-top:14px;
      padding:12px 14px;
      border:1px solid var(--border2);
      border-radius:var(--radius-md);
      background:#fff;
    }

    /* ===== Buttons / CTA ===== */
    .cta-row{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .btn{
      text-decoration:none;
      padding:10px 12px;
      border-radius:var(--radius-sm);
      font-weight:900;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:1px solid transparent;
      user-select:none;
    }
    .btn-dark{
      color:#fff;
      background:var(--dark);
    }
    .btn-dark:hover{ filter:brightness(1.05); }
    .btn-outline{
      color:var(--dark);
      background:#fff;
      border-color:var(--border);
    }
    .btn-outline:hover{ background:var(--soft); }

    /* ===== Prices section ===== */
    .section{
      margin-top:14px;
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:18px;
      background:#fff;
    }
    .section-head{
      display:flex;
      flex-wrap:wrap;
      align-items:flex-end;
      justify-content:space-between;
      gap:10px;
    }
    .h2{
      margin:0 0 6px;
      font-size:18px;
    }
    .desc{
      margin:0;
      color:var(--muted);
      line-height:1.6;
      font-size:14px;
    }
    .label-strong{
      font-weight:900;
      margin-bottom:8px;
    }

    .table-wrap{
      overflow:auto;
      border:1px solid var(--border2);
      border-radius:var(--radius-md);
      background:#fff;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width:720px;
      background:#fff;
    }
    thead tr{ background:var(--soft); }
    th, td{
      text-align:left;
      padding:12px 14px;
      font-size:13px;
      vertical-align:top;
    }
    tbody tr{ border-top:1px solid var(--border2); }
    .td-strong{ font-weight:900; font-size:14px; }
    .td-muted{ color:#334155; font-size:14px; }
    .td-right{ text-align:right; }
    .note{
      margin-top:14px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
    }
    
     .menu-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      color:#eaf3ff;
      cursor:pointer;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 26px rgba(0,0,0,.18);
    }
    .menu-btn:active{ transform:translateY(1px); }
    
    
      /* =========================================================
       MOBILE DRAWER
    ========================================================= */
    .drawer{ position:fixed; inset:0; display:none; z-index:9998; }
    .drawer.is-open{ display:block; }

    .drawer-backdrop{
      position:absolute; inset:0;
      background:rgba(2,8,23,.58);
      opacity:0;
      animation:fadeIn .18s ease-out forwards;
    }
    @keyframes fadeIn{ to{ opacity:1; } }

    .drawer-panel{
      position:absolute; top:0; right:0;
      width:min(360px, 92vw);
      height:100%;
      background:rgba(7,16,33,0.96);
      border-left:1px solid rgba(255,255,255,0.12);
      box-shadow:0 30px 120px rgba(0,0,0,.55);
      display:flex;
      flex-direction:column;
      transform:translateX(110%);
      animation:slideIn .22s ease-out forwards;
    }
    @keyframes slideIn{ to{ transform:translateX(0); } }

    .drawer-head{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px; padding:16px;
      border-bottom:1px solid rgba(255,255,255,0.12);
    }
    .drawer-brand{
      display:flex; align-items:center; gap:10px;
      color:#eaf3ff; text-decoration:none;
    }
    .brand-badge{
      width:42px; 
      height:42px;
      border-radius:14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(234,243,255,0.12);
      box-shadow: 0 10px 22px rgba(0,0,0,.18);
      display:flex; 
      align-items:center; 
      justify-content:center;
      font-weight:900; 
      color:#fff; 
      font-size:14px;
    }
    .drawer-close{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      color:#eaf3ff;
      cursor:pointer;
      font-size:18px; font-weight:900;
      display:flex; align-items:center; justify-content:center;
    }
    .drawer-body{ padding:14px 16px 16px; overflow:auto; }

    .drawer-links{ display:flex; flex-direction:column; gap:10px; }
    .drawer-link{
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.12);
      background:rgba(255,255,255,0.06);
      color:#eaf3ff;
      text-decoration:none;
      font-weight:900;
      font-size:14px;
    }
    .drawer-link:hover{ background:rgba(255,255,255,0.09); }
    .drawer-link.is-active{
      border-color:rgba(14,116,144,.8);
      background:rgba(14,116,144,.15);
    }
    .drawer-link .chev{ opacity:.7; font-weight:900; }

    .drawer-cta{
      margin-top:14px;
      display:block;
      text-align:center;
      padding:14px 14px;
      border-radius:16px;
      background: var(--dark);
      color:#fff;
      text-decoration:none;
      font-weight:900;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 10px 26px rgba(0,0,0,.25);
    }
    .drawer-note{
      margin-top:14px;
      font-size:12px;
      color:rgba(234,243,255,.72);
      line-height:1.6;
    }


    /* ===== Bottom nav ===== */
    .bottom-nav{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }

    /* ===== Footer ===== */
    .footer{
      border-top:1px solid #e5e7eb;
      background:#fff;
    }
    .footer-inner{
      max-width:var(--container);
      margin:0 auto;
      padding:16px 18px;
      color:var(--muted);
      font-size:13px;
      display:flex;
      justify-content:flex-end;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-links{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .footer a{
      color:var(--muted);
      text-decoration:none;
    }
    .footer a:hover{ text-decoration:underline; }





    /* =========================================================
       MEDIA QUERIES
       - 980px: 
       - 720px: 
       - 520px: 
       - 360px: 
    ========================================================= */

    /* <= 980px (tablet/landscape) */
    @media (max-width: 980px){
      .grid-2{ grid-template-columns:1fr; }
      .hero-sub{ max-width: 70ch; }
      table{ min-width:640px; }
    }
    
    
	 @media (max-width: 830px){
      .menu-btn{ display:inline-flex; }
      .header-cta{ display:none; }
      .header-right{  margin-left:auto; }
     }

    /* <= 720px (large phones/tablet portrait) */
    @media (max-width: 720px){
    
	  .header-inner{ gap:12px; }
      .hero-media{ height:270px; }
      .hero-title{ font-size:26px; }
      .hero-sub{ font-size:15px; }

      .card-pad{ padding:16px; }
      .section{ padding:16px; }

      table{ min-width:620px; }
    }

    /* <= 520px (phones) */
    @media (max-width: 520px){
   
   	  .menu-btn{ display:inline-flex; }
      .header-cta{ display:none; }
      .breadcrumb{ font-size:12.5px; }
      .breadcrumb-sep{ padding:0 6px; }

      .hero-media{ height:240px; }
      .hero-content{ padding:16px; }
      .hero-badge{
        font-size:11px;
        line-height:1.35;
        flex-wrap:wrap;
      }
      .hero-title{ font-size:24px; }
      .hero-sub{ font-size:14.5px; }

      .pills{ gap:6px; }
      .pill{ font-size:12.5px; padding:7px 9px; }

      .cta-row .btn,
      .section-head .btn,
      .bottom-nav .btn{
        width:100%;
      }

      /* Tabelle: scorrimento più comodo */
      table{ min-width:560px; }
    }


    /* <= 360px (small phones) */
    @media (max-width: 360px){
      
       .brand-name{ font-size:16px; }
      .brand-logo{ width:40px; height:40px; }
	  .container{ padding:0 14px; }
      .hero-media{ height:220px; }
      .hero-title{ font-size:22px; }
      .hero-sub{ font-size:14px; }

      .card, .section{ border-radius:16px; }
      .box{ border-radius:14px; }

      table{ min-width:520px; }
    }

    /* Preferenze accessibilità */
    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; }
    }
    
    /* 6) iPhone notch, padding extra in basso se supportato */
    @supports (padding: max(0px)){
      .drawer-panel{ padding-bottom: env(safe-area-inset-bottom); }
    }
