/* NETY - Minimal skin (HESK 3.7.x) */

/* Base */
html, body {
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header minimal + logo NETY */
.header {
  border-bottom: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: none !important;
}
.header__inner {
  padding: 14px 0 !important;
}

/* Trasforma il logo testuale in logo SVG */
.header__logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0 !important; /* nasconde “Supporto Tecnico Nety” */
  line-height: 0 !important;
}
.header__logo::before {
  content: "" !important;
  display: inline-block !important;
  width: 120px !important;
  height: 28px !important;
  background: url("../../../../img/logo-white.svg") no-repeat left center / contain !important;
}
.header__logo::after {
  content: "Assistenza clienti" !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  opacity: .75 !important;
}

/* Link puliti */
a { text-decoration: none !important; }
a:hover { text-decoration: underline !important; }

/* Home tiles (Invia ticket / Visualizza ticket) */
.nav { gap: 14px !important; }

.navlink {
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 8px 26px rgba(0,0,0,.06) !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
}
.navlink:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.10) !important;
}
.icon-in-circle {
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
}

/* Footer HESK + NETY (NETY viene inserito via JS con .nety-footer) */
footer.footer {
  padding: 18px 0 !important;
  border-top: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: none !important;
}
footer.footer p.text-center {
  font-size: 12px !important;
  opacity: .7 !important;
  margin: 0 !important;
}

footer.footer .nety-footer {
  margin-top: 10px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(0,0,0,.06) !important;
  font-size: 13px !important;
  opacity: .9 !important;
}
footer.footer .nety-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  line-height: 1.5;
}
footer.footer .nety-footer a { text-decoration: none !important; }
footer.footer .nety-footer a:hover { text-decoration: underline !important; }

/* Elenco link client: stile "desktop list" */
.client-links{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.client-link{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  text-decoration: none !important;
}

.client-link:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.client-link__icon{
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 34px;
}

@media (min-width: 900px){
  .client-links{
    grid-template-columns: 1fr 1fr; /* desktop: 2 colonne */
    gap: 12px 14px;
  }
}
#live-mail, #thunderbird, #android, #ios { scroll-margin-top: 90px; }
/* NETY contact box (postilla) */
.nety-contact-box{
  margin-top: 22px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
  background: #fff;
  overflow: hidden;
}

.nety-contact-box__head{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nety-contact-box__sub{
  display: block;
  margin-top: 4px;
  font-size: 13px;
  opacity: .75;
}

.nety-contact-box__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px 16px;
}

.nety-contact-box__label{
  font-size: 12px;
  opacity: .7;
  margin-bottom: 2px;
}

.nety-contact-box__value{
  font-size: 14px;
}

.nety-contact-box__value a{
  text-decoration: none !important;
}
.nety-contact-box__value a:hover{
  text-decoration: underline !important;
}

@media (min-width: 900px){
  .nety-contact-box__grid{
    grid-template-columns: 1fr 1fr; /* desktop: 2 colonne */
    gap: 14px 18px;
  }
}
@media (min-width:900px){
    .nety-ip-grid{grid-template-columns:1fr 1fr !important;}
  }

  .nety-ip-value{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
  }

  /* valore IP più grande */
  .nety-ip-value strong{
    font-size: 22px;
    letter-spacing: .2px;
  }

  /* bottone copia minimal */
  .nety-copy-btn{
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    border-radius: 12px;
    padding: .45rem .7rem;
    font-size: 13px;
    cursor: pointer;
  }
  .nety-copy-btn:hover{
    transform: translateY(-1px);
  }
  .nety-copy-btn.copied{
    opacity: .75;
    background:#C0D996;
  }
