/*
Theme Name: NETYS
Theme URI: https://www.netys.it/
Author: NETYS
Description: NETYS Theme
Version: 1.1.47
Text Domain: netys
*/

:root {
  --netys-blue: #0a67d8;
  --netys-blue-dark: #0b2f5f;
  --netys-text: #343a40;
  --netys-muted: #68717c;
  --netys-bg: #ffffff;
  --netys-soft: #f4f8fc;
  --netys-border: #e6edf5;
  --netys-shadow: 0 14px 36px rgba(18, 55, 92, .09);
  --netys-radius: 18px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--netys-text);
  background: var(--netys-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.netys-container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #292929;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  height: 70px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-branding {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  line-height: 0;
}

.netys-logo-link,
.site-branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  font-size: 0;
}
.site-branding img,
.site-branding .netys-logo,
.site-branding .custom-logo {
  display: block;
  width: auto;
  height: auto;
  width: 145px;
  max-width: 145px;
  object-fit: contain;
}

.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-nav li { position: relative; }
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a {
  color: #00abff;
}
.primary-nav .menu-item-has-children > a::after {
  content: "⌄";
  margin-left: 6px;
  transform: translateY(-1px);
  font-size: 12px;
}
.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  padding: 10px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  background: #292929;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: .2s ease;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .sub-menu a {
  width: 100%;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 0;
  font-size: 14px;
}
.primary-nav .sub-menu a { color: #fff; }
.primary-nav .sub-menu a:hover {
  background: transparent;
  color: #00abff;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  position: relative;
}
.mobile-toggle span::before,
.mobile-toggle span::after { content: ""; position: absolute; left: 0; }
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }

/* Tagline sotto l'header */
.home-tagline {
  background: #fff;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
}
.home-tagline p {
  max-width: 760px;
  margin: 0 auto;
  color: #292929;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
  font-style: italic;
  font-weight: 700;
}

/* Hero */
.hero {
  padding: 58px 0 50px;
  text-align: center;
}
.hero h1 {
  margin: 0 auto 18px;
  max-width: 920px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #33383e;
  font-weight: 700;
}
.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #66707b;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

/* Services */
.services-section {
  padding: 34px 0;
  background: #f1f1f1;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1360px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  top: 0;
  min-height: 250px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  background: #fff;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(17, 52, 86, .06);
  transition: box-shadow .18s ease;
}


.service-content,
.service-content h2,
.service-content p {
  filter: none !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.service-image {
  min-height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eaf5ff 0%, #f7fbff 100%);
  border-right: 1px solid #e5edf5;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-content h2 {
  margin: 0 0 11px;
  font-size: 21px;
  line-height: 1.2;
  color: #292929;
  font-weight: 700;
}
.service-content p {
  margin: 0;
  color: #68717c;
  font-size: 13.5px;
  line-height: 1.55;
  text-align: justify;
}

/* CTA (non utilizzata nella homepage) */
.cta-strip {
  margin: 0 auto 76px;
  width: min(var(--container), calc(100% - 48px));
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0c66d8 0%, #0a55b8 100%);
  color: white;
}
.cta-strip h2 { margin: 0 0 6px; font-size: 28px; }
.cta-strip p { margin: 0; opacity: .88; }
.cta-button {
  flex: 0 0 auto;
  padding: 12px 20px;
  border-radius: 10px;
  background: white;
  color: var(--netys-blue);
  font-weight: 700;
}

/* Generic pages */
.site-main {
  min-height: 0;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.page-shell {
  padding: 46px 0 50px;
  background: #f1f1f1;
  flex: 1 0 auto;
}
.page-shell h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.1; margin-top: 0; }
.entry-content {
  max-width: none;
  width: 100%;
}
.entry-content a { color: var(--netys-blue); }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #292929;
}
.footer-inner {
  height: 70px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-copy { color: #fff; font-size: 10px; line-height: 1.25; font-weight: 600; }
.footer-partner {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}
.footer-partner img { width: 150px; display: block; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; max-width: 820px; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .primary-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    margin: 0;
    padding: 12px;
    background: #292929;
    border: none;
    border-radius: 14px;
    box-shadow: var(--netys-shadow);
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: block; }
  .primary-nav a { width: 100%; }
  .primary-nav .sub-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .netys-container { width: min(100% - 32px, var(--container)); }
  .header-inner { height: 65px; min-height: 70px; }
  .site-branding img { width: 132px; }
  .hero { padding: 50px 0 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; min-height: 0; }
  .service-image { min-height: 140px; border-right: 0; border-bottom: 1px solid #e5edf5; }
  .service-content { padding: 20px; }
  .services-section { padding-bottom: 56px; }
  .cta-strip {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
  .footer-inner {
    height: auto;
    min-height: 70px;
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Homepage 1.0.19 - nuova struttura centrale */
.home-main-section {
  flex: 1 0 auto;
  background: #f1f1f1;
  padding: 42px 0 46px;
}
.home-intro {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #00abff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.home-intro h1 {
  margin: 0 0 14px;
  color: #292929;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.home-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: #66707b;
  font-size: 17px;
  line-height: 1.6;
}
.company-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 34px;
  background: #292929;
  border-radius: 14px;
  overflow: hidden;
}
.stat-item {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: 0; }
.stat-item strong {
  color: #00abff;
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
}
.stat-item span {
  margin-top: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.services-modern {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.service-modern {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  min-height: 260px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.045);
}
.service-modern-index {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
  background: #292929;
  color: #00abff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}
.service-modern-body {
  padding: 26px 28px 24px;
}
.service-modern-body h2 {
  margin: 0 0 11px;
  color: #292929;
  font-size: 22px;
  line-height: 1.2;
}
.service-modern-body p {
  margin: 0;
  color: #68717c;
  font-size: 13.5px;
  line-height: 1.58;
  text-align: justify;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.service-tags span {
  padding: 5px 9px;
  background: #eef7ff;
  color: #24638e;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.what-we-manage {
  margin-top: 26px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: .85fr 1.4fr;
  gap: 34px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
}
.what-we-manage h2 {
  margin: 0;
  color: #292929;
  font-size: 26px;
  line-height: 1.2;
}
.manage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.manage-list span {
  position: relative;
  padding-left: 18px;
  color: #4f5963;
  font-size: 13px;
  font-weight: 600;
}
.manage-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00abff;
}

@media (max-width: 980px) {
  .company-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .services-modern { grid-template-columns: 1fr; }
  .what-we-manage { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .home-main-section { padding: 30px 0 34px; }
  .company-stats { grid-template-columns: 1fr 1fr; }
  .service-modern { grid-template-columns: 54px 1fr; }
  .service-modern-index { padding-top: 22px; font-size: 15px; }
  .service-modern-body { padding: 22px 20px; }
  .manage-list { grid-template-columns: 1fr; }
  .what-we-manage { padding: 24px 22px; }
}


/* Homepage 1.0.20 - restyling centrale e partner */
.home-main-v120 {
  padding: 46px 0 50px;
  background: #f1f1f1;
}
.home-lead-grid {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(330px,.75fr);
  gap: 42px;
  align-items: stretch;
  margin-bottom: 48px;
}
.home-lead-copy {
  padding: 14px 0 10px;
  align-self: center;
}
.home-lead-copy h1 {
  max-width: 850px;
  margin: 0 0 18px;
  color: #292929;
  font-size: clamp(34px,4vw,58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.home-lead-copy p {
  max-width: 820px;
  margin: 0;
  color: #626c76;
  font-size: 16.5px;
  line-height: 1.7;
}
.home-proof-panel {
  padding: 28px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e6ebf0;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
  display: grid;
  gap: 22px;
  align-self: stretch;
}
.proof-intro h2 {
  margin: 10px 0 10px;
  color: #292929;
  font-size: 29px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.proof-intro p {
  margin: 0;
  color: #67717b;
  font-size: 14px;
  line-height: 1.65;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.proof-stat {
  padding: 18px 16px;
  background: #f7f9fb;
  border: 1px solid #e8edf2;
  border-radius: 14px;
}
.proof-stat strong {
  display: block;
  color: #00abff;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
}
.proof-stat span {
  display: block;
  margin-top: 8px;
  color: #292929;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.proof-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.proof-points li {
  position: relative;
  padding-left: 22px;
  color: #59636d;
  font-size: 13.5px;
  line-height: 1.5;
}
.proof-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00abff;
  box-shadow: 0 0 0 4px rgba(0,171,255,.12);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}
.section-heading h2 {
  margin: 0;
  color: #292929;
  font-size: clamp(27px,3vw,38px);
  line-height: 1.14;
  letter-spacing: -.025em;
}
.services-v120 {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}
.service-v120 {
  position: relative;
  padding: 26px 28px 24px;
  background: #fff;
  border-radius: 14px;
  border: 0;
  box-shadow: 0 7px 20px rgba(0,0,0,.04);
  transition: box-shadow .2s ease;
}
.service-v120:hover {
  transform: none;
  box-shadow: 0 14px 30px rgba(0,0,0,.075);
}
.service-v120-head {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-bottom: 12px;
}
.service-v120-head > span {
  flex: 0 0 auto;
  color: #00abff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.service-v120-head h3 {
  margin: 0;
  color: #292929;
  font-size: 21px;
  line-height: 1.2;
}
.service-v120 > p {
  margin: 0;
  color: #68717c;
  font-size: 13.5px;
  line-height: 1.6;
  text-align: justify;
}
.home-main-v120 .service-tags { margin-top: 17px; }
.home-main-v120 .service-tags span {
  background: #eef8ff;
  color: #22668f;
  border: 1px solid #dbefff;
}
.manage-v120 {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: 42px;
  align-items: center;
  margin-top: 28px;
  padding: 30px 32px;
  background: #fff;
  border-radius: 14px;
}
.manage-v120-title h2 {
  margin: 0 0 10px;
  color: #292929;
  font-size: 28px;
  line-height: 1.17;
  letter-spacing: -.02em;
}
.manage-v120-title p {
  margin: 0;
  color: #69737d;
  font-size: 13px;
  line-height: 1.6;
}
.manage-v120-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px 18px;
}
.manage-v120-grid span {
  position: relative;
  padding: 10px 12px 10px 31px;
  background: #f6f8fa;
  border-radius: 8px;
  color: #4f5963;
  font-size: 12.5px;
  font-weight: 700;
}
.manage-v120-grid span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #00abff;
}
.partners-v120 {
  margin-top: 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 34px;
  align-items: center;
  background: #292929;
  border-radius: 14px;
}
.partners-v120-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -.02em;
}
.partners-v120-copy p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 12.5px;
  line-height: 1.55;
}
.partners-v120-logos {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 10px;
}
.partner-logo {
  height: 86px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.partner-logo-dark { background: #fff; }
.partner-logo img {
  display: block;
  width: 100%;
  max-width: 145px;
  max-height: 54px;
  object-fit: contain;
}
@media (max-width: 1080px) {
  .home-lead-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-proof-panel { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .partners-v120 { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .services-v120 { grid-template-columns: 1fr; }
  .manage-v120 { grid-template-columns: 1fr; gap: 24px; }
  .partners-v120-logos { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .home-main-v120 { padding: 30px 0 34px; }
  .home-lead-grid { margin-bottom: 34px; }
  .home-proof-panel { padding: 22px; }
  .proof-intro h2 { font-size: 24px; }
  .proof-stats { grid-template-columns: 1fr; }
  .service-v120 { padding: 23px 21px 21px; }
  .manage-v120 { padding: 24px 21px; }
  .manage-v120-grid { grid-template-columns: 1fr; }
  .partners-v120 { padding: 25px 21px; }
  .partners-v120-logos { grid-template-columns: 1fr 1fr; }
  .partner-logo { height: 78px; }
}


/* Come lavoriamo - v1.0.38 */
.workflow-v138 {
  margin-top: 28px;
  padding: 30px 32px;
  background: #fff;
  border-radius: 14px;
}

.workflow-v138-title {
  max-width: 720px;
  margin-bottom: 24px;
}

.workflow-v138-title h2 {
  margin: 8px 0 0;
  color: #292929;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.workflow-v138-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-step-v138 {
  padding: 22px 22px 21px;
  background: #f6f8fa;
  border-radius: 12px;
  border: 1px solid #e8edf2;
}

.workflow-number-v138 {
  display: block;
  margin-bottom: 12px;
  color: #00abff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.workflow-step-v138 h3 {
  margin: 0 0 9px;
  color: #292929;
  font-size: 19px;
  line-height: 1.2;
}

.workflow-step-v138 p {
  margin: 0;
  color: #68717c;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .workflow-v138-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .workflow-v138 {
    padding: 24px 21px;
  }

  .workflow-v138-title h2 {
    font-size: 24px;
  }
}


/* Come lavoriamo - affinamenti v1.0.39 */
.workflow-v138-title {
  max-width: none;
}

.workflow-v138-title h2 {
  white-space: nowrap;
}

/* Numero e titolo sulla stessa riga */
.workflow-step-v138 {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: baseline;
}

.workflow-number-v138 {
  margin-bottom: 0;
}

.workflow-step-v138 h3 {
  margin: 0;
}

.workflow-step-v138 p {
  grid-column: 1 / -1;
  margin-top: 9px;
}

@media (max-width: 900px) {
  .workflow-v138-title h2 {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .workflow-step-v138 {
    grid-template-columns: auto 1fr;
  }
}


/* v1.0.40 - focus cliente e rapporto umano */
.proof-stats-two {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.proof-intro h2 {
  margin-bottom: 12px;
}

.proof-intro p {
  font-size: 14.5px;
}

.proof-points li {
  font-size: 13.25px;
}

@media (max-width: 680px) {
  .proof-stats-two {
    grid-template-columns: 1fr;
  }
}


/* v1.0.41 - proof panel dark */
.home-proof-panel {
  background: #292929;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.home-proof-panel .proof-intro h2 {
  color: #fff;
}

.home-proof-panel .proof-intro p {
  color: rgba(255,255,255,.78);
}

.home-proof-panel .proof-stat {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}

.home-proof-panel .proof-stat span {
  color: #fff;
}

.home-proof-panel .proof-points li {
  color: rgba(255,255,255,.84);
}


/* v1.0.42 - pagine interne più larghe e sfondo uniforme */
.page-shell .netys-container {
  width: min(var(--container), calc(100% - 48px));
}

.page-shell h1 {
  max-width: 100%;
  margin-bottom: 28px;
}

.page-shell .entry-content p {
  max-width: 100%;
}

@media (max-width: 680px) {
  .page-shell {
    padding: 30px 0 34px;
  }
}


/* v1.0.43 - titolo pagine interne più compatto */
.page-shell h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
}


/* v1.0.44 - pagine interne: titolo più piccolo e contenuto centrato verticalmente */
.page-shell {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
}

.page-shell h1 {
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.12;
}

@media (max-width: 680px) {
  .page-shell {
    align-items: flex-start;
  }
}


/* v1.0.45 - titolo pagine interne ancora più piccolo */
.page-shell h1 {
  font-size: clamp(24px, 2.5vw, 34px);
}


/* v1.0.46 - pagine interne restyling */
.page-shell {
  display: block;
  align-items: initial;
  padding: 42px 0 46px;
  background: #f1f1f1;
}

.page-article {
  display: grid;
  gap: 18px;
}

.page-heading-card {
  position: relative;
  padding-bottom: 12px;
}

.page-heading-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: #00abff;
}

.page-shell h1 {
  margin: 0;
  color: #343b45;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.14;
  letter-spacing: -.02em;
}

.page-content-card {
  background: #fff;
  border: 1px solid #e6ebf0;
  border-radius: 18px;
  padding: 34px 38px;
  box-shadow: 0 10px 26px rgba(0,0,0,.035);
}

.page-shell .entry-content {
  width: 100%;
  max-width: none;
}

.page-shell .entry-content p {
  margin: 0 0 20px;
  color: #4e5964;
  font-size: 15px;
  line-height: 1.88;
}

.page-shell .entry-content p:first-of-type {
  color: #2f3740;
  font-size: 18px;
  line-height: 1.75;
}

.page-shell .entry-content strong {
  color: #292929;
}

.page-shell .entry-content a {
  color: #00abff;
  font-weight: 600;
}

@media (max-width: 680px) {
  .page-shell {
    padding: 28px 0 32px;
  }

  .page-content-card {
    padding: 24px 22px;
    border-radius: 14px;
  }

  .page-shell h1 {
    font-size: 24px;
  }

  .page-shell .entry-content p:first-of-type {
    font-size: 16px;
  }
}


/* v1.0.47 - titolo dentro il riquadro bianco */
.page-content-card .page-heading-card {
  margin-bottom: 24px;
  padding-bottom: 14px;
}

.page-content-card .page-heading-card::after {
  width: 78px;
}


/* v1.0.48 - pagina Contattaci */
.contact-page {
  padding: 42px 0 46px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.contact-map-card {
  background: #fff;
  border: 1px solid #e6ebf0;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.035);
  overflow: hidden;
}

.contact-card {
  padding: 34px 36px;
}

.contact-heading {
  margin-bottom: 28px;
}

.contact-heading h1 {
  margin: 8px 0 12px;
  color: #292929;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contact-heading p {
  margin: 0;
  color: #68717c;
  font-size: 14.5px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 18px 20px;
  background: #f6f8fa;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  display: grid;
  gap: 3px;
}

.contact-label {
  margin-bottom: 5px;
  color: #00abff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-phone {
  color: #292929;
  font-size: 17px;
  font-weight: 800;
}

.contact-item > span:not(.contact-label) {
  color: #68717c;
  font-size: 13.5px;
}

.contact-phone:hover {
  color: #00abff;
}

.contact-map-card {
  min-height: 520px;
}

.contact-map-card iframe {
  display: block;
  min-height: 520px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .contact-card {
    padding: 26px 22px;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 340px;
  }
}


/* v1.0.49 - email e PEC pagina Contattaci */
.contact-email {
  color: #292929;
  font-size: 16px;
  font-weight: 700;
}

.contact-email:hover {
  color: #00abff;
}


/* v1.0.52 - pagina Contattaci più diretta e umana */
.contact-human-note {
  margin: 0 0 22px;
  padding: 18px 20px;
  background: #f6f8fa;
  border-left: 4px solid #00abff;
  border-radius: 10px;
}

.contact-human-note strong {
  display: block;
  margin-bottom: 5px;
  color: #292929;
  font-size: 15px;
}

.contact-human-note p {
  margin: 0;
  color: #68717c;
  font-size: 13.5px;
  line-height: 1.65;
}

.contact-ticket-cta {
  margin-top: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #292929;
  border-radius: 14px;
}

.contact-ticket-cta h2 {
  margin: 7px 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
}

.contact-ticket-cta p {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.68);
  font-size: 12.5px;
  line-height: 1.55;
}

.contact-ticket-button {
  flex: 0 0 auto;
  padding: 11px 18px;
  border-radius: 9px;
  background: #00abff;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: opacity .2s ease;
}

.contact-ticket-button:hover {
  color: #fff;
  opacity: .88;
}

@media (max-width: 680px) {
  .contact-ticket-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* v1.0.54 - link diretto alla scheda NETYS su Google Maps */
.contact-map-card {
  position: relative;
}

.contact-map-link {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 9px;
  background: #292929;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
}

.contact-map-link:hover {
  color: #00abff;
}


/* v1.0.55 - pulsante Google Maps in alto a sinistra */
.contact-map-link {
  top: 18px;
  bottom: auto;
}


/* v1.0.56 - pulsante Google Maps in alto a destra */
.contact-map-link {
  top: 18px;
  right: 18px;
  left: auto;
  bottom: auto;
}


/* v1.0.59 - footer: testi più leggibili e logo Vicsam più grande */
.site-footer,
.site-footer p,
.site-footer .footer-text,
.site-footer .footer-info,
.site-footer .footer-details {
  font-size: 14px;
  line-height: 1.55;
}

.site-footer .vicsam-logo,
.site-footer img[src*="vicsamgroup-white.svg"] {
  width: 220px;
  max-width: 100%;
  height: auto;
}


/* v1.0.61 - proof panel refinements */
.home-proof-panel .proof-intro h2 {
  font-size: 23px;
  line-height: 1.18;
}

.proof-stats-two {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}

@media (max-width: 680px) {
  .proof-stats-two {
    max-width: none;
  }
}


/* v1.0.62 - azzera margine inferiore titolo proof */
.proof-intro h2 {
  margin-bottom: 0;
}


/* v1.0.73 - CTA finale homepage */
.home-cta-section {
  margin: 0 auto 20px;
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 34px;
  background: #fff;
  border: 1px solid #e6ebf0;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}

.home-cta-copy {
  max-width: 760px;
}

.home-cta-copy .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #00abff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.home-cta-copy h2 {
  margin: 0 0 8px;
  color: #292929;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.home-cta-copy p {
  margin: 0;
  color: #66717b;
  font-size: 14px;
  line-height: 1.65;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.home-cta-primary,
.home-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.home-cta-primary {
  background: #00abff;
  color: #fff;
}

.home-cta-primary:hover {
  color: #fff;
  filter: brightness(.95);
}

.home-cta-secondary {
  background: #292929;
  color: #fff;
}

.home-cta-secondary:hover {
  color: #00abff;
}

@media (max-width: 820px) {
  .home-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* v1.0.74 - CTA integrata nel flusso della homepage */
.home-cta-section {
  margin: 0 0 20px;
}

.home-cta-inner {
  padding: 26px 30px;
  border-radius: 16px;
  box-shadow: none;
}

.home-cta-copy h2 {
  max-width: 760px;
}


/* v1.0.76 - più spazio tra partner e CTA finale */
.partners-v120 {
  margin-bottom: 24px;
}

.home-cta-section {
  margin-top: 0;
}


/* v1.0.77 - CTA finale più compatta */
.home-cta-copy h2 {
  font-size: 24px;
}

.home-cta-inner {
  gap: 20px;
}

.home-cta-actions {
  margin-left: 10px;
}


/* v1.0.78 - mappa Contattaci più compatta */
.contact-map-card {
  min-height: 620px;
  height: 620px;
  align-self: start;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .contact-map-card {
    min-height: 460px;
    height: 460px;
  }
}

@media (max-width: 640px) {
  .contact-map-card {
    min-height: 380px;
    height: 380px;
  }
}


/* v1.0.79 - pagina Contattaci riequilibrata */
.contact-layout {
  align-items: stretch;
}

.contact-card {
  padding: 28px 30px;
}

.contact-heading {
  margin-bottom: 20px;
}

.contact-details {
  gap: 10px;
}

.contact-item {
  padding: 14px 18px;
}

.contact-ticket-cta {
  margin-top: 18px;
  padding: 18px;
}

.contact-map-card {
  min-height: 0;
  height: auto;
  align-self: stretch;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 980px) {
  .contact-map-card {
    height: 460px;
    min-height: 460px;
  }

  .contact-map-card iframe {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .contact-map-card {
    height: 380px;
    min-height: 380px;
  }

  .contact-map-card iframe {
    min-height: 380px;
  }
}


/* v1.0.80 - nuova pagina Contattaci */
.contact-page-v2 {
  padding: 38px 0 46px;
}

.contact-page-v2 .netys-container {
  display: grid;
  gap: 20px;
}

.contact-hero-card,
.contact-info-box,
.contact-map-wide,
.contact-ticket-band {
  border-radius: 18px;
}

.contact-hero-card,
.contact-info-box {
  background: #ffffff;
  border: 1px solid #e5ebf0;
}

.contact-hero-card {
  padding: 34px 38px;
}

.contact-hero-card h1 {
  margin: 10px 0 12px;
  color: #292929;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.04em;
  max-width: 760px;
}

.contact-hero-card p {
  margin: 0;
  max-width: 820px;
  color: #66717b;
  font-size: 15px;
  line-height: 1.75;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-info-box {
  padding: 24px 26px;
}

.contact-info-box h2 {
  margin: 10px 0 6px;
  color: #292929;
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.contact-info-box p {
  margin: 0;
  color: #66717b;
  font-size: 14px;
  line-height: 1.65;
}

.contact-info-box a {
  color: #292929;
}

.contact-info-box a:hover {
  color: #00abff;
}

.contact-map-wide {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5ebf0;
  height: 410px;
}

.contact-map-wide iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-map-wide .contact-map-link {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 10px;
  background: #292929;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
}

.contact-map-wide .contact-map-link:hover {
  color: #00abff;
}

.contact-ticket-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 32px;
  background: #292929;
  color: #fff;
}

.contact-ticket-band-copy h2 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.contact-ticket-band-copy p {
  margin: 0;
  max-width: 650px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.65;
}

.contact-ticket-band .contact-ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: #00abff;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.contact-ticket-band .contact-ticket-button:hover {
  color: #fff;
  filter: brightness(.95);
}

@media (max-width: 980px) {
  .contact-hero-card {
    padding: 28px 26px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wide {
    height: 360px;
  }

  .contact-ticket-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .contact-page-v2 {
    padding: 26px 0 34px;
  }

  .contact-hero-card h1 {
    font-size: 36px;
  }

  .contact-info-box {
    padding: 20px 20px;
  }

  .contact-info-box h2 {
    font-size: 24px;
  }

  .contact-map-wide {
    height: 320px;
  }

  .contact-ticket-band {
    padding: 22px;
  }
}


/* v1.0.81 - riferimenti Contattaci ridisegnati */
.contact-info-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}

.contact-location-card,
.contact-quick-row {
  background: #fff;
  border: 1px solid #e5ebf0;
  border-radius: 18px;
}

.contact-location-card {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
}

.contact-location-card h2 {
  margin: 10px 0 14px;
  color: #292929;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.contact-location-address {
  margin: 0 0 18px;
  color: #66717b;
  font-size: 15px;
  line-height: 1.65;
}

.contact-location-link {
  align-self: flex-start;
  color: #00abff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.contact-location-link:hover {
  color: #292929;
}

.contact-quick-list {
  display: grid;
  gap: 16px;
}

.contact-quick-row {
  min-height: 97px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-quick-row h2 {
  margin: 8px 0 0;
  color: #292929;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.contact-quick-row h2 a {
  color: #292929;
}

.contact-quick-row h2 a:hover {
  color: #00abff;
}

.contact-quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 9px;
  background: #f1f7fb;
  border: 1px solid #d7ecf9;
  color: #006ea6;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.contact-quick-action:hover {
  background: #e6f5fd;
  color: #292929;
}

@media (max-width: 980px) {
  .contact-info-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-location-card {
    min-height: 0;
    padding: 22px;
  }

  .contact-location-card h2 {
    font-size: 28px;
  }

  .contact-quick-row {
    min-height: 0;
    padding: 18px;
  }

  .contact-quick-row h2 {
    font-size: 22px;
  }
}


/* v1.0.82 - Contattaci con mappa a destra e riquadri incastrati */
.contact-page-v3 {
  padding: 38px 0 46px;
}

.contact-top-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.contact-left-column {
  display: grid;
  gap: 18px;
}

.contact-hero-card,
.contact-box,
.contact-map-side {
  background: #fff;
  border: 1px solid #e5ebf0;
  border-radius: 18px;
}

.contact-hero-card {
  padding: 30px 32px;
}

.contact-hero-card h1 {
  margin: 10px 0 12px;
  color: #292929;
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
  max-width: 560px;
}

.contact-hero-card p {
  margin: 0;
  max-width: 560px;
  color: #66717b;
  font-size: 15px;
  line-height: 1.75;
}

.contact-box-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-box {
  padding: 22px 24px;
}

.contact-box h2 {
  margin: 10px 0 6px;
  color: #292929;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.contact-box p {
  margin: 0;
  color: #66717b;
  font-size: 14px;
  line-height: 1.65;
}

.contact-box a {
  color: #292929;
}

.contact-box a:hover {
  color: #00abff;
}

.address-box {
  grid-column: 1 / -1;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phone-box,
.email-box {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-inline-link {
  align-self: flex-start;
  margin-top: 14px;
  color: #00abff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.contact-inline-link:hover {
  color: #292929 !important;
}

.contact-mini-action {
  align-self: flex-start;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 9px;
  background: #f1f7fb;
  border: 1px solid #d7ecf9;
  color: #006ea6 !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.contact-mini-action:hover {
  background: #e7f5fd;
  color: #292929 !important;
}

.contact-map-side {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.contact-map-side iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.contact-map-side .contact-map-link {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 10px;
  background: #292929;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
}

.contact-map-side .contact-map-link:hover {
  color: #00abff;
}

.contact-ticket-band-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: #292929;
  color: #fff;
  border-radius: 18px;
}

.contact-ticket-band-compact .contact-ticket-band-copy h2 {
  margin: 8px 0 6px;
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contact-ticket-band-compact .contact-ticket-band-copy p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.6;
}

.contact-ticket-band-compact .contact-ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  background: #00abff;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.contact-ticket-band-compact .contact-ticket-button:hover {
  color: #fff;
  filter: brightness(.95);
}

@media (max-width: 1040px) {
  .contact-top-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-side {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .contact-page-v3 {
    padding: 26px 0 34px;
  }

  .contact-hero-card {
    padding: 24px 22px;
  }

  .contact-hero-card h1 {
    font-size: 36px;
  }

  .contact-box-mosaic {
    grid-template-columns: 1fr;
  }

  .address-box {
    grid-column: auto;
  }

  .contact-box {
    padding: 20px 20px;
  }

  .contact-box h2 {
    font-size: 24px;
  }

  .contact-map-side {
    min-height: 340px;
  }

  .contact-ticket-band-compact {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}


/* v1.0.83 - mappa ridotta con ticket sotto */
.contact-right-column {
  display: grid;
  grid-template-rows: auto auto;
  gap: 18px;
}

.contact-map-side {
  min-height: 420px;
  height: 420px;
  align-self: start;
}

.contact-map-side iframe {
  min-height: 420px;
}

.contact-ticket-band-compact {
  min-height: 0;
}

.contact-ticket-band-compact .contact-ticket-band-copy p {
  max-width: 100%;
}

@media (max-width: 1040px) {
  .contact-right-column {
    grid-template-rows: auto auto;
  }

  .contact-map-side {
    min-height: 380px;
    height: 380px;
  }

  .contact-map-side iframe {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  .contact-map-side {
    min-height: 320px;
    height: 320px;
  }

  .contact-map-side iframe {
    min-height: 320px;
  }
}


/* v1.0.84 - allineamento blocco ticket con Email */
.contact-right-column {
  grid-template-rows: 420px 148px;
}

.contact-ticket-band-compact {
  min-height: 148px;
  height: 148px;
  align-self: stretch;
}

@media (max-width: 1040px) {
  .contact-right-column {
    grid-template-rows: 380px auto;
  }

  .contact-ticket-band-compact {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 680px) {
  .contact-right-column {
    grid-template-rows: 320px auto;
  }
}


/* v1.0.85 - allineamento preciso mappa e riquadro ticket */
.contact-aligned-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "hero map"
    "address map"
    "contacts ticket";
  gap: 18px 22px;
  align-items: stretch;
}

.contact-aligned-grid > .contact-hero-card {
  grid-area: hero;
}

.contact-aligned-grid > .contact-map-side {
  grid-area: map;
  min-height: 0;
  height: auto;
  align-self: stretch;
}

.contact-aligned-grid > .contact-map-side iframe {
  min-height: 0;
  height: 100%;
}

.contact-aligned-grid > .address-box {
  grid-area: address;
  min-height: 148px;
}

.contact-bottom-pair {
  grid-area: contacts;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-bottom-pair .contact-box {
  min-height: 148px;
  height: 100%;
}

.contact-aligned-grid > .contact-ticket-band-compact {
  grid-area: ticket;
  min-height: 148px;
  height: auto;
  align-self: stretch;
}

/* Neutralizza le vecchie regole a griglia annidata */
.contact-right-column,
.contact-left-column {
  display: contents;
}

@media (max-width: 1040px) {
  .contact-aligned-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "address"
      "contacts"
      "map"
      "ticket";
  }

  .contact-aligned-grid > .contact-map-side {
    min-height: 380px;
    height: 380px;
  }

  .contact-aligned-grid > .contact-map-side iframe {
    min-height: 380px;
  }

  .contact-aligned-grid > .contact-ticket-band-compact {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .contact-bottom-pair {
    grid-template-columns: 1fr;
  }

  .contact-bottom-pair .contact-box {
    min-height: 0;
  }

  .contact-aligned-grid > .contact-map-side {
    min-height: 320px;
    height: 320px;
  }

  .contact-aligned-grid > .contact-map-side iframe {
    min-height: 320px;
  }
}


/* v1.0.86 - ritocco dimensioni testi */
.workflow-v138-title h2 {
  font-size: 24px;
}

.home-cta-copy .eyebrow {
  font-size: 12px;
}


/* v1.0.87 - aumento font descrizioni riquadri */
.service-v120 > p {
  font-size: 14.5px;
}

.workflow-step-v138 p {
  font-size: 14.5px;
}


/* v1.0.88 - ritocco dimensioni partner e CTA */
.partners-v120-copy h2 {
  font-size: 24px;
}

.partners-v120-copy p {
  font-size: 14.5px;
}

.home-cta-copy p {
  font-size: 14.5px;
}


/* v1.0.90 - pagina Chi siamo editoriale */
.about-netys-page {
  padding: 38px 0 46px;
}

.about-netys-page .netys-container {
  display: grid;
  gap: 20px;
}

.about-netys-hero,
.about-netys-story,
.about-netys-content-card {
  background: #fff;
  border: 1px solid #e5ebf0;
  border-radius: 18px;
}

.about-netys-hero {
  padding: 38px 40px;
}

.about-netys-hero h1 {
  margin: 10px 0 12px;
  color: #292929;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.about-netys-lead {
  margin: 0;
  max-width: 820px;
  color: #66717b;
  font-size: 18px;
  line-height: 1.65;
}

.about-netys-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}

.about-netys-story,
.about-netys-content-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 30px 32px;
}

.about-section-number {
  color: #00abff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  padding-top: 4px;
}

.about-netys-story h2,
.about-netys-content-card h2 {
  margin: 8px 0 14px;
  color: #292929;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.about-netys-story p,
.about-netys-content-card p {
  margin: 0 0 14px;
  color: #66717b;
  font-size: 15px;
  line-height: 1.75;
}

.about-netys-story p:last-child,
.about-netys-content-card p:last-child {
  margin-bottom: 0;
}

.about-netys-quote {
  padding: 32px;
  background: #292929;
  color: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-netys-quote blockquote {
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.04em;
}

.about-netys-quote p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.75;
}

.about-netys-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-netys-mission {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 36px;
  align-items: center;
  padding: 32px 36px;
  background: #292929;
  color: #fff;
  border-radius: 18px;
}

.about-netys-mission h2 {
  margin: 9px 0 0;
  color: #fff;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.about-netys-mission p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .about-netys-grid,
  .about-netys-content-grid,
  .about-netys-mission {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .about-netys-page {
    padding: 26px 0 34px;
  }

  .about-netys-hero {
    padding: 28px 24px;
  }

  .about-netys-story,
  .about-netys-content-card {
    padding: 24px 22px;
  }

  .about-netys-quote {
    padding: 26px 24px;
  }

  .about-netys-mission {
    padding: 26px 24px;
  }
}


/* v1.0.91 - uniforma stile tipografico pagina Chi siamo */
.about-netys-page,
.about-netys-page h1,
.about-netys-page h2,
.about-netys-page p,
.about-netys-page blockquote,
.about-netys-page span,
.about-netys-page a,
.about-netys-page strong {
  font-family: inherit;
  font-style: normal;
}


/* v1.0.92 - forza lo stesso font del sito anche nel riquadro approccio */
.about-netys-quote blockquote,
.about-netys-quote p,
.about-netys-quote .eyebrow {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-style: normal !important;
}


/* v1.0.93 - riquadro approccio con lo stesso stile tipografico dei titoli del sito */
.about-netys-quote blockquote {
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}


/* v1.0.94 - riquadro sintetico accanto alla testata Chi siamo */
.about-netys-top {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: 20px;
  align-items: stretch;
}

.about-netys-top .about-netys-hero {
  height: 100%;
}

.about-netys-facts {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5ebf0;
  border-radius: 18px;
}

.about-fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  background: #f6f8fa;
  border: 1px solid #e8edf2;
  border-radius: 14px;
}

.about-fact strong {
  display: block;
  color: #00abff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}

.about-fact span {
  display: block;
  margin-top: 8px;
  color: #292929;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 900px) {
  .about-netys-top {
    grid-template-columns: 1fr;
  }

  .about-netys-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 560px) {
  .about-netys-facts {
    grid-template-columns: 1fr;
  }
}


/* v1.0.95 - riquadro identitario in alto a destra */
.about-netys-top-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
  background: #292929;
  color: #fff;
  border-radius: 18px;
}

.about-netys-top-note h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.about-netys-top-note p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14.5px;
  line-height: 1.7;
}


/* v1.0.96 - griglie simmetriche e contenuti meno ridondanti */
.about-netys-top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-netys-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-netys-top > *,
.about-netys-grid > *,
.about-netys-content-grid > * {
  height: 100%;
}

.about-netys-top .about-netys-hero,
.about-netys-top-note,
.about-netys-story,
.about-netys-quote,
.about-netys-content-card {
  min-height: 100%;
}

@media (max-width: 900px) {
  .about-netys-top,
  .about-netys-grid {
    grid-template-columns: 1fr;
  }
}


/* v1.0.97 - uniforma le dimensioni del testo nella pagina Chi siamo */
.about-netys-lead,
.about-netys-story p,
.about-netys-quote p,
.about-netys-content-card p,
.about-netys-top-note p,
.about-netys-mission p {
  font-size: 14.5px;
  line-height: 1.7;
}

.about-netys-page .eyebrow,
.about-netys-page .about-section-number {
  font-size: 12px;
}


/* v1.0.98 - uniforma tutti i titoli dei riquadri Chi siamo a 24px */
.about-netys-top-note h2,
.about-netys-story h2,
.about-netys-content-card h2,
.about-netys-quote blockquote,
.about-netys-mission h2 {
  font-size: 24px !important;
  line-height: 1.15;
}


/* v1.0.99 - Chi siamo completamente ridisegnata */
.about-v199 {
  padding: 38px 0 46px;
}

.about-v199 .netys-container {
  display: grid;
  gap: 22px;
}

.about-v199-hero,
.about-v199-story,
.about-v199-two-col,
.about-v199-mission {
  background: #fff;
  border: 1px solid #e5ebf0;
  border-radius: 18px;
}

.about-v199-hero {
  padding: 40px 42px;
}

.about-v199-hero h1 {
  margin: 10px 0 12px;
  color: #292929;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.about-v199-hero p {
  margin: 0;
  max-width: 820px;
  color: #66717b;
  font-size: 16px;
  line-height: 1.7;
}

.about-v199-story {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  padding: 34px 38px;
}

.about-v199-side-title {
  border-right: 1px solid #e5ebf0;
  padding-right: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-v199-number {
  color: #00abff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.about-v199-body h2,
.about-v199-section h2,
.about-v199-focus h2,
.about-v199-mission h2 {
  margin: 8px 0 14px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.about-v199-body p,
.about-v199-section p,
.about-v199-focus p,
.about-v199-mission p {
  margin: 0 0 14px;
  color: #66717b;
  font-size: 14.5px;
  line-height: 1.72;
}

.about-v199-body p:last-child,
.about-v199-section p:last-child,
.about-v199-focus p:last-child,
.about-v199-mission p:last-child {
  margin-bottom: 0;
}

.about-v199-focus {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  padding: 34px 38px;
  background: #292929;
  color: #fff;
  border-radius: 18px;
}

.about-v199-focus-label {
  border-right: 1px solid rgba(255,255,255,.14);
  padding-right: 26px;
}

.about-v199-focus h2 {
  color: #fff;
}

.about-v199-focus p {
  color: rgba(255,255,255,.76);
  max-width: 860px;
}

.about-v199-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.about-v199-section {
  padding: 34px 36px;
}

.about-v199-section + .about-v199-section {
  border-left: 1px solid #e5ebf0;
}

.about-v199-mission {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 34px 38px;
  border-top: 4px solid #00abff;
}

.about-v199-mission h2 {
  margin-bottom: 0;
}

.about-v199 .eyebrow {
  font-size: 12px;
}

@media (max-width: 900px) {
  .about-v199-story,
  .about-v199-focus,
  .about-v199-mission {
    grid-template-columns: 1fr;
  }

  .about-v199-side-title,
  .about-v199-focus-label {
    border-right: 0;
    border-bottom: 1px solid #e5ebf0;
    padding-right: 0;
    padding-bottom: 18px;
  }

  .about-v199-focus-label {
    border-bottom-color: rgba(255,255,255,.14);
  }

  .about-v199-two-col {
    grid-template-columns: 1fr;
  }

  .about-v199-section + .about-v199-section {
    border-left: 0;
    border-top: 1px solid #e5ebf0;
  }
}

@media (max-width: 680px) {
  .about-v199 {
    padding: 26px 0 34px;
  }

  .about-v199-hero,
  .about-v199-story,
  .about-v199-focus,
  .about-v199-section,
  .about-v199-mission {
    padding: 26px 24px;
  }
}


/* v1.1.00 - Chi siamo, layout completamente nuovo */
.about-v1100 {
  padding: 38px 0 46px;
}

.about-v1100 .netys-container {
  display: grid;
  gap: 22px;
}

.about-v1100-hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
}

.about-v1100-hero-main,
.about-v1100-hero-side,
.about-v1100-timeline,
.about-v1100-principles,
.about-v1100-services,
.about-v1100-mission {
  border-radius: 18px;
}

.about-v1100-hero-main {
  padding: 40px 42px;
  background: #fff;
  border: 1px solid #e5ebf0;
}

.about-v1100-hero-main h1 {
  margin: 10px 0 14px;
  color: #292929;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.about-v1100-hero-main p {
  margin: 0;
  max-width: 820px;
  color: #66717b;
  font-size: 16px;
  line-height: 1.7;
}

.about-v1100-hero-side {
  padding: 34px 32px;
  background: #292929;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-v1100-hero-side h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.about-v1100-hero-side p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14.5px;
  line-height: 1.7;
}

.about-v1100-timeline {
  background: #fff;
  border: 1px solid #e5ebf0;
  overflow: hidden;
}

.about-v1100-timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 30px 34px;
}

.about-v1100-timeline-item + .about-v1100-timeline-item {
  border-top: 1px solid #e5ebf0;
}

.about-v1100-year {
  color: #00abff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.about-v1100-timeline-content h2,
.about-v1100-principle h2,
.about-v1100-focus h2,
.about-v1100-services h2,
.about-v1100-mission h2 {
  margin: 8px 0 12px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.about-v1100-timeline-content p,
.about-v1100-principle p,
.about-v1100-focus p,
.about-v1100-services p,
.about-v1100-mission p {
  margin: 0;
  color: #66717b;
  font-size: 14.5px;
  line-height: 1.72;
}

.about-v1100-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #e5ebf0;
  overflow: hidden;
}

.about-v1100-principle {
  padding: 28px 30px;
}

.about-v1100-principle + .about-v1100-principle {
  border-left: 1px solid #e5ebf0;
}

.about-v1100-index {
  display: block;
  color: #00abff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.about-v1100-focus {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  padding: 34px 38px;
  background: #292929;
  color: #fff;
  border-radius: 18px;
}

.about-v1100-focus h2 {
  color: #fff;
  margin-bottom: 0;
}

.about-v1100-focus-text {
  display: grid;
  gap: 12px;
}

.about-v1100-focus p {
  color: rgba(255,255,255,.76);
}

.about-v1100-services {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid #e5ebf0;
}

.about-v1100-services h2 {
  margin-bottom: 0;
}

.about-v1100-mission {
  padding: 34px 38px;
  background: linear-gradient(135deg, #f4f9fc 0%, #ffffff 100%);
  border: 1px solid #dcecf6;
  border-left: 5px solid #00abff;
}

.about-v1100-mission p {
  max-width: 900px;
}

.about-v1100 .eyebrow {
  font-size: 12px;
}

@media (max-width: 900px) {
  .about-v1100-hero,
  .about-v1100-focus,
  .about-v1100-services {
    grid-template-columns: 1fr;
  }

  .about-v1100-principles {
    grid-template-columns: 1fr;
  }

  .about-v1100-principle + .about-v1100-principle {
    border-left: 0;
    border-top: 1px solid #e5ebf0;
  }
}

@media (max-width: 680px) {
  .about-v1100 {
    padding: 26px 0 34px;
  }

  .about-v1100-hero-main,
  .about-v1100-hero-side,
  .about-v1100-focus,
  .about-v1100-services,
  .about-v1100-mission {
    padding: 26px 24px;
  }

  .about-v1100-timeline-item {
    grid-template-columns: 1fr;
    padding: 26px 24px;
  }

  .about-v1100-principle {
    padding: 24px;
  }
}


/* v1.1.01 - timeline Chi siamo in 2 riquadri affiancati */
.about-v1100-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: transparent;
  border: 0;
  overflow: visible;
}

.about-v1100-timeline-item {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 30px 32px;
  background: #fff;
  border: 1px solid #e5ebf0;
  border-radius: 18px;
}

.about-v1100-timeline-item + .about-v1100-timeline-item {
  border-top: 1px solid #e5ebf0;
}

.about-v1100-year {
  font-size: 26px;
}

@media (max-width: 900px) {
  .about-v1100-timeline {
    grid-template-columns: 1fr;
  }
}


/* v1.1.02 - ultimi due riquadri affiancati + rimozione date timeline */
.about-v1100-timeline-item {
  grid-template-columns: 1fr;
  gap: 0;
}

.about-v1100-final-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-v1100-final-grid .about-v1100-services,
.about-v1100-final-grid .about-v1100-mission {
  height: 100%;
}

.about-v1100-services {
  align-items: start;
}

.about-v1100-mission {
  border-left-width: 1px;
}

@media (max-width: 900px) {
  .about-v1100-final-grid {
    grid-template-columns: 1fr;
  }
}


/* v1.1.03 - rimuove la sfumatura azzurra dal riquadro "La nostra missione" */
.about-v1100-mission {
  background: #fff;
  border: 1px solid #e5ebf0;
}


/* v1.1.04 - etichette pagina Contatti a 12px */
.contact-label {
  font-size: 12px;
}


/* v1.1.05 - sede legale affiancata alla sede operativa */
.address-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.contact-address-half {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-address-legal {
  border-left: 1px solid #e5ebf0;
}

@media (max-width: 680px) {
  .address-box {
    grid-template-columns: 1fr;
  }

  .contact-address-legal {
    border-left: 0;
    border-top: 1px solid #e5ebf0;
  }
}


/* v1.1.07 - freccia submenu realizzata via CSS per evitare caratteri corrotti */
.main-navigation .menu-item-has-children > a::after,
.site-header .menu-item-has-children > a::after,
.primary-menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  vertical-align: middle;
}


/* v1.1.08 - aggiornamenti hero pagina Chi siamo */
.about-v1100-hero-main h1 {
  font-size: 57px;
}

/* Più spazio al riquadro "Il nostro approccio" per mantenere il titolo su una riga a 24px */
.about-v1100-hero {
  grid-template-columns: minmax(0, .85fr) minmax(540px, 1.15fr);
}

.about-v1100-hero-side h2 {
  font-size: 24px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .about-v1100-hero {
    grid-template-columns: 1fr;
  }

  .about-v1100-hero-side h2 {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .about-v1100-hero-main h1 {
    font-size: clamp(38px, 10vw, 57px);
  }
}


/* v1.1.09 - riequilibrio larghezze hero Chi siamo */
.about-v1100-hero {
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
}

@media (max-width: 1100px) {
  .about-v1100-hero {
    grid-template-columns: 1fr;
  }
}


/* v1.1.10 - ulteriore riduzione larghezza riquadro "Il nostro approccio" */
.about-v1100-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(470px, .88fr);
}

@media (max-width: 1100px) {
  .about-v1100-hero {
    grid-template-columns: 1fr;
  }
}


/* v1.1.11 - larghezza hero Chi siamo regolata come da verifica in Ispeziona */
.about-v1100-hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(470px, .88fr);
}

@media (max-width: 1100px) {
  .about-v1100-hero {
    grid-template-columns: 1fr;
  }
}


/* v1.1.12 - titolo Chi siamo a 58px */
.about-v1100-hero-main h1 {
  font-size: 58px;
}

@media (max-width: 700px) {
  .about-v1100-hero-main h1 {
    font-size: clamp(38px, 10vw, 58px);
  }
}


/* v1.1.13 - link Gruppo Vicsam nella pagina Chi siamo */
.about-v1100-timeline-item a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-v1100-timeline-item a:hover {
  color: #00abff;
}


/* v1.1.14 - numeri 01/02/03 affiancati ai titoli nei 3 principi */
.about-v1100-principle-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.about-v1100-principle .about-v1100-index {
  display: inline-block;
  flex: 0 0 auto;
}

.about-v1100-principle h2 {
  margin: 0;
}


/* v1.1.15 - link Gruppo Vicsam senza sottolineatura */
.about-v1100-timeline-item a {
  text-decoration: none;
}


/* v1.1.16 - pagina Contatti: rimossa la sede legale dal contenuto principale */
.address-box {
  display: block;
  padding: 22px 24px;
}


/* v1.1.17 - riordino visivo dei riquadri Contatti */
.address-box,
.phone-box,
.email-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-card-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef8ff;
  border: 1px solid #d6ecfa;
  color: #00abff;
}

.contact-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-heading .contact-label {
  margin: 0;
}

.contact-card-copy h2 {
  margin: 0 0 6px;
}

.contact-card-copy p {
  margin: 0 0 14px;
}

.contact-card-copy .contact-mini-action {
  margin-top: 6px;
}

.contact-directions-action {
  display: inline-flex;
  width: fit-content;
}


/* v1.1.18 - pulsanti Contatti con icone, coerenti con l'anteprima */
.contact-mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
}

.contact-action-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 16px;
}


/* v1.1.19 - armonizzazione riquadri Contatti */
.address-box,
.phone-box,
.email-box {
  justify-content: flex-start;
  padding: 24px 24px 22px;
}

.contact-card-heading {
  gap: 10px;
  margin-bottom: 12px;
}

.contact-card-icon {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.contact-card-icon svg {
  width: 16px;
  height: 16px;
}

.contact-card-heading .contact-label {
  font-size: 12px;
  line-height: 1.2;
}

.contact-card-copy h2 {
  margin: 0 0 5px;
  font-size: 26px;
  line-height: 1.15;
}

.contact-card-copy p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-card-copy .contact-mini-action {
  margin-top: 4px;
}

.contact-mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid #d9e5ec;
  border-radius: 9px;
  background: #fff;
  color: #008fd6;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
}

.contact-mini-action:hover {
  background: #f7fbfd;
  border-color: #c7dce8;
  color: #008fd6;
}

/* Le icone restano solo accanto a Sede operativa, Telefono ed Email */
.contact-action-icon {
  display: none;
}


/* v1.1.20 - restyling riquadri contatti */
.address-box,
.phone-box,
.email-box {
  padding: 24px 24px 24px;
}

.contact-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f5fbff;
  border: 1px solid #d7eaf6;
  color: #00abff;
}

.contact-card-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.address-inline {
  align-items: center;
}

.contact-card-copy {
  min-width: 0;
}

.contact-card-copy h2 {
  margin: 0 0 6px;
  color: #292929;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.phone-box .contact-card-copy h2,
.email-box .contact-card-copy h2 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.2;
}

.contact-card-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.contact-card-copy h2 a:hover {
  color: #00abff;
}

.contact-card-copy p {
  margin: 0;
  color: #66717b;
  font-size: 14px;
  line-height: 1.5;
}

.contact-card-action-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.contact-mini-action {
  margin-top: 0;
  min-width: 108px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #d9e5ec;
  color: #008fd6 !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
}

.contact-mini-action:hover {
  background: #f7fbfd;
  border-color: #c7dce8;
  color: #292929 !important;
}

.address-box {
  min-height: 0;
}

.contact-bottom-pair .contact-box {
  min-height: 132px;
}

@media (max-width: 760px) {
  .contact-card-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card-action-wrap {
    justify-content: flex-start;
  }
}


/* v1.1.21 - pannello contatti unificato */
.contact-unified-panel {
  grid-area: address;
  padding: 24px 26px;
}

.contact-unified-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 0;
  border: 1px solid #e5ebf0;
  border-radius: 16px;
  overflow: hidden;
  background: #fbfcfd;
}

.contact-unified-item {
  padding: 22px 24px;
  background: #fbfcfd;
  min-width: 0;
}

.contact-unified-item + .contact-unified-item {
  border-left: 1px solid #e5ebf0;
}

.contact-unified-item-wide {
  background: #fff;
}

.contact-unified-item .contact-card-heading {
  margin-bottom: 14px;
}

.contact-unified-item .contact-card-copy h2 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
}

.contact-unified-item-wide .contact-card-copy h2 {
  font-size: 22px;
}

.contact-unified-item .contact-card-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.contact-unified-item .contact-card-copy h2 a {
  color: #292929;
  text-decoration: none;
}

.contact-unified-item .contact-card-copy h2 a:hover {
  color: #00abff;
}

/* nasconde vecchie griglie non più usate */
.contact-bottom-pair,
.address-box,
.phone-box,
.email-box {
  display: none;
}

@media (max-width: 1040px) {
  .contact-aligned-grid {
    grid-template-areas:
      "hero"
      "address"
      "map"
      "ticket";
  }

  .contact-unified-grid {
    grid-template-columns: 1fr;
  }

  .contact-unified-item + .contact-unified-item {
    border-left: 0;
    border-top: 1px solid #e5ebf0;
  }
}

@media (max-width: 680px) {
  .contact-unified-panel {
    padding: 20px;
  }

  .contact-unified-item {
    padding: 18px 18px;
  }

  .contact-unified-item .contact-card-copy h2,
  .contact-unified-item-wide .contact-card-copy h2 {
    font-size: 19px;
  }
}


/* v1.1.22 - contatti stile più tecnico / corporate */
.contact-unified-panel {
  grid-area: address;
  padding: 26px 28px 28px;
  border: 1px solid #dfe7ec;
  box-shadow: 0 1px 0 rgba(41,41,41,.02);
}

.contact-panel-intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-panel-intro .eyebrow {
  margin: 0;
}

.contact-panel-intro h2 {
  margin: 0;
  color: #292929;
  font-size: 24px;
  line-height: 1.15;
}

.contact-unified-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 0;
  border: 1px solid #e3ebf0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcfd 0%, #f7fafc 100%);
}

.contact-unified-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 154px;
  padding: 22px 24px;
  background: transparent;
}

.contact-unified-item + .contact-unified-item {
  border-left: 1px solid #e3ebf0;
}

.contact-unified-item-wide {
  background: rgba(255,255,255,.55);
}

.contact-unified-item .contact-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-unified-item .contact-card-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: #f4fbff;
  border: 1px solid #d6e9f5;
  color: #00abff;
}

.contact-unified-item .contact-card-icon svg {
  width: 16px;
  height: 16px;
}

.contact-unified-item .contact-label {
  color: #00abff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-unified-item .contact-card-copy h2 {
  margin: 0 0 6px;
  color: #292929;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-unified-item-wide .contact-card-copy h2 {
  font-size: 24px;
}

.contact-unified-item .contact-card-copy p {
  margin: 0;
  color: #66717b;
  font-size: 14.5px;
  line-height: 1.5;
}

.contact-unified-item .contact-card-copy h2 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.contact-unified-item .contact-card-copy h2 a:hover {
  color: #00abff;
  border-color: rgba(0,171,255,.35);
}

@media (max-width: 1040px) {
  .contact-unified-panel {
    padding: 24px;
  }

  .contact-unified-grid {
    grid-template-columns: 1fr;
  }

  .contact-unified-item {
    min-height: 0;
  }

  .contact-unified-item + .contact-unified-item {
    border-left: 0;
    border-top: 1px solid #e3ebf0;
  }
}

@media (max-width: 680px) {
  .contact-unified-panel {
    padding: 20px;
  }

  .contact-panel-intro h2 {
    font-size: 22px;
  }

  .contact-unified-item {
    padding: 18px;
  }

  .contact-unified-item .contact-card-copy h2,
  .contact-unified-item-wide .contact-card-copy h2 {
    font-size: 20px;
  }
}


/* v1.1.23 - variante premium aziendale pannello contatti */
.contact-unified-panel {
  position: relative;
  padding: 28px 30px 30px;
  background: #fff;
  border: 1px solid #dde5ea;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(41,41,41,.05);
  overflow: hidden;
}

.contact-unified-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #00abff;
}

.contact-panel-intro {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-left: 4px;
}

.contact-panel-intro .eyebrow {
  margin: 0;
}

.contact-panel-intro h2 {
  margin: 0;
  color: #292929;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-unified-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  gap: 0;
  border: 1px solid #e2e9ee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.contact-unified-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 160px;
  padding: 24px 26px;
  background: #fff;
}

.contact-unified-item-wide {
  background: #f9fbfc;
}

.contact-unified-item + .contact-unified-item {
  border-left: 1px solid #e4ebef;
}

.contact-unified-item .contact-card-heading {
  margin-bottom: 16px;
}

.contact-unified-item .contact-card-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d8e7f0;
  color: #00abff;
  box-shadow: 0 4px 12px rgba(0,171,255,.08);
}

.contact-unified-item .contact-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #00abff;
}

.contact-unified-item .contact-card-copy h2 {
  margin: 0 0 6px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-unified-item-wide .contact-card-copy h2 {
  font-size: 25px;
}

.contact-unified-item .contact-card-copy p {
  margin: 0;
  color: #6c7780;
  font-size: 14.5px;
  line-height: 1.5;
}

.contact-unified-item .contact-card-copy h2 a {
  color: #292929;
  text-decoration: none;
}

.contact-unified-item .contact-card-copy h2 a:hover {
  color: #00abff;
}

.contact-unified-item::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: background .2s ease;
}

.contact-unified-item:hover::after {
  background: #00abff;
}

@media (max-width: 1040px) {
  .contact-panel-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .contact-unified-grid {
    grid-template-columns: 1fr;
  }

  .contact-unified-item {
    min-height: 0;
  }

  .contact-unified-item + .contact-unified-item {
    border-left: 0;
    border-top: 1px solid #e4ebef;
  }
}

@media (max-width: 680px) {
  .contact-unified-panel {
    padding: 22px 20px 22px 24px;
  }

  .contact-unified-item {
    padding: 20px;
  }

  .contact-unified-item .contact-card-copy h2,
  .contact-unified-item-wide .contact-card-copy h2 {
    font-size: 20px;
  }
}


/* v1.1.24 - pagina contatti stravolta */
.contact-page-v4 {
  background: #f1f1f1;
}

.contact-page-v4 .netys-container {
  display: grid;
  gap: 26px;
}

.contact-v4-hero,
.contact-v4-map-card,
.contact-v4-info-card,
.contact-v4-ticket-panel {
  border-radius: 20px;
}

.contact-v4-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: 22px;
  align-items: stretch;
}

.contact-v4-hero-copy,
.contact-v4-hero-panel {
  background: #ffffff;
  border: 1px solid #dfe7ec;
  border-radius: 20px;
  padding: 34px 34px 32px;
}

.contact-v4-hero-copy h1 {
  margin: 10px 0 16px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #292929;
}

.contact-v4-hero-copy p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: #55606b;
}

.contact-v4-hero-panel {
  background: #292929;
  border-color: #292929;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-v4-hero-panel .eyebrow {
  margin-bottom: 16px;
}

.contact-v4-hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-v4-hero-panel li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.contact-v4-hero-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00abff;
}

.contact-v4-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .85fr);
  gap: 22px;
  align-items: stretch;
}

.contact-v4-map-card {
  background: #ffffff;
  border: 1px solid #dfe7ec;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.contact-v4-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.contact-v4-card-head h2 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.2;
  color: #292929;
}

.contact-v4-text-link {
  align-self: center;
  color: #00abff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.contact-v4-text-link:hover {
  text-decoration: underline;
}

.contact-v4-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 470px;
  background: #eaeaea;
}

.contact-v4-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
}

.contact-v4-info-stack {
  display: grid;
  gap: 16px;
}

.contact-v4-info-card {
  background: #ffffff;
  border: 1px solid #dfe7ec;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 145px;
}

.contact-v4-info-card-accent {
  border-left: 5px solid #00abff;
  padding-left: 20px;
}

.contact-v4-info-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-v4-info-card .contact-card-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: #f4fbff;
  border: 1px solid #d6e9f5;
  color: #00abff;
}

.contact-v4-info-card .contact-card-icon svg {
  width: 16px;
  height: 16px;
}

.contact-v4-info-card .contact-label {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #00abff;
}

.contact-v4-info-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #292929;
}

.contact-v4-info-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #66717b;
}

.contact-v4-info-card a {
  color: inherit;
  text-decoration: none;
}

.contact-v4-info-card a:hover {
  color: #00abff;
}

.contact-v4-ticket-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #292929;
  color: #ffffff;
  padding: 28px 30px;
}

.contact-v4-ticket-copy .eyebrow {
  margin-bottom: 10px;
}

.contact-v4-ticket-copy h2 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.contact-v4-ticket-copy p {
  margin: 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}

.contact-v4-ticket-panel .contact-ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #00abff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.contact-v4-ticket-panel .contact-ticket-button:hover {
  transform: translateY(-1px);
  background: #0097e1;
}

@media (max-width: 1180px) {
  .contact-v4-hero,
  .contact-v4-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-v4-map-wrap,
  .contact-v4-map-wrap iframe {
    min-height: 400px;
  }
}

@media (max-width: 860px) {
  .contact-v4-hero-copy h1 {
    font-size: 46px;
  }

  .contact-v4-ticket-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-v4-ticket-copy h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .contact-v4-hero-copy,
  .contact-v4-hero-panel,
  .contact-v4-map-card,
  .contact-v4-info-card,
  .contact-v4-ticket-panel {
    padding: 22px 20px;
  }

  .contact-v4-hero-copy h1 {
    font-size: 38px;
  }

  .contact-v4-hero-copy p {
    font-size: 16px;
  }

  .contact-v4-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-v4-map-wrap,
  .contact-v4-map-wrap iframe {
    min-height: 320px;
  }

  .contact-v4-info-card h3 {
    font-size: 19px;
  }

  .contact-v4-ticket-copy h2 {
    font-size: 26px;
  }
}


/* v1.1.25 - pagina contatti completamente ridisegnata */
.contact-page-v5 {
  background: #f1f1f1;
}

.contact-page-v5 .netys-container {
  display: grid;
  gap: 24px;
}

.contact-v5-hero,
.contact-v5-card,
.contact-v5-map-card,
.contact-v5-ticket-card {
  border-radius: 18px;
}

.contact-v5-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 22px;
}

.contact-v5-hero-main,
.contact-v5-hero-side {
  border: 1px solid #dfe7ec;
  background: #fff;
  padding: 32px 34px;
}

.contact-v5-hero-main h1 {
  margin: 10px 0 14px;
  color: #292929;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-v5-hero-main p {
  margin: 0;
  max-width: 760px;
  color: #5f6a75;
  font-size: 17px;
  line-height: 1.75;
}

.contact-v5-hero-side {
  background: #292929;
  border-color: #292929;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-v5-hero-side p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.7;
}

.contact-v5-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-v5-card {
  background: #fff;
  border: 1px solid #dfe7ec;
  padding: 24px 24px 22px;
  min-width: 0;
}

.contact-v5-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-v5-card .contact-card-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #f4fbff;
  border: 1px solid #d6e9f5;
  color: #00abff;
}

.contact-v5-card .contact-card-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-v5-card .contact-label {
  color: #00abff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-v5-card h2 {
  margin: 0 0 6px;
  color: #292929;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.contact-v5-card p {
  margin: 0;
  color: #66717b;
  font-size: 14.5px;
  line-height: 1.55;
}

.contact-v5-card a {
  color: inherit;
  text-decoration: none;
}

.contact-v5-card a:hover {
  color: #00abff;
}

.contact-v5-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 22px;
}

.contact-v5-map-card {
  background: #fff;
  border: 1px solid #dfe7ec;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-v5-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.contact-v5-section-head h2 {
  margin: 8px 0 0;
  color: #292929;
  font-size: 24px;
  line-height: 1.2;
}

.contact-v5-map-link {
  align-self: center;
  color: #00abff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.contact-v5-map-link:hover {
  text-decoration: underline;
}

.contact-v5-map-wrap {
  overflow: hidden;
  border-radius: 14px;
  min-height: 430px;
  background: #ececec;
}

.contact-v5-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.contact-v5-ticket-card {
  background: linear-gradient(180deg, #292929 0%, #202020 100%);
  border: 1px solid #292929;
  padding: 28px 28px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.contact-v5-ticket-card h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-v5-ticket-card p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.7;
}

.contact-v5-ticket-card .contact-ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 160px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: #00abff;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.contact-v5-ticket-card .contact-ticket-button:hover {
  background: #0099e5;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .contact-v5-hero,
  .contact-v5-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .contact-v5-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-v5-hero-main h1 {
    font-size: 42px;
  }

  .contact-v5-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-v5-map-wrap,
  .contact-v5-map-wrap iframe {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .contact-v5-hero-main,
  .contact-v5-hero-side,
  .contact-v5-card,
  .contact-v5-map-card,
  .contact-v5-ticket-card {
    padding: 22px 20px;
  }

  .contact-v5-card h2,
  .contact-v5-section-head h2 {
    font-size: 22px;
  }

  .contact-v5-ticket-card h2 {
    font-size: 28px;
  }
}


/* v1.1.28 - contatti: colonne indipendenti, mappa sopra e ticket sotto a destra */
.contact-page-v6 {
  background: #f1f1f1;
}

.contact-aligned-grid-v6 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: start;
}

.contact-left-stack-v6,
.contact-right-stack-v6 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.contact-right-stack-v6 {
  height: 100%;
}

.contact-map-side {
  min-height: 420px;
}

.contact-map-side iframe {
  min-height: 420px;
}

.contact-cards-grid-v6 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card-v6 {
  background: #fff;
  border: 1px solid #dfe7ec;
  border-radius: 18px;
  padding: 22px 24px;
  min-width: 0;
}

.contact-card-v6 .contact-card-heading {
  margin-bottom: 14px;
}

.contact-card-v6 .contact-card-copy h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.contact-card-v6 .contact-card-copy p {
  margin: 0;
  color: #66717b;
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-card-v6 .contact-card-copy h2 a {
  color: #292929;
  text-decoration: none;
}

.contact-card-v6 .contact-card-copy h2 a:hover {
  color: #00abff;
}

.contact-card-v6-address {
  background: #fbfcfd;
}

.contact-ticket-band-compact {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .contact-aligned-grid-v6 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1040px) {
  .contact-aligned-grid-v6 {
    grid-template-columns: 1fr;
  }

  .contact-map-side,
  .contact-map-side iframe {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .contact-cards-grid-v6 {
    grid-template-columns: 1fr;
  }

  .contact-card-v6 {
    padding: 20px 18px;
  }

  .contact-card-v6 .contact-card-copy h2 {
    font-size: 20px;
  }
}


/* v1.1.29 - riequilibrio colonne pagina Contatti */
.contact-aligned-grid-v6 {
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 20px;
}

.contact-right-stack-v6 {
  width: 100%;
}

.contact-right-stack-v6 .contact-map-side,
.contact-right-stack-v6 .contact-ticket-band-compact {
  width: 100%;
  box-sizing: border-box;
}

.contact-right-stack-v6 .contact-map-side {
  min-height: 420px;
  height: 420px;
}

.contact-right-stack-v6 .contact-map-side iframe {
  min-height: 420px;
  height: 100%;
}

@media (max-width: 1180px) {
  .contact-aligned-grid-v6 {
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  }
}

@media (max-width: 1040px) {
  .contact-aligned-grid-v6 {
    grid-template-columns: 1fr;
  }

  .contact-right-stack-v6 .contact-map-side,
  .contact-right-stack-v6 .contact-map-side iframe {
    min-height: 360px;
    height: 360px;
  }
}


/* v1.1.30 - contatti: testi aggiornati e mappa leggermente più alta */
.contact-right-stack-v6 .contact-map-side {
  min-height: 445px;
  height: 445px;
}

.contact-right-stack-v6 .contact-map-side iframe {
  min-height: 445px;
  height: 100%;
}

.contact-card-v6 .contact-card-copy p {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1040px) {
  .contact-right-stack-v6 .contact-map-side,
  .contact-right-stack-v6 .contact-map-side iframe {
    min-height: 360px;
    height: 360px;
  }
}

/* v1.1.31 - contatti: allineamento finale colonna destra */
.contact-aligned-grid-v6 {
  align-items: stretch;
}

.contact-right-stack-v6 {
  display: grid;
  grid-template-rows: 445px 1fr;
  gap: 20px;
  align-self: stretch;
}

.contact-right-stack-v6 .contact-map-side {
  min-height: 445px;
  height: 100%;
}

.contact-right-stack-v6 .contact-map-side iframe {
  min-height: 445px;
  height: 100%;
}

.contact-right-stack-v6 .contact-ticket-band-compact {
  min-height: 0;
  height: 100%;
  align-self: stretch;
}

@media (max-width: 1040px) {
  .contact-aligned-grid-v6 {
    align-items: start;
  }

  .contact-right-stack-v6 {
    display: flex;
    grid-template-rows: none;
    gap: 20px;
  }

  .contact-right-stack-v6 .contact-ticket-band-compact {
    height: auto;
  }
}


/* v1.1.32 - ticket con altezza naturale */
.contact-right-stack-v6 {
  grid-template-rows: 445px auto;
}

.contact-right-stack-v6 .contact-ticket-band-compact {
  height: auto;
  min-height: 0;
  align-self: start;
}


/* v1.1.33 - altezza reale box ticket allineata ai riquadri bianchi */
.contact-right-stack-v6 {
  grid-template-rows: 445px auto;
}

.contact-right-stack-v6 .contact-ticket-band-compact {
  box-sizing: border-box;
  height: 148px;
  min-height: 148px;
  align-self: start;
}


/* v1.1.34 - correzione pagina Contatti su mobile */
@media (max-width: 680px) {
  .contact-right-stack-v6 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: auto;
  }

  .contact-right-stack-v6 .contact-map-side {
    min-height: 320px;
    height: 320px;
  }

  .contact-right-stack-v6 .contact-map-side iframe {
    min-height: 320px;
    height: 100%;
  }

  .contact-right-stack-v6 .contact-ticket-band-compact {
    height: auto;
    min-height: 0;
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
  }

  .contact-ticket-band-compact .contact-ticket-band-copy {
    width: 100%;
  }

  .contact-ticket-band-compact .contact-ticket-band-copy h2 {
    font-size: 26px;
  }

  .contact-ticket-band-compact .contact-ticket-band-action {
    width: 100%;
  }

  .contact-ticket-band-compact .contact-ticket-button {
    width: auto;
    min-width: 142px;
  }
}


/* v1.1.35 - contatti: mappa leggermente più alta e allineamento desktop */
@media (min-width: 1041px) {
  .contact-right-stack-v6 {
    grid-template-rows: 453px auto;
  }

  .contact-right-stack-v6 .contact-map-side {
    min-height: 453px;
    height: 453px;
  }

  .contact-right-stack-v6 .contact-map-side iframe {
    min-height: 453px;
    height: 100%;
  }
}


/* v1.1.39 - quattro riquadri mantenendo la griglia originale e gli allineamenti */
.contact-info-top-v39 {
  grid-area: address;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-bottom-pair-v39 {
  grid-area: contacts;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card-v39 {
  box-sizing: border-box;
  min-width: 0;
  min-height: 148px;
  height: 100%;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #dfe7ec;
  border-radius: 18px;
}

.contact-card-v39-address {
  background: #fbfcfd;
}

.contact-card-v39 .contact-card-heading {
  margin-bottom: 14px;
}

.contact-card-v39 .contact-card-copy h2 {
  margin: 0 0 8px;
  color: #292929;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.contact-card-v39 .contact-card-copy p {
  margin: 0;
  color: #66717b;
  font-size: 14px;
  line-height: 1.55;
}

.contact-card-v39 .contact-card-copy h2 a {
  color: #292929;
  text-decoration: none;
}

.contact-card-v39 .contact-card-copy h2 a:hover {
  color: #00abff;
}

@media (max-width: 1040px) {
  .contact-aligned-grid {
    grid-template-areas:
      "hero"
      "address"
      "contacts"
      "map"
      "ticket";
  }
}

@media (max-width: 680px) {
  .contact-info-top-v39,
  .contact-bottom-pair-v39 {
    grid-template-columns: 1fr;
  }

  .contact-card-v39 {
    min-height: 0;
    padding: 20px 18px;
  }

  .contact-card-v39 .contact-card-copy h2 {
    font-size: 20px;
  }
}


/* v1.1.40 - menu mobile blu e footer centrato */
@media (max-width: 980px) {
  .mobile-toggle span,
  .mobile-toggle span::before,
  .mobile-toggle span::after {
    background: #00abff;
  }
}

@media (max-width: 680px) {
  .footer-inner {
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 20px 0 22px;
    text-align: center;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
  }

  .footer-partner {
    width: 100%;
    justify-content: center;
  }

  .footer-partner a {
    display: inline-flex;
    justify-content: center;
  }

  .footer-partner img,
  .site-footer img[src*="vicsamgroup-white.svg"] {
    margin: 0 auto;
  }
}


/* v1.1.41 - centratura precisa logo Vicsam nel footer mobile */
@media (max-width: 680px) {
  .footer-partner {
    gap: 0;
  }

  .footer-partner a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-partner img,
  .site-footer img[src*="vicsamgroup-white.svg"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}


/* v1.1.43 - titolo pagina Chi siamo ridotto a 52px */
.about-v1100-hero-main h1 {
  font-size: 52px;
}

@media (max-width: 700px) {
  .about-v1100-hero-main h1 {
    font-size: clamp(38px, 10vw, 52px);
  }
}


/* v1.1.46 - larghezza dropdown menu */
.main-navigation .sub-menu,
.site-header .sub-menu,
.primary-menu .sub-menu {
  min-width: 164px;
  width: 164px;
}


/* v1.1.47 - font testo footer */
.footer-copy {
  margin: 0;
  color: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 100;
  line-height: 1.25;
}

.footer-copy p {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
