:root {
  --bg: #f6f8fc;
  --ink: #111827;
  --muted: #536071;
  --line: #dce3ed;
  --panel: #ffffff;
  --panel-strong: #eef3f8;
  --red: #ff2936;
  --red-dark: #b91324;
  --cyan: #36d5e8;
  --green: #9ce36a;
  --steel: #151d2b;
  --paper: #f7f9fc;
  --paper-ink: #111827;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 41, 54, 0.11), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(54, 213, 232, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef4f8 42%, #f7f9fc 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 227, 237, 0.82);
  backdrop-filter: blur(16px);
}
/* Container della griglia clienti */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Box contenitore del singolo logo */
.client-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Immagine del logo */
.client-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Effetto professionale: grigio di default, a colori su hover */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

/* Effetti al passaggio del mouse */
.client-box:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: var(--shadow);
}

    .client-box:hover .client-img {
        filter: grayscale(0%);
        opacity: 1;
    }

/* Responsive: 2 colonne su schermi piccoli */
@media (max-width: 680px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-box {
        height: 100px;
        padding: 15px;
    }
}
.brand img,
.site-footer img {
  width: 170px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 64px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand img {
  width: 152px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--red-dark);
}

.webmail-link,
.lang-switch,
.button {
  border-radius: 6px;
}

.webmail-link {
  padding: 9px 13px !important;
  color: #fff !important;
  background: var(--paper-ink);
}

.lang-switch,
.menu-toggle {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.lang-switch {
  min-width: 46px;
  padding: 9px 12px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: 640px;
  padding: clamp(46px, 7vw, 86px) clamp(20px, 6vw, 80px) 54px;
  background:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 730px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  font-weight: 850;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.button.secondary {
  color: var(--paper-ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-visual {
  min-height: 460px;
  position: relative;
}

.graph-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 41, 54, 0.15), transparent 24%),
    radial-gradient(circle at 72% 78%, rgba(54, 213, 232, 0.18), transparent 30%),
    linear-gradient(rgba(17, 24, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff, #edf4fa 58%, #dceff4);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  border: 1px solid #c8d6e4;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.graph-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 58%);
  transform: translateX(-80%);
  animation: scan 6s ease-in-out infinite;
}

.graph-map {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  z-index: 1;
}

.graph-links path {
  fill: none;
  stroke: url(#linkGradient);
  stroke-dasharray: 10 14;
  stroke-linecap: round;
  stroke-width: 2.4;
  opacity: 0.76;
  animation: dashFlow 11s linear infinite;
}

.graph-links path:nth-child(2n) {
  animation-duration: 14s;
  opacity: 0.52;
}

.graph-pulses circle {
  fill: var(--red);
  filter: drop-shadow(0 0 8px rgba(54, 213, 232, 0.85));
}

.graph-nodes circle {
  fill: #fff;
  stroke: #172235;
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(54, 213, 232, 0.45));
  transform-origin: center;
  animation: nodePulse 3.8s ease-in-out infinite;
}

.graph-nodes circle:nth-child(2n) {
  stroke: #36d5e8;
  animation-delay: 0.6s;
}

.graph-nodes circle:nth-child(3n) {
  stroke: #ff4450;
  animation-delay: 1.1s;
}

.graph-nodes .core {
  fill: #ff2936;
  stroke: #fff;
}

.panel-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(320px, calc(100% - 56px));
  padding: 22px;
  color: var(--paper-ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dce3ed;
  border-radius: 12px;
  z-index: 3;
}

.home-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: center;
  margin: 0 clamp(20px, 6vw, 80px) 42px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--paper-ink);
  background:
    linear-gradient(135deg, rgba(255, 41, 54, 0.08), rgba(54, 213, 232, 0.12)),
    #ffffff;
  border: 1px solid #dce3ed;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.home-highlight h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.home-highlight p:last-child {
  margin-bottom: 0;
  color: #536071;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.highlight-tags span {
  padding: 9px 12px;
  color: var(--paper-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dce3ed;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.highlight-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.highlight-work-grid article {
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #dce3ed;
  border-radius: 12px;
}

.highlight-work-grid strong,
.highlight-work-grid span {
  display: block;
}

.highlight-work-grid strong {
  margin-bottom: 5px;
  color: var(--paper-ink);
  font-size: 0.94rem;
}

.highlight-work-grid span {
  color: #536071;
  font-size: 0.9rem;
  line-height: 1.45;
}

.highlight-media {
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}

.highlight-media img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 12px;
}

.panel-card strong,
.panel-card span {
  display: block;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.proof-strip div {
  padding: 24px clamp(18px, 3vw, 36px);
  background: #fff;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--red);
  font-size: 1.55rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(20px, 6vw, 80px);
}

.split,
#services,
#projects,
.partners,
.support-tools,
.funding {
  color: var(--paper-ink);
}

.split .section-kicker,
#services .section-kicker,
#projects .section-kicker,
.partners .section-kicker,
.support-tools .section-kicker,
.funding .section-kicker {
  color: var(--red-dark);
}

.split,
.partners,
.contact-section,
.funding {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.flow {
  color: #536071;
  font-size: 1.06rem;
}

.section-heading {
  max-width: 930px;
  margin-bottom: 34px;
}

.section-heading p {
  color: #536071;
  font-size: 1.06rem;
}

.horizon-section {
  padding-top: clamp(54px, 7vw, 84px);
}

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

.horizon-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #dce3ed;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.horizon-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 12px;
  background: #f6f8fc;
  border: 1px solid #e5ebf3;
  border-radius: 12px;
}

.horizon-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.horizon-card p {
  color: #536071;
}

.horizon-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #fff;
  background: var(--paper-ink);
  border-radius: 6px;
  font-weight: 850;
}

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

.service-card,
.client-grid article,
.tool-card {
  min-height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid #dce3ed;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  font-weight: 900;
}

.service-card p,
.client-grid p {
  color: #536071;
  margin-bottom: 0;
}

.client-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.client-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 54px;
  margin-bottom: 6px;
  color: var(--red-dark);
  background: #f6f8fc;
  border: 1px solid #dce3ed;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 950;
}

.client-mark.crest {
  color: #0f5f78;
}

.client-mark.sibeg-mark {
  color: #c8102e;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  border-color: #f0c7cf;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
  background: #172235;
  color: #fff;
}

.media-copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.media-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
}

.media-grid img:first-child {
  grid-row: span 2;
  height: 432px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.logo-wall img {
  width: 100%;
  height: 116px;
  object-fit: contain;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--steel);
  font-weight: 800;
}

.support-tools {
  background: #eef3f7;
}

.tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tool-card {
  display: block;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tool-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 900;
}

.tool-card strong {
  display: block;
  font-size: 1.05rem;
}

.tool-card p {
  margin: 10px 0 0;
  color: #536071;
}

.webmail-doc {
  background: var(--steel);
  color: #fff;
}

.webmail-doc p {
  color: rgba(255, 255, 255, 0.78);
}

.funding {
  align-items: center;
  background: #fff;
}

.funding img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.contact-section {
  background: #101624;
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

address {
  font-style: normal;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0;
}

.contact-links a {
  min-width: 0;
  padding: 10px 12px;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.pec {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: #536071;
  background: #fff;
  border-top: 1px solid #dce3ed;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: #fff;
    border: 1px solid #dce3ed;
    border-radius: 14px;
    box-shadow: var(--shadow);
    color: var(--paper-ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .split,
  .partners,
  .contact-section,
  .funding,
  .media-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .proof-strip,
  .service-grid,
  .client-grid,
  .tool-grid,
  .horizon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .horizon-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand img,
  .site-footer img {
    width: 172px;
    height: auto;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual,
  .graph-panel {
    min-height: 360px;
  }

  .home-highlight {
    grid-template-columns: 1fr;
    margin-inline: 20px;
  }

  .proof-strip,
  .service-grid,
  .client-grid,
  .tool-grid,
  .horizon-grid,
  .logo-wall,
  .contact-links,
  .media-grid,
  .highlight-work-grid {
    grid-template-columns: 1fr;
  }

  .media-grid img,
  .media-grid img:first-child {
    height: 220px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes scan {
  0%, 42% {
    transform: translateX(-85%);
  }
  70%, 100% {
    transform: translateX(85%);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -240;
  }
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

/* Trasformiamo la zona media in un elemento grafico tech */
.service-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-ink) !important; /* Contrasto scuro */
    min-height: 280px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.tech-stack-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    z-index: 2;
}

.tech-item {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(54, 213, 232, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}

.tech-item span {
    color: var(--cyan);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.tech-item:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1) rotate(5deg);
}

.tech-item:hover span {
    color: #fff;
}

/* Container principale della sezione */
.partners-showcase {
    display: block; /* Sovrascrive il grid se necessario per layout a tutta larghezza */
}

/* Wrapper per i tag sotto la griglia */
.tech-tags-wrapper {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
}

/* Stile specifico per i tag in questa sezione */
.partners-showcase .tag-list {
    justify-content: center;
    max-width: 900px;
}

.partners-showcase .tag-list li {
    background: var(--panel-strong);
    color: var(--muted);
    font-size: 0.9rem;
    border-color: var(--line);
    transition: all 0.2s ease;
}

.partners-showcase .tag-list li:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* Responsive */
@media (max-width: 980px) {
    .tech-tags-wrapper {
        margin-top: 32px;
    }
}
/* Effetto grid decorativo sullo sfondo del box scuro */
.service-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(54, 213, 232, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(54, 213, 232, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Ottimizzazione del testo nel grid */
.highlight-work-grid article strong {
    color: var(--red-dark); /* Richiama il brand */
    border-bottom: 2px solid var(--panel-strong);
    padding-bottom: 5px;
    margin-bottom: 8px;
}

/* Nuovo stile per la lista tag con loghi */
.tag-list-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

    .tag-list-logos li {
        display: flex;
        align-items: center;
        gap: 8px; /* Spazio tra logo e testo */
        padding: 6px 12px;
        background: var(--panel-strong);
        border: 1px solid var(--line);
        border-radius: 999px;
        transition: all 0.3s ease;
    }

/* Container della lista icone */
.tag-list-pure-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Pił spazio tra i loghi */
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

    /* Stile dell'elemento lista */
    .tag-list-pure-logos li {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        /* Dimensioni aumentate per i loghi della lista */
        .tag-list-pure-logos li img {
            width: auto;
            height: 32px; /* Altezza uniforme per tutti i loghi */
            max-width: 100px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        /* Effetto Hover: il logo torna al colore originale e si ingrandisce leggermente */
        .tag-list-pure-logos li:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.15);
        }

        /* Stile per i tag testuali (es. BGP) che rimangono accanto ai loghi */
        .tag-list-pure-logos li.tech-label {
            font-size: 0.9rem;
            font-weight: 800;
            color: var(--muted);
            border: 1px solid var(--line);
            padding: 4px 12px;
            border-radius: 6px;
            background: var(--panel-strong);
        }

/* Mobile: loghi leggermente pił piccoli per stare in riga */
@media (max-width: 680px) {
    .tag-list-pure-logos {
        gap: 20px;
    }

        .tag-list-pure-logos li img {
            height: 24px;
        }
}

/* Container per centrare la lista */
.tech-tags-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Lista loghi pura */
.tag-list-pure-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Spazio generoso tra i loghi */
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

    /* Singolo elemento della lista */
    .tag-list-pure-logos li {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

        /* Controllo rigoroso delle dimensioni dei loghi */
        .tag-list-pure-logos li img {
            height: 35px; /* Altezza fissa contenuta */
            width: auto; /* Mantiene le proporzioni */
            max-width: 120px;
            object-fit: contain;
            filter: grayscale(100%); /* Effetto professionale in grigio */
            opacity: 0.6;
            transition: all 0.4s ease;
        }

        /* Effetto al passaggio del mouse */
        .tag-list-pure-logos li:hover {
            transform: translateY(-3px);
        }

            .tag-list-pure-logos li:hover img {
                filter: grayscale(0%); /* Torna a colori */
                opacity: 1;
                height: 38px; /* Leggero ingrandimento */
            }

/* Ottimizzazione per Mobile */
@media (max-width: 680px) {
    .tag-list-pure-logos {
        gap: 25px;
    }

        .tag-list-pure-logos li img {
            height: 28px; /* Pił piccoli su smartphone */
        }
}

/* Container della sezione partners */
.partners-showcase {
    background: var(--panel);
    border-top: 1px solid var(--line);
}

/* Wrapper della lista */
.tech-tags-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Lista loghi pura */
.tag-list-pure-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 45px; /* Spazio orizzontale tra un logo e l'altro */
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    max-width: 1100px;
}

    /* Singolo elemento logo */
    .tag-list-pure-logos li {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

        /* Dimensioni rigorose per evitare loghi giganti */
        .tag-list-pure-logos li img {
            height: 35px; /* Forza tutti i loghi alla stessa altezza */
            width: auto; /* Mantiene le proporzioni originali */
            max-width: 140px; /* Impedisce a loghi molto lunghi di allargarsi troppo */
            object-fit: contain;
            filter: grayscale(100%); /* Effetto sobrio in grigio */
            opacity: 0.6;
            transition: all 0.4s ease;
        }

        /* Effetto Hover: il logo si colora e si alza leggermente */
        .tag-list-pure-logos li:hover {
            transform: translateY(-4px);
        }

            .tag-list-pure-logos li:hover img {
                filter: grayscale(0%);
                opacity: 1;
                height: 38px; /* Leggerissimo ingrandimento per feedback visivo */
            }

/* Ottimizzazione per Mobile (smartphone) */
@media (max-width: 768px) {
    .tag-list-pure-logos {
        gap: 25px; /* Riduce lo spazio su schermi piccoli */
    }

        .tag-list-pure-logos li img {
            height: 28px; /* Loghi pił piccoli su mobile */
        }
}