/* =============================================
   Tecnosistem S.R.L. — Stylesheet Generale
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Sora:wght@600;700&display=swap');

:root {
  --nav-bg:       #3b5580;
  --nav-hover-bg: rgba(255,255,255,.10);
  --nav-text:     rgba(255,255,255,.92);
  --nav-text-dim: rgba(255,255,255,.60);
  --brand:        #3b5580;
  --brand-mid:    #4a6899;
  --brand-light:  #6082B6;
  --ease:         0.18s ease;
}

/* =============================================
   GLOBALE
   ============================================= */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body { font-family: 'DM Sans', sans-serif; }
img  { max-width: 100%; height: auto; }

/* =============================================
   ANIMAZIONI
   ============================================= */

/* Keyframe base, usato da hero, page-header e opzionalmente altri */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero — animazione CSS on-load, nessun JS */
.hero-badge     { animation: fadeSlideUp .55s ease         both; }
.hero-h1        { animation: fadeSlideUp .60s .12s ease    both; }
.hero-sub       { animation: fadeSlideUp .60s .24s ease    both; }
.hero-ctas      { animation: fadeSlideUp .60s .36s ease    both; }
.hero-logo-wrap { animation: fadeSlideUp .65s .18s ease    both; }

/* Page header (contatti e future pagine interne) */
.page-header-tag   { animation: fadeSlideUp .50s ease         both; }
.page-header-title { animation: fadeSlideUp .55s .10s ease    both; }
.page-header-sub   { animation: fadeSlideUp .55s .22s ease    both; }

/* Scroll reveal — classe applicata via JS quando entra nel viewport */
.anim-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.anim-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.anim-d1 { transition-delay: .08s; }
.anim-d2 { transition-delay: .18s; }
.anim-d3 { transition-delay: .28s; }
.anim-d4 { transition-delay: .38s; }

/* Rispetta le preferenze di riduzione del movimento */
@media (prefers-reduced-motion: reduce) {
  .anim-up,
  .anim-up.visible,
  .hero-badge, .hero-h1, .hero-sub, .hero-ctas, .hero-logo-wrap,
  .page-header-tag, .page-header-title, .page-header-sub,
  .page-header-breadcrumb {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* =============================================
   NAVBAR
   ============================================= */
nav.navbar.nav-custom {
  background-color: var(--nav-bg) !important;
  background:       var(--nav-bg) !important;
  min-height: 64px;
  padding: 0 1.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .28s ease;
}
/* Accent line in cima */
nav.navbar.nav-custom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(168,196,240,.35) 0%,
    rgba(255,255,255,.82) 45%,
    rgba(168,196,240,.35) 100%);
  pointer-events: none;
}
nav.navbar.nav-custom.navbar-scrolled {
  box-shadow: 0 6px 36px rgba(0,0,0,.3);
}

/* Brand */
nav.navbar.nav-custom .navbar-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: 0;
  transition: opacity var(--ease);
}
nav.navbar.nav-custom .navbar-brand:hover { opacity: .8; }
nav.navbar.nav-custom .navbar-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
nav.navbar.nav-custom .brand-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.22);
  margin: 0 .1rem;
}
nav.navbar.nav-custom .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
nav.navbar.nav-custom .brand-name { font-size: .95rem; letter-spacing: .06em; }
nav.navbar.nav-custom .brand-srl  { font-size: .65rem; font-weight: 400; opacity: .5; letter-spacing: .08em; }

/* Nav links */
nav.navbar.nav-custom .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: .77rem !important;
  font-weight: 500 !important;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--nav-text) !important;
  padding: .42rem .72rem !important;
  border-radius: 7px;
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
  position: relative;
}
nav.navbar.nav-custom .nav-link:hover,
nav.navbar.nav-custom .nav-link.show {
  color: #fff !important;
  background: var(--nav-hover-bg);
}
/* Indicatore pagina attiva */
nav.navbar.nav-custom .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.14);
}
nav.navbar.nav-custom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: rgba(255,255,255,.65);
  border-radius: 2px;
}
nav.navbar.nav-custom .dropdown-toggle::after {
  border-top-color: var(--nav-text-dim);
  vertical-align: .18em;
  margin-left: .28em;
}

/* CTA button */
nav.navbar.nav-custom .nav-link.nav-cta {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff !important;
  font-weight: 600 !important;
  padding: .38rem .95rem !important;
  margin-left: .45rem;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
nav.navbar.nav-custom .nav-link.nav-cta:hover {
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-1px);
}

/* Dropdown */
nav.navbar.nav-custom .dropdown-menu {
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.06);
  padding: 8px;
  margin-top: 10px !important;
  min-width: 200px;
  animation: ddFade .15s ease;
}
@keyframes ddFade {
  from { opacity:0; transform:translateY(-6px); }
  to   { opacity:1; transform:translateY(0); }
}
nav.navbar.nav-custom .dropdown-item {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: #2d3a4e;
  border-radius: 8px;
  padding: .5rem .95rem;
  transition: background var(--ease), color var(--ease);
}
nav.navbar.nav-custom .dropdown-item:hover,
nav.navbar.nav-custom .dropdown-item.active {
  background: rgba(59,85,128,.08);
  color: var(--brand);
}
nav.navbar.nav-custom .dropdown-divider {
  border-color: #eaeff7;
  margin: 4px 10px;
}

/* Toggler */
nav.navbar.nav-custom .navbar-toggler {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  padding: 6px 10px;
  transition: background var(--ease);
}
nav.navbar.nav-custom .navbar-toggler:hover { background: rgba(255,255,255,.1); }
nav.navbar.nav-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  nav.navbar.nav-custom { padding: .45rem 1rem; }
  nav.navbar.nav-custom .nav-link.active::after { display: none; }
}

/* =============================================
   SIDEBAR OFFCANVAS (mobile)
   ============================================= */
.nav-offcanvas {
  width: 290px !important;
  background: #1e3052;
  border-left: none !important;
}

/* Header */
.nav-offcanvas .offcanvas-header {
  background: #243a63;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1rem 1.25rem;
  align-items: center;
}
.sidebar-title {
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.sidebar-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: .3rem .4rem;
  border-radius: 6px;
  transition: color .15s, background .15s;
  margin-left: auto;
}
.sidebar-close:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Body */
.nav-offcanvas .offcanvas-body {
  padding: 1rem .85rem;
  overflow-y: auto;
}

/* Nav list */
.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Link singolo */
.sidebar-link {
  display: block;
  padding: .78rem 1rem;
  border-radius: 10px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .15s ease, color .15s ease;
}
.sidebar-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.sidebar-link.active {
  background: rgba(255,255,255,.13);
  color: #fff;
  font-weight: 600;
}

/* CTA nella sidebar */
.sidebar-link-cta {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff !important;
  font-weight: 600 !important;
  text-align: center;
  margin-top: .6rem;
}
.sidebar-link-cta:hover {
  background: rgba(255,255,255,.22) !important;
  border-color: rgba(255,255,255,.38);
}

/* Gruppo con sotto-voci */
.sidebar-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .78rem 1rem;
  border-radius: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,.72);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  text-align: left;
}
.sidebar-group-btn:hover { background: rgba(255,255,255,.08); color: #fff; }
.sidebar-group-btn[aria-expanded="true"] {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.sidebar-chevron {
  font-size: .7rem;
  opacity: .5;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.sidebar-group-btn[aria-expanded="true"] .sidebar-chevron {
  transform: rotate(180deg);
  opacity: .8;
}

/* Sotto-voci */
.sidebar-sub-list {
  list-style: none;
  padding: .3rem 0 .3rem .75rem;
  margin: 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-left: 2px solid rgba(255,255,255,.1);
  margin-left: 1rem;
}
.sidebar-sub-link {
  display: block;
  padding: .6rem .85rem;
  border-radius: 8px;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .86rem;
  font-weight: 400;
  transition: background .15s ease, color .15s ease;
}
.sidebar-sub-link:hover,
.sidebar-sub-link.active {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}

/* =============================================
   HOMEPAGE — card presentazione
   ============================================= */
.card-home {
  border: 1px solid rgba(59, 85, 128, .2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(59,85,128,.1);
  max-width: 1100px;
  margin: 0 auto;
}
.card-home-header {
  background: var(--brand);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .9rem 1.5rem;
}
.card-home-h1 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .01em;
  margin-bottom: .5rem;
}
.divider-brand {
  border: none;
  border-top: 2px solid var(--brand-light);
  opacity: .3;
  margin: 1.2rem auto;
  width: 60px;
}
.card-home-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3a4a5e;
  max-width: 860px;
  margin: 0 auto;
}
.card-home-cta {
  display: inline-block;
  margin-top: .5rem;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(59,85,128,.3);
  transition: border-color var(--ease), color var(--ease);
}
.card-home-cta:hover {
  color: var(--brand-mid);
  border-color: var(--brand-mid);
}

/* logo homepage */
.logoMain { height: 280px; }

/* =============================================
   FOOTER
   ============================================= */
.footer-custom {
  background: var(--brand) !important;
  background-color: var(--brand) !important;
  color: rgba(255,255,255,.88);
  font-family: 'DM Sans', sans-serif;
  padding: 0;
}

.footer-body {
  padding: 3.5rem 0 2.5rem;
}

/* Brand */
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-brand-logo {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: .88;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.footer-brand-srl {
  font-family: 'Sora', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 300px;
}

/* Social buttons */
.footer-socials { display: flex; gap: .55rem; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.footer-social-btn:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.footer-social-wa:hover { background: rgba(37,211,102,.3); border-color: rgba(37,211,102,.5); }

/* Headings */
.footer-heading {
  font-family: 'Sora', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}

/* List */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  margin-bottom: .75rem;
  line-height: 1.5;
}
.footer-list li i {
  margin-top: .15rem;
  width: 16px;
  text-align: center;
  opacity: .55;
  flex-shrink: 0;
}
.footer-wa-icon { color: #25d366 !important; opacity: .9 !important; }
.footer-list li a,
.footer-list li span {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-list li a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .85rem 0;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

@media (max-width: 767px) {
  .footer-tagline { max-width: 100%; }
  .footer-body    { padding: 2.5rem 0 1.5rem; }
}

/* =============================================
   VETRINA CARD
   ============================================= */
.vetrina-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(59,85,128,.08);
  border: 1px solid rgba(59,85,128,.08);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.vetrina-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(59,85,128,.16);
}
.vetrina-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f4f9;
}
.vetrina-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .38s ease;
}
.vetrina-card:hover .vetrina-card-img img { transform: scale(1.05); }
.vetrina-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0cfe0;
  font-size: 2.5rem;
}
.vetrina-card-body {
  padding: .95rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  border-top: 1px solid rgba(59,85,128,.06);
}
.vetrina-card-nome {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: #1a2535;
}
.vetrina-card-arrow {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(59,85,128,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: .75rem;
  flex-shrink: 0;
  transition: background .18s ease, transform .18s ease;
}
.vetrina-card:hover .vetrina-card-arrow {
  background: var(--brand);
  color: #fff;
  transform: translateX(2px);
}

/* =============================================
   PAGE CONTENT SECTION + BREADCRUMB
   ============================================= */
.page-content-section {
  background: #f8f9fc;
  padding: 3rem 0 4.5rem;
}

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  margin-bottom: .85rem;
  flex-wrap: wrap;
  animation: fadeSlideUp .45s ease both;
}
.page-header-breadcrumb a {
  color: rgba(255,255,255,.58);
  text-decoration: none;
  transition: color .15s;
}
.page-header-breadcrumb a:hover { color: rgba(255,255,255,.88); }
.page-header-breadcrumb .ph-sep { opacity: .4; }

/* =============================================
   CARD CATALOGO
   ============================================= */
.card-prodotto {
  border: 1px solid rgba(59,85,128,.08);
  box-shadow: 0 2px 14px rgba(59,85,128,.07);
  max-width: 400px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  background: #fff;
}
.card-prodotto .card-body {
  text-align: left;
  padding: 1rem 1.1rem 1.25rem;
}
.card-prodotto .card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: .5rem;
}
.card-prodotto:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(59,85,128,.14);
}
.card-prodotto .card-img-top {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f8f9fc;
  cursor: zoom-in;
  transition: transform .32s ease;
}
.card-prodotto:hover .card-img-top { transform: scale(1.03); }

/* Accordion dentro le card prodotto */
.card-prodotto .accordion { margin-top: .6rem; }
.card-prodotto .accordion-item {
  border: 1px solid rgba(59,85,128,.12) !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: .4rem;
}
.card-prodotto .accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(59,85,128,.05) !important;
  padding: .58rem .85rem;
  box-shadow: none !important;
}
.card-prodotto .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: rgba(59,85,128,.1) !important;
  box-shadow: none !important;
}
.card-prodotto .accordion-button::after {
  filter: invert(29%) sepia(40%) saturate(550%) hue-rotate(195deg) brightness(85%);
}
.card-prodotto .accordion-body {
  font-size: .85rem;
  color: #4a5568;
  padding: .7rem .85rem;
  line-height: 1.65;
}

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .2s;
}
.lightbox-overlay.show { opacity: 1; }
.lightbox-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: default;
}
.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: .5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  cursor: default;
}
.lightbox-cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.lightbox-cta a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.2rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
}
.lightbox-cta a:hover { opacity: .85; }
.lightbox-cta .cta-call {
  background: var(--brand);
  color: #fff;
}
.lightbox-cta .cta-wa {
  background: #25d366;
  color: #fff;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .15s;
}
.lightbox-close:hover { opacity: 1; }

/* =============================================
   ACCORDION / VIDEO
   ============================================= */
.accordion-item-fake .accordion-button::after { display: none; }
.accordion-item-fake .accordion-button { cursor: pointer; }
.video-mobile  { display: none; }
.video-desktop { display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 800px) {
  .logoMain { height: 150px; }
}
@media (max-width: 767px) {
  .video-desktop { display: none; }
  .video-mobile  { display: block; }
}

/* =============================================
   CATALOGO — titolo categoria
   ============================================= */
.catalogo-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(59,85,128,.15);
}

/* =============================================
   SCHEDA TECNICA — tabella dentro accordion
   ============================================= */
.scheda-pdf-link {
  margin-top: .75rem;
  text-align: center;
}
.scheda-pdf-link a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(229,62,62,.08);
  color: #c53030;
  border: 1px solid rgba(229,62,62,.2);
  border-radius: 7px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.scheda-pdf-link a:hover { background: rgba(229,62,62,.15); color: #c53030; }

.scheda-table-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(59,85,128,.12);
  margin-top: .5rem;
}

table.scheda-table {
  font-size: .85rem;
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0 !important;
}
table.scheda-table tbody tr:nth-child(odd)  { background: rgba(59,85,128,.06) !important; }
table.scheda-table tbody tr:nth-child(even) { background: #fff !important; }
table.scheda-table tbody tr:last-child td   { border-bottom: none !important; }
table.scheda-table td,
table.scheda-table th {
  padding: .55rem 1rem !important;
  border-bottom: 1px solid rgba(59,85,128,.08) !important;
  border-top: none !important;
  vertical-align: middle !important;
}
table.scheda-table .scheda-key {
  font-family: 'Sora', sans-serif !important;
  font-weight: 600 !important;
  font-size: .78rem !important;
  color: var(--brand) !important;
  width: 40% !important;
  letter-spacing: .02em !important;
  word-break: break-word;
}
table.scheda-table .scheda-val {
  text-align: right !important;
  color: #2d3a4e !important;
  font-weight: 500 !important;
}
table.scheda-table .scheda-val span {
  display: inline-block;
  background: rgba(59,85,128,.09);
  color: var(--brand);
  border-radius: 5px;
  padding: .18rem .6rem;
  font-size: .8rem;
  font-weight: 600;
  white-space: normal;
  word-break: break-word;
  line-height: 1.5;
}

/* =============================================
   HOMEPAGE MODERNA — HERO
   ============================================= */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #3b5580 0%, #4a6899 55%, #5a7aac 100%);
  overflow: hidden;
  padding: 5rem 0 7rem;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(100,140,200,.22) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.min-vh-hero  { min-height: 440px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.hero-accent { color: #a8c4f0; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.76);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-hero-primary.btn-hero-solo {
  font-size: 1rem;
  padding: .95rem 2.6rem;
  border-radius: 12px;
  letter-spacing: .04em;
}

.btn-hero-primary {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  font-family: 'Sora', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .78rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  color: var(--brand);
}
.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .76rem 1.8rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.48);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.8);
  color: #fff;
}

.hero-logo-col {
  justify-content: center;
  align-items: center;
}
.hero-logo-wrap {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: 2.75rem 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.hero-logo {
  height: 210px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 55px; display: block; }

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: #f8f9fc;
  padding: 2.5rem 0;
}
.stats-row {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(59,85,128,.1);
  overflow: hidden;
  border: 1px solid rgba(59,85,128,.08);
}
.stat-item {
  padding: 1.75rem 1rem;
  text-align: center;
}
.stat-item-mid {
  border-left:  1px solid rgba(59,85,128,.1);
  border-right: 1px solid rgba(59,85,128,.1);
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-icon { font-size: 1.8rem; }
.stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: #8a9ab0;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* =============================================
   SEZIONI — COMMON
   ============================================= */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: .5rem;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #1a2840;
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1rem;
  color: #5a6a7e;
  line-height: 1.72;
  max-width: 640px;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-sub { margin: 0 auto; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: #f8f9fc;
  padding: 5.5rem 0;
}
.service-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.service-card-link:hover { color: inherit; }
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid rgba(59,85,128,.08);
  box-shadow: 0 2px 14px rgba(59,85,128,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
}
.service-card-link:hover .service-card {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(59,85,128,.14);
  border-color: rgba(59,85,128,.22);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(59,85,128,.28);
}
.service-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2840;
  margin-bottom: .55rem;
}
.service-text {
  font-size: .9rem;
  color: #5a6a7e;
  line-height: 1.65;
  margin: 0 0 .9rem;
}
.service-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--brand);
  background: rgba(59,85,128,.08);
  border: 1px solid rgba(59,85,128,.15);
  border-radius: 20px;
  padding: .25rem .7rem;
}

/* =============================================
   SOFTWARE SECTION
   ============================================= */
.software-section {
  background: #f0f4fa;
  padding: 5rem 0;
}
.software-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.software-card-link:hover { color: inherit; }
.software-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 2rem 2rem;
  height: 100%;
  border: 1px solid rgba(59,85,128,.1);
  box-shadow: 0 2px 16px rgba(59,85,128,.07);
  display: flex;
  gap: 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.software-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59,85,128,.13);
}
.software-card-custom {
  border-color: rgba(59,85,128,.2);
  background: linear-gradient(160deg, #fff 60%, #eef2fb 100%);
}
.software-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(59,85,128,.28);
}
.software-card-body { flex: 1; }
.software-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2840;
  margin-bottom: .5rem;
}
.software-card-text {
  font-size: .875rem;
  color: #5a6a7e;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.software-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.software-list li {
  font-size: .85rem;
  color: #3d4f65;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.software-list li i {
  color: var(--brand-light);
  font-size: .75rem;
  flex-shrink: 0;
}

/* =============================================
   CONSUMABILI SECTION
   ============================================= */
.consumabili-section {
  background: #fff;
  padding: 5.5rem 0;
}
.consumabili-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.consumabili-item {
  background: #f8f9fc;
  border: 1px solid rgba(59,85,128,.1);
  border-radius: 14px;
  padding: 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-align: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.consumabili-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.consumabili-link:hover { color: inherit; }
.consumabili-link:hover .consumabili-item {
  background: rgba(59,85,128,.06);
  border-color: rgba(59,85,128,.22);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59,85,128,.12);
}
.consumabili-item:hover {
  background: rgba(59,85,128,.06);
  border-color: rgba(59,85,128,.22);
  transform: translateY(-2px);
}
.consumabili-item i {
  font-size: 1.65rem;
  color: var(--brand);
  opacity: .78;
}
.consumabili-item span {
  font-size: .88rem;
  font-weight: 600;
  color: #2d3a4e;
}
.btn-brand-inline {
  display: inline-block;
  color: var(--brand);
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(59,85,128,.28);
  padding-bottom: 2px;
  transition: border-color .18s ease, color .18s ease;
}
.btn-brand-inline:hover {
  color: var(--brand-mid);
  border-color: var(--brand-mid);
}

/* =============================================
   CTA FINALE
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #3b5580 0%, #4a6899 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(96,130,182,.35) 0%, transparent 55%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.72;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =============================================
   RESPONSIVE — HOMEPAGE
   ============================================= */
@media (max-width: 991px) {
  .hero-section    { padding: 3.5rem 0 6rem; text-align: center; }
  .hero-sub        { margin-left: auto; margin-right: auto; }
  .hero-ctas       { justify-content: center; }
  .services-section,
  .consumabili-section,
  .software-section,
  .cta-section     { padding: 4rem 0; }
  .consumabili-section .section-sub { max-width: 100%; }
  .section-header  { margin-bottom: 2rem; }
}

@media (max-width: 575px) {
  /* Stats strip */
  .stat-num         { font-size: 1.4rem; }
  .stat-label       { font-size: .62rem; letter-spacing: .03em; }
  .stat-item        { padding: 1.25rem .5rem; }

  /* Hero */
  .hero-h1          { font-size: 1.75rem; }
  .hero-sub         { font-size: .9rem; }
  .btn-hero-primary.btn-hero-solo {
    width: 100%;
    text-align: center;
    font-size: .95rem;
    padding: 1rem 1.5rem;
  }

  /* Service cards */
  .service-card     { padding: 1.5rem 1.25rem; }

  /* Software cards: icona sopra al testo */
  .software-card    { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .software-card-icon { width: 44px; height: 44px; font-size: 1rem; }

  /* Sezioni */
  .services-section,
  .consumabili-section,
  .software-section,
  .cta-section      { padding: 3rem 0; }
  .section-header   { margin-bottom: 1.75rem; }

  /* CTA finale: bottoni impilati full-width */
  .cta-btns         { flex-direction: column; align-items: center; }
  .cta-btns .btn-hero-primary,
  .cta-btns .btn-hero-outline { width: 100%; max-width: 320px; text-align: center; }
}

/* =============================================
   PAGE HEADER — riutilizzabile su tutte le pagine
   ============================================= */
.page-header {
  position: relative;
  background: linear-gradient(135deg, #3b5580 0%, #4a6899 60%, #5a7aac 100%);
  padding: 3.5rem 0 5rem;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(100,140,200,.18) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .6rem;
}
.page-header-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.page-header-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}
.page-header-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.page-header-wave svg { width: 100%; height: 40px; display: block; }

/* =============================================
   CONTATTI
   ============================================= */
.contatti-section { background: #f8f9fc; padding: 4rem 0; }

.contatti-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.25rem 1.75rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(59,85,128,.08);
  box-shadow: 0 2px 14px rgba(59,85,128,.06);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.contatti-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(59,85,128,.13);
}
.contatti-card .service-icon { margin: 0 auto 1.1rem; }
.contatti-card-label {
  font-family: 'Sora', sans-serif;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a0aec0;
  margin-bottom: .45rem;
}
.contatti-card-value {
  display: block;
  font-size: .97rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.5;
  word-break: break-word;
  transition: color var(--ease);
}
.contatti-card-value:hover { color: var(--brand-mid); }
.contatti-card-value.wa    { color: #1da851; }
.contatti-card-value.wa:hover { color: #169640; }
.contatti-card-sub {
  font-size: .76rem;
  color: #a0aec0;
  margin-top: .4rem;
}
.contatti-card-icon-wa {
  background: rgba(37,211,102,.12) !important;
  color: #1da851 !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.2) !important;
}

/* Mappa */
.contatti-map-section { background: #f8f9fc; padding: 0 0 4rem; }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(59,85,128,.12);
  background: #eef2f8;
  min-height: 400px;
  position: relative;
}

@media (max-width: 575px) {
  .contatti-card { padding: 1.25rem .9rem 1.25rem; }
  .page-header   { padding: 2.5rem 0 4rem; }
}

/* =============================================
   CONSUMABILI PAGE (consumabili.php)
   ============================================= */
.consumabili-page-intro {
  background: #f8f9fc;
  padding: 4rem 0 3rem;
}
.cons-intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.cons-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(59,85,128,.09);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 10px rgba(59,85,128,.05);
}
.cons-highlight-item > i {
  font-size: 1.3rem;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: .15rem;
}
.cons-highlight-item div { display: flex; flex-direction: column; gap: .15rem; }
.cons-highlight-item strong { font-size: .9rem; color: #1a2840; }
.cons-highlight-item span  { font-size: .82rem; color: #5a6a7e; }

.consumabili-page-grid {
  background: #fff;
  padding: 4rem 0 5rem;
}
.cons-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(59,85,128,.1);
  box-shadow: 0 2px 16px rgba(59,85,128,.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cons-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(59,85,128,.14);
  border-color: rgba(59,85,128,.22);
  color: inherit;
}
.cons-cat-img {
  width: 100%;
  height: 215px;
  overflow: hidden;
  background: #f0f4fa;
}
.cons-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.cons-cat-card:hover .cons-cat-img img { transform: scale(1.04); }
.cons-cat-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cons-cat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .9rem;
  box-shadow: 0 4px 14px rgba(59,85,128,.25);
}
.cons-cat-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2840;
  margin-bottom: .5rem;
}
.cons-cat-desc {
  font-size: .85rem;
  color: #5a6a7e;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.cons-cat-cta {
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: .4rem;
  letter-spacing: .02em;
}

/* =============================================
   NAVBAR — PAGINE STATICHE
   ============================================= */
.nav-static-badge {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(59,85,128,.1);
  border-radius: 4px;
  padding: .1rem .35rem;
  margin-left: .35rem;
  vertical-align: middle;
  line-height: 1.6;
}
.sidebar-static-badge {
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: .1rem .3rem;
  margin-left: .4rem;
  vertical-align: middle;
}

/* =============================================
   CATALOGO STATICO — ETICHETTE SLEEVE
   ============================================= */
.sleeve-highlights-strip {
  background: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #edf0f5;
}
.sleeve-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .75rem .5rem;
}
.sleeve-highlight i {
  font-size: 1.5rem;
  color: var(--brand-mid);
}
.sleeve-highlight strong {
  font-size: .85rem;
  font-weight: 700;
  color: #1a2535;
}
.sleeve-highlight small {
  font-size: .74rem;
  color: #6b7a8d;
  font-weight: 400;
  line-height: 1.4;
}

.sleeve-intro-section {
  padding: 2.5rem 0 1rem;
  background: #f8f9fc;
}
.sleeve-intro-section .section-sub {
  margin: 0 auto;
  text-align: center;
}
.sleeve-prodotto-section {
  padding: 3rem 0 2rem;
  background: #f8f9fc;
}

.sleeve-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(59,85,128,.15);
  background: #fff;
}
.sleeve-img {
  width: 100%;
  display: block;
}

.sleeve-prodotto-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: .75rem;
}
.sleeve-prodotto-desc {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.btn-catalogo-doc {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(59,85,128,.1);
  color: var(--brand);
  border: 1px solid rgba(59,85,128,.2);
  transition: background .18s;
}
.btn-catalogo-doc:hover { background: rgba(59,85,128,.18); color: var(--brand); }
.btn-catalogo-doc-yt { background: rgba(255,0,0,.07); color: #c00; border-color: rgba(255,0,0,.2); }
.btn-catalogo-doc-yt:hover { background: rgba(255,0,0,.13); color: #c00; }

.btn-catalogo-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  transition: background .18s, transform .15s;
}
.btn-catalogo-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); }

/* =============================================
   CATALOGO STATICO — ETICHETTE
   ============================================= */
.etichette-grid-section {
  padding: 2.5rem 0 3rem;
  background: #f8f9fc;
}
.etichette-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59,85,128,.1);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.etichette-card:hover {
  box-shadow: 0 8px 32px rgba(59,85,128,.18);
  transform: translateY(-3px);
}
.etichette-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  background: #f0f4fa;
}
.etichette-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.etichette-card-img:hover img { transform: scale(1.04); }
.etichette-img-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,85,128,.3);
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .22s;
}
.etichette-card-img:hover .etichette-img-zoom { opacity: 1; }
.etichette-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.etichette-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: .6rem;
}
.etichette-card-desc {
  font-size: .9rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: .75rem;
}
.btn-sm-catalogo {
  font-size: .82rem !important;
  padding: .5rem 1.1rem !important;
}
