:root {
      --brand:      #D53A16;
      --brand-dark: #B03010;
      --brand-deep: #8B2209;
      --white:      #FFFFFF;
      --black:      #111111;
      --grey:       rgba(255,255,255,0.68);
      --font-d: "Exo 2", sans-serif;
      --font-b: "Inter", sans-serif;
      --ease: cubic-bezier(.22,.68,0,1.2);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-b); background: var(--brand); color: #fff; overflow-x: hidden; line-height: 1.6; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    h1,h2,h3,h4 { font-family: "Exo 2",sans-serif; text-transform: uppercase; letter-spacing: .03em; line-height: 1.05; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: .9rem 2.5rem;
      background: rgba(170,38,14,.93);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .nav-logo { display: flex; align-items: center; gap: .7rem; }
    .nav-logo-text { font-family: "Exo 2",sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: .05em; text-transform: uppercase; }
    .nav-cta {
      display: inline-flex; align-items: center; gap: .5rem;
      background: #25D366; color: #000;
      font-family: "Exo 2",sans-serif; font-weight: 800; font-size: .88rem;
      letter-spacing: .06em; text-transform: uppercase;
      padding: .55rem 1.3rem; border-radius: 4px;
      transition: transform .2s var(--ease), box-shadow .2s;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
    .nav-cta svg { width: 17px; height: 17px; }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      position: relative; overflow: hidden; padding: 8rem 2rem 5rem;
      background: var(--brand); text-align: center;
    }
    #hero::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(80,15,3,.3) 100%);
      pointer-events: none;
    }
    .scanline {
      position: absolute; top: 0; left: -100%; height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
      animation: scan 5s ease-in-out infinite; pointer-events: none;
    }
    @keyframes scan {
      0%   { top: 5%;  left: -100%; opacity: 0; }
      8%   { opacity: 1; }
      92%  { opacity: 1; }
      100% { top: 95%; left: 200%; opacity: 0; }
    }

    /* DRONE STAGE */
    .drone-stage {
      position: relative; width: 320px; height: 320px;
      margin: 0 auto 2.5rem; flex-shrink: 0;
    }
    .orbit-ring {
      position: absolute; inset: 0;
      border: 1.5px dashed rgba(255,255,255,.22);
      border-radius: 50%;
      animation: spin-ring 18s linear infinite;
    }
    .orbit-ring-2 { inset: 28px; border-color: rgba(255,255,255,.1); animation-duration: 26s; animation-direction: reverse; }
    @keyframes spin-ring { to { transform: rotate(360deg); } }

    .pulse-ring {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
      animation: pulse-expand 3s ease-out infinite;
    }
    .pulse-ring:nth-child(2) { animation-delay: 1s; }
    .pulse-ring:nth-child(3) { animation-delay: 2s; }
    @keyframes pulse-expand {
      0%   { width: 70px; height: 70px; opacity: .9; }
      100% { width: 290px; height: 290px; opacity: 0; }
    }

    .hero-center-icon {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      display: flex; flex-direction: column; align-items: center; gap: .4rem;
    }
    .hero-eye-svg { width: 76px; height: 76px; filter: drop-shadow(0 0 18px rgba(255,255,255,.3)); }
    .hero-center-label {
      font-family: "Exo 2",sans-serif; font-size: .6rem; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55);
    }

    .drone-orbit {
      position: absolute; inset: 0;
      animation: orbit 8s linear infinite;
      transform-origin: center center;
    }
    @keyframes orbit { to { transform: rotate(360deg); } }

    /* DRONE PLACEHOLDER — swappable with your image */
    .drone-placeholder {
      position: absolute; top: -22px; left: 50%;
      transform: translateX(-50%);
      width: 46px; height: 46px;
      background: rgba(255,255,255,.18);
      border: 2px dashed rgba(255,255,255,.55);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(4px);
      animation: counter-orbit 8s linear infinite;
    }
    @keyframes counter-orbit { to { transform: translateX(-50%) rotate(-360deg); } }
    .drone-placeholder svg { width: 26px; height: 26px; color: white; opacity: .9; }
    /* If you use <img> instead: */
    .drone-placeholder img { width: 38px; height: 38px; object-fit: contain; }

    .detect-dot {
      position: absolute; bottom: 68px; right: 74px; width: 10px; height: 10px;
    }
    .detect-dot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #FFEE55; }
    .detect-dot::after {
      content: ""; position: absolute; inset: -4px; border-radius: 50%;
      border: 1.5px solid #FFEE55; animation: det-pulse 1.6s ease-out infinite;
    }
    @keyframes det-pulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(3.5);opacity:0} }

    /* HERO TEXT */
    .hero-text { position: relative; z-index: 2; max-width: 840px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      font-family: "Exo 2",sans-serif; font-size: .76rem; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.3); padding: .32rem .9rem; border-radius: 2px; margin-bottom: 1.4rem;
    }
    .hero-eyebrow span { display:inline-block; width:18px; height:18px; background:#FFEE55; border-radius:50%; animation:blink 1.4s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

    h1.hero-title { font-family:"Exo 2",sans-serif; font-size:clamp(3rem,7.5vw,6.5rem); font-weight:900; color:#fff; line-height:1; margin-bottom:.3rem; }
    .hero-by { font-family:"Exo 2",sans-serif; font-size:.95rem; font-weight:400; letter-spacing:.25em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:.3rem; }
    .hero-company { font-family:"Exo 2",sans-serif; font-size:clamp(1.4rem,3vw,2.3rem); font-weight:900; letter-spacing:.04em; text-transform:uppercase; color:#fff; margin-bottom:.25rem; }
    .hero-subtitle { font-family:"Exo 2",sans-serif; font-size:clamp(1rem,2vw,1.3rem); font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.78); margin-bottom:1.6rem; }
    .hero-desc { font-size:1rem; color:rgba(255,255,255,.72); max-width:600px; margin:0 auto 2.2rem; line-height:1.78; }

    .hero-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
    .btn-white {
      display:inline-flex; align-items:center; gap:.6rem;
      background:#fff; color:var(--brand);
      font-family:"Exo 2",sans-serif; font-weight:900; font-size:1rem;
      letter-spacing:.08em; text-transform:uppercase;
      padding:.85rem 2rem; border-radius:4px;
      transition:transform .2s var(--ease),box-shadow .2s;
    }
    .btn-white:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(0,0,0,.25); }
    .btn-outline {
      display:inline-flex; align-items:center; gap:.6rem;
      background:transparent; border:2px solid rgba(255,255,255,.55); color:#fff;
      font-family:"Exo 2",sans-serif; font-weight:800; font-size:1rem;
      letter-spacing:.08em; text-transform:uppercase;
      padding:.85rem 2rem; border-radius:4px;
      transition:border-color .2s,background .2s;
    }
    .btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.1); }

    .hero-stats {
      display:flex; justify-content:center; gap:3rem; flex-wrap:wrap;
      margin-top:3.5rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,.2);
    }
    .hero-stat { text-align:center; }
    .hero-stat-num { font-family:"Exo 2",sans-serif; font-size:2.4rem; font-weight:900; color:#fff; line-height:1; }
    .hero-stat-label { font-family:"Exo 2",sans-serif; font-weight:700; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.58); margin-top:.3rem; }

    /* SECTIONS */
    section { padding:6rem 2rem; }
    .container { max-width:1100px; margin:0 auto; }
    .bg-dark  { background:var(--brand-dark); }
    .bg-deep  { background:var(--brand-deep); }
    .bg-brand { background:var(--brand); }

    .section-eyebrow { font-family:"Exo 2",sans-serif; font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:.9rem; }
    .section-title { font-size:clamp(2rem,4.5vw,3.2rem); font-weight:900; color:#fff; margin-bottom:1.1rem; }
    .section-title span { color:rgba(255,255,255,.5); }
    .section-body { font-size:1.02rem; color:rgba(255,255,255,.75); max-width:660px; line-height:1.75; }

    /* WHAT GRID */
    .what-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; margin-top:3rem; }
    .drone-illo { display:flex; align-items:center; justify-content:center; position:relative; }
    .drone-illo-glow { position:absolute; width:240px; height:240px; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.1) 0%,transparent 70%); }

    /* STEPS */
    .steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; margin-top:3rem; }
    .step {
      background:rgba(0,0,0,.15); border:1px solid rgba(255,255,255,.12); border-radius:8px; padding:2rem 1.5rem;
      position:relative; transition:border-color .3s,transform .3s var(--ease),background .3s;
    }
    .step:hover { border-color:rgba(255,255,255,.4); transform:translateY(-4px); background:rgba(0,0,0,.22); }
    .step-num { font-family:"Exo 2",sans-serif; font-size:3.5rem; font-weight:900; color:rgba(255,255,255,.07); line-height:1; position:absolute; top:1rem; right:1.2rem; }
    .step-icon { width:46px; height:46px; background:rgba(255,255,255,.15); border-radius:8px; display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem; }
    .step-icon svg { width:24px; height:24px; color:#fff; }
    .step h3 { font-size:1.25rem; font-weight:800; color:#fff; margin-bottom:.5rem; }
    .step p  { font-size:.9rem; color:rgba(255,255,255,.7); line-height:1.65; }

    /* PILLARS */
    .pillars { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; margin-top:3rem; }
    .pillar { border-left:3px solid rgba(255,255,255,.45); padding:1.4rem 1.5rem 1.4rem 1.8rem; background:rgba(0,0,0,.12); border-radius:0 8px 8px 0; transition:background .3s,border-color .3s; }
    .pillar:hover { background:rgba(0,0,0,.22); border-color:#fff; }
    .pillar-label { font-family:"Exo 2",sans-serif; font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:.4rem; }
    .pillar h3 { font-size:1.3rem; font-weight:800; color:#fff; margin-bottom:.5rem; }
    .pillar p  { font-size:.88rem; color:rgba(255,255,255,.7); line-height:1.65; }

    /* COST */
    .cost-layout { display:grid; grid-template-columns:1fr 1.1fr; gap:3.5rem; align-items:start; margin-top:3rem; }
    .cost-table { width:100%; border-collapse:collapse; font-size:.88rem; }
    .cost-table th { font-family:"Exo 2",sans-serif; font-weight:700; letter-spacing:.08em; text-transform:uppercase; font-size:.72rem; color:rgba(255,255,255,.5); padding:.6rem .8rem; border-bottom:1px solid rgba(255,255,255,.15); text-align:left; }
    .cost-table td { padding:.65rem .8rem; border-bottom:1px solid rgba(255,255,255,.07); color:rgba(255,255,255,.88); }
    .cost-table tr:last-child td { color:#fff; font-weight:700; border-bottom:none; font-family:"Exo 2",sans-serif; font-size:.95rem; }
    .cost-note { font-size:.74rem; color:rgba(255,255,255,.4); margin-top:.8rem; line-height:1.5; }
    .bar-chart-wrap { background:rgba(0,0,0,.15); border:1px solid rgba(255,255,255,.12); border-radius:8px; padding:1.5rem; }
    .bar-chart-title { font-family:"Exo 2",sans-serif; font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.45); margin-bottom:1.2rem; }
    .bar-row { display:flex; align-items:center; gap:.8rem; margin-bottom:.65rem; }
    .bar-label { font-size:.76rem; color:rgba(255,255,255,.7); width:130px; flex-shrink:0; line-height:1.3; }
    .bar-track { flex:1; height:18px; background:rgba(255,255,255,.1); border-radius:3px; overflow:hidden; }
    .bar-fill { height:100%; border-radius:3px; background:rgba(255,255,255,.65); transform-origin:left; animation:grow-bar 1.4s var(--ease) forwards; transform:scaleX(0); }
    @keyframes grow-bar { to { transform:scaleX(1); } }
    .bar-val { font-family:"Exo 2",sans-serif; font-size:.82rem; font-weight:700; color:#fff; width:55px; text-align:right; flex-shrink:0; }
    .cost-total-row { margin-top:1.2rem; padding-top:1rem; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; align-items:center; }
    .cost-total-label { font-size:.74rem; color:rgba(255,255,255,.48); text-transform:uppercase; letter-spacing:.08em; }
    .cost-total-num { font-family:"Exo 2",sans-serif; font-size:1.5rem; font-weight:900; color:#fff; }

    /* COVERAGE */
    .coverage-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; margin-top:3rem; }
    .region-list { list-style:none; margin-top:1.5rem; }
    .region-list li { display:flex; align-items:center; gap:.8rem; padding:.65rem 0; border-bottom:1px solid rgba(255,255,255,.1); font-size:.95rem; color:rgba(255,255,255,.85); }
    .region-list li svg { width:15px; height:15px; color:#fff; flex-shrink:0; }
    .map-box { background:rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.12); border-radius:8px; height:300px; display:flex; align-items:center; justify-content:center; overflow:hidden; }

    /* CTA */
    #contatti { text-align:center; }
    .cta-box { max-width:680px; margin:0 auto; }
    .cta-box p { font-size:1.05rem; color:rgba(255,255,255,.75); margin-bottom:2.5rem; line-height:1.75; }
    .whatsapp-btn {
      display:inline-flex; align-items:center; gap:.8rem;
      background:#25D366; color:#000;
      font-family:"Exo 2",sans-serif; font-weight:900; font-size:1.15rem;
      letter-spacing:.08em; text-transform:uppercase;
      padding:1.1rem 2.5rem; border-radius:6px;
      box-shadow:0 4px 24px rgba(0,0,0,.25);
      transition:transform .25s var(--ease),box-shadow .25s;
    }
    .whatsapp-btn:hover { transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,.35); }
    .whatsapp-btn svg { width:26px; height:26px; }

    /* FOOTER */
    footer { background:var(--brand-deep); padding:2.5rem 2rem; text-align:center; border-top:1px solid rgba(255,255,255,.1); }
    .footer-logo { font-family:"Exo 2",sans-serif; font-size:1.1rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#fff; margin-bottom:.5rem; }
    footer p { font-size:.78rem; color:rgba(255,255,255,.48); line-height:1.65; }
    .footer-tags { margin-top:.8rem; font-size:.7rem; color:rgba(255,255,255,.22); letter-spacing:.04em; }

    /* FLOATING WA */
    .float-wa {
      position:fixed; bottom:1.8rem; right:1.8rem; z-index:200;
      width:58px; height:58px; background:#25D366; border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 4px 20px rgba(0,0,0,.3);
      transition:transform .25s var(--ease),box-shadow .25s;
    }
    .float-wa:hover { transform:scale(1.12); box-shadow:0 8px 30px rgba(0,0,0,.4); }
    .float-wa svg { width:30px; height:30px; fill:#fff; }

    /* REVEAL */
    .reveal { opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s var(--ease); }
    .reveal.visible { opacity:1; transform:none; }

    @media (max-width:768px) {
      .what-grid,.cost-layout,.coverage-grid { grid-template-columns:1fr; gap:2.5rem; }
      nav { padding:.8rem 1.2rem; }
      .nav-logo-text { font-size:.9rem; }
      section { padding:4rem 1.2rem; }
      .drone-stage { width:260px; height:260px; }
      .hero-stats { gap:1.8rem; }
    }
    @media (prefers-reduced-motion:reduce) {
      *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
    }
  
    /* ── HERO MAP ── */
    #hero { background: #D53A16; }
    .map-wrap { width: 100%; background: #D53A16; line-height: 0; }
    .map-svg  { display: block; width: 100%; }

    .hero-text-block {
      background: #D53A16;
      text-align: center;
      padding: 2rem 2rem 0;
    }
    .hero-eyebrow {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      border: 1px solid rgba(255,255,255,.32);
      padding: 6px 14px; border-radius: 2px;
      font-size: 22px; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: rgba(255,255,255,.78);
      margin-bottom: 1rem;
      width: 100%;
    }
    .hero-eyebrow-dot {
      width: 6px; height: 6px; background: #FFE000; border-radius: 50%;
      animation: blink 1.4s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.1} }
    .hero-title {
      font-family: "Exo 2",sans-serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 900; text-transform: uppercase;
      letter-spacing: .04em; line-height: .95;
      color: #fff; margin-bottom: .3rem;
    }
    .hero-by {
      font-size: 25px; letter-spacing: .22em; text-transform: uppercase;
      color: rgba(255,255,255,.44); margin-bottom: .2rem;
    }
    .hero-company {
      font-family: "Exo 2",sans-serif;
      font-size: clamp(1.6rem, 6vw, 3.5rem);
      font-weight: 900; letter-spacing: .04em;
      text-transform: uppercase; color: #fff; margin-bottom: .2rem;
    }
    .hero-subtitle {
      font-family: "Exo 2",sans-serif;
      font-size: 24px; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: rgba(255,255,255,.75);
      margin-bottom: .9rem; margin-top: .35rem;
    }
    .hero-desc {
      font-size: 19px; color: rgba(255,255,255,.7);
      max-width: 560px; margin: 0 auto 1.5rem; line-height: 1.75;
    }
    .hero-actions {
      display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: .6rem;
      background: #fff; color: var(--brand);
      font-family: "Exo 2",sans-serif; font-weight: 900;
      font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
      padding: .85rem 2rem; border-radius: 4px;
      transition: transform .2s, box-shadow .2s;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
    .btn-secondary {
      display: inline-flex; align-items: center;
      background: transparent; border: 2px solid rgba(255,255,255,.5);
      color: #fff; font-family: "Exo 2",sans-serif; font-weight: 800;
      font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
      padding: .85rem 2rem; border-radius: 4px;
      transition: border-color .2s, background .2s;
    }
    .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.1); }
    .hero-stats {
      display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
      margin-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.16);
      background: rgba(0,0,0,.2);
    }
    .hero-stat {
      flex: 1; text-align: center; padding: 10px 0;
      border-right: 1px solid rgba(255,255,255,.1);
      min-width: 120px;
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: "Exo 2",sans-serif; font-size: 22px;
      font-weight: 900; color: #fff; line-height: 1;
    }
    .hero-stat-label {
      font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.5); margin-top: 2px;
    }


    /* ── HERO pulita senza mappa ── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #D53A16;
      padding: 7rem 2rem 0;
      text-align: center;
      position: relative;
    }
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(80,15,3,.25) 100%);
      pointer-events: none;
    }
    .hero-map-bg { display: none; }
    .hero-overlay { display: none; }
    .map-wrap { display: none; }
    .hero-text-block {
      position: relative;
      z-index: 1;
      background: transparent;
      text-align: center;
      padding: 0;
      width: 100%;
      max-width: 900px;
    }
    .hero-stats {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      margin-top: 3.5rem;
      width: 100%;
      max-width: 900px;
      border-top: 1px solid rgba(255,255,255,.16);
      background: rgba(0,0,0,.22);
      border-radius: 0 0 4px 4px;
    }
    .hero-stat {
      flex: 1;
      text-align: center;
      padding: 16px 0;
      border-right: 1px solid rgba(255,255,255,.1);
      min-width: 140px;
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: "Exo 2",sans-serif;
      font-size: 72px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 18px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      margin-top: 4px;
    }

    /* region-list centrata */
    .region-list { list-style:none; }
    .region-list li { display:flex; align-items:center; gap:.8rem; padding:.65rem 0; border-bottom:1px solid rgba(255,255,255,.1); font-size:.95rem; color:rgba(255,255,255,.85); text-align:left; }
    .region-list li svg { width:15px; height:15px; color:#fff; flex-shrink:0; }
    /* video section */
    #video-section video { background:#000; }

    /* ── FOTO SEZIONI ── */
    .photo-banner {
      width: 100%;
      height: 380px;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 8px;
      margin: 2.5rem 0 0;
    }
    .photo-banner-full {
      width: 100%;
      height: 320px;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }
    .photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-top: 2.5rem;
    }
    .photo-grid img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      object-position: center;
      border-radius: 6px;
      display: block;
    }
    .photo-single {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
      margin-top: 2.5rem;
    }
    .photo-caption {
      font-size: .75rem;
      color: rgba(255,255,255,.4);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-top: .5rem;
      text-align: center;
    }
    @media (max-width: 600px) {
      .photo-grid { grid-template-columns: 1fr; }
      .photo-grid img { height: 200px; }
    }

/* ═══════════════════════════════════════════
   MOBILE — iPhone 15 Pro (max-width: 600px)
═══════════════════════════════════════════ */
@media (max-width: 600px) {

  section { padding: 2.5rem 1.2rem; }
  .container { padding: 0; }

  /* ── HERO ── */
  #hero {
    padding: 4.5rem 1.4rem 0;
    min-height: auto;
  }
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: .14em;
    padding: 3px 10px;
  }
  h1.hero-title { font-size: 2.6rem; }
  .hero-by { font-size: 9px; }
  .hero-company { font-size: 1.05rem; }
  .hero-subtitle { font-size: .78rem; }
  .hero-desc { font-size: .82rem; }

  /* Bottoni hero — colonna intera */
  .hero-actions {
    flex-direction: column;
    gap: .7rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: .85rem 1rem;
    font-size: .9rem;
  }

  /* Stats — griglia 2x2 */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    margin-top: 2rem;
    gap: 0;
  }
  .hero-stat {
    padding: .9rem .5rem;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    min-width: 0;
  }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-bottom: none; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 8px; line-height: 1.3; }

  /* ── PARTNER STRIP ── */
  #partner-strip > div {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  #partner-strip > div > div { /* separatori */
    display: none;
  }

  /* ── CHE COS'È — colonna unica ── */
  #cosa-e .container > div[style*="grid"] {
    display: block !important;
  }
  #cosa-e img {
    width: 100%;
    height: 220px;
    margin-top: 1.5rem;
    border-radius: 8px;
    object-fit: cover;
  }

  /* ── PIATTAFORMA — diagramma verticale ── */
  #piattaforma [style*="grid-template-columns:1fr auto 1fr auto 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  /* Le frecce diventano verticali */
  #piattaforma [style*="grid-template-columns:1fr auto 1fr auto 1fr"] > div:nth-child(2),
  #piattaforma [style*="grid-template-columns:1fr auto 1fr auto 1fr"] > div:nth-child(4) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: .4rem 0 !important;
  }
  #piattaforma [style*="grid-template-columns:1fr auto 1fr auto 1fr"] > div:nth-child(2) > div,
  #piattaforma [style*="grid-template-columns:1fr auto 1fr auto 1fr"] > div:nth-child(4) > div {
    width: 2px !important;
    height: 28px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.6)) !important;
    position: relative !important;
  }
  #piattaforma [style*="grid-template-columns:1fr auto 1fr auto 1fr"] > div:nth-child(2) > div::after,
  #piattaforma [style*="grid-template-columns:1fr auto 1fr auto 1fr"] > div:nth-child(4) > div::after {
    content: '' !important;
    position: absolute !important;
    bottom: -6px !important;
    left: -4px !important;
    right: auto !important;
    top: auto !important;
    border: 5px solid transparent !important;
    border-top: 7px solid rgba(255,255,255,.6) !important;
    border-left: none !important;
  }

  /* ── TIMELINE — verticale ── */
  #piattaforma [style*="grid-template-columns:1fr 60px 1fr 60px 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  /* Nascondi le frecce connettore orizzontali */
  #piattaforma [style*="grid-template-columns:1fr 60px 1fr 60px 1fr"] > div:nth-child(2),
  #piattaforma [style*="grid-template-columns:1fr 60px 1fr 60px 1fr"] > div:nth-child(4) {
    display: none !important;
  }

  /* ── COME FUNZIONA — steps ── */
  .steps {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* ── PILLARS ── */
  .pillars {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* ── COSTI — colonna unica ── */
  .cost-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .cost-table { font-size: .78rem; }
  .cost-table th, .cost-table td { padding: .5rem .4rem; }
  .bar-label { width: 100px !important; font-size: .7rem; }

  /* ── COPERTURA — colonna unica ── */
  #copertura [style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }
  #copertura [style*="padding-left:3rem;border-left"] {
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    margin-top: 0 !important;
  }
  #copertura [style*="font-size:2rem"] {
    font-size: 1.4rem !important;
  }
  /* Stat strip copertura — compatta */
  #copertura [style*="grid-template-columns:repeat(3,1fr)"] > div {
    padding: .9rem .8rem !important;
  }
  #copertura [style*="font-size:2.4rem"] {
    font-size: 1.6rem !important;
  }

  /* ── SECTION TITLES ── */
  .section-title { font-size: 1.9rem !important; }
  .section-body { font-size: .88rem; }

  /* ── NAV ── */
  nav { padding: .75rem 1.2rem; }
  .nav-logo-text { font-size: .85rem; }

  /* ── FLOATING BUTTONS ── */
  .float-wa { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
  .float-wa svg { width: 26px; height: 26px; }

  /* ── PHOTO GRID ── */
  .photo-grid {
    grid-template-columns: 1fr !important;
    gap: .8rem !important;
  }
  .photo-grid img { height: 220px !important; }

  /* ── CONTATTI — rimuovi bottone WA ── */
  #contatti .whatsapp-btn { display: none !important; }

}

@media (max-width: 600px) {

  /* Diagramma piattaforma verticale */
  #platform-diagram {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .8rem !important;
  }
  /* Frecce orizzontali diventano verticali */
  #platform-diagram > div:nth-child(2),
  #platform-diagram > div:nth-child(4) {
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
  }
  #platform-diagram > div:nth-child(2) > div:first-child,
  #platform-diagram > div:nth-child(4) > div:first-child {
    width: 2px !important;
    height: 30px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.6)) !important;
  }
  #platform-diagram > div:nth-child(2) > div:first-child::after,
  #platform-diagram > div:nth-child(4) > div:first-child::after {
    bottom: -6px !important;
    left: -4px !important;
    top: auto !important;
    right: auto !important;
    border: 5px solid transparent !important;
    border-top: 7px solid rgba(255,255,255,.6) !important;
    border-left: none !important;
  }

  /* Timeline verticale */
  #platform-timeline {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  #platform-timeline > div:nth-child(2),
  #platform-timeline > div:nth-child(4) {
    display: none !important;
  }


  /* Logo nav mobile */
  .nav-logo img { height: 28px; }


  /* Nascondi bottone WA nav su mobile, logo a piena larghezza */
  .nav-cta { display: none !important; }
  .nav-logo img { height: 32px; }

}
@media (max-width: 600px) {

  /* Overflow globale — niente sballamento */
  body, html { overflow-x: hidden !important; }
  .container { overflow-x: hidden !important; }

  /* Diagramma piattaforma — forza verticale */
  #platform-diagram {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .8rem !important;
    overflow: hidden !important;
  }
  #platform-diagram > div:nth-child(2),
  #platform-diagram > div:nth-child(4) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: .3rem 0 !important;
    width: 100% !important;
  }

  /* Timeline — forza verticale */
  #platform-timeline {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    overflow: hidden !important;
  }
  #platform-timeline > div:nth-child(2),
  #platform-timeline > div:nth-child(4) {
    display: none !important;
  }

  /* Copertura griglia */
  #copertura-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  #copertura-grid > div:last-child {
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
  }

  /* Bottone nav WA */
  #nav-cta-btn { display: none !important; }

}
