/* Mobile-first styles */
:root{
  --bg:#0b1220;
  --card:#111a2e;
  --text:#e7ecff;
  --muted:#b7c0e3;
  --brand:#4f8cff;
  --brand2:#38d6c3;
  --ring: rgba(79,140,255,.35);
  --border: rgba(255,255,255,.10);
}

*{ box-sizing:border-box; }

/* Evita scroll orizzontale: SVG/PNG con larghezza intrinseca grande (es. partner-rosato.svg 600px) */
img{
  max-width:100%;
  height:auto;
}

main{
  min-width:0;
}

/* Sfondo solo su html: un solo alone in alto, niente secondo layer che sembra “duplicato” */
html{
  overflow-x:hidden;
  overflow-x:clip;
  min-height:100%;
  background-color:var(--bg);
  background-image: radial-gradient(
    ellipse 125% 70% at 50% -20%,
    rgba(79,140,255,.30) 0%,
    rgba(56,214,195,.10) 42%,
    transparent 62%
  );
  background-repeat:no-repeat;
  background-size:100% min(72vh, 640px);
  background-position:center top;
}

body{
  margin:0;
  min-height:100%;
  overflow-x:hidden;
  overflow-x:clip;
  background:transparent;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height:1.45;
}

.skipLink{
  position:absolute;
  left:-9999px;
  top:8px;
  z-index:300;
  padding:12px 16px;
  background:var(--text);
  color:var(--bg);
  font-weight:700;
  font-size:14px;
  border-radius:10px;
  text-decoration:none;
}
.skipLink:focus{
  left:max(8px, env(safe-area-inset-left, 0px));
  outline:3px solid var(--brand);
  outline-offset:2px;
}

a{ color:inherit; text-decoration:none; }

.svgSprite{
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}

.waIcon{
  flex-shrink:0;
  display:block;
  color:inherit;
}

.waIcon--float{
  color:#fff;
}

.waIcon--inline{
  color:#19c37d;
}

.container{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 max(18px, env(safe-area-inset-left, 0px)) 0 max(18px, env(safe-area-inset-right, 0px));
  min-width:0;
}

/* Niente backdrop-filter qui: su iOS Safari crea un containing block e rompe position:fixed del menu */
.topbar{
  position:sticky;
  top:0;
  z-index:200;
  background: rgba(11,18,32,.92);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:max(12px, env(safe-area-inset-top, 0px)) 0 12px;
  gap:12px;
  min-width:0;
}

a.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  flex:1;
  color:inherit;
  text-decoration:none;
  -webkit-tap-highlight-color: transparent;
}

a.brand:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px var(--ring);
  border-radius:14px;
}

.logoMark{
  width:38px;
  height:38px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 30px rgba(79,140,255,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:11px;
  color:#06101f;
  letter-spacing:.3px;
  flex-shrink:0;
}

.brandTitle{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
  overflow-wrap:break-word;
}

.brandTitle strong{
  font-size:13.5px;
  letter-spacing:.2px;
}

.brandTitle span{
  font-size:12px;
  color:var(--muted);
}

.navLinks{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.navLinks a{
  font-size:13px;
  color:var(--muted);
  border:1px solid transparent;
  padding:8px 10px;
  border-radius:999px;
}
.navLinks a:hover{
  border-color: var(--border);
  color:var(--text);
  background: rgba(255,255,255,.03);
}

/* Menu mobile: overlay + pannello (fino a 719px) */
.navToggle{
  display:none;
  flex-shrink:0;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  width:48px;
  min-width:48px;
  height:48px;
  min-height:48px;
  margin:0;
  padding:0;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.1);
  color:var(--text);
  cursor:pointer;
  -webkit-appearance:none;
  appearance:none;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  user-select:none;
  -webkit-user-select:none;
  position:relative;
  z-index:220;
}

.navToggle:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px var(--ring);
}

.navToggle-bars,
.navToggle-bars::before,
.navToggle-bars::after{
  display:block;
  width:22px;
  height:2px;
  background:currentColor;
  border-radius:1px;
  transition:transform .22s ease, opacity .22s ease, background .22s ease;
}

.navToggle-bars{
  position:relative;
  flex-shrink:0;
  pointer-events:none;
}

.navToggle-bars::before,
.navToggle-bars::after{
  content:"";
  position:absolute;
  left:0;
}

.navToggle-bars::before{ top:-7px; }
.navToggle-bars::after{ top:7px; }

.topbar.is-nav-open .navToggle-bars{
  background:transparent;
}

.topbar.is-nav-open .navToggle-bars::before{
  transform:translateY(7px) rotate(45deg);
}

.topbar.is-nav-open .navToggle-bars::after{
  transform:translateY(-7px) rotate(-45deg);
}

.navBackdrop{
  display:none;
}

html.nav-no-scroll,
body.nav-no-scroll{
  overflow:hidden;
}

body.nav-no-scroll .waFloat{
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}

@media (max-width: 719px){
  .topbar .container{
    padding-left:max(18px, env(safe-area-inset-left, 0px));
    padding-right:max(18px, env(safe-area-inset-right, 0px));
  }

  .navToggle{
    display:inline-flex;
  }

  .navBackdrop{
    display:block;
    position:fixed;
    inset:0;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    min-height:100dvh;
    z-index:205;
    background:rgba(5,10,22,.82);
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .28s ease, visibility .28s ease;
  }

  .topbar.is-nav-open .navBackdrop{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .navLinks{
    position:fixed;
    z-index:210;
    top:0;
    right:0;
    bottom:0;
    width:min(100%, 320px);
    max-width:100%;
    margin:0;
    padding:max(76px, calc(env(safe-area-inset-top, 0px) + 60px)) max(20px, env(safe-area-inset-right, 0px)) 24px 20px;
    padding-bottom:max(24px, env(safe-area-inset-bottom, 0px));
    flex-direction:column;
    flex-wrap:nowrap;
    align-items:stretch;
    justify-content:flex-start;
    gap:6px;
    background:rgba(14,22,40,.97);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-left:1px solid var(--border);
    box-shadow:-16px 0 48px rgba(0,0,0,.45);
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.22,1,.36,1);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }

  .topbar.is-nav-open .navLinks{
    transform:translateX(0);
  }

  .navLinks a{
    font-size:16px;
    padding:14px 16px;
    border-radius:12px;
    text-align:left;
    border:1px solid transparent;
  }

  .navLinks a:active{
    background:rgba(255,255,255,.06);
  }
}

/* Hero — un’unica card Presentazione: logo + testo, CTA, contatti integrati */
.hero{
  padding:42px 0 24px;
}

/* Mobile: prima schermata = altezza viewport sotto la topbar (sticky) */
@media (max-width: 719px){
  html{
    background-size:100% min(100vh, 720px);
    background-size:100% min(100svh, 720px);
    background-size:100% min(100dvh, 720px);
  }
  .hero{
    --topbar-stack: calc(1px + max(12px, env(safe-area-inset-top, 0px)) + 12px + 48px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:16px 0 max(24px, env(safe-area-inset-bottom, 0px));
    min-height:calc(100vh - var(--topbar-stack));
    min-height:calc(100svh - var(--topbar-stack));
    min-height:calc(100dvh - var(--topbar-stack));
  }
}

/* Mobile: testo → pulsanti (WhatsApp / Chiama) → logo → contatti */
.heroPresentazione{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:22px;
}

.heroLead{
  width:100%;
  text-align:left;
  order:1;
}

.heroPresentazione .ctaRow{
  order:2;
}

.heroLogo{
  flex-shrink:0;
  order:3;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:260px;
  margin:0 auto;
  padding:0 8px 0;
}

.heroLogoImg{
  width:100%;
  max-width:100%;
  max-height:120px;
  height:auto;
  object-fit:contain;
  object-position:center;
  display:block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.22));
}

.heroCard{
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:13px;
  max-width:100%;
  flex-wrap:wrap;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(79,140,255,.14);
}

.hero h1{
  margin:14px 0 12px;
  font-size:30px;
  line-height:1.15;
  letter-spacing:-.3px;
  overflow-wrap:break-word;
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  overflow-wrap:break-word;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  min-width:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  max-width:100%;
  text-align:center;
}
.btn:hover{
  border-color: rgba(79,140,255,.35);
  box-shadow: 0 0 0 4px var(--ring);
}
.btnPrimary{
  border-color: rgba(79,140,255,.45);
  background: linear-gradient(135deg, rgba(79,140,255,.22), rgba(56,214,195,.12));
}

.heroContact{
  order:4;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin:0;
  padding-top:22px;
  border-top:1px solid var(--border);
}

.heroContact .miniInfo{
  margin:0;
}

.miniInfo{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px;
  border-radius:18px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
}

.miniIcon{
  width:38px;
  height:38px;
  border-radius:12px;
  background: rgba(79,140,255,.15);
  border:1px solid rgba(79,140,255,.30);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  color: #bcd4ff;
}

.miniInfo > div:last-child{
  min-width:0;
  overflow-wrap:break-word;
}
.miniInfo strong{ display:block; font-size:14px; margin-bottom:2px; }
.miniInfo span{ display:block; font-size:13.5px; color:var(--muted); }
.miniInfo a{
  color:var(--text);
  text-decoration:underline;
  text-decoration-color: rgba(79,140,255,.45);
}

/* Sections */
section{
  padding:34px 0;
  min-width:0;
}
.sectionTitle{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.sectionTitle h2{
  margin:0;
  font-size:24px;
  letter-spacing:-.2px;
  flex:0 1 auto;
  min-width:0;
}
.sectionTitle p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  flex:1 1 12rem;
  min-width:0;
  overflow-wrap:break-word;
}

@media (max-width: 719px){
  .sectionTitle:not(.sectionTitle--partner){
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  .sectionTitle:not(.sectionTitle--partner) p{
    flex:none;
    max-width:100%;
  }
}

.visualGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.visualCard{
  border-radius:18px;
  border:1px solid var(--border);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}

.visualCard img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.visualCaption{
  padding:12px 14px;
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 719px){
  #gallery{
    display:none;
  }
}

.phoneLines{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px 8px;
}

.miniInfo span.phoneLines,
.contactItem span.phoneLines{
  display:flex;
}
.phoneSep{
  color:var(--muted);
  opacity:.55;
  user-select:none;
}

/* I nostri servizi — card ridisegnate */
.serviceGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.serviceCard{
  position:relative;
  margin:0;
  padding:24px 22px 22px;
  border-radius:22px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  min-width:0;
  max-width:100%;
  --bar: var(--brand);
  --bar2: var(--brand2);
}

.serviceCard::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  border-radius:22px 22px 0 0;
  background: linear-gradient(90deg, var(--bar), var(--bar2));
  opacity:.95;
}

.serviceCard[data-tone="blue"]{ --bar:#4f8cff; --bar2:#7aa8ff; }
.serviceCard[data-tone="teal"]{ --bar:#2ec4b6; --bar2:#4f8cff; }
.serviceCard[data-tone="violet"]{ --bar:#a78bfa; --bar2:#38d6c3; }
.serviceCard[data-tone="amber"]{ --bar:#f5b942; --bar2:#f07818; }
.serviceCard[data-tone="rose"]{ --bar:#f472b6; --bar2:#a78bfa; }
.serviceCard[data-tone="slate"]{ --bar:#94a3b8; --bar2:#64748b; }

.serviceCardHead{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.serviceIcon{
  flex-shrink:0;
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  line-height:1;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
}

.serviceCardTitles{
  min-width:0;
  flex:1;
}

.serviceCardTitles h3{
  margin:0 0 10px;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.2px;
  line-height:1.25;
  color:var(--text);
}

.servicePill{
  display:inline-block;
  font-size:12px;
  color:var(--muted);
  padding:5px 11px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.12);
}

.serviceList{
  list-style:none;
  margin:18px 0 0;
  padding:0;
}

.serviceList li{
  position:relative;
  margin:0;
  padding:10px 0 10px 18px;
  font-size:14px;
  line-height:1.45;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,.06);
}

.serviceList li:first-child{
  border-top:0;
  padding-top:0;
}

.serviceList li::before{
  content:"";
  position:absolute;
  left:0;
  top:1.15em;
  width:6px;
  height:6px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--bar), var(--bar2));
  opacity:.9;
}

.serviceList li:first-child::before{
  top:.35em;
}

.datumList{
  margin:14px 0 0;
  padding-left:0;
  list-style:none;
  color:var(--muted);
  font-size:14px;
}

.card ul.datumList{
  margin-top:14px;
  padding-left:0;
  list-style:none;
}

.datumList li{
  margin:12px 0;
  padding-left:0;
  line-height:1.45;
  overflow-wrap:break-word;
}

.datumList strong{
  color:var(--text);
  font-weight:600;
}

.ibanPlaceholder{
  font-style:italic;
  opacity:.88;
}

.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  min-width:0;
  max-width:100%;
}

.card > p{
  overflow-wrap:break-word;
}

.cardHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  min-width:0;
}

.cardHeader strong{
  font-size:15px;
  min-width:0;
  overflow-wrap:break-word;
}
.badge{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--border);
  padding:6px 10px;
  border-radius:999px;
}

.card ul{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
}
.card li{ margin:10px 0; }

/* Partners — griglia compatta, logo in evidenza */
.sectionTitle--partner{
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:6px;
  margin-bottom:20px;
}

.sectionTitle--partner .partnerIntro{
  flex:none;
  max-width:100%;
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.35;
}

.partnerGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  min-width:0;
}

.card.partnerTile{
  padding:0;
  min-width:0;
}

.partnerTile{
  margin:0;
  border-radius:20px;
  background: rgba(255,255,255,.035);
  overflow:hidden;
  min-width:0;
}

.partnerTileLink{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  gap:12px;
  padding:20px 14px 8px;
  text-decoration:none;
  color:inherit;
  min-width:0;
  -webkit-tap-highlight-color:transparent;
}

.partnerTileLink:focus-visible{
  outline:none;
  box-shadow:inset 0 0 0 3px var(--ring);
}

.partnerTileLogo{
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  width:100%;
  max-width:min(240px, 100%);
  min-height:72px;
  margin-inline:auto;
  padding:14px 16px;
  background: rgba(255,255,255,.96);
  border-radius:16px;
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 8px 28px rgba(0,0,0,.1);
}

.partnerTileLogo img{
  display:block;
  max-height:52px;
  max-width:100%;
  width:auto;
  height:auto;
  min-width:0;
  object-fit:contain;
  object-position:center;
}

.partnerTileLogo img[src$=".svg"]{
  max-height:46px;
}

.partnerTileName{
  display:block;
  font-size:15px;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--text);
  text-align:center;
}

.partnerTileBlurb{
  margin:0 0 18px;
  padding:0 14px;
  font-size:13px;
  line-height:1.45;
  color:var(--muted);
  text-align:center;
  max-width:32em;
  margin-inline:auto;
  overflow-wrap:break-word;
}

@media (min-width: 480px){
  .partnerGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .partnerTileLink{
    padding:22px 18px 10px;
    gap:14px;
  }
  .partnerTileLogo{
    min-height:78px;
    padding:16px 20px;
  }
  .partnerTileBlurb{
    padding:0 16px;
    margin-bottom:20px;
  }
}

@media (min-width: 900px){
  .partnerGrid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
  }
}

.fbIcon{
  display:block;
  color:#1877f2;
}

.fbIcon--footer{
  flex-shrink:0;
}

.contactItem .miniIcon.miniIcon--fb{
  background: rgba(24,119,242,.12);
  border-color: rgba(24,119,242,.35);
}

.footerLinks{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px 8px;
  flex:1 1 220px;
  min-width:0;
  max-width:100%;
  overflow-wrap:anywhere;
}

.footerMail{
  text-decoration:underline;
  text-decoration-color: rgba(79,140,255,.45);
}

.footerFb{
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:underline;
  text-decoration-color: rgba(24,119,242,.45);
  color:var(--muted);
}

.footerFb:hover{
  color:var(--text);
}

/* Contact + Map */
.contactGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.contactList{
  display:grid;
  gap:12px;
}

.contactItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:15px;
  border-radius:18px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
}

.contactItem .miniIcon{
  background: rgba(56,214,195,.12);
  border-color: rgba(56,214,195,.28);
}

.contactItem .miniIcon.miniIcon--wa{
  background: rgba(25,195,125,.12);
  border-color: rgba(25,195,125,.35);
}

.contactItem strong{
  display:block;
  font-size:14px;
  margin-bottom:3px;
}
.contactItem a{
  color:var(--text);
  text-decoration:underline;
  text-decoration-color: rgba(56,214,195,.50);
}
.contactItem span{
  display:block;
  color:var(--muted);
  font-size:13.5px;
}

.contactItem > div:last-child{
  min-width:0;
  overflow-wrap:break-word;
}

#mappa{
  min-width:0;
}

.mapFrameWrap{
  overflow:hidden;
  border-radius:20px;
  max-width:100%;
  min-width:0;
}

.mapFrame{
  display:block;
  width:100%;
  max-width:100%;
  height:300px;
  border:0;
  border-radius:20px;
  background: rgba(255,255,255,.02);
}

/* Footer */
.footer{
  padding:18px 0 32px;
  color:var(--muted);
  font-size:13px;
}
.footerInner{
  border-top:1px solid var(--border);
  padding-top:14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  min-width:0;
}
.footerBrand{
  min-width:0;
  flex:1 1 200px;
  overflow-wrap:break-word;
}
.footerBrandName{
  color:var(--text);
}
.footerSite{
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
}
.footerSite a{
  color:var(--muted);
  text-decoration:underline;
  text-decoration-color:rgba(79,140,255,.4);
}

.footerCopyright{
  flex:1 1 100%;
  margin:14px 0 0;
  padding-top:12px;
  border-top:1px solid var(--border);
  font-size:12px;
  line-height:1.45;
  color:var(--muted);
  text-align:center;
  opacity:.9;
}

.footerCopyright time{
  font-weight:600;
  color:var(--text);
}

/* Floating WhatsApp */
a.waFloat{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:18px;
  background: linear-gradient(135deg, #19c37d, #0ea96a);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 35px rgba(0,0,0,.35);
}
a.waFloat:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(25,195,125,.35), 0 18px 35px rgba(0,0,0,.35);
}


/* Desktop enhancements */
@media (min-width: 720px){
  .heroPresentazione{
    display:grid;
    grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
    grid-template-areas:
      "logo lead"
      "cta cta"
      "contact contact";
    column-gap:32px;
    row-gap:26px;
    align-items:start;
  }
  .heroLogo{
    grid-area:logo;
    order:0;
    width:100%;
    max-width:220px;
    margin:0;
    padding:6px 0 0;
    justify-self:start;
  }
  .heroLogoImg{
    max-height:140px;
  }
  .heroLead{
    grid-area:lead;
    order:0;
    min-width:0;
  }
  .heroPresentazione .ctaRow{
    grid-area:cta;
    order:0;
  }
  .heroContact{
    grid-area:contact;
    order:0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:14px;
    padding-top:26px;
  }
  .hero h1{ font-size:40px; }
  .heroCard{ padding:28px; }
  .visualGrid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .visualCard img{ height:210px; }
  .serviceGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contactGrid{ grid-template-columns: 1fr 1fr; }
  .mapFrame{ height:360px; }
}

@media (min-width: 980px){
  .serviceGrid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

