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

:root {
  --nero: #1a1a1a;
  --accento: #8a6a2f;
  --accento-scuro: #6f5426;
  --bordo: #e8e4dc;
  --sfondo: #f9f8f5;
  --sfondo-hover: #f1efe8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--nero);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAVIGAZIONE — FISSA IN ALTO ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 0.5px solid var(--bordo);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
}

/* Compensa l'altezza del nav fisso */
body { padding-top: 61px; }

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 280px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nero);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accento); }
.nav-links a.active { color: var(--accento); border-bottom: 1px solid var(--accento); }

.nav-tel {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--nero);
  font-weight: 500;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.nav-lang a { color: var(--nero); opacity: 0.45; transition: opacity 0.2s; }
.nav-lang a:hover { opacity: 1; }
.nav-lang a.active { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.nav-lang span { opacity: 0.3; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--nero);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 64px;
  border-bottom: 0.5px solid var(--bordo);
}

.hero-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accento);
  margin-bottom: 20px;
  opacity: 1;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--nero);
  margin-bottom: 28px;
}

.hero p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--nero);
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--sfondo-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  border: 0.5px solid var(--bordo);
}

.hero-img-placeholder span {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nero);
  opacity: 0.4;
}

/* ===== BADGE ===== */
.badges {
  display: flex;
  border: 0.5px solid var(--bordo);
  width: fit-content;
  margin-top: 32px;
}

.badge { padding: 14px 24px; border-right: 0.5px solid var(--bordo); }
.badge:last-child { border-right: none; }

.badge-num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--nero);
  line-height: 1;
}

.badge-desc {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nero);
  opacity: 0.5;
  margin-top: 4px;
}

/* ===== SEZIONI ===== */
.section {
  padding: 64px 40px;
  border-bottom: 0.5px solid var(--bordo);
}
.section > p,
.section > h1,
.section > h2,
.section > h3,
.section > ul,
.section > ol,
.section > form,
.section > table {
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}
.section > div {
  width: 100%;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nero);
  opacity: 0.4;
  margin-bottom: 12px;
}

.section h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--nero);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section p {
  font-size: 18px;
  max-width: 78ch;
  line-height: 1.85;
  color: var(--nero);
  font-weight: 400;
  margin-bottom: 16px;
}

/* ===== GRIGLIA PRODOTTI ===== */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 0.5px solid var(--bordo);
  margin-top: 24px;
}

.grid-item {
  padding: 28px;
  border-right: 0.5px solid var(--bordo);
  border-bottom: 0.5px solid var(--bordo);
  cursor: pointer;
  transition: background 0.2s;
}

.grid-item:nth-child(2n) { border-right: none; }
.grid-item:nth-last-child(-n+2) { border-bottom: none; }
.grid-item:hover { background: var(--sfondo); }
.grid-item.active { background: var(--sfondo-hover); }

.grid-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nero);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid-arrow {
  font-size: 18px;
  color: var(--nero);
  opacity: 0.3;
  transition: transform 0.2s;
  font-weight: 400;
}

.grid-item.active .grid-arrow { transform: rotate(45deg); opacity: 1; }

.grid-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--nero);
  font-weight: 400;
}

.grid-uso {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nero);
  opacity: 0.4;
  margin-top: 12px;
}

.grid-img { display: none; margin-top: 20px; width: 100%; height: 180px; background: var(--bordo); align-items: center; justify-content: center; }
.grid-img.visible { display: flex; }

.grid-img-placeholder { width: 100%; height: 180px; background: var(--bordo); display: flex; align-items: center; justify-content: center; }

.grid-img-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nero);
  opacity: 0.4;
  text-align: center;
  padding: 0 16px;
  line-height: 1.7;
}

/* ===== TAG ===== */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nero);
  border: 0.5px solid var(--bordo);
  padding: 6px 14px;
}

.tag-dark { background: var(--nero); color: #fff; border-color: var(--nero); }

/* ===== SETTORI ===== */
.settori { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; margin-bottom: 32px; }

.settore {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nero);
  border: 0.5px solid var(--bordo);
  padding: 7px 16px;
}

/* ===== PROCESSO ===== */
.process { margin-top: 12px; }

.step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 0.5px solid var(--bordo); align-items: flex-start; }
.step:last-child { border-bottom: none; }

.step-num { font-family: var(--serif); font-size: 32px; color: var(--bordo); min-width: 40px; line-height: 1; }

.step-title { font-size: 15px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--nero); margin-bottom: 8px; }

.step-body { font-size: 17px; line-height: 1.75; color: var(--nero); font-weight: 400; }

/* ===== TECH ROW ===== */
.tech-row { display: grid; grid-template-columns: 1fr 1fr; border: 0.5px solid var(--bordo); margin-top: 24px; }

.tech { padding: 24px 28px; border-right: 0.5px solid var(--bordo); }
.tech:last-child { border-right: none; }

.tech-title { font-size: 15px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--nero); margin-bottom: 10px; }

.tech-body { font-size: 17px; line-height: 1.75; color: var(--nero); font-weight: 400; }

/* ===== STRENGTH ===== */
.strength-row { display: grid; grid-template-columns: 1fr 1fr; border: 0.5px solid var(--bordo); margin-top: 24px; }

.strength { padding: 24px 28px; border-right: 0.5px solid var(--bordo); border-bottom: 0.5px solid var(--bordo); }
.strength:nth-child(2n) { border-right: none; }
.strength:nth-last-child(-n+2) { border-bottom: none; }

.strength-title { font-size: 15px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--nero); margin-bottom: 8px; }

.strength-body { font-size: 17px; color: var(--nero); line-height: 1.7; font-weight: 400; }

/* ===== QUOTE ===== */
.quote { border-left: 1px solid var(--nero); padding: 4px 0 4px 28px; margin: 32px 0; }

.quote p { font-family: var(--serif); font-size: 20px; font-weight: 400; font-style: italic; color: var(--nero); line-height: 1.5; }

/* ===== TWO COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 12px; }

/* ===== FOTO PLACEHOLDER ===== */
.foto-placeholder {
  width: 100%;
  height: 280px;
  background: var(--sfondo-hover);
  border: 0.5px solid var(--bordo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}

.foto-placeholder span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nero); opacity: 0.4; text-align: center; padding: 0 20px; line-height: 1.7; }

/* ===== VAL (chi siamo) ===== */
.val-grid { display: grid; grid-template-columns: 1fr 1fr; border: 0.5px solid var(--bordo); margin-top: 24px; }

.val { padding: 24px 28px; border-right: 0.5px solid var(--bordo); border-bottom: 0.5px solid var(--bordo); cursor: pointer; transition: background 0.2s; }
.val:nth-child(2n) { border-right: none; }
.val:nth-last-child(-n+2) { border-bottom: none; }
.val:hover { background: var(--sfondo); }
.val.active { background: var(--sfondo-hover); }

.val-title { font-size: 15px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--nero); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }

.val-arrow { font-size: 18px; color: var(--nero); opacity: 0.3; transition: transform 0.2s; font-weight: 400; }
.val.active .val-arrow { transform: rotate(45deg); opacity: 1; }

.val-body { font-size: 17px; line-height: 1.75; color: var(--nero); font-weight: 400; }

.val-img { display: none; margin-top: 16px; width: 100%; height: 160px; background: var(--bordo); align-items: center; justify-content: center; }
.val-img.visible { display: flex; }
.val-img-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nero); opacity: 0.4; text-align: center; padding: 0 16px; line-height: 1.7; }

/* ===== LINK TESTO ===== */
.link-text {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nero);
  border-bottom: 1px solid var(--nero);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 16px;
  transition: opacity 0.2s;
}

.link-text:hover { color: var(--accento); border-bottom-color: var(--accento); opacity: 1; }

/* ===== CLICK HINT ===== */
.click-hint { font-size: 12px; color: var(--nero); opacity: 0.4; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 20px; margin-bottom: 4px; }

/* ===== CTA ===== */
.cta-section { padding: 80px 40px; text-align: center; border-bottom: 0.5px solid var(--bordo); }

.cta-section h2 { font-family: var(--serif); font-size: 34px; font-weight: 400; font-style: italic; color: var(--nero); margin-bottom: 16px; }

.cta-section p { font-size: 18px; color: var(--nero); line-height: 1.8; font-weight: 400; margin-bottom: 32px; }

.btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accento);
  color: #fff;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  transition: background 0.2s;
}

.btn:hover { background: var(--accento-scuro); }

.tel { display: block; font-size: 16px; color: var(--nero); letter-spacing: 0.06em; margin-top: 16px; opacity: 0.5; }
.tel a { color: var(--nero); }

/* ===== FAQ ===== */
.faq-section { }
.faq-item { border-bottom: 0.5px solid var(--bordo); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 18px; font-weight: 600; color: var(--nero); padding: 20px 0 8px; cursor: pointer; line-height: 1.5; }
.faq-a { font-size: 17px; font-weight: 400; color: var(--nero); padding-bottom: 20px; line-height: 1.75; opacity: 0.75; }

/* ===== CONTATTI ===== */
.info-row { display: flex; gap: 20px; padding: 16px 0; border-bottom: 0.5px solid var(--bordo); align-items: flex-start; }
.info-row:last-child { border-bottom: none; }

.info-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--nero); opacity: 0.4; min-width: 90px; padding-top: 2px; }

.info-value { font-size: 17px; color: var(--nero); line-height: 1.6; }
.info-value a { color: var(--nero); border-bottom: 0.5px solid var(--bordo); }

.map-placeholder { width: 100%; height: 240px; background: var(--sfondo-hover); border: 0.5px solid var(--bordo); display: flex; align-items: center; justify-content: center; margin-top: 28px; }
.map-placeholder span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nero); opacity: 0.4; }

.social-links { display: flex; gap: 20px; margin-top: 28px; }
.social-links a { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--nero); border-bottom: 0.5px solid var(--bordo); padding-bottom: 2px; transition: opacity 0.2s; }
.social-links a:hover { color: var(--accento); opacity: 1; }

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }

.form-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--nero); opacity: 0.5; margin-bottom: 8px; display: block; }

.form-input, .form-textarea, .form-select {
  width: 100%;
  border: 0.5px solid var(--bordo);
  padding: 12px 14px;
  font-size: 17px;
  font-family: var(--sans);
  color: var(--nero);
  background: #fff;
  outline: none;
  transition: border 0.2s;
  appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accento); }

.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.form-privacy { font-size: 14px; color: var(--nero); opacity: 0.5; line-height: 1.6; margin-bottom: 20px; }
.form-privacy a { color: var(--nero); }

.form-submit { width: 100%; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; background: var(--accento); color: #fff; padding: 16px; cursor: pointer; border: none; font-family: var(--sans); transition: background 0.2s; }
.form-submit:hover { background: var(--accento-scuro); }

.form-success { display: none; background: var(--sfondo-hover); border: 0.5px solid var(--bordo); padding: 20px; text-align: center; font-size: 17px; color: var(--nero); margin-top: 16px; }

/* ===== FOOTER ===== */
.footer { padding: 24px 40px; border-top: 0.5px solid var(--bordo); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

.footer-logo { font-family: var(--serif); font-size: 14px; color: var(--nero); opacity: 0.4; letter-spacing: 0.06em; }

.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nero); opacity: 0.4; transition: opacity 0.2s; }
.footer-links a:hover { color: var(--accento); opacity: 1; }
.footer-fsc { display: flex; align-items: center; gap: 8px; }
.footer-fsc img { height: 32px; width: auto; opacity: 0.85; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 57px; left: 0; right: 0; background: #fff; border-bottom: 0.5px solid var(--bordo); padding: 20px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-tel { display: none; }
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 18px; }
  .section { padding: 48px 20px; }
  .section h2 { font-size: 24px; }
  .grid { grid-template-columns: 1fr; }
  .grid-item:nth-child(2n) { border-right: none; }
  .grid-item:nth-last-child(-n+2) { border-bottom: 0.5px solid var(--bordo); }
  .grid-item:last-child { border-bottom: none; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .tech-row { grid-template-columns: 1fr; }
  .tech { border-right: none; border-bottom: 0.5px solid var(--bordo); }
  .tech:last-child { border-bottom: none; }
  .strength-row { grid-template-columns: 1fr; }
  .strength { border-right: none; }
  .val-grid { grid-template-columns: 1fr; }
  .val:nth-child(2n) { border-right: none; }
  .badges { flex-wrap: wrap; }
  .cta-section { padding: 48px 20px; }
  .cta-section h2 { font-size: 26px; }
  .footer { padding: 20px; flex-direction: column; align-items: flex-start; }
}

/* ===== PRINT ===== */
@media print {
  .nav { position: static; }
  .nav-hamburger { display: none; }
  body { padding-top: 0; }
}

/* ===== VIDEO HERO ===== */
.video-hero { border-bottom: 0.5px solid var(--bordo); }

.video-wrap {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.video-placeholder span {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.4;
  text-align: center;
  padding: 0 40px;
  line-height: 1.8;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  width: 100%;
}

.video-content h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.video-content p {
  font-size: 18px;
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 580px;
}

@media (max-width: 768px) {
  .video-wrap { min-height: 420px; }
  .video-content { padding: 48px 20px; }
  .video-content h1 { font-size: 30px; }
  .video-content p { font-size: 18px; }
}


/* ===== CTA STICKY BAR (Google Ads) ===== */
#sticky-cta {
  position: fixed;
  top: 120px;
  right: -340px;
  z-index: 1000;
  background: var(--nero);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 20px;
  width: 290px;
  transition: right 0.4s ease;
  box-shadow: -3px 3px 16px rgba(0,0,0,0.18);
}
#sticky-cta.visible { right: 0; }

/* variante promo: barra piu grande con lo sconto in evidenza */
#sticky-cta.promo { width: 300px; padding: 22px 24px; gap: 10px; }
#sticky-cta.promo:not(.visible) { right: -340px; }
.sticky-promo-num {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--accento);
  margin-bottom: 4px;
}
.sticky-promo-desc {
  display: block;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.4;
}
#sticky-cta.promo .sticky-btn { font-size: 14px; padding: 12px 14px; }
.sticky-text {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.4;
}
.sticky-btn {
  background: var(--accento);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-decoration: none;
  white-space: normal;
  line-height: 1.35;
  transition: opacity 0.2s;
  width: 100%;
  text-align: center;
  display: block;
}
.sticky-btn:hover { background: var(--accento-scuro); opacity: 1; }
.sticky-tel {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.7;
  white-space: nowrap;
}
.sticky-tel:hover { opacity: 1; }
.sticky-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.5;
  padding: 0 4px;
  line-height: 1;
  transition: opacity 0.2s;
}
.sticky-close:hover { opacity: 1; }

/* ===== TRUST BADGE (prova sociale hero) ===== */
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nero);
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item::before {
  content: '✓';
  font-size: 12px;
  opacity: 1;
}

@media (max-width: 768px) {
  #sticky-cta { top: auto; bottom: -120px; right: 0; left: 0; width: 100%; flex-direction: row; align-items: center; gap: 10px; padding: 12px 20px; box-shadow: 0 -2px 12px rgba(0,0,0,0.15); }
  #sticky-cta.visible { bottom: 0; right: 0; }
  .sticky-text { display: none; }
  #sticky-cta.promo { width: 100%; padding: 12px 20px; gap: 10px; }
  #sticky-cta.promo:not(.visible) { right: 0; }
  #sticky-cta.promo .sticky-text { display: block; }
  .sticky-promo-num { font-size: 26px; margin-bottom: 0; }
  .sticky-promo-desc { display: none; }
  .sticky-btn { flex: 1; text-align: center; width: auto; }
}

/* ===== SCHERMI GRANDI (27 pollici e oltre) ===== */
@media (min-width: 1600px) {
  .section { padding: 80px 64px; }
  .section p { font-size: 20px; line-height: 1.8; }
  .section h2 { font-size: 36px; }
  .hero h1 { font-size: 54px; }
  .video-content h1 { font-size: 58px; }
  .hero p, .video-content p { font-size: 21px; }
  .lp-spec-lista, .mou-spec-lista, .cr-spec-lista { font-size: 17px; }
  .faq-q { font-size: 19px; }
  .faq-a { font-size: 18px; }
}

/* ===== SOTTOMENU PACKAGING ===== */
.nav-links .has-sub { position: relative; }
.nav-sub {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 268px;
  background: #fff;
  border: 0.5px solid var(--bordo);
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1200;
}
.nav-links .has-sub:hover .nav-sub,
.nav-links .has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-sub li { margin: 0; }
.nav-sub a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  border-bottom: none;
}
.nav-sub a:hover { background: var(--sfondo); color: var(--accento); }
.nav-sub li:first-child a { font-weight: 600; }
.nav-sub li:first-child { border-bottom: 0.5px solid var(--bordo); margin-bottom: 6px; padding-bottom: 2px; }

@media (max-width: 768px) {
  .nav-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    min-width: 0;
    padding: 4px 0 10px 16px;
  }
  .nav-sub a { padding: 8px 0; white-space: normal; }
}

/* Effetto illuminazione hover su tutte le immagini (escluso chi-siamo) */
body:not(.page-chi-siamo) img {
  transition: filter 0.3s ease;
  filter: brightness(0.88);
}
body:not(.page-chi-siamo) img:hover {
  filter: brightness(1);
}

/* Offset globale per anchor scroll — evita che sticky-cta copra il contenuto */
[id] {
  scroll-margin-top: 200px;
}

/* Reset max-width per p dentro card/box — evita che il limite 78ch del .section p
   si propaghi sui paragrafi dentro le card con border-radius */
div[style*="border-radius"] p,
div[style*="border:0.5px"] p,
.lp-spec p,
.lp-dual-card p,
.tech p,
.strength p,
.val p {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
