/* ══════════════════════════════════════
   RESET & VARIABILI
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none !important;
  color: inherit !important;
}
ul { list-style: none; }

:root {
  /* Colori header */
  --red:         #E21A22;
  --navy:        #002757;
  --navy-semi:   rgba(0, 55, 123, 0.52);
  --navy-col:    rgba(0, 39, 87, 0.38);
  --white:       #ffffff;
  --header-h:    5.5rem;
  --trans:       0.35s ease;
  /* Colori footer */
  --navy-dark:   #06122E;
  --red-foot:    #B5151B;
  --gray-border: rgba(255, 255, 255, .1);
  --gray-text:   rgba(255, 255, 255, .55);
}
a, a:visited, a:hover, a:active, a:focus {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: Roboto, sans-serif;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.fm2-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--header-h);
  display: flex;
  align-items: stretch;
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.fm2-header.scrolled {
  background: var(--white);
  border-bottom-color: #e8e8e8;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

/* ── Logo ── */
.fm2-logo {
  width: 15%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 20px 0 28px;
}
.fm2-logo img {
  height: auto;
  width: 140px;
  object-fit: contain;
}
.fm2-logo-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--trans);
  line-height: 1;
}
.fm2-header.scrolled .fm2-nav-link {
  color: var(--navy) !important;
  text-shadow: none;
}

/* ── Nav desktop ── */
.fm2-nav {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.fm2-nav-item {
  position: static;
  display: flex;
  align-items: stretch;
}
.fm2-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0.8rem;
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff !important;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color var(--trans), border-color var(--trans);
  text-shadow: 0 0 40px rgba(0, 0, 0, .3);
}
.fm2-nav-item:hover > .fm2-nav-link {
  border-bottom-color: var(--red);
}
.fm2-header.scrolled .fm2-nav-link {
  color: var(--navy);
  text-shadow: none;
}
.fm2-header.scrolled .fm2-nav-item:hover > .fm2-nav-link {
  color: #000 !important;
  border-bottom-color: var(--red);
}
.nav-chevron {
  font-size: 8px;
  color: var(--red);
  font-style: normal;
  transition: transform .25s;
  margin-top: 1px;
}
.fm2-nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* ── Megamenu ── */
.fm2-mega {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy-semi);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  min-height: 285px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
  pointer-events: none;
}
.fm2-nav-item:hover .fm2-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.fm2-mega-left {
  width: 38%;
  flex-shrink: 0;
  background: var(--navy-col);
  border-right: 2px solid rgba(255, 90, 90, .5);
  padding: 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fm2-mega-left .mega-cat {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .75);
  margin-bottom: .6rem;
}
.fm2-mega-left .mega-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}
.fm2-mega-links {
  flex: 1;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 0.6rem 2rem;
}
.fm2-mega-links a {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .6rem 0;
  transition: color .2s, gap .2s;
}
.fm2-mega-links a::before {
  content: '›';
  color: var(--red);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .2s;
}
.fm2-mega-links a:hover { color: #fff; gap: 1rem; }
.fm2-mega-links a:hover::before { transform: translateX(3px); }

/* ── Hamburger ── */
.fm2-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin: auto 20px auto auto;
  padding: 2px;
  flex-shrink: 0;
  background: none;
  border: none;
}
.fm2-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease, background var(--trans);
  transform-origin: center;
}
.fm2-hamburger span:nth-child(2) { width: 70%; }
.fm2-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fm2-hamburger.open span:nth-child(2) { opacity: 0; width: 100%; }
.fm2-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.fm2-header.scrolled .fm2-hamburger span { background: var(--navy); }

/* ── Mobile menu ── */
.fm2-mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy);
  overflow-y: auto;
  max-height: calc(100vh - var(--header-h));
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 998;
}
.fm2-mobile-menu.open { transform: translateX(0); }

.fm2-mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: .85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .75);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  cursor: pointer;
  user-select: none;
}
.fm2-mob-header:hover { color: #fff; }
.fm2-mob-header.open  { color: #fff; border-bottom: 2px solid var(--red); }
.fm2-mob-header .mob-arrow {
  color: var(--red);
  font-size: 10px;
  font-style: normal;
  transition: transform .25s;
}
.fm2-mob-header.open .mob-arrow { transform: rotate(180deg); }

.fm2-mob-sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: rgba(0, 55, 123, .4);
  transition: max-height .3s ease, opacity .3s ease;
}
.fm2-mob-sub.open { max-height: 500px; opacity: 1; }
.fm2-mob-sub a {
  display: block;
  padding: 12px 20px 12px 36px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, .65);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color .2s;
}
.fm2-mob-sub a:hover { color: #fff; }

/* ══════════════════════════════════════
   DEMO CONTENT (rimuovere in produzione)
══════════════════════════════════════ */
.demo-content {
  background: #f4f6f9;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .85rem;
  padding-top: var(--header-h);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.fm2-footer {
  background: var(--navy-dark);
  color: #fff;
}
.fm2-footer-top {
  padding: 48px 40px 40px;
  display: grid;
  grid-template-columns: 180px repeat(9, 1fr);
  gap: 24px 16px;
  border-bottom: 1px solid var(--gray-border);
}
.fm2-footer-logo {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fm2-footer-logo img {
  height: auto;
  width: 140px;
  display: block;
}
.fm2-footer-logo-placeholder {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
}
.fm2-footer-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red-foot);
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fm2-footer-col ul { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.fm2-footer-col ul li a {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-text);
  transition: color .2s, padding-left .2s;
  display: block;
  line-height: 1.4;
  text-align: left;
}
.fm2-footer-col ul li a:hover { color: #fff; padding-left: 4px; }

.fm2-footer-bottom {
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--gray-border);
}
.fm2-footer-bottom .info {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.6;
}
.fm2-footer-bottom .info strong { color: rgba(255, 255, 255, .8); font-weight: 600; }
.fm2-footer-bottom .info.center { text-align: center; }
.fm2-footer-bottom .info.right  { text-align: right; }

.acc-arrow {
  display: none;
  font-style: normal;
  font-size: 10px;
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: 8px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --header-h: 5.5rem; }
  .fm2-nav          { display: none; }
  .fm2-hamburger    { display: flex; }
  .fm2-mobile-menu  { display: block; }
  .fm2-logo         { width: auto; }
  .fm2-footer-top {
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 24px 32px;
  }
  .fm2-footer-logo { grid-column: 1 / -1; flex-direction: row; align-items: center; }
}
@media (max-width: 768px) {
  .fm2-footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    padding: 32px 20px 24px;
  }
  .fm2-footer-bottom {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 8px;
    text-align: center;
  }
  .fm2-footer-bottom .info.center,
  .fm2-footer-bottom .info.right { text-align: center; }
}
@media (max-width: 480px) {
  .fm2-footer-top {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 20px 16px;
  }
  .fm2-footer-logo  { justify-content: center; margin-bottom: 8px; }
  .fm2-footer-col   { border-bottom: 1px solid var(--gray-border); }
  .fm2-footer-col-title {
    cursor: pointer;
    margin-bottom: 0;
    padding: 14px 0;
    border-bottom: none;
    white-space: normal;
    user-select: none;
  }
  .fm2-footer-col-title .acc-arrow  { display: inline-block; }
  .fm2-footer-col-title.open .acc-arrow { transform: rotate(180deg); }
  .fm2-footer-col-title.open { border-bottom: 2px solid var(--red-foot); margin-bottom: 10px; }
  .fm2-footer-col ul {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .3s ease, opacity .3s ease;
  }
  .fm2-footer-col ul.open { max-height: 400px; opacity: 1; padding-bottom: 12px; }
}

/* ══════════════════════════════════════
   ARCHIVIO PRODOTTI
══════════════════════════════════════ */

.fm2-archive {
  padding: 16px 64px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.fm2-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

/* ── Card prodotto ── */
.fm2-archive-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  cursor: pointer;
}
.fm2-archive-item:hover .fm2-archive-img-wrap {
  background: #eef0f5;
}
.fm2-archive-item:hover .fm2-archive-name {
  color: var(--red);
}

/* ── Immagine quadrata ── */
.fm2-archive-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f8fa;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.fm2-archive-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Info sotto immagine ── */
.fm2-archive-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 4px 0;
}
.fm2-archive-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.fm2-archive-cats {
  font-size: 0.7rem;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.fm2-archive-cats a {
  color: #999;
  transition: color 0.2s;
}
.fm2-archive-cats a:hover {
  color: var(--red);
}

/* ══════════════════════════════════════
   RESPONSIVE — ARCHIVIO
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .fm2-archive { padding: 48px 40px; }
}
@media (max-width: 1024px) {
  .fm2-archive-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .fm2-archive { padding: 36px 20px; }
  .fm2-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
}
@media (max-width: 480px) {
  .fm2-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
}

/* ══════════════════════════════════════
   FILTRI ARCHIVIO
══════════════════════════════════════ */

.fm2-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 32px;
  padding: 0 0 40px;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

.fm2-filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fm2-filter-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #aaa;
}

.fm2-filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fm2-filter-btn {
  font-family: Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid #dde0e8;
  border-radius: 2px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.fm2-filter-btn:hover {
  border-color: var(--navy);
}
.fm2-filter-btn--active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.fm2-filter-reset {
  font-family: Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  background: transparent;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
  display: none;
}
.fm2-filter-reset--active {
  display: block;
  color: var(--red);
}
.fm2-filter-reset--active:hover {
  color: #b00;
}

@media (max-width: 768px) {
  .fm2-filters { gap: 16px 20px; padding-bottom: 28px; margin-bottom: 28px; }
}
.fm2-archive-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 60px 0;
}
.fm2-archive-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}
/* ══════════════════════════════════════
   SEZIONE VIDEO
══════════════════════════════════════ */
.fm2-video-section {
  background: var(--navy-dark);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
  margin-bottom: 0;
}
.fm2-video-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fm2-video-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.fm2-video-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.fm2-video-media {
  border-radius: 8px;
  overflow: hidden;
}
.fm2-video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .fm2-video-section { grid-template-columns: 1fr; padding: 56px 40px; gap: 40px; }
}
@media (max-width: 768px) {
  .fm2-video-section { padding: 40px 20px; gap: 32px; }
  .fm2-video-title { font-size: 1.6rem; }
}
/* ══════════════════════════════════════
   HERO BANNER VIDEO
══════════════════════════════════════ */
.fm2-hero-banner {
  position: relative;
  height: 85vh;
  overflow: hidden;
}
.fm2-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.fm2-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
/* ══════════════════════════════════════
   PAGINA AZIENDA
══════════════════════════════════════ */

.az-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.az-reveal.az-visible { opacity: 1; transform: translateY(0); }
.az-reveal-2 { transition-delay: .15s; }
.az-reveal-3 { transition-delay: .3s; }

.az-container { max-width: 1200px; margin: 0 auto; }

.az-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 12px;
}
.az-h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 28px;
}
.az-p {
  font-size: 15px;
  color: #555560;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Hero */
.az-hero {
  position: relative;
  height: 85vh;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}
.az-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.az-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,42,.96) 0%, rgba(4,16,42,.5) 55%, rgba(4,16,42,.15) 100%);
}
.az-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 1000px;
  width: 100%;
}
.az-hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 20px;
}
.az-hero-title {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}
.az-hero-title span { color: var(--red); }
.az-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
}
.az-hero-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.az-hero-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.2);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.az-hero-nav a:first-child { border-bottom-color: var(--red); }
.az-hero-nav a:hover { color: #fff; border-bottom-color: var(--red); }

/* Sezioni */
.az-section { padding: 100px 40px; }
.az-section--gray { background: #F5F5F7; }

/* Chi siamo */
.az-storia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.az-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.az-stat {
  background: #F5F5F7;
  border: 1px solid #EAEAEC;
  padding: 20px 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.az-stat-val { font-size: 36px; font-weight: 900; color: var(--red); line-height: 1; }
.az-stat-lbl { font-size: 11px; color: #555560; text-transform: uppercase; letter-spacing: .06em; }

/* Timeline */
.az-timeline { position: relative; padding-left: 40px; }
.az-tl-line { position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: #EAEAEC; }
.az-tl-item { position: relative; margin-bottom: 32px; }
.az-tl-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
}
.az-tl-dot--active { background: var(--red); border-color: var(--red); }
.az-tl-year { font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.az-tl-text { font-size: 14px; color: #555560; line-height: 1.7; }

/* Valori */
.az-valori-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.az-valore {
  background: #fff;
  border: 1px solid #EAEAEC;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.az-valore:hover { background: var(--navy); }
.az-valore-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 72px;
  font-weight: 900;
  color: #EAEAEC;
  line-height: 1;
  transition: color .3s;
}
.az-valore:hover .az-valore-num { color: rgba(255,255,255,.07); }
.az-valore-bar { width: 32px; height: 3px; background: var(--red); margin-bottom: 16px; border-radius: 2px; }
.az-valore-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color .3s;
}
.az-valore:hover .az-valore-title { color: #fff; }
.az-valore-text { font-size: 14px; color: #555560; line-height: 1.75; transition: color .3s; }
.az-valore:hover .az-valore-text { color: rgba(255,255,255,.65); }

/* Team */
.az-team-single-wrap {
  overflow: hidden;
  border: 1px solid #EAEAEC;
  border-radius: 4px;
  transition: box-shadow .3s;
}
.az-team-single-wrap:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); }
.az-team-full-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.az-team-single-wrap:hover .az-team-full-img { transform: scale(1.03); }
.az-team-caption {
  padding: 32px;
  background: #fff;
}
.az-team-caption p {
  font-size: 16px;
  color: #555560;
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 0;
}
@media (max-width: 768px) {
  .az-team-full-img { aspect-ratio: 4 / 3; }
  .az-team-caption { padding: 24px 20px; }
  .az-team-caption p { font-size: 15px; padding-left: 16px; }
}

/* Certificazioni */
.az-cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.az-cert { background: #fff; border: 1px solid #EAEAEC; padding: 36px; display: flex; gap: 28px; align-items: flex-start; }
.az-cert-badge {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.az-cert-title { font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.az-cert-desc { font-size: 14px; color: #555560; line-height: 1.7; margin-bottom: 12px; }
.az-cert-year { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); }

/* CTA */
.az-cta { background: var(--red); padding: 80px 40px; }
.az-cta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px; }
.az-cta-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.05; margin-bottom: 10px; }
.az-cta-sub { font-size: 15px; color: rgba(255,255,255,.8); }
.az-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.az-btn-white { background: #fff; color: var(--red); padding: 14px 32px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; white-space: nowrap; }
.az-btn-white:hover { opacity: .9; }
.az-btn-outline { border: 2px solid rgba(255,255,255,.5); color: #fff; padding: 14px 32px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; white-space: nowrap; }
.az-btn-outline:hover { border-color: #fff; }

/* Responsive azienda */
@media (max-width: 1024px) {
  .az-storia-grid { grid-template-columns: 1fr; gap: 48px; }
  .az-valori-grid { grid-template-columns: repeat(2, 1fr); }
  .az-team-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .az-hero-inner { padding: 0 24px 60px; }
  .az-section    { padding: 64px 20px; }
  .az-cert-grid  { grid-template-columns: 1fr; }
  .az-cta        { padding: 60px 20px; }
  .az-cta-inner  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .az-valori-grid { grid-template-columns: 1fr; }
  .az-team-grid   { grid-template-columns: 1fr; }
}

.fm2-footer-col {
  align-items: flex-start;
}
.fm2-footer-col ul {
  margin: 0;
}
/* ══════════════════════════════════════
   PAGINA CATEGORIA (Compressori ecc.)
══════════════════════════════════════ */

.cp-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.cp-reveal.cp-visible { opacity: 1; transform: none; }
.cp-reveal-2 { transition-delay: .15s; }

.cp-container { max-width: 1200px; margin: 0 auto; }
.cp-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--red); margin-bottom: 12px; }
.cp-h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; text-transform: uppercase; color: var(--navy); line-height: 1.05; margin-bottom: 24px; }
.cp-lead { font-size: 15px; color: #555560; line-height: 1.85; margin-bottom: 32px; }
.cp-rule { width: 40px; height: 3px; background: var(--red); border-radius: 2px; margin-bottom: 20px; }
.cp-rule--sm { width: 24px; margin-bottom: 12px; }

/* Hero */
.cp-hero { position: relative; min-height: 80vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: var(--header-h); }
.cp-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,16,42,.95) 0%, rgba(4,16,42,.55) 55%, rgba(4,16,42,.15) 100%); }
.cp-hero-inner { position: relative; z-index: 2; padding: 0 80px 80px; max-width: 1000px; width: 100%; }
.cp-hero-badge { display: inline-block; background: var(--red); color: #fff; padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 2px; margin-bottom: 20px; }
.cp-hero-title { font-size: clamp(40px, 6vw, 80px); font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.0; margin-bottom: 20px; }
.cp-hero-sub { font-size: 18px; font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.75; max-width: 560px; margin-bottom: 36px; }
.cp-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.cp-btn-red { background: var(--red); color: #fff; padding: 14px 32px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; }
.cp-btn-outline { border: 2px solid rgba(255,255,255,.4); color: #fff; padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; }
.cp-btn-navy { display: inline-block; background: var(--navy); color: #fff; padding: 14px 28px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; transition: background .2s; }
.cp-btn-navy:hover { background: #1a3080; }

/* Sezioni */
.cp-section { padding: 100px 40px; }
.cp-section--white { background: #fff; }
.cp-section--gray { background: #F5F5F7; }

/* Intro */
.cp-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cp-feat { background: #F5F5F7; border: 1px solid #EAEAEC; padding: 24px; }
.cp-feat-title { font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.cp-feat-text { font-size: 13px; color: #555560; line-height: 1.6; }

/* FAQ */
.cp-faq { border-bottom: 1px solid #EAEAEC; padding: 24px 0; }
.cp-faq-q { font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.cp-faq-a { font-size: 14px; color: #555560; line-height: 1.75; }

/* CTA */
.cp-cta { background: var(--red); padding: 80px 40px; }
.cp-cta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px; }
.cp-cta-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1.05; margin-bottom: 10px; }
.cp-cta-sub { font-size: 15px; color: rgba(255,255,255,.8); }
.cp-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1024px) {
  .cp-intro-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .cp-hero-inner { padding: 0 24px 60px; }
  .cp-section { padding: 64px 20px; }
  .cp-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-cta { padding: 60px 20px; }
  .cp-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .cp-feat-grid { grid-template-columns: 1fr; }
}
/* ══════════════════════════════════════
   FIX LINK VISITATI — GLOBALE
══════════════════════════════════════ */
a:visited { color: #fff !important; }
.fm2-header.scrolled a:visited { color: var(--navy) !important; }
.fm2-mega-links a:visited { color: rgba(255, 255, 255, .85) !important; }
.fm2-mob-sub a:visited { color: rgba(255, 255, 255, .65) !important; }
.fm2-mob-header:visited { color: rgba(255, 255, 255, .75) !important; }
.fm2-footer-col ul li a:visited { color: var(--gray-text) !important; }
.fm2-contact-item-val a:visited { color: var(--navy) !important; }
.fm2-archive-cats a:visited { color: #999 !important; }
.fm2-product-category a:visited { color: var(--red) !important; }
.fh-btn-red:visited,
.fh-btn-outline:visited,
.fh-btn-navy:visited,
.fh-btn-white:visited,
.fh-btn-outline-white:visited,
.cp-btn-red:visited,
.cp-btn-outline:visited,
.cp-btn-navy:visited,
.az-btn-white:visited,
.az-btn-outline:visited,
.fh-link-arrow:visited { color: inherit !important; }
.fh-prod-cat a:visited { color: var(--red) !important; }
.fh-prod-name:visited { color: var(--navy) !important; }
.az-hero-nav a:visited { color: rgba(255,255,255,.7) !important; }
.fm2-hub-card-title:visited { color: var(--navy) !important; }
.fm2-news-card-title:visited { color: var(--navy) !important; }