/* ============================================================
   Unichimica — Palette dal logo aziendale
   Blu #004F8B · Giallo #FFD200 · Navy #152238
   Heading: Playfair Display · Body: Raleway
   ============================================================ */

:root {
  --red:      #004F8B;
  --red-dark: #003662;
  --yellow:   #FFD200;
  --navy:     #152238;
  --dark:     #1a2a3a;
  --body:     #3a4a5a;
  --gray:     #6a7a8a;
  --light:    #f0f4f8;
  --border:   #d0d8e0;
  --white:    #ffffff;
  --max:      1180px;
  --pad:      30px;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Raleway', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Legal pages ── */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px var(--pad) 64px;
}
.legal-update {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 32px;
  font-style: italic;
}
.legal-page h2 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-page p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-page li {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-page a { color: var(--red); }
.legal-page a:hover { text-decoration: underline; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 18px var(--pad);
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}
.cookie-inner a { color: var(--yellow); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.cookie-btn--accept {
  background: var(--yellow);
  color: var(--navy);
}
.cookie-btn--accept:hover { background: #ffe44d; }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
}
.cookie-btn--reject:hover { border-color: rgba(255,255,255,.6); color: var(--white); }
.cookie-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.5);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
}
.cookie-close:hover { color: #fff; background: rgba(255,255,255,.08); }
.cookie-banner { position: fixed; }
.footer-bottom .cookie-settings {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 6px 8px;
  margin: 0 2px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom .cookie-settings:hover { color: var(--yellow); }

/* ── Smooth reveal animation ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content, .impact-stats, .impact-bottom, .impact-features,
.quality-inner, .client-inner, .categories-inner, .map-inner,
.section-cta-dark .cta-dark-inner {
  animation: fadeInUp .8s ease-out both;
}

/* ── Utility ── */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: 8px;
}

/* ── Buttons ── */
.btn-red {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, #0066aa 100%);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 15px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(0,79,139,.25);
  position: relative;
  overflow: hidden;
}
.btn-red::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s;
}
.btn-red:hover::after { left: 100%; }
.btn-red:hover {
  box-shadow: 0 6px 24px rgba(0,79,139,.35);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 13px 28px;
  border-radius: 6px;
  transition: all .3s;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,79,139,.25);
}

/* ═══════════════════════════════════
   ① TOPBAR
═══════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--navy) 0%, #1a3450 100%);
  color: #8a9ab0;
  font-size: 12px;
  font-weight: 500;
  padding: 9px var(--pad);
  letter-spacing: .03em;
  border-bottom: 1px solid rgba(255,210,0,.15);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; opacity: .7; }
.topbar-item a, .topbar-right a { color: #8a9ab0; transition: all .3s; }
.topbar-item a:hover, .topbar-right a:hover { color: var(--yellow); }
.topbar-sep { color: #555; }

/* ═══════════════════════════════════
   ② HEADER / NAV
═══════════════════════════════════ */
.site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(208,216,224,.4);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 4px 30px rgba(0,40,80,.06);
  transition: all .4s;
}
.site-header:hover {
  box-shadow: 0 6px 40px rgba(0,40,80,.1);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  transition: transform .3s;
}
.logo:hover { transform: scale(1.03); }
.logo-img { height: 55px; width: auto; transition: filter .3s; }
.logo:hover .logo-img { filter: brightness(1.05); }
.footer-logo-img { height: 45px; width: auto; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: block;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  position: relative;
  overflow: hidden;
}
/* Shimmer light on hover */
.main-nav a::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,79,139,.06), transparent);
  transition: left .5s;
}
.main-nav a:hover::before { left: 100%; }
/* Underline gradient animation */
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  border-radius: 2px;
  transition: left .35s cubic-bezier(.25,.8,.25,1), right .35s cubic-bezier(.25,.8,.25,1);
}
.main-nav a:hover {
  color: var(--red);
  background: rgba(0,79,139,.04);
  border-color: rgba(0,79,139,.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,40,80,.06);
}
.main-nav a:hover::after {
  left: 18px;
  right: 18px;
}
.main-nav a.nav-active {
  color: var(--red);
  font-weight: 700;
  background: rgba(0,79,139,.05);
  border-color: rgba(0,79,139,.1);
}
.main-nav a.nav-active::after {
  left: 18px;
  right: 18px;
  background: var(--red);
}
/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  position: relative;
}
.nav-dropdown > a::before,
.nav-dropdown > a::after { /* keep existing effects */ }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(208,216,224,.5);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,40,80,.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
  z-index: 300;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: rgba(255,255,255,.97);
  border-left: 1px solid rgba(208,216,224,.5);
  border-top: 1px solid rgba(208,216,224,.5);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 16px !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: var(--body) !important;
  border-radius: 6px;
  transition: all .25s;
  text-transform: none !important;
  letter-spacing: .02em !important;
}
.nav-dropdown-menu a::before,
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  background: var(--light) !important;
  color: var(--red) !important;
  padding-left: 20px !important;
  transform: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* CTA button */
.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--red) 0%, #0066aa 100%);
  color: var(--white);
  margin-left: 14px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 16px rgba(0,79,139,.25);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  position: relative;
  overflow: hidden;
}
.main-nav .nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s;
}
.main-nav .nav-cta:hover::before { left: 100%; }
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover {
  box-shadow: 0 8px 28px rgba(0,79,139,.4);
  transform: translateY(-3px);
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, #0066aa 100%);
  border: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  transition: transform .3s;
}
.nav-toggle:hover { transform: scale(1.1); }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════
   ③ HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  color: var(--white);
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}
.hero-slide--active { transform: scale(1); }
.hero-slide--active { opacity: 1; }
@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-slide--active { animation: slowZoom 10s ease-out forwards; }
/* Dark overlay on top of images */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(10,22,40,.88) 0%, rgba(13,34,64,.7) 40%, rgba(16,48,96,.55) 70%, rgba(21,34,56,.75) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(255,210,0,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,79,139,.1) 0%, transparent 50%);
}
/* Dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .3s, border-color .3s;
}
.hero-dot--active {
  background: var(--yellow);
  border-color: var(--yellow);
}
.hero-dot:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.4);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.hero-content { max-width: 640px; }
.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero-accent { color: var(--yellow); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.hero-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-left: 4px solid var(--yellow);
  padding: 22px 30px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 140px;
  transition: transform .3s, background .3s;
}
.hero-badge:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.14);
}
.badge-num { display: block; font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; }
.badge-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ═══════════════════════════════════
   ④ IMPACT SECTION
═══════════════════════════════════ */
.section-impact {
  padding: 80px var(--pad);
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-impact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,79,139,.3) 0%, transparent 70%);
  pointer-events: none;
}
.section-impact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,210,0,.1) 0%, transparent 70%);
  pointer-events: none;
}
.impact-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
  text-align: center;
}
.impact-stat {
  padding: 28px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s, background .3s;
}
.impact-stat:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
}
.impact-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-num::after { content: '+'; }
.impact-num--no-plus::after { content: ''; }
.impact-num--text { font-size: clamp(1.6rem, 3vw, 2.4rem) !important; }
.impact-num--text::after { content: ''; }
.impact-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}
.impact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.impact-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.impact-text p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  max-width: 560px;
}
.impact-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.impact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.impact-feat {
  padding: 24px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  transition: background .3s, transform .3s;
}
.impact-feat:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-3px);
}
.impact-feat-icon {
  color: var(--yellow);
  margin-bottom: 14px;
}
.impact-feat h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.impact-feat p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .impact-stats { grid-template-columns: repeat(2, 1fr); }
  .impact-features { grid-template-columns: repeat(2, 1fr); }
  .impact-bottom { flex-direction: column; text-align: center; align-items: center; }
  .impact-actions { justify-content: center; }
}
@media (max-width: 480px) {
  .impact-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .impact-features { grid-template-columns: 1fr; }
  .impact-actions { flex-direction: column; width: 100%; }
  .impact-actions .btn-red, .impact-actions .btn-outline { text-align: center; }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--pad);
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .03em;
}
.trust-item svg { color: var(--red); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}
@media (max-width: 768px) {
  .trust-divider { display: none; }
  .trust-bar-inner { flex-direction: column; gap: 10px; }
}

/* ── Home Settori ── */
.home-settori {
  padding: 70px var(--pad);
  background: var(--light);
}
.home-settori-inner { max-width: var(--max); margin: 0 auto; }
.home-settori-header {
  text-align: center;
  margin-bottom: 40px;
}
.home-settori-header h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.home-settori-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.home-settore {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .35s;
  box-shadow: 0 2px 8px rgba(0,40,80,.04);
}
.home-settore:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,40,80,.12);
  border-color: var(--red);
}
.home-settore-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(0,79,139,.08), rgba(0,79,139,.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: all .35s;
}
.home-settore:hover .home-settore-icon {
  background: linear-gradient(135deg, var(--red), #0066aa);
  color: var(--white);
  transform: scale(1.1);
}
.home-settore h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
}
@media (max-width: 768px) {
  .home-settori-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .home-settori-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Hero extras ── */
.hero-pretitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
  margin-bottom: 16px;
  opacity: .9;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-outline--light {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline--light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ── Process / Come lavoriamo ── */
.home-process {
  padding: 80px var(--pad);
  background: var(--white);
}
.home-process-inner { max-width: var(--max); margin: 0 auto; }
.home-process-header {
  text-align: center;
  margin-bottom: 56px;
}
.home-process-header h2 {
  font-size: 1.3rem;
  color: var(--dark);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.process-step-num {
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--red), #0066aa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all .35s;
  box-shadow: 0 4px 16px rgba(0,79,139,.2);
}
.process-step:hover .process-step-num {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(0,79,139,.3);
}
.process-step-line {
  position: absolute;
  top: 26px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  z-index: 1;
  opacity: .3;
}
.process-step:last-child .process-step-line { display: none; }
.process-step h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-step-line { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Home Photo Section ── */
.home-photo {
  padding: 0;
  background: var(--navy);
  overflow: hidden;
}
.home-photo-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.home-photo-img {
  overflow: hidden;
}
.home-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.home-photo-inner:hover .home-photo-img img {
  transform: scale(1.05);
}
.home-photo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  color: var(--white);
}
.home-photo-text h2 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.35;
}
.home-photo-text p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.home-photo-text .why-card-link { color: var(--yellow); }
.home-photo-text .why-card-link:hover { letter-spacing: .1em; }

@media (max-width: 768px) {
  .home-photo-inner { grid-template-columns: 1fr; }
  .home-photo-img { height: 260px; }
  .home-photo-text { padding: 40px 28px; }
}

/* ── Why Choose Us ── */
.home-why {
  padding: 80px var(--pad);
  background: var(--white);
}
.home-why-inner { max-width: var(--max); margin: 0 auto; }
.home-why-header {
  text-align: center;
  margin-bottom: 48px;
}
.home-why-header h2 {
  font-size: 1.4rem;
  color: var(--dark);
}
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  position: relative;
  transition: all .4s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 2px 8px rgba(0,40,80,.04);
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,40,80,.14);
  border-color: transparent;
}
.why-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .4s;
}
.why-card:hover .why-card-num { color: rgba(0,79,139,.12); }
.why-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
}
.why-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: letter-spacing .3s;
}
.why-card:hover .why-card-link { letter-spacing: .1em; }

@media (max-width: 768px) {
  .home-why-grid { grid-template-columns: 1fr; }
}

/* ── Home Product Search ── */
.home-search {
  padding: 70px var(--pad);
  background: var(--light);
}
.home-search-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.home-search-text h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.home-search-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}
.home-search-box { position: relative; }
.home-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: border-color .3s, box-shadow .3s;
}
.home-search-input-wrap:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(0,79,139,.08);
}
.home-search-input-wrap svg { color: var(--gray); flex-shrink: 0; }
.home-search-input-wrap input {
  border: none;
  outline: none;
  width: 100%;
  padding: 16px 0;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  color: var(--dark);
}
.home-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  z-index: 50;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(0,40,80,.14);
  overflow: hidden;
}
.hsr-item {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--body);
  border-bottom: 1px solid var(--light);
  transition: all .2s;
}
.hsr-item:last-child { border-bottom: none; }
.hsr-item:hover {
  background: var(--light);
  color: var(--red);
  padding-left: 26px;
}
.hsr-empty {
  color: var(--gray);
  cursor: default;
}
.hsr-empty a { color: var(--red); font-weight: 600; }
.home-search-all {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: letter-spacing .3s;
}
.home-search-all:hover { letter-spacing: .1em; }

@media (max-width: 768px) {
  .home-search-inner { grid-template-columns: 1fr; }
}

/* ── Quick Form CTA ── */
.quick-form {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.quick-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .3s, background .3s;
}
.quick-form input::placeholder { color: rgba(255,255,255,.5); }
.quick-form input:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.15);
}
.quick-form .btn-red {
  flex-shrink: 0;
}
.qf-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
}
.qf-success svg { color: #43a047; }

/* ── Map Section ── */
.section-map {
  padding: 80px var(--pad);
  background: var(--white);
}
.map-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,40,80,.1);
  border: 1px solid var(--border);
}
.map-info {
  padding: 40px 36px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-info h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.map-address {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map-address-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.map-address-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.map-address-item strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 2px;
}
.map-address-item span {
  font-size: 14px;
  color: var(--gray);
}
.map-embed {
  position: relative;
  min-height: 360px;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .map-inner { grid-template-columns: 1fr; }
  .map-info { padding: 28px 24px; }
  .map-embed { min-height: 280px; position: relative; }
}

/* ── Feature (kept for legacy) ── */
.section-feature {
  padding: 80px var(--pad);
  background: var(--white);
}
.feature-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 50px;
  align-items: center;
}
.feature-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
}
.feature-text p { color: var(--body); line-height: 1.8; margin-bottom: 16px; }
.cert-badges { display: flex; gap: 16px; margin-top: 28px; }
.cert-badge {
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 12px 20px;
  text-align: center;
  min-width: 100px;
}
.cert-badge strong { display: block; font-size: 1.4rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.cert-badge span { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-top: 4px; }
.cert-badge--outline { border-color: var(--border); }
.cert-badge--outline strong { color: var(--dark); }
.feature-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.feature-map {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,40,80,.15);
}
.feature-image {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,40,80,.12);
  position: relative;
}
.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.3);
  pointer-events: none;
}

/* ═══════════════════════════════════
   ⑤ QUALITÀ (wave divider)
═══════════════════════════════════ */
.section-quality {
  position: relative;
  background: linear-gradient(180deg, var(--light) 0%, #e8eef4 100%);
  padding: 70px var(--pad) 70px;
  margin-top: 0;
}
.wave-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}
.wave-top svg { width: 100%; height: 100%; }
.quality-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.quality-col p { color: var(--body); line-height: 1.8; margin-bottom: 16px; }
.quality-col p:last-child { margin-bottom: 0; }
.iso-badge {
  margin-bottom: 28px;
  display: inline-flex;
}
.iso-badges-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.iso-ring {
  width: 105px; height: 105px;
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transition: all .4s;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,79,139,.08);
}
.iso-ring:hover {
  transform: scale(1.12) rotate(3deg);
  border-color: var(--yellow);
  box-shadow: 0 8px 30px rgba(0,79,139,.18);
}
.iso-ring span { font-size: 11px; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .06em; line-height: 1; }
.iso-ring strong { font-size: 1.2rem; font-weight: 900; color: var(--dark); line-height: 1.2; }
.iso-ring small { font-size: 9px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.cert-badge { border-color: var(--red); }
.cert-badge--outline { border-color: var(--border); }

@media (max-width: 480px) {
  .iso-badges-row { gap: 10px; }
  .iso-ring { width: 85px; height: 85px; }
  .iso-ring strong { font-size: 1rem; }
}

/* ═══════════════════════════════════
   ⑥ CLIENT SECTION
═══════════════════════════════════ */
.section-client {
  padding: 80px var(--pad);
  background: var(--white);
}
.client-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
.client-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform .6s;
}
.client-image:hover .client-img {
  transform: scale(1.05);
}
.client-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,40,80,.12);
}
.client-text h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 24px;
}
.client-text p { color: var(--body); line-height: 1.8; margin-bottom: 14px; }

/* ═══════════════════════════════════
   ⑦ CATEGORIE (photo cards)
═══════════════════════════════════ */
.section-categories {
  padding: 80px var(--pad);
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}
.categories-inner { max-width: var(--max); margin: 0 auto; }
.categories-inner h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
  margin-bottom: 36px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cat-card {
  position: relative;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
  transition: transform .4s, box-shadow .4s;
}
.cat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,40,80,.25);
}
.cat-card--1 {
  background: linear-gradient(135deg, #0a1e3d, #004F8B),
              url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=600&q=80') center/cover;
  background-blend-mode: overlay;
}
.cat-card--2 {
  background: linear-gradient(135deg, #0d2a50, #1a6aaf),
              url('https://images.unsplash.com/photo-1603126857599-f6e157fa2fe6?w=600&q=80') center/cover;
  background-blend-mode: overlay;
}
.cat-card--3 {
  background: linear-gradient(135deg, #152238, #2a5a8a),
              url('https://images.unsplash.com/photo-1616400619175-5beda3a17896?w=600&q=80') center/cover;
  background-blend-mode: overlay;
}
.cat-card--4 {
  background: linear-gradient(135deg, #1a3050, #3a7ab0),
              url('https://images.unsplash.com/photo-1504893524553-b855bce32c67?w=600&q=80') center/cover;
  background-blend-mode: overlay;
}
.cat-card--5 {
  background: linear-gradient(135deg, #0a1628, #004070),
              url('https://images.unsplash.com/photo-1606567595334-d39972c85dbe?w=600&q=80') center/cover;
  background-blend-mode: overlay;
}
.cat-card--6 {
  background: linear-gradient(135deg, #102840, #2a6090),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85f82e?w=600&q=80') center/cover;
  background-blend-mode: overlay;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  transition: background .3s;
}
.cat-card:hover .cat-overlay { background: linear-gradient(to top, rgba(0,79,139,.85) 0%, rgba(0,0,0,.3) 100%); }
.cat-label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 16px;
  line-height: 1.3;
}
.cat-label small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  opacity: .7;
  margin-top: 4px;
  text-transform: none;
}

/* ═══════════════════════════════════
   ⑧ CTA DARK BANNER
═══════════════════════════════════ */
.section-cta-dark {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, var(--navy) 100%);
  padding: 80px var(--pad);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-cta-dark::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,210,0,.05) 0%, transparent 40%),
              radial-gradient(circle at 70% 50%, rgba(0,79,139,.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-dark-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.cta-dark-inner h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.cta-dark-inner p {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  margin-bottom: 32px;
  line-height: 1.75;
}

/* ═══════════════════════════════════
   ⑨ PRODUCTS
═══════════════════════════════════ */
.section-products { padding: 80px var(--pad); background: var(--white); }
.products-inner { max-width: var(--max); margin: 0 auto; }
.products-inner h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
  margin-bottom: 12px;
}
.products-intro { text-align: center; color: var(--gray); margin-bottom: 28px; font-size: 16px; }
.search-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; justify-content: center; }
#product-search {
  width: 100%;
  max-width: 440px;
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-radius: 3px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
#product-search:focus { border-color: var(--red); }
#product-count { color: var(--gray); font-size: 14px; font-weight: 600; white-space: nowrap; }
.product-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.product-grid li {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  transition: border-left-color .2s, background .2s;
}
.product-grid li { cursor: pointer; }
.product-grid li:hover { border-left-color: var(--red); background: #f0f6fc; }
.products-show-more { text-align: center; margin-top: 28px; }

/* ═══════════════════════════════════
   ⑩ FOOTER
═══════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #1a2e48 0%, var(--navy) 100%);
  color: #9aabbf;
  padding: 60px var(--pad) 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.footer-col p svg { flex-shrink: 0; margin-top: 4px; }
.footer-col p a { color: #aaa; transition: color .2s; }
.footer-col p a:hover { color: var(--red); }
.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; color: #9aabbf; line-height: 1.5; }
.footer-col ul a { font-size: 14px; color: #9aabbf; transition: color .2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 0;
  font-size: 13px;
  color: #666;
  text-align: center;
}
.footer-bottom a { color: #666; margin: 0 4px; }
.footer-bottom a:hover { color: var(--red); }

/* ═══════════════════════════════════
   INNER PAGE STYLES
═══════════════════════════════════ */
.page-hero {
  background: linear-gradient(180deg, #edf3f9 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px var(--pad) 40px;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 400; text-transform: uppercase; margin-bottom: 8px; color: var(--dark); }
.page-hero p { color: var(--gray); font-size: 16px; }

/* Chi siamo - Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,210,0,.3); }
  50%      { box-shadow: 0 0 20px 4px rgba(255,210,0,.15); }
}
.about-hero-inner h1 {
  animation: slideInLeft .8s ease-out both;
}
.about-hero-inner p {
  animation: slideInLeft 1s ease-out .2s both;
}
.about-donau-badge {
  animation: pulseGlow 3s ease-in-out infinite;
}
.about-intro-img {
  animation: slideInRight .8s ease-out both;
}
.about-struttura-img {
  animation: slideInLeft .8s ease-out both;
}

/* Chi siamo - Hero */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.about-hero-bg { position: absolute; inset: 0; }
.about-hero-bg img {
  width: 100%; height: 110%; object-fit: cover;
  animation: slowZoom 12s ease-out forwards;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.85) 0%, rgba(21,34,56,.75) 100%);
}
.about-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 80px var(--pad);
}
.about-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.about-hero p { color: rgba(255,255,255,.7); font-size: 16px; }

/* Chi siamo - Numeri */
.about-numbers {
  background: var(--navy);
  padding: 0;
  margin-top: -1px;
}
.about-numbers-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--yellow);
}
.about-num {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: all .35s;
  position: relative;
}
.about-num:last-child { border-right: none; }
.about-num:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-3px);
}
.about-num::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .35s;
}
.about-num:hover::after { transform: scaleX(1); }
.about-num-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.about-num-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Chi siamo - Intro */
.about-intro-section {
  padding: 80px var(--pad);
  background: var(--white);
}
.about-intro-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.about-intro-text h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 18px;
}
.about-intro-text p {
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-intro-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,40,80,.12);
}
.about-intro-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .6s;
}
.about-intro-img:hover img { transform: scale(1.05); }

/* Chi siamo - Donau Chemie */
.about-donau {
  padding: 60px var(--pad);
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
}
.about-donau-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.about-donau-badge {
  flex-shrink: 0;
  width: 180px; height: 180px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transition: transform .4s;
}
.about-donau-badge:hover { transform: rotate(5deg) scale(1.05); }
.about-donau-badge span { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }
.about-donau-badge strong { font-family: var(--font-heading); font-size: 1.2rem; color: var(--yellow); margin: 4px 0; }
.about-donau-text p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.85; }

/* Chi siamo - Struttura */
.about-struttura {
  padding: 80px var(--pad);
  background: var(--light);
}
.about-struttura-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.about-struttura-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,40,80,.12);
}
.about-struttura-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .6s;
}
.about-struttura-img:hover img { transform: scale(1.05); }
.about-struttura-text h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 18px;
}
.about-struttura-text p {
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Chi siamo - Settori */
.about-settori {
  padding: 80px var(--pad);
  background: var(--white);
}
.about-settori-inner { max-width: var(--max); margin: 0 auto; }
.about-settori-header {
  text-align: center;
  margin-bottom: 40px;
}
.about-settori-header h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.about-settori-header p { color: var(--gray); font-size: 16px; }

/* Chi siamo - Missione */
.about-mission {
  padding: 80px var(--pad);
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
  text-align: center;
}
.about-mission-inner { max-width: 800px; margin: 0 auto; }
.about-mission h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 28px;
}
.about-mission-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}
.about-mission-cols > div {
  padding: 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .35s;
}
.about-mission-cols > div:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,210,0,.2);
  transform: translateY(-4px);
}
.about-mission-cols p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  margin-bottom: 12px;
}
.about-mission-cols p:last-child { margin-bottom: 0; }

/* Chi siamo - Certificazioni */
.about-cert {
  padding: 80px var(--pad);
  background: var(--white);
  text-align: center;
}
.about-cert-inner { max-width: var(--max); margin: 0 auto; }
.about-cert h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 36px;
}
.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .about-cert-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-cert-card {
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all .35s;
  box-shadow: 0 2px 8px rgba(0,40,80,.05);
}
.about-cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,40,80,.12);
  border-color: var(--red);
}
.about-cert-ring {
  width: 90px; height: 90px;
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: all .35s;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,79,139,.08);
}
.about-cert-card:hover .about-cert-ring {
  border-color: var(--yellow);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,79,139,.15);
}
.about-cert-ring span { font-size: 11px; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .06em; line-height: 1; }
.about-cert-ring strong { font-size: 1rem; font-weight: 900; color: var(--dark); line-height: 1.2; }
.about-cert-card h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--dark); margin-bottom: 8px; }
.about-cert-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
a.about-cert-card { text-decoration: none; color: inherit; display: block; }

/* Chi siamo - Timeline */
.about-timeline {
  padding: 80px var(--pad);
  background: var(--white);
}
.about-timeline-inner { max-width: var(--max); margin: 0 auto; }
.about-timeline-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-timeline-header h2 {
  font-size: 1.3rem;
  color: var(--dark);
}
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--red) 100%);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -33px; top: 4px;
  width: 16px; height: 16px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--red);
  z-index: 2;
  transition: all .3s;
}
.timeline-item:hover .timeline-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow), 0 0 16px rgba(255,210,0,.3);
  transform: scale(1.2);
}
.timeline-content {
  background: var(--light);
  border-radius: 10px;
  padding: 24px 28px;
  border-left: 3px solid transparent;
  transition: all .3s;
}
.timeline-item:hover .timeline-content {
  border-left-color: var(--yellow);
  box-shadow: 0 6px 24px rgba(0,40,80,.08);
}
.timeline-content h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
}

/* Chi siamo - Settori con gerarchia */
.settori-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.settore-main-card {
  border-left: 4px solid var(--yellow) !important;
}
.settore-main-card::before {
  background: linear-gradient(90deg, var(--yellow), var(--red)) !important;
}
.settore-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  color: var(--dark);
}
.settori-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Chi siamo - CTA */
.about-cta {
  padding: 80px var(--pad);
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
  text-align: center;
}
.about-cta-inner { max-width: 640px; margin: 0 auto; }
.about-cta h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}
.about-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Chi siamo - Sedi rework */
.about-sedi-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.about-sedi-map-full {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,40,80,.1);
  min-height: 320px;
}
.about-sedi-map-full iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.about-sedi-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.about-sede-card-compact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,40,80,.05);
  transition: all .3s;
}
.about-sede-card-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,40,80,.1);
  border-color: var(--red);
}
.sede-compact-marker {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), #0066aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.about-sede-card-compact h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.about-sede-card-compact p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .timeline { padding-left: 32px; }
  .timeline-dot { left: -25px; }
  .settori-main { grid-template-columns: 1fr; }
  .settori-secondary { grid-template-columns: 1fr 1fr; }
  .about-sedi-main { grid-template-columns: 1fr; }
  .about-sedi-map-full { min-height: 260px; }
}
@media (max-width: 480px) {
  .settori-secondary { grid-template-columns: 1fr; }
}

/* Chi siamo - Sedi (legacy) */
.about-sedi {
  padding: 80px var(--pad);
  background: var(--light);
}
.about-sedi-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.about-sedi h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 36px;
}
.about-sedi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.about-sede-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,40,80,.06);
  transition: all .35s;
}
.about-sede-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,40,80,.12);
}
.about-sede-map { height: 200px; }
.about-sede-map iframe { width: 100%; height: 100%; border: none; }
.about-sede-info { padding: 20px 24px; }
.about-sede-info h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); margin-bottom: 8px; }
.about-sede-info p { font-size: 15px; color: var(--body); line-height: 1.6; margin-bottom: 4px; }
.about-sede-tel { font-size: 13px !important; color: var(--gray) !important; }
.about-sede-tel a { color: var(--red); }

/* Chi siamo - Responsive */
@media (max-width: 768px) {
  .about-numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .about-intro-inner { grid-template-columns: 1fr; }
  .about-intro-img img { height: 260px; }
  .about-donau-inner { flex-direction: column; text-align: center; }
  .about-donau-badge { width: 140px; height: 140px; }
  .about-struttura-inner { grid-template-columns: 1fr; }
  .about-struttura-img img { height: 260px; }
  .about-mission-cols { grid-template-columns: 1fr; }
  .about-cert-grid { grid-template-columns: 1fr; }
  .about-sedi-grid { grid-template-columns: 1fr; }
}

/* Legacy about (keep for compatibility) */
.about-page { max-width: var(--max); margin: 0 auto; padding: 56px var(--pad); }
.about-section { margin-bottom: 36px; }
.about-section h2 { font-size: 1.2rem; font-weight: 400; text-transform: uppercase; margin-bottom: 14px; color: var(--dark); }
.about-section p { color: var(--body); line-height: 1.8; }

/* Servizi */
.services-page { max-width: var(--max); margin: 0 auto; padding: 56px var(--pad); }

/* Certificazioni */
/* Cert benefits */
.cert-benefits {
  background: var(--navy);
  padding: 0;
  border-top: 3px solid var(--yellow);
}
.cert-benefits-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cert-benefit {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
.cert-benefit:last-child { border-right: none; }
.cert-benefit:hover { background: rgba(255,255,255,.05); }
.cert-benefit-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  background: rgba(255,210,0,.12);
  border: 2px solid rgba(255,210,0,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  transition: all .35s;
}
.cert-benefit:hover .cert-benefit-icon {
  background: var(--yellow);
  color: var(--navy);
  transform: scale(1.1);
}
.cert-benefit h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 6px;
}
.cert-benefit p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* Cert CTA */
.cert-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-radius: 14px;
  padding: 48px 40px;
  overflow: hidden;
  position: relative;
}
.cert-cta::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,210,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cert-cta-inner { position: relative; z-index: 1; }
.cert-cta-text { text-align: center; margin-bottom: 28px; }
.cert-cta-text h2 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.cert-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.cert-cta-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cert-cta-form input,
.cert-cta-form select {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .3s, background .3s;
}
.cert-cta-form input::placeholder { color: rgba(255,255,255,.5); }
.cert-cta-form input:focus,
.cert-cta-form select:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.15);
}
.cert-cta-form select { cursor: pointer; }
.cert-cta-form select option { color: var(--dark); background: var(--white); }

@media (max-width: 768px) {
  .cert-benefits-inner { grid-template-columns: 1fr; }
  .cert-benefit { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .cert-benefit:last-child { border-bottom: none; }
  .cert-cta { padding: 32px 24px; }
  .cert-cta-form { flex-direction: column; }
}

.cert-page { max-width: var(--max); margin: 0 auto; padding: 56px var(--pad); }
.cert-intro {
  font-size: 17px;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 48px;
  max-width: 800px;
}
.cert-intro p { margin-bottom: 12px; }
.cert-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,40,80,.06);
  transition: transform .3s, box-shadow .3s;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,40,80,.12);
}
.cert-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
}
.cert-card-badge {
  width: 64px; height: 64px;
  background: rgba(255,210,0,.15);
  border: 2px solid rgba(255,210,0,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}
.cert-card-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}
.cert-card-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: none;
}
.cert-card-body {
  padding: 28px 32px;
}
.cert-card-body p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.cert-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cert-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}
.cert-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.cert-integrated {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--light);
  border-radius: 12px;
  border-left: 4px solid var(--yellow);
  margin-bottom: 48px;
}
.cert-integrated-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.cert-integrated h2 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.cert-integrated p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .cert-card-header { padding: 20px 24px; }
  .cert-card-body { padding: 20px 24px; }
  .cert-points { grid-template-columns: 1fr; }
  .cert-integrated { flex-direction: column; padding: 24px; }
}
.cards { display: flex; gap: 20px; flex-wrap: wrap; }
.cards-large { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 10px;
  padding: 32px 28px;
  flex: 1;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 2px 8px rgba(0,40,80,.06);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 10px 10px 0 0;
  transition: height .3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,40,80,.14);
  border-color: var(--red);
}
.card:hover::before { height: 5px; }
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 12px;
  color: var(--dark);
  transition: color .3s;
}
.card:hover h3 { color: var(--red); }
.card p { font-size: 15px; color: var(--gray); line-height: 1.8; }
.card-icon {
  color: var(--red);
  margin-bottom: 18px;
  transition: transform .3s;
}
.card:hover .card-icon { transform: scale(1.15); }
.cta-section { margin-top: 48px; background: var(--light); border-radius: 4px; padding: 40px; text-align: center; }
.cta-section h2 { font-size: 1.2rem; font-weight: 400; text-transform: uppercase; margin-bottom: 10px; color: var(--dark); }
.cta-section p { color: var(--gray); margin-bottom: 24px; font-size: 16px; }

/* Contatti */
.contact-page { max-width: var(--max); margin: 0 auto; padding: 48px var(--pad) 0; }

/* Quick contacts */
.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.cq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
  box-shadow: 0 2px 10px rgba(0,40,80,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,40,80,.12);
  border-color: var(--red);
}
.cq-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), #0066aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}
.cq-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark);
  margin-bottom: 6px;
}
.cq-card p { font-size: 15px; color: var(--body); margin-bottom: 12px; }
.cq-action {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: letter-spacing .3s;
}
.cq-card:hover .cq-action { letter-spacing: .1em; }

/* Main layout */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin-bottom: 48px;
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 2px 10px rgba(0,40,80,.05);
}
.contact-form-card h2 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-hint {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}
.contact-form { }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
  color: var(--dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(0,79,139,.1);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-submit { width: 100%; text-align: center; margin-top: 8px; }
.contact-success {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 20px 24px;
}
.contact-success svg { color: #43a047; flex-shrink: 0; }
.contact-success h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: #2e7d32; margin-bottom: 2px; }
.contact-success p { font-size: 14px; color: #555; }

/* Side */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-sede, .contact-orari {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,40,80,.05);
  transition: transform .3s, box-shadow .3s;
}
.contact-sede:hover, .contact-orari:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,40,80,.1);
}
.contact-sede h3, .contact-orari h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.contact-sede h3 svg, .contact-orari h3 svg { color: var(--red); }
.contact-sede p { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 4px; }
.contact-sede-tel { font-size: 14px; color: var(--gray); }
.contact-sede-tel a { color: var(--red); }
.contact-orari p { font-size: 15px; color: var(--body); line-height: 1.7; }

/* Map */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,40,80,.1);
  border: 1px solid var(--border);
  margin-bottom: 48px;
  height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-link { display: inline-block; margin-top: 6px; font-size: 14px; color: var(--red); font-weight: 700; }

/* Contact sede map link */
.contact-sede-map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: letter-spacing .3s;
}
.contact-sede-map-link:hover { letter-spacing: .1em; }

/* FAQ */
.contact-faq {
  margin-top: 48px;
  margin-bottom: 48px;
}
.contact-faq h2 {
  font-size: 1.3rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 32px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,40,80,.08);
  border-color: var(--red);
}
.faq-item[open] {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(0,40,80,.08);
}
.faq-item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--red);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary { color: var(--red); }
.faq-item p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
}
.faq-item a { color: var(--red); font-weight: 600; }
.form-feedback { margin-top: 12px; font-size: 15px; font-weight: 600; }

@media (max-width: 768px) {
  .contact-quick { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
}

/* Nav states */
.nav-active { color: var(--red) !important; }
.nav-active-outline {
  background: linear-gradient(135deg, var(--red), #0066aa) !important;
  color: var(--white) !important;
  box-shadow: 0 3px 12px rgba(0,79,139,.2);
}

/* Whistleblowing */
/* Whistleblowing Hero */
.wb-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px var(--pad);
  position: relative;
  overflow: hidden;
}
.wb-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,210,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.wb-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wb-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.wb-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* Whistleblowing Trust Banner */
.wb-trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.wb-trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.wb-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.wb-trust-item:last-child { border-right: none; }
.wb-trust-item:hover { background: var(--light); }
.wb-trust-item svg {
  color: var(--red);
  flex-shrink: 0;
}
.wb-trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.wb-trust-item span {
  font-size: 12px;
  color: var(--gray);
}

@media (max-width: 768px) {
  .wb-trust-inner { grid-template-columns: 1fr; }
  .wb-trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .wb-trust-item:last-child { border-bottom: none; }
}

/* Cert Modello 231 Section */
.cert-modello231 {
  margin-top: 56px;
  margin-bottom: 24px;
}
.cert-modello231-header {
  text-align: center;
  margin-bottom: 40px;
}
.cert-modello231-header h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.cert-modello231-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cert-doc-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,40,80,.05);
  transition: all .4s cubic-bezier(.25,.8,.25,1);
  display: flex;
  flex-direction: column;
}
.cert-doc-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,40,80,.14);
  border-color: var(--red);
}
.cert-doc-block-img {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, var(--red) 100%);
  overflow: hidden;
}
.cert-doc-block-img--alt {
  background: linear-gradient(135deg, #0a1e3d 0%, #004F8B 50%, #1a6aaf 100%);
}
.cert-doc-block-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,210,0,.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0,79,139,.2) 0%, transparent 60%);
}
.cert-doc-block-img::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: rgba(255,210,0,.08);
  border-bottom-left-radius: 100%;
}
.cert-doc-block-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  color: var(--white);
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, transparent 100%);
}
.cert-doc-block-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow);
  margin-bottom: 8px;
}
.cert-doc-block-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-transform: none;
}
.cert-doc-block-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cert-doc-block-body p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 14px;
}
.cert-doc-block-body p:last-of-type {
  margin-bottom: 20px;
}
.cert-doc-block-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--red), #0066aa);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  align-self: flex-start;
  margin-top: auto;
  transition: all .3s;
  box-shadow: 0 4px 14px rgba(0,79,139,.25);
}
.cert-doc-block-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,79,139,.4);
}

@media (max-width: 768px) {
  .cert-modello231-grid { grid-template-columns: 1fr; }
  .cert-doc-block-img { height: 160px; }
  .cert-doc-block-body { padding: 24px 20px 20px; }
}

/* Whistleblowing Documents Download */
.wb-downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.wb-download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  position: relative;
  overflow: hidden;
}
.wb-download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--red), var(--yellow));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s;
}
.wb-download-card:hover::before { transform: scaleY(1); }
.wb-download-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,40,80,.12);
}
.wb-download-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,79,139,.1), rgba(255,210,0,.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: all .35s;
}
.wb-download-card:hover .wb-download-icon {
  background: linear-gradient(135deg, var(--red), #0066aa);
  color: var(--white);
}
.wb-download-info {
  flex: 1;
  min-width: 0;
}
.wb-download-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  margin-bottom: 6px;
}
.wb-download-info h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}
.wb-download-info p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.wb-download-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
  transition: transform .3s;
}
.wb-download-card:hover .wb-download-action { transform: scale(1.1); }

@media (max-width: 768px) {
  .wb-downloads { grid-template-columns: 1fr; }
  .wb-download-card { padding: 18px; gap: 14px; }
}

/* Whistleblowing Progress Bar */
.wb-progress {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--pad);
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,40,80,.04);
}
.wb-progress-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.wb-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.wb-progress-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  transition: all .4s;
}
.wb-progress-step--active .wb-progress-dot {
  background: linear-gradient(135deg, var(--red), #0066aa);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(0,79,139,.25);
}
.wb-progress-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .4s;
}
.wb-progress-step--active .wb-progress-label { color: var(--red); }
.wb-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  margin-bottom: 22px;
  transition: background .4s;
  min-width: 40px;
}
.wb-progress-line--active {
  background: linear-gradient(90deg, var(--red), #0066aa);
}

/* Whistleblowing success improved */
.wb-code-box-icon {
  color: var(--red);
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  .wb-progress-label { font-size: 9px; }
  .wb-progress-dot { width: 30px; height: 30px; font-size: 11px; }
  .wb-progress { top: 60px; }
}

.wb-page { max-width: var(--max); margin: 0 auto; padding: 56px var(--pad); }
.wb-intro { margin-bottom: 48px; font-size: 17px; line-height: 1.85; color: var(--body); }
.wb-intro p { margin-bottom: 12px; }

/* Catalogo Prodotti */
/* Catalog Hero */
.catalog-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.catalog-hero-bg { position: absolute; inset: 0; }
.catalog-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.catalog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(21,34,56,.72) 100%);
}
.catalog-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 70px var(--pad);
  text-align: center;
}
.catalog-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.catalog-hero p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.catalog-hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: border-color .3s, background .3s;
}
.catalog-hero-search:focus-within {
  border-color: var(--yellow);
  background: rgba(255,255,255,.18);
}
.catalog-hero-search svg { color: rgba(255,255,255,.6); flex-shrink: 0; }
.catalog-hero-search input {
  border: none; outline: none;
  width: 100%; padding: 16px 0;
  font-size: 15px; font-family: inherit;
  background: transparent; color: var(--white);
}
.catalog-hero-search input::placeholder { color: rgba(255,255,255,.5); }

/* Catalog Trust Strip */
.catalog-trust {
  background: var(--navy);
  padding: 14px var(--pad);
  border-top: 2px solid var(--yellow);
}
.catalog-trust-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.catalog-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.catalog-trust svg { color: var(--yellow); }

/* Catalog hint */
.catalog-hint {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
  padding: 10px 16px;
  background: var(--light);
  border-radius: 6px;
  border-left: 3px solid var(--yellow);
}

/* Catalog request form */
.catalog-request-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.catalog-request-form input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .3s;
}
.catalog-request-form input:focus { border-color: var(--red); }

@media (max-width: 768px) {
  .catalog-trust-inner { gap: 12px; flex-direction: column; align-items: center; }
  .catalog-request-form { flex-direction: column; }
}

.catalog-page { max-width: var(--max); margin: 0 auto; padding: 40px var(--pad) 56px; }
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.catalog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 500px;
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 0 16px;
  background: var(--white);
  transition: border-color .2s;
}
.catalog-search:focus-within { border-color: var(--red); }
.catalog-search svg { flex-shrink: 0; color: var(--gray); }
.catalog-search input {
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  color: var(--dark);
}
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.cat-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition: all .2s;
}
.cat-filter:hover {
  border-color: var(--red);
  color: var(--red);
}
.cat-filter--active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.cat-filter span {
  font-size: 11px;
  font-weight: 700;
  opacity: .6;
}
.cat-filter--active span { opacity: .85; }
.catalog-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}
.catalog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.catalog-table thead th {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 16px;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 10;
}
.catalog-table .col-code { width: 200px; }
.catalog-table .col-desc { width: auto; }
.catalog-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.catalog-table tbody tr { cursor: pointer; }
.catalog-table tbody tr:hover { background: var(--light); }
.catalog-table tbody td {
  padding: 12px 16px;
  color: var(--body);
  vertical-align: middle;
}
.catalog-table tbody td:first-child {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .02em;
}
.catalog-show-more { text-align: center; margin-top: 28px; }
.catalog-cta {
  margin-top: 48px;
  background: var(--light);
  border-radius: 6px;
  padding: 40px;
  text-align: center;
}
.catalog-cta h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.catalog-cta p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .catalog-table .col-code { width: 140px; }
  .catalog-table tbody td:first-child { font-size: 11px; }
  .catalog-cta { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .catalog-table .col-code { width: 110px; }
  .catalog-table thead th { font-size: 11px; padding: 10px 10px; }
  .catalog-table tbody td { padding: 10px 10px; font-size: 13px; }
}

/* Prodotto Detail */
.pd-page { max-width: var(--max); margin: 0 auto; padding: 40px var(--pad) 56px; }
.pd-back {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  transition: opacity .2s;
}
.pd-back:hover { opacity: .7; }
.pd-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  margin-bottom: 32px;
}
.pd-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.pd-icon { color: var(--red); flex-shrink: 0; }
.pd-code-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
}
.pd-code {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .04em;
}
.pd-name {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.pd-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.pd-badge svg { color: #43a047; }
.pd-description h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
  margin-bottom: 10px;
}
.pd-description p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 10px;
}
.pd-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  margin-bottom: 32px;
}
.pd-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.pd-form-hint {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}
.pd-form .form-group { margin-bottom: 18px; }
.pd-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  color: var(--dark);
}
.pd-form .form-group input,
.pd-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: var(--white);
  transition: border-color .2s;
  color: var(--dark);
}
.pd-form .form-group input:focus,
.pd-form .form-group textarea:focus { border-color: var(--red); }
.pd-form .form-group textarea { resize: vertical; }
.pd-form .form-group input[readonly] {
  background: var(--light);
  color: var(--red);
  font-weight: 700;
  cursor: default;
  border-color: transparent;
}
.pd-submit-btn { margin-top: 8px; }
.pd-success {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 6px;
  padding: 20px 24px;
}
.pd-success svg { color: #43a047; flex-shrink: 0; }
.pd-success h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 2px;
}
.pd-success p { font-size: 14px; color: #555; }
.pd-contacts {
  background: var(--light);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}
.pd-contacts h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 20px;
}
.pd-contacts-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.pd-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: border-color .2s;
}
.pd-contact-card svg { color: var(--red); }
.pd-contact-card:hover { border-color: var(--red); }

@media (max-width: 768px) {
  .pd-detail, .pd-form-wrap { padding: 24px 20px; }
  .pd-contacts { padding: 24px 16px; }
  .pd-contacts-row { flex-direction: column; align-items: center; }
}

.wb-section {
  margin-bottom: 40px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-left: 4px solid var(--red);
  transition: all .4s cubic-bezier(.25,.8,.25,1);
  position: relative;
  overflow: hidden;
}
.wb-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--yellow), var(--red));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.25,.8,.25,1);
}
.wb-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,40,80,.12);
  border-left-color: transparent;
}
.wb-section:hover::before { transform: scaleY(1); }
.wb-section--highlight {
  background: linear-gradient(135deg, #edf3f9 0%, #f5f9fc 100%);
  border-left-color: var(--yellow);
  animation: highlightPulse 3s ease-in-out infinite;
}
@keyframes highlightPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,210,0,.15); }
  50%      { box-shadow: 0 0 24px 4px rgba(255,210,0,.08); }
}
.wb-section-icon {
  color: var(--red);
  margin-bottom: 14px;
  display: inline-block;
}
.wb-section-icon svg { transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.wb-section:hover .wb-section-icon {
  animation: iconBounce .5s ease-out;
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.wb-section h2 {
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
  color: var(--dark);
}
.wb-section p { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 10px; }
.wb-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.wb-section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  transition: transform .25s ease-out, color .25s ease-out;
}
.wb-section ul li:hover {
  transform: translateX(6px);
  color: var(--dark);
}
.wb-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  transition: all .3s ease-out;
}
.wb-section ul li:hover::before {
  background: var(--yellow);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(255,210,0,.2);
}
.wb-section--highlight .btn-red {
  animation: pulseBtn 2.5s ease-in-out infinite;
}
.wb-section--highlight .btn-red:hover { animation: none; }
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 4px 15px rgba(0,79,139,.25), 0 0 0 0 rgba(0,79,139,.4); }
  50%      { box-shadow: 0 4px 15px rgba(0,79,139,.25), 0 0 0 12px rgba(0,79,139,0); }
}
.wb-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width: 480px) {
  .wb-buttons { flex-direction: column; }
  .wb-buttons .btn-red, .wb-buttons .btn-outline { text-align: center; }
}

/* Whistleblowing Form */
.wb-anon-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-left: 4px solid #43a047;
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 40px;
}
.wb-anon-icon { color: #43a047; flex-shrink: 0; margin-top: 2px; }
.wb-anon-banner strong { color: #2e7d32; font-size: 15px; }
.wb-anon-banner p { font-size: 14px; color: #555; margin-top: 4px; line-height: 1.6; }

.wb-form-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  margin-bottom: 24px;
}
.wb-form-section--submit {
  background: #fafafa;
  border: none;
}
.wb-form-section h2 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wb-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.wb-optional-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #e3f2fd;
  color: #1565c0;
  padding: 3px 10px;
  border-radius: 12px;
}
.wb-form .form-group { margin-bottom: 18px; }
.wb-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  color: var(--dark);
}
.wb-form .form-group input,
.wb-form .form-group textarea,
.wb-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: var(--white);
  transition: border-color .2s;
  color: var(--dark);
}
.wb-form .form-group input:focus,
.wb-form .form-group textarea:focus,
.wb-form .form-group select:focus {
  border-color: var(--red);
}
.wb-form .form-group textarea { resize: vertical; }
.wb-form .form-group select { cursor: pointer; }
.wb-form-hint {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* File upload */
.wb-file-input { display: none; }
.wb-file-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px dashed var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.wb-file-label:hover { border-color: var(--red); color: var(--red); }
.wb-file-list { margin-top: 10px; }
.wb-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);
  padding: 8px 14px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--dark);
}
.wb-file-item button {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--gray);
  cursor: pointer;
  padding: 0 4px;
}
.wb-file-item button:hover { color: var(--red); }

/* Consent */
.wb-consent { margin-bottom: 24px; }
.wb-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}
.wb-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--red);
  cursor: pointer;
}
.wb-checkbox span { font-size: 14px; color: var(--body); line-height: 1.5; }
.wb-checkbox a { color: var(--red); text-decoration: underline; }

.wb-submit-btn {
  font-size: 15px;
  padding: 16px 36px;
}

/* Success */
.wb-success {
  text-align: center;
  padding: 60px 20px;
}
.wb-success-icon { color: #43a047; margin-bottom: 20px; }
.wb-success h2 {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}
.wb-success p { color: var(--body); font-size: 16px; margin-bottom: 8px; }
.wb-code-box {
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-top: 28px;
  display: inline-block;
}
.wb-code-box p { font-size: 14px; color: var(--gray); margin-bottom: 8px; }
.wb-code-box strong {
  font-size: 2rem;
  letter-spacing: .15em;
  color: var(--dark);
  display: block;
  margin: 8px 0;
}
.wb-code-hint { font-size: 13px !important; color: var(--gray) !important; margin-top: 8px !important; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .wb-anon-banner { flex-direction: column; }
}
@media (max-width: 480px) {
  .wb-form-section { padding: 20px 16px; }
  .wb-code-box strong { font-size: 1.4rem; }
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad: 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: span 2; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { height: 160px; }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-image { margin-bottom: 20px; }
  .feature-img { height: 260px; }
  .feature-map { height: 300px; }
  .client-inner { grid-template-columns: 1fr; }
  .client-image { margin-bottom: 20px; }
  .client-img { height: 260px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .topbar-right { display: none; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--yellow);
    padding: 16px 24px;
    box-shadow: 0 12px 40px rgba(0,40,80,.12);
    gap: 4px;
  }
  .main-nav a::after { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    backdrop-filter: none;
    padding: 0 0 0 16px;
    min-width: auto;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a {
    padding: 8px 14px !important;
    font-size: 12px !important;
    color: var(--gray) !important;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 14px; }
  .cards-large { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .header-inner { position: relative; }
  .hero-inner { flex-direction: column; gap: 24px; padding: 56px var(--pad); }
  .hero-badge-wrap { flex-direction: row; justify-content: center; }
  .hero h1 { font-size: 1.4rem; }
  .quality-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-column: span 1; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { height: 160px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-col--brand { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.2rem; }
  .hero-badge-wrap { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS (audit fixes)
   ═══════════════════════════════════════════════════════════ */

/* iOS Safari zoom-fix: tutti gli input con font-size minimo 16px su mobile */
@media (max-width: 768px) {
  .form-group input,
  .form-group textarea,
  .form-group select,
  .pd-form .form-group input,
  .pd-form .form-group textarea,
  .home-search-input-wrap input,
  .catalog-hero-search input,
  .quick-form input,
  .cert-cta-form input,
  .cert-cta-form select,
  .catalog-request-form input,
  .home-search-results input,
  #catalog-search {
    font-size: 16px !important;
  }
}

/* Hero altezza responsive */
@media (max-width: 768px) {
  .hero { min-height: 540px; }
  .hero-inner { padding: 48px var(--pad); }
  .hero h1 { font-size: 1.5rem; line-height: 1.2; }
  .hero-desc { font-size: 14px; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 10px; }
  .hero-ctas .btn-red, .hero-ctas .btn-outline { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .hero { min-height: 480px; }
}

/* Topbar mobile compatto */
@media (max-width: 480px) {
  .topbar { padding: 6px var(--pad); font-size: 11px; }
  .topbar-inner { flex-direction: column; gap: 4px; }
  .topbar-item svg { width: 12px; height: 12px; }
}

/* Header sticky anche su mobile */
@media (max-width: 768px) {
  .site-header { position: sticky !important; top: 0; }
  .header-inner { padding: 10px var(--pad); }
  .logo-img { height: 42px; }
}

/* Hamburger menu - touch target più grande */
.nav-toggle { padding: 10px !important; }
.nav-toggle span { width: 24px; }

/* Contact-quick: 4 colonne corrette */
.contact-quick { grid-template-columns: repeat(4, 1fr) !important; gap: 16px; }
@media (max-width: 1024px) { .contact-quick { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .contact-quick { grid-template-columns: 1fr !important; } }

/* Catalog table scrollabile su mobile */
@media (max-width: 768px) {
  .catalog-page { overflow-x: hidden; }
  .catalog-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--pad) * -1);
    padding: 0 var(--pad);
  }
  .catalog-table { font-size: 13px; }
  .catalog-table .col-code { width: 130px; min-width: 130px; }
  .catalog-table tbody td:first-child { font-size: 12px; }
  .catalog-filters { gap: 6px; }
  .cat-filter { padding: 8px 14px; font-size: 12px; min-height: 38px; }
}
@media (max-width: 480px) {
  .catalog-table thead th { font-size: 10px; padding: 10px 8px; }
  .catalog-table tbody td { padding: 10px 8px; font-size: 12px; }
  .catalog-table tbody td:first-child { font-size: 10.5px; }
}

/* Hero dots con area tap allargata */
.hero-dot {
  padding: 10px !important;
  width: 32px !important;
  height: 32px !important;
  background-clip: content-box;
  position: relative;
}
.hero-dot::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
}
.hero-dot--active::before {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* Btn-outline padding aumentato */
.btn-outline { padding: 14px 28px; }

/* Cookie banner mobile */
@media (max-width: 600px) {
  .cookie-banner { padding: 12px 16px; }
  .cookie-inner { gap: 10px; }
  .cookie-inner p { font-size: 12px; line-height: 1.5; min-width: 0; }
  .cookie-btn { padding: 8px 14px; font-size: 12px; }
}

/* wb-section padding ridotto mobile */
@media (max-width: 480px) {
  .wb-section { padding: 22px 16px; }
  .wb-section h2 { font-size: 1rem; }
  .wb-section p, .wb-section li { font-size: 14px; }
}

/* Footer bottom touch target */
.footer-bottom a {
  display: inline-block;
  padding: 6px 8px;
  margin: 0 2px;
}

/* Cert doc block mobile */
@media (max-width: 480px) {
  .cert-doc-block-overlay { padding: 20px 18px 16px; }
  .cert-doc-block-overlay h3 { font-size: 1rem; }
  .cert-doc-block-btn { padding: 12px 18px; font-size: 12px; width: 100%; justify-content: center; }
}

/* FAQ mobile */
@media (max-width: 480px) {
  .faq-item summary { padding: 14px 18px; font-size: 14px; }
  .faq-item p { padding: 0 18px 14px; font-size: 13px; }
}

/* Process steps mobile fix */
@media (max-width: 480px) {
  .process-step { padding: 0 10px; }
  .process-step p { font-size: 12px; }
}

/* About hero mobile */
@media (max-width: 480px) {
  .about-hero-inner { padding: 56px var(--pad); }
  .about-hero h1 { font-size: 1.4rem; }
  .about-num-val { font-size: 1.5rem; }
}

/* Trust bar mobile */
@media (max-width: 480px) {
  .trust-bar { padding: 12px var(--pad); }
  .trust-item { font-size: 11px; }
  .trust-bar-inner { gap: 8px; }
}

/* Map sezioni mobile */
@media (max-width: 768px) {
  .map-inner { grid-template-columns: 1fr; }
  .map-info { padding: 28px 20px; }
  .map-embed { min-height: 280px; }
}

/* Quick form inputs mobile */
@media (max-width: 480px) {
  .quick-form { flex-direction: column; }
  .quick-form input { width: 100%; min-width: 0; }
  .quick-form .btn-red { width: 100%; text-align: center; }
}

/* Home search results mobile */
@media (max-width: 480px) {
  .home-search-results { font-size: 14px; }
  .hsr-item { padding: 12px 14px; }
}

/* Why card touch */
@media (max-width: 480px) {
  .why-card { padding: 24px 20px; }
  .why-card-num { font-size: 1.8rem; }
}

/* Cat-card mobile labels */
@media (max-width: 480px) {
  .cat-label { font-size: 12px; padding: 12px; }
  .cat-label small { font-size: 10px; }
}

/* Section CTA dark mobile */
@media (max-width: 480px) {
  .section-cta-dark { padding: 50px 20px; }
  .cta-dark-inner h2 { font-size: 1.2rem; }
  .cta-dark-inner p { font-size: 14px; }
}

/* Contact-form-card mobile padding */
@media (max-width: 480px) {
  .contact-form-card { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
}

/* Cert-grid mobile */
@media (max-width: 768px) {
  .cert-card-header { padding: 22px 22px; gap: 14px; }
  .cert-card-header h2 { font-size: 1.1rem; }
  .cert-card-badge { width: 52px; height: 52px; }
  .cert-card-body { padding: 22px 22px; }
  .cert-points { grid-template-columns: 1fr !important; }
}

/* About sedi mobile */
@media (max-width: 480px) {
  .about-sede-card-compact { padding: 18px; }
  .sede-compact-marker { width: 38px; height: 38px; }
}

/* Hero badge mobile */
@media (max-width: 768px) {
  .hero-badge-wrap { display: none; }
}

/* Categorie grid */
@media (max-width: 480px) {
  .categories-inner h2 { font-size: 1.1rem; margin-bottom: 24px; }
}

/* Body global font su mobile */
@media (max-width: 480px) {
  body { font-size: 15px; }
}

/* Disclaimer privacy sotto i form rapidi */
.form-mini-privacy {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.form-mini-privacy a {
  color: var(--yellow);
  text-decoration: underline;
}
.form-mini-privacy a:hover { color: #fff; }
.catalog-cta .form-mini-privacy { color: var(--gray); }
.catalog-cta .form-mini-privacy a { color: var(--red); }
.cert-cta .form-mini-privacy { color: var(--gray); text-align: left; max-width: none; }
.cert-cta .form-mini-privacy a { color: var(--red); }

/* Checkbox compatto per form rapidi (GDPR) */
.form-mini-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  text-align: left;
  color: rgba(255,255,255,.75);
}
.form-mini-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--yellow);
  cursor: pointer;
}
.form-mini-check a {
  color: var(--yellow);
  text-decoration: underline;
}
.form-mini-check a:hover { color: #fff; }
/* Variante per sfondo chiaro (catalog-cta + cert-cta) */
.catalog-cta .form-mini-check,
.cert-cta .form-mini-check {
  color: var(--gray);
}
.catalog-cta .form-mini-check a,
.cert-cta .form-mini-check a {
  color: var(--red);
}
.catalog-cta .form-mini-check input[type="checkbox"],
.cert-cta .form-mini-check input[type="checkbox"] {
  accent-color: var(--red);
}
.cert-cta .form-mini-check { max-width: none; margin-left: 0; margin-right: 0; }
