/* ===============================================================
   REMY S.r.l. - Stylesheet (pulito per Elementor)
   ---------------------------------------------------------------
   Modifiche rispetto all'originale:
   - Caratteri box-drawing decorativi sostituiti con ASCII puro
     (risolve eventuali problemi di encoding lato server)
   - Reset universale rimosso (collide con Elementor)
   - Stili body scoped a .box-wrap / .m1-wrap
   - Selettori img, a globali scoped al wrapper
   - body.m1 e body.v3 disattivati (la classe body non
     viene applicata da Elementor; usa wrapper con stessa classe)
   =============================================================== */

/* ===============================================================
   REMY S.r.l. — Demo Stylesheet
   Struttura:
     1. Reset & Base
     2. Nav
     3. Footer
     4. Componenti condivisi
     5. home-v1  (template blu)
     6. home-v3  (template dark)
     7. Responsive
   =============================================================== */


/* -- 1. RESET & BASE -------------------------------------------- */
/* Reset universale rimosso: gestito da Elementor */
html { scroll-behavior: smooth; }

.box-wrap, .m1-wrap {
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

.box-wrap img { max-width: 100%; display: block; }
.box-wrap a   { color: inherit; }


/* -- 2. NAV ----------------------------------------------------- */
.r-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc(50% - 600px));
  height: 56px;
  background: #0C3B6E;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s;
}
.r-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.r-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.r-nav-logo img {
  height: 30px;
  width: auto;
}
.r-nav-logo span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #fff;
}

.r-nav-links {
  display: flex;
  gap: 24px;
}
.r-nav-link {
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.r-nav-link:hover,
.r-nav-link.active {
  color: #fff;
  border-bottom-color: #378ADD;
}

.r-nav-phone {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  border: 0.5px solid rgba(255,255,255,.25);
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.r-nav-phone:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

/* Hamburger */
.r-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.r-nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,.7);
  transition: transform .25s, opacity .25s;
}
.r-nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.r-nav-burger.open span:nth-child(2) { opacity: 0; }
.r-nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.r-nav-drawer {
  display: none;
  flex-direction: column;
  background: #0C3B6E;
  border-top: 0.5px solid rgba(255,255,255,.1);
  padding: 16px max(32px, calc(50% - 600px)) 24px;
  position: sticky;
  top: 56px;
  z-index: 199;
}
.r-nav-drawer.open { display: flex; }
.r-drawer-link {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.r-drawer-link:last-of-type { border-bottom: none; }
.r-drawer-link.active,
.r-drawer-link:hover { color: #fff; }
.r-drawer-phone {
  margin-top: 16px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  text-decoration: none;
}


/* -- 3. FOOTER -------------------------------------------------- */
.r-footer {
  background: #051E3E;
  padding: 40px max(36px, calc(50% - 600px)) 20px;
}
.r-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid rgba(255,255,255,.07);
  margin-bottom: 18px;
}
.r-footer-logo {
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-bottom: 14px;
}
.r-footer-brand p {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  line-height: 2;
}
.r-footer-brand a {
  color: #378ADD;
  text-decoration: none;
}
.r-footer-col h4 {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  font-weight: 400;
  margin-bottom: 14px;
}
.r-footer-col a {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color .2s;
}
.r-footer-col a:hover { color: #fff; }
.r-footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.r-footer-copy {
  font-size: 9px;
  color: rgba(255,255,255,.18);
}
.r-footer-policy {
  display: flex;
  gap: 16px;
}
.r-footer-policy a {
  font-size: 9px;
  color: rgba(255,255,255,.25);
  text-decoration: none;
  transition: color .2s;
}
.r-footer-policy a:hover { color: rgba(255,255,255,.6); }


/* -- 4. COMPONENTI CONDIVISI ------------------------------------ */
.r-eyebrow {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #378ADD;
  margin-bottom: 8px;
}
.r-section-title {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 28px;
}
.r-btn-primary {
  display: inline-block;
  background: #378ADD;
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background .2s;
}
.r-btn-primary:hover { background: #185FA5; color: #fff; }

.r-btn-dark {
  display: inline-block;
  background: #0C3B6E;
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background .2s;
}
.r-btn-dark:hover { background: #185FA5; color: #fff; }

.r-btn-outline {
  display: inline-block;
  background: transparent;
  color: #0C3B6E;
  border: 0.5px solid #0C3B6E;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.r-btn-outline:hover { background: #0C3B6E; color: #fff; }


/* -- 5. HOME-V1  (template blu) --------------------------------- */

/* Hero */
.v1-hero {
  background: #051E3E;
  padding: 56px max(36px, calc(50% - 600px)) 0;
  overflow: hidden;
  position: relative;
}
.v1-hero-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.v1-geo-layer { position: absolute; inset: 0; will-change: transform; }

.v1-hero-inner { position: relative; z-index: 2; }

.v1-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(55,138,221,.15);
  border: 0.5px solid rgba(55,138,221,.3);
  color: #85B7EB;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.v1-pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #378ADD;
  animation: v1-pulse 2s ease-in-out infinite;
}
@keyframes v1-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.7); }
}

.v1-hero h1 {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  max-width: 480px;
  margin-bottom: 16px;
}
.v1-hero h1 em { font-style: normal; color: #85B7EB; }

.v1-hero-lead {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 32px;
}
.v1-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.v1-hero-tel { font-size: 11px; color: rgba(255,255,255,.4); }

.v1-hero-stats {
  display: flex;
  border-top: 0.5px solid rgba(255,255,255,.08);
  margin: 0;
}
.v1-stat {
  flex: 1;
  padding: 24px 24px;
  border-right: 0.5px solid rgba(255,255,255,.08);
}
.v1-stat:last-child { border-right: none; }
.v1-stat-n {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.v1-stat-n span { color: #378ADD; }
.v1-stat-l {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 5px;
}

/* Ticker */
.v1-ticker {
  background: #0C3B6E;
  border-top: 0.5px solid rgba(255,255,255,.08);
  border-bottom: 0.5px solid rgba(255,255,255,.08);
  padding: 10px 0;
  overflow: hidden;
}
.v1-ticker-track {
  display: flex;
  animation: v1-tick 24s linear infinite;
}
@keyframes v1-tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v1-tick-i {
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 0 20px;
}
.v1-tick-sep { color: rgba(55,138,221,.5); padding: 0 4px; margin-top: -4px}

/* Storia A */
.v1-storia {
  padding: 56px max(36px, calc(50% - 600px));
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.v1-storia-line { width: 36px; height: 2px; background: #378ADD; margin-bottom: 12px; }
.v1-storia h2 { font-size: 20px; font-weight: 500; line-height: 1.35; margin-bottom: 16px; }
.v1-storia p  { font-size: 13px; color: #6b7280; line-height: 1.85; }
.v1-badge {
  background: #051E3E;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v1-badge::before {
  content: "1984";
  position: absolute;
  bottom: -10px; right: -8px;
  font-size: 64px;
  font-weight: 500;
  color: rgba(255,255,255,.04);
  letter-spacing: -2px;
  line-height: 1;
}
.v1-badge-n   { font-size: 52px; font-weight: 500; color: #85B7EB; line-height: 1; position: relative; }
.v1-badge-l   { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 8px; position: relative; }
.v1-badge-sub { font-size: 10px; color: rgba(133,183,235,.5); margin-top: 12px; font-style: italic; position: relative; }

/* Ordinarie */
.v1-ord {
  padding: 56px max(36px, calc(50% - 600px));
  background: #EEF8FF;
  border-bottom: 1px solid #e5e7eb;
}
.v1-ord-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.v1-ord-card {
  background: #fff;
  border: 0.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s;
  text-decoration: none;
  display: block;
  color: inherit;
  z-index: 100;
}
.v1-ord-card:hover { border-color: #378ADD; }
.v1-ord-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #0C3B6E;
  transition: background .25s;
}
.v1-ord-card:hover::before { background: #378ADD; }
.v1-ord-num   { font-size: 44px; font-weight: 500; color: #E6F1FB; line-height: 1; margin-bottom: 12px; letter-spacing: -1px; }
.v1-ord-title { font-size: 13px; font-weight: 500; line-height: 1.45; margin-bottom: 10px; }
.v1-ord-desc  { font-size: 12px; color: #6b7280; line-height: 1.75; }
.v1-ord-arr   { position: absolute; bottom: 20px; right: 20px; color: #378ADD; font-size: 16px; opacity: 0; transition: opacity .25s; }
.v1-ord-card:hover .v1-ord-arr { opacity: 1; }

/* Straordinarie */
.v1-str { overflow: hidden; background-color: #051E3E;}

.v1-str-head {
  background: #051E3E;
  padding: 48px max(36px, calc(50% - 600px)) 40px;
  position: relative;
  overflow: hidden;
}
.v1-str-head-bg { position: absolute; right: -40px; top: -40px; opacity: .05; pointer-events: none; }
.v1-str-head-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.v1-str-head h2 { font-size: 22px; font-weight: 500; color: #fff; line-height: 1.35; margin-bottom: 12px; }
.v1-str-head h2 em { font-style: normal; color: #85B7EB; }
.v1-str-head p  { font-size: 12px; color: rgba(255,255,255,1); line-height: 1.85; }
.v1-str-right   { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.v1-str-big-n   { font-size: 80px; font-weight: 500; color: rgba(55,138,221,.15); line-height: 1; letter-spacing: -3px; }
.v1-str-big-l   { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.2); margin-top: -6px; }
.v1-str-btn {
  display: inline-block;
  background: transparent;
  color: #85B7EB;
  border: 0.5px solid rgba(133,183,235,.35);
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.v1-str-btn:hover { border-color: #85B7EB; color: #fff; }

.v1-str-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 36px max(36px, calc(50% - 600px)) 48px;
}
.v1-str-cell {
  flex: 0 0 calc(25% - 11px);
  max-width: calc(25% - 11px);
  background: rgba(255,255,255,.06);
  border: 0.5px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s, border-color .22s;
}
.v1-str-cell:hover {
  background: rgba(55,138,221,.14);
  border-color: rgba(55,138,221,.45);
}
.v1-str-cell-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(55,138,221,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #85B7EB;
  transition: background .22s, color .22s;
}
.v1-str-cell:hover .v1-str-cell-ico {
  background: rgba(55,138,221,.32);
  color: #fff;
}
.v1-str-cell-t { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); line-height: 1.45; }


/* Storia B */
.v1-storia-b {
  padding: 56px max(36px, calc(50% - 600px));
  background: #F7F5F0;
  border-bottom: 1px solid #e5e7eb;
}
.v1-storia-b-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}
.v1-storia-b h2 { font-size: 20px; font-weight: 500; line-height: 1.4; margin-bottom: 16px; }
.v1-storia-b p  { font-size: 13px; color: #6b7280; line-height: 1.85; }
.v1-ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.v1-ph-box  { border-radius: 10px; height: 90px; display: flex; align-items: center; justify-content: center; }
.v1-ph-a { background: #0C3B6E; }
.v1-ph-b { background: #185FA5; }
.v1-ph-c { background: #0a2540; }
.v1-ph-d { background: #0e4d8a; }
.v1-ph-ico { opacity: .3; }

/* News */
.v1-news {
  padding: 56px max(36px, calc(50% - 600px));
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.v1-news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.v1-news-head h2 { font-size: 18px; font-weight: 500; }
.v1-news-all    { font-size: 10px; color: #185FA5; text-decoration: none; }
.v1-news-all:hover { text-decoration: underline; }
.v1-news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.v1-news-card {
  border: 0.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color .25s;
}
.v1-news-card:hover { border-color: #378ADD; }
.v1-news-top {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.v1-news-top.c1 { background: #0C3B6E; }
.v1-news-top.c2 { background: #185FA5; }
.v1-news-top.c3 { background: #051E3E; }
.v1-news-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border: 0.5px solid rgba(255,255,255,.2);
  padding: 2px 8px;
  border-radius: 2px;
}
.v1-news-body { padding: 18px; }
.v1-news-date  { font-size: 9px; color: #6b7280; letter-spacing: 1px; margin-bottom: 5px; text-transform: uppercase; }
.v1-news-title { font-size: 12px; font-weight: 500; line-height: 1.5; margin-bottom: 12px; }
.v1-news-link  { font-size: 10px; color: #185FA5; }
.v1-news-cta   { margin-top: 28px; text-align: center; }

/* Newsletter */
.v1-nl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0C3B6E;
  padding-left: max(36px, calc(50% - 600px));
  padding-right: max(36px, calc(50% - 600px));
}
.v1-nl-left {
  padding: 56px 36px 56px 0;
  border-right: 0.5px solid rgba(255,255,255,.1);
}
.v1-nl-ey  { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: #85B7EB; margin-bottom: 12px; }
.v1-nl-h2  { font-size: 26px; font-weight: 500; color: #fff; line-height: 1.25; margin-bottom: 12px; }
.v1-nl-h2 em { font-style: normal; color: #85B7EB; }
.v1-nl-sub { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.85; }
.v1-nl-right {
  padding: 56px 0 56px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.v1-nl-input {
  background: rgba(255,255,255,.07);
  border: 0.5px solid rgba(255,255,255,.15);
  border-radius: 3px;
  padding: 12px 16px;
  color: #fff;
  font-size: 12px;
  outline: none;
  font-family: inherit;
  width: 100%;
  transition: border-color .2s;
}
.v1-nl-input::placeholder { color: rgba(255,255,255,.3); }
.v1-nl-input:focus { border-color: rgba(255,255,255,.4); }
.v1-nl-privacy { font-size: 9px; color: rgba(255,255,255,.3); display: flex; align-items: center; gap: 8px; }
.v1-nl-privacy a { color: rgba(255,255,255,.5); }
.v1-nl-btn {
  background: #fff;
  color: #0C3B6E;
  border: none;
  padding: 12px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  font-family: inherit;
  width: 100%;
  transition: background .2s;
}
.v1-nl-btn:hover { background: #E6F1FB; }


/* -- 6. HOME-V3  (template dark) ------------------------------- */
/* body.v3 background — riattivabile se usi il template dark */

.v3-hero {
  background: #060f1e;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  border-bottom: 0.5px solid rgba(255,255,255,.06);
}
.v3-hero-left {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 0.5px solid rgba(255,255,255,.06);
}
.v3-hero-tag { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.2); }
.v3-year {
  font-size: 88px;
  font-weight: 500;
  color: rgba(255,255,255,.04);
  line-height: 1;
  margin: -12px 0 0 -6px;
  letter-spacing: -4px;
}
.v3-hero-left h1 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-top: -32px;
  position: relative;
  z-index: 1;
}
.v3-hero-left h1 em { font-style: normal; color: #378ADD; }

.v3-hero-right { display: grid; grid-template-rows: 1fr 1fr; }
.v3-hero-r-top {
  padding: 32px;
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.v3-hero-lead { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.85; }
.v3-hero-cta  {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: #378ADD;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
  font-family: inherit;
  transition: background .2s;
}
.v3-hero-cta:hover { background: #185FA5; color: #fff; }
.v3-hero-r-bot { display: grid; grid-template-columns: 1fr 1fr; }
.v3-stat {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.v3-stat + .v3-stat { border-left: 0.5px solid rgba(255,255,255,.06); }
.v3-stat-n { font-size: 36px; font-weight: 500; color: #fff; line-height: 1; }
.v3-stat-n span { color: #378ADD; }
.v3-stat-l { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 4px; }

/* Ticker V3 */
.v3-ticker {
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  border-top: 0.5px solid rgba(255,255,255,.06);
  padding: 10px 0;
  overflow: hidden;
  background: #060f1e;
}
.v3-ticker-track {
  display: flex;
  animation: v3-tick 22s linear infinite;
}
@keyframes v3-tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v3-tick-i   { white-space: nowrap; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.2); padding: 0 20px; }
.v3-tick-sep { color: rgba(55,138,221,.3); padding: 0 4px; }

/* Intro V3 */
.v3-intro {
  padding: 56px max(40px, calc(50% - 600px));
  border-bottom: 0.5px solid rgba(255,255,255,.06);
}
.v3-intro-ey { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: rgba(55,138,221,.6); margin-bottom: 20px; }
.v3-intro-body { font-size: 20px; font-weight: 500; line-height: 1.55; color: rgba(255,255,255,.75); max-width: 640px; }
.v3-intro-body strong { color: #fff; }
.v3-intro-body em     { font-style: normal; color: rgba(255,255,255,.3); }

/* Ordinarie V3 */
.v3-ord {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-bottom: 0.5px solid rgba(255,255,255,.06);
}
.v3-ord-card {
  padding: 32px 28px;
  border-right: 0.5px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.v3-ord-card:last-child { border-right: none; }
.v3-ord-card:hover { background: rgba(55,138,221,.04); }
.v3-ord-num   { font-size: 72px; font-weight: 500; color: rgba(255,255,255,.03); position: absolute; top: 12px; right: 16px; line-height: 1; letter-spacing: -3px; }
.v3-ord-tag   { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(55,138,221,.5); margin-bottom: 16px; }
.v3-ord-title { font-size: 14px; font-weight: 500; color: #fff; line-height: 1.4; margin-bottom: 12px; }
.v3-ord-desc  { font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.8; }
.v3-ord-link  { display: inline-block; margin-top: 20px; font-size: 9px; letter-spacing: 1px; color: #378ADD; text-transform: uppercase; text-decoration: none; }

/* Straordinarie V3 */
.v3-str {
  display: grid;
  grid-template-columns: 5fr 4fr;
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  padding-left: max(40px, calc(50% - 600px));
  padding-right: max(40px, calc(50% - 600px));
}
.v3-str-left {
  padding: 48px 40px 48px 0;
  border-right: 0.5px solid rgba(255,255,255,.06);
}
.v3-str-ey { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 24px; }
.v3-str-h2 { font-size: 20px; font-weight: 500; color: #fff; line-height: 1.4; margin-bottom: 32px; max-width: 340px; }
.v3-str-h2 strong { color: #378ADD; font-weight: 500; }
.v3-str-list { list-style: none; }
.v3-str-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 0.5px solid rgba(255,255,255,.06);
  font-size: 10px;
  color: rgba(255,255,255,.45);
  letter-spacing: .3px;
  line-height: 1.4;
  cursor: pointer;
  transition: color .2s;
}
.v3-str-item:hover { color: rgba(255,255,255,.8); }
.v3-str-dot { width: 4px; height: 4px; border-radius: 50%; background: #378ADD; flex-shrink: 0; }
.v3-str-cta { margin-top: 32px; }
.v3-str-btn {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 0.5px solid rgba(255,255,255,.15);
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: color .2s, border-color .2s;
}
.v3-str-btn:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.v3-str-right {
  padding: 48px 0 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.v3-str-big  { font-size: 96px; font-weight: 500; color: rgba(55,138,221,.08); line-height: 1; letter-spacing: -4px; margin-bottom: -16px; }
.v3-str-quote {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.85;
  font-style: italic;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255,255,255,.08);
}
.v3-str-quote strong { color: rgba(255,255,255,.65); font-style: normal; font-weight: 500; }

/* Storia B V3 */
.v3-storia {
  padding: 48px max(40px, calc(50% - 600px));
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}
.v3-storia h2 { font-size: 18px; font-weight: 500; color: #fff; line-height: 1.5; margin-bottom: 16px; }
.v3-storia h2 strong { color: #378ADD; font-weight: 500; }
.v3-storia p  { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.9; }
.v3-ph-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.v3-ph-box    { border: 0.5px solid rgba(255,255,255,.06); border-radius: 4px; height: 76px; display: flex; align-items: center; justify-content: center; }
.v3-ph-a { background: rgba(55,138,221,.06); }
.v3-ph-b { background: rgba(55,138,221,.03); }
.v3-ph-ico { opacity: .2; }

/* News V3 */
.v3-news { padding: 48px max(40px, calc(50% - 600px)); border-bottom: 0.5px solid rgba(255,255,255,.06); }
.v3-news-ey { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 28px; }
.v3-news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.v3-news-card { background: #060f1e; padding: 28px 24px; text-decoration: none; color: inherit; display: block; transition: background .2s; }
.v3-news-card:hover { background: rgba(55,138,221,.04); }
.v3-news-num   { font-size: 40px; font-weight: 500; color: rgba(55,138,221,.1); line-height: 1; margin-bottom: 16px; letter-spacing: -2px; }
.v3-news-tag   { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(55,138,221,.5); margin-bottom: 8px; }
.v3-news-date  { font-size: 9px; color: rgba(255,255,255,.2); margin-bottom: 6px; letter-spacing: .5px; }
.v3-news-title { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.65); line-height: 1.5; margin-bottom: 16px; }
.v3-news-link  { font-size: 9px; color: #378ADD; letter-spacing: 1px; text-transform: uppercase; }
.v3-news-cta   { margin-top: 28px; text-align: center; }

/* Newsletter V3 */
.v3-nl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  padding-left: max(40px, calc(50% - 600px));
  padding-right: max(40px, calc(50% - 600px));
}
.v3-nl-left {
  padding: 48px 40px 48px 0;
  border-right: 0.5px solid rgba(255,255,255,.06);
}
.v3-nl-tag { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: rgba(55,138,221,.5); margin-bottom: 16px; }
.v3-nl-h2  { font-size: 28px; font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.v3-nl-h2 em { font-style: normal; color: #378ADD; }
.v3-nl-sub { font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.85; }
.v3-nl-right {
  padding: 48px 0 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.v3-nl-input {
  background: rgba(255,255,255,.04);
  border: 0.5px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 12px 16px;
  color: #fff;
  font-size: 12px;
  outline: none;
  font-family: inherit;
  width: 100%;
  transition: border-color .2s;
}
.v3-nl-input::placeholder { color: rgba(255,255,255,.2); }
.v3-nl-input:focus { border-color: rgba(255,255,255,.3); }
.v3-nl-privacy { font-size: 9px; color: rgba(255,255,255,.2); display: flex; align-items: center; gap: 8px; }
.v3-nl-btn {
  background: #378ADD;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  transition: background .2s;
}
.v3-nl-btn:hover { background: #185FA5; }

/* Footer V3 override */
/* body.v3 .r-footer — riattivabile se usi il template dark */
/* body.v3 .r-footer-col a:hover — riattivabile se usi il template dark */


/* -- 7. RESPONSIVE ---------------------------------------------- */
@media (max-width: 900px) {
  .r-nav-links { display: none; }
  .r-nav-burger { display: flex; }

  /* V1 */
  .v1-hero { padding: 40px 20px 0; }
  .v1-hero h1 { font-size: 22px; }
  .v1-hero-stats { flex-direction: column; margin: 0; }
  .v1-stat { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.08); padding: 16px 20px; }
  .v1-storia, .v1-storia-b-inner { grid-template-columns: 1fr; }
  .v1-ord-grid, .v1-news-grid { grid-template-columns: 1fr; }
  .v1-str-head-inner { grid-template-columns: 1fr; }
  .v1-str-cell { flex: 0 0 calc(50% - 7px); max-width: calc(50% - 7px); }
  .v1-nl { grid-template-columns: 1fr; }
  .v1-nl-left { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.1); }
  .v1-storia, .v1-ord, .v1-str-head, .v1-storia-b, .v1-news, .v1-nl-left, .v1-nl-right { padding-left: 20px; padding-right: 20px; }

  /* V3 */
  .v3-hero { grid-template-columns: 1fr; }
  .v3-hero-right { display: none; }
  .v3-hero-left { border-right: none; padding: 40px 20px; }
  .v3-year { font-size: 60px; }
  .v3-hero-left h1 { font-size: 22px; }
  .v3-ord, .v3-news-grid { grid-template-columns: 1fr; }
  .v3-str { grid-template-columns: 1fr; }
  .v3-str-right { display: none; }
  .v3-storia { grid-template-columns: 1fr; }
  .v3-nl { grid-template-columns: 1fr; }
  .v3-nl-left { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.06); }

  /* Footer */
  .r-footer-top { grid-template-columns: 1fr; }
  .r-footer-bot { flex-direction: column; align-items: flex-start; }
}


/* ===============================================================
   HOME-MOCKUP1  —  Boxed layout, max 1280px
   =============================================================== */

/* -- Body & wrapper ------------------------------------------- */
/* body.m1 {
  background: #e8e6e1;
  min-height: 100vh;
} */ /* body.m1 non applicabile in Elementor */

.m1-wrap {
  width: 100%;
}

/* -- NAV ------------------------------------------------------ */
.m1-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc(50% - 600px));
  height: 52px;
  background: #0C3B6E;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .25s;
}
.m1-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }

.m1-nav-logo { display: flex; align-items: center; text-decoration: none; }
.m1-nav-logo img  { height: 28px; width: auto; }
.m1-nav-logo span { font-size: 15px; font-weight: 500; letter-spacing: 4px; color: #fff; }

.m1-nav-links { display: flex; gap: 22px; }
.m1-nav-link  {
  color: rgba(255,255,255,.6);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.m1-nav-link:hover,
.m1-nav-link.active { color: #fff; border-bottom-color: #378ADD; }

.m1-nav-phone {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  border: 0.5px solid rgba(255,255,255,.25);
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.m1-nav-phone:hover { color: #fff; border-color: rgba(255,255,255,.6); }

/* Hamburger */
.m1-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.m1-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,.7);
  transition: transform .25s, opacity .25s;
}
.m1-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.m1-burger.open span:nth-child(2) { opacity: 0; }
.m1-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer mobile */
.m1-drawer {
  display: none;
  flex-direction: column;
  background: #0C3B6E;
  border-top: 0.5px solid rgba(255,255,255,.1);
  padding: 12px max(28px, calc(50% - 600px)) 20px;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: calc(100vh - 52px);
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.m1-drawer.open { display: flex; }
.m1-drawer-link {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.m1-drawer-link.active,
.m1-drawer-link:hover { color: #fff; }
.m1-drawer-phone {
  margin-top: 14px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  text-decoration: none;
}

/* -- Utility condivise M1 -------------------------------------- */
.m1-label  { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #378ADD; margin-bottom: 6px; }
.m1-accent { width: 32px; height: 2px; background: #378ADD; margin-bottom: 12px; }
.m1-title  { font-size: 18px; font-weight: 500; color: #1a1a1a; }
.m1-section-header { margin-bottom: 24px; }

.m1-btn-primary {
  display: inline-block;
  background: #378ADD;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background .2s;
}
.m1-btn-primary:hover { background: #185FA5; color: #fff; }

.m1-btn-dark {
  display: inline-block;
  background: #0C3B6E;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background .2s;
}
.m1-btn-dark:hover { background: #185FA5; color: #fff; }

.m1-btn-outline {
  display: inline-block;
  background: transparent;
  color: #0C3B6E;
  border: 0.5px solid #0C3B6E;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.m1-btn-outline:hover { background: #0C3B6E; color: #fff; }

/* -- HERO ----------------------------------------------------- */
.m1-hero {
  background: linear-gradient(135deg, #051E3E 0%, #0C3B6E 60%, #185FA5 100%);
  padding: 56px max(40px, calc(50% - 600px)) 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.m1-hero::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(55,138,221,.12);
}
.m1-hero::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(55,138,221,.08);
}
.m1-hero-tag {
  display: inline-block;
  background: rgba(55,138,221,.25);
  color: #85B7EB;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 0.5px solid rgba(133,183,235,.3);
  position: relative;
  z-index: 1;
}
.m1-hero h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  max-width: 420px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.m1-hero h1 span { color: #85B7EB; }
.m1-hero-sub {
  color: rgba(255,255,255,1);
  font-size: 13px;
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.m1-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,.12);
  width: 100%;
  position: relative;
  z-index: 1;
}
.m1-stat-n { color: #fff; font-size: 24px; font-weight: 500; }
.m1-stat-n span { color: #85B7EB; }
.m1-stat-l { color: rgba(255,255,255,1); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

/* -- TRUST STRIP ---------------------------------------------- */
.m1-strip {
  background: #F7F5F0;
  border-top: 0.5px solid #e5e7eb;
  border-bottom: 0.5px solid #e5e7eb;
  padding: 12px max(40px, calc(50% - 600px));
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.m1-strip-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
  flex-shrink: 0;
}
.m1-strip-item {
  font-size: 10px;
  color: #6b7280;
  padding: 4px 12px;
  border: 0.5px solid #d1d5db;
  border-radius: 20px;
  white-space: nowrap;
}

/* -- STORIA A ------------------------------------------------- */
.m1-storia {
  background-color: #fff;
  padding: 48px max(40px, calc(50% - 600px));
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}
.m1-storia h2 { font-size: 20px; font-weight: 500; color: #1a1a1a; margin-bottom: 14px; line-height: 1.3; }
.m1-storia p  { font-size: 13px; line-height: 1.85; color: #6b7280; }
.m1-badge {
  background: #051E3E;
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.m1-badge::before {
  content: "1984";
  position: absolute;
  bottom: -8px; right: -6px;
  font-size: 56px;
  font-weight: 500;
  color: rgba(255,255,255,.04);
  letter-spacing: -2px;
  line-height: 1;
}
.m1-badge-n   { font-size: 44px; font-weight: 500; color: #85B7EB; line-height: 1; position: relative; }
.m1-badge-l   { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 6px; position: relative; }
.m1-badge-sub { font-size: 9px; color: rgba(133,183,235,.55); margin-top: 10px; font-style: italic; position: relative; }

/* -- ORDINARIE ------------------------------------------------ */
.m1-ord {
  padding: 48px max(40px, calc(50% - 600px));
  background: #F7F5F0;
  border-bottom: 1px solid #e5e7eb;
}
.m1-ord-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.m1-ord-card {
  background: #fff;
  border: 0.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color .2s;
}
.m1-ord-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #0C3B6E;
  transition: background .2s;
}
.m1-ord-card:hover { border-color: #378ADD; }
.m1-ord-card:hover::before { background: #378ADD; }
.m1-ord-num   { font-size: 36px; font-weight: 500; color: #E6F1FB; line-height: 1; margin-bottom: 10px; letter-spacing: -1px; }
.m1-ord-title { font-size: 12px; font-weight: 500; color: #1a1a1a; line-height: 1.4; }
.m1-ord-arrow {
  position: absolute;
  bottom: 14px; right: 14px;
  color: #378ADD;
  font-size: 14px;
  opacity: 0;
  transition: opacity .2s;
}
.m1-ord-card:hover .m1-ord-arrow { opacity: 1; }

/* -- STRAORDINARIE -------------------------------------------- */
.m1-str {
  padding: 48px max(40px, calc(50% - 600px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid #e5e7eb;
}
.m1-str-list { display: flex; flex-direction: column; }
.m1-str-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 0.5px solid #e5e7eb;
  cursor: pointer;
  transition: background .15s;
}
.m1-str-item.hover .m1-str-dot { background: #185FA5; transform: scale(1.4); }
.m1-str-item.hover .m1-str-text { color: #185FA5; }
.m1-str-dot  { width: 6px; height: 6px; border-radius: 50%; background: #378ADD; flex-shrink: 0; transition: transform .2s, background .2s; }
.m1-str-text { font-size: 11px; color: #1a1a1a; flex: 1; transition: color .2s; }
.m1-str-arr  { color: #9ca3af; font-size: 10px; }
.m1-str-cta  { margin-top: 22px; }

.m1-str-panel {
  background: #051E3E;
  border-radius: 10px;
  padding: 24px;
}
.m1-str-panel-title {
  color: rgba(255,255,255,.35);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.m1-str-panel-item {
  background: rgba(55,138,221,.1);
  border: 0.5px solid rgba(55,138,221,.2);
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 10px;
  transition: border-color .2s;
}
.m1-str-panel-item:last-child { margin-bottom: 0; }
.m1-str-panel-item:hover { border-color: rgba(55,138,221,.4); }
.m1-str-panel-item strong { color: #85B7EB; font-size: 11px; font-weight: 500; display: block; margin-bottom: 3px; }
.m1-str-panel-item span   { color: rgba(255,255,255,.35); font-size: 10px; }

/* -- STORIA B ------------------------------------------------- */
.m1-storia-b {
  padding: 48px max(40px, calc(50% - 600px));
  background: #F7F5F0;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}
.m1-storia-b h2 { font-size: 20px; font-weight: 500; color: #1a1a1a; line-height: 1.3; margin-bottom: 12px; }
.m1-storia-b p  { font-size: 13px; line-height: 1.85; color: #6b7280; }

.m1-farmacia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.m1-farmacia-box  {
  border-radius: 8px;
  height: 90px;
  background: #0C3B6E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m1-farmacia-box svg    { opacity: .45; }
.m1-farmacia-accent     { background: #185FA5; }
.m1-farmacia-dark       { background: #0a2d56; }
.m1-farmacia-mid        { background: #0d4f7c; }

/* -- NEWS ----------------------------------------------------- */
.m1-news {
  padding: 48px max(40px, calc(50% - 600px));
  border-bottom: 1px solid #e5e7eb;
  background-color: #EEF8FF;
}
.m1-news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}
.m1-news-all  { font-size: 10px; color: #185FA5; text-decoration: none; }
.m1-news-all:hover { text-decoration: underline; }
.m1-news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.m1-news-card {
  border: 0.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color .2s;
}
.m1-news-card:hover { border-color: #378ADD; }
.m1-news-img {
  height: 80px;
  background: #0C3B6E;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.m1-news-img.n2 { background: #185FA5; }
.m1-news-img.n3 { background: #051E3E; }
.m1-news-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(55,138,221,.9);
  color: #fff;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}
.m1-news-body  { padding: 16px; background-color: #fff;}
.m1-news-date  { font-size: 9px; color: #6b7280; letter-spacing: 1px; margin-bottom: 5px; }
.m1-news-title { font-size: 11px; font-weight: 500; color: #1a1a1a; line-height: 1.4; margin-bottom: 10px; }
.m1-news-link  { color: #378ADD; font-size: 10px; }
.m1-news-cta   { margin-top: 22px; text-align: center; }

/* -- NEWSLETTER ----------------------------------------------- */
.m1-nl {
  background: #0C3B6E;
  padding: 48px max(40px, calc(50% - 600px)) 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.m1-nl-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #85B7EB; margin-bottom: 8px; }
.m1-nl-title { font-size: 22px; font-weight: 500; color: #fff; line-height: 1.3; margin-bottom: 10px; }
.m1-nl-sub   { font-size: 12px; color: rgba(255,255,255,1); line-height: 1.75; }
.m1-nl-form  { display: flex; flex-direction: column; gap: 10px; }
.m1-nl-input {
  background: rgba(255,255,255,.08);
  border: 0.5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  padding: 11px 14px;
  color: #fff;
  font-size: 12px;
  outline: none;
  font-family: inherit;
  width: 100%;
  transition: border-color .2s;
}
.m1-nl-input::placeholder { color: rgba(255,255,255,.35); }
.m1-nl-input:focus { border-color: rgba(255,255,255,.45); }
.m1-nl-privacy {
  font-size: 9px;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.m1-nl-btn {
  background: #378ADD;
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .5px;
  font-family: inherit;
  width: 100%;
  transition: background .2s;
}
.m1-nl-btn:hover { background: #185FA5; }

/* -- FOOTER --------------------------------------------------- */
.m1-footer { background: #051E3E; padding: 32px max(40px, calc(50% - 600px)) 18px; }
.m1-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.m1-footer-brand { color: rgba(255,255,255,.35); font-size: 10px; line-height: 2; }
.m1-footer-brand strong { color: #fff; font-size: 13px; letter-spacing: 3px; display: block; margin-bottom: 10px; font-weight: 500; }
.m1-footer-brand a { color: #378ADD; text-decoration: none; }
.m1-footer-col h4 {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.25); font-weight: 400; margin-bottom: 12px;
}
.m1-footer-col a {
  display: block; font-size: 10px;
  color: rgba(255,255,255,.45); margin-bottom: 7px;
  text-decoration: none; transition: color .2s;
}
.m1-footer-col a:hover { color: #fff; }
.m1-footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.m1-footer-legal  { font-size: 9px; color: rgba(255,255,255,.18); }
.m1-footer-policy { display: flex; gap: 14px; }
.m1-footer-policy a {
  font-size: 9px; color: rgba(255,255,255,.28);
  text-decoration: none; transition: color .2s;
}
.m1-footer-policy a:hover { color: rgba(255,255,255,.6); }

/* -- RESPONSIVE M1 -------------------------------------------- */
@media (max-width: 860px) {
  .m1-nav-links  { display: none; }
  .m1-nav-phone  { display: none; }
  .m1-burger     { display: flex; }

  .m1-hero       { padding: 36px 20px 48px; }
  .m1-hero h1    { font-size: 22px; }
  .m1-hero-stats { gap: 20px; flex-wrap: wrap; }

  .m1-strip      { padding: 10px 20px; }

  .m1-storia,
  .m1-storia-b   { grid-template-columns: 1fr; padding: 36px 20px; }
  .m1-storia-b   { grid-template-columns: 1fr; }

  .m1-ord        { padding: 36px 20px; }
  .m1-ord-grid   { grid-template-columns: 1fr; }

  .m1-str        { grid-template-columns: 1fr; padding: 36px 20px; }
  .m1-str-panel  { display: none; } /* semplifica su mobile */

  .m1-news       { padding: 36px 20px; }
  .m1-news-grid  { grid-template-columns: 1fr; }
  .m1-news-head  { flex-direction: column; gap: 6px; }

  .m1-nl         { grid-template-columns: 1fr; padding: 36px 20px; gap: 28px; }

  .m1-footer     { padding: 28px 20px 16px; }
  .m1-footer-top { grid-template-columns: 1fr; }
  .m1-footer-bot { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 861px) and (max-width: 1024px) {
  .m1-storia    { grid-template-columns: 1fr 1fr; }
  .m1-storia-b  { grid-template-columns: 1fr 1fr; }
  .m1-news-grid { grid-template-columns: repeat(3,1fr); }
}


/* ===============================================================
   BOX-WRAP  —  sistema boxed condiviso tra tutti i layout
   =============================================================== */

/* Body background rimosso: gestiscilo da Elementor Site Settings */

/* Wrapper semantico — nessun vincolo visivo, sfondi liberi full-width */
.box-wrap {
  width: 100%;
}



/* -- Responsive v1 -------------------------------------------- */
@media (max-width: 900px) {
  /* Hero */
  .v1-hero         { padding: 40px 20px 0; }
  .v1-hero h1      { font-size: 24px; }
  .v1-hero-lead    { font-size: 13px; }
  .v1-hero-stats   { flex-direction: column; margin: 0; }
  .v1-stat         { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.08); padding: 16px 20px; }

  /* Ticker: velocità invariata, OK su mobile */

  /* Storia A */
  .v1-storia       { grid-template-columns: 1fr; padding: 36px 20px; }
  .v1-badge        { max-width: 200px; }

  /* Ordinarie */
  .v1-ord          { padding: 36px 20px; }
  .v1-ord-grid     { grid-template-columns: 1fr; }

  /* Straordinarie */
  .v1-str-head     { padding: 36px 20px 32px; }
  .v1-str-head-inner { grid-template-columns: 1fr; gap: 24px; }
  .v1-str-right    { align-items: flex-start; }
  .v1-str-cell     { flex: 0 0 calc(50% - 7px); max-width: calc(50% - 7px); padding: 20px 16px; }

  /* Storia B */
  .v1-storia-b     { padding: 36px 20px; }
  .v1-storia-b-inner { grid-template-columns: 1fr; }

  /* News */
  .v1-news         { padding: 36px 20px; }
  .v1-news-head    { flex-direction: column; gap: 8px; }
  .v1-news-grid    { grid-template-columns: 1fr; }

  /* Newsletter */
  .v1-nl           { grid-template-columns: 1fr; }
  .v1-nl-left      { padding: 36px 20px 28px; border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.1); }
  .v1-nl-right     { padding: 28px 20px 36px; }

  /* Footer */
  .r-footer        { padding: 32px 20px 18px; }
  .r-footer-top    { grid-template-columns: 1fr; gap: 24px; }
  .r-footer-bot    { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  .v1-str-cell     { flex: 0 0 100%; max-width: 100%; }
  .v1-hero h1      { font-size: 20px; }
}


/* -- Responsive v3 -------------------------------------------- */
@media (max-width: 900px) {
  /* Nav (via r-nav) già gestito sopra */

  /* Hero */
  .v3-hero         { grid-template-columns: 1fr; min-height: auto; }
  .v3-hero-right   { display: none; }
  .v3-hero-left    { border-right: none; padding: 40px 20px 36px; }
  .v3-year         { font-size: 56px; }
  .v3-hero-left h1 { font-size: 24px; margin-top: -20px; }

  /* Intro */
  .v3-intro        { padding: 36px 20px; }
  .v3-intro-body   { font-size: 16px; }

  /* Ordinarie */
  .v3-ord          { grid-template-columns: 1fr; }
  .v3-ord-card     { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.06); }
  .v3-ord-card:last-child { border-bottom: none; }

  /* Straordinarie */
  .v3-str          { grid-template-columns: 1fr; }
  .v3-str-left     { padding: 36px 20px; border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.06); }
  .v3-str-right    { display: none; }

  /* Storia B */
  .v3-storia       { grid-template-columns: 1fr; padding: 36px 20px; }

  /* News */
  .v3-news         { padding: 36px 20px; }
  .v3-news-grid    { grid-template-columns: 1fr; gap: 0; }
  .v3-news-card    { border-bottom: 0.5px solid rgba(255,255,255,.06); }

  /* Newsletter */
  .v3-nl           { grid-template-columns: 1fr; }
  .v3-nl-left      { padding: 36px 20px 28px; border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.06); }
  .v3-nl-right     { padding: 28px 20px 36px; }
  .v3-nl-input,
  .v3-nl-btn       { width: 100%; }
}


/* -- Responsive m1 -------------------------------------------- */
@media (max-width: 900px) {
  .m1-nav-links    { display: none; }
  .m1-nav-phone    { display: none; }
  .m1-burger       { display: flex; }

  .m1-hero         { padding: 36px 20px 44px; }
  .m1-hero h1      { font-size: 22px; }
  .m1-hero-stats   { gap: 20px; flex-wrap: wrap; }

  .m1-strip        { padding: 10px 20px; gap: 8px; }
  .m1-strip-item   { font-size: 9px; padding: 3px 9px; }

  .m1-storia       { grid-template-columns: 1fr; padding: 36px 20px; }
  .m1-storia-b     { grid-template-columns: 1fr; padding: 36px 20px; }

  .m1-ord          { padding: 36px 20px; }
  .m1-ord-grid     { grid-template-columns: 1fr; }

  .m1-str          { grid-template-columns: 1fr; padding: 36px 20px; }
  .m1-str-panel    { display: none; }

  .m1-news         { padding: 36px 20px; }
  .m1-news-grid    { grid-template-columns: 1fr; }
  .m1-news-head    { flex-direction: column; gap: 6px; }

  .m1-nl           { grid-template-columns: 1fr; padding: 36px 20px; gap: 24px; }

  .m1-footer       { padding: 28px 20px 16px; }
  .m1-footer-top   { grid-template-columns: 1fr; }
  .m1-footer-bot   { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .m1-hero h1      { font-size: 20px; }
  .m1-hero-stats   { flex-direction: column; gap: 12px; }
}


/* -- Nav shared responsive ------------------------------------ */
@media (max-width: 900px) {
  .r-nav-links     { display: none; }
  .r-nav-burger    { display: flex; }
  .r-nav-phone     { display: none; }
}


/* ===============================================================
   FONT SIZE UPGRADE  —  tutto il layout m1 più leggibile
   =============================================================== */

/* Logo: mix-blend-mode screen rende il nero trasparente sul nav */
.m1-nav-logo img,
.ls-nav-logo img { mix-blend-mode: screen; height: 44px; }

/* NAV */
.m1-nav-link          { font-size: 11px; }
.m1-nav-phone         { font-size: 12px; }
.m1-drawer-link       { font-size: 13px; }

/* Strip */
.m1-strip-label       { font-size: 11px; }
.m1-strip-item        { font-size: 12px; }

/* Labels / eyebrows */
.m1-label             { font-size: 11px; }
.m1-title             { font-size: 20px; }
.m1-section-header .m1-title { font-size: 20px; }

/* Hero */
.m1-hero h1           { font-size: 36px; }
.m1-hero-tag          { font-size: 11px; }
.m1-hero-sub          { font-size: 15px; }
.m1-stat-n            { font-size: 28px; }
.m1-stat-l            { font-size: 11px; }
.m1-btn-primary,
.m1-btn-dark,
.m1-btn-outline       { font-size: 13px; padding: 12px 26px; }

/* Badge */
.m1-badge-l           { font-size: 11px; }
.m1-badge-sub         { font-size: 11px; }

/* Storia */
.m1-storia h2,
.m1-storia-b h2       { font-size: 22px; }
.m1-storia p,
.m1-storia-b p        { font-size: 15px; line-height: 1.85; }

/* Ordinarie (classi v1 usate in mockup1) */
.v1-ord-title         { font-size: 15px; }
.v1-ord-desc          { font-size: 14px; }
.v1-str-cell-t        { font-size: 13px; }
.v1-str-cell-n        { font-size: 12px; }

/* Straordinarie head */
.v1-str-head h2       { font-size: 24px; }
.v1-str-head p        { font-size: 15px; }

/* News */
.m1-news-all          { font-size: 13px; }
.m1-news-tag          { font-size: 10px; }
.m1-news-date         { font-size: 11px; }
.m1-news-title        { font-size: 14px; }
.m1-news-link         { font-size: 13px; }
.m1-title             { font-size: 20px; }

/* Newsletter */
.m1-nl-label          { font-size: 11px; }
.m1-nl-title          { font-size: 28px; }
.m1-nl-sub            { font-size: 15px; line-height: 1.85; }
.m1-nl-input          { font-size: 14px; padding: 13px 16px; }
.m1-nl-privacy        { font-size: 12px; }
.m1-nl-btn            { font-size: 13px; padding: 13px; }

/* Str panel */
.m1-str-panel-title   { font-size: 11px; }
.m1-str-panel-item strong { font-size: 14px; }
.m1-str-panel-item span   { font-size: 13px; }

/* Footer */
.m1-footer-brand p    { font-size: 12px; }
.m1-footer-col h4     { font-size: 10px; }
.m1-footer-col a      { font-size: 13px; margin-bottom: 9px; }
.m1-footer-legal      { font-size: 11px; }
.m1-footer-policy a   { font-size: 11px; }


/* ===============================================================
   LO STUDIO  —  pagina interna coerente con mockup1
   =============================================================== */

/* -- Page hero ------------------------------------------------ */
.ls-hero {
  background: linear-gradient(135deg, #051E3E 0%, #0C3B6E 60%, #185FA5 100%);
  padding: 64px max(40px, calc(50% - 600px)) 56px;
  position: relative;
  overflow: hidden;
}
.ls-hero::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(55,138,221,.1);
}
.ls-hero::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(55,138,221,.07);
}
.ls-hero-inner { position: relative; z-index: 1; max-width: 600px; }
.ls-hero-ey {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #85B7EB;
  margin-bottom: 16px;
}
.ls-hero h1 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ls-hero h1 strong { font-weight: 500; color: #85B7EB; }
.ls-hero-sub {
  font-size: 16px;
  /* font-weight: 500; */
  color: rgba(255,255,255,1);
  line-height: 1.65;
  margin-bottom: 12px;
}
.ls-hero-body {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
}

/* -- Storia --------------------------------------------------- */
.ls-storia {
  padding: 56px max(40px, calc(50% - 600px));
  border-bottom: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 48px;
  align-items: start;
  background-color: #FFF;
}
.ls-storia-divider {
  background: #e5e7eb;
  align-self: stretch;
}
.ls-storia-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #378ADD;
  margin-bottom: 10px;
}
.ls-storia-line { width: 36px; height: 2px; background: #378ADD; margin-bottom: 14px; }
.ls-storia h2 { font-size: 22px; font-weight: 500; color: #1a1a1a; line-height: 1.35; margin-bottom: 16px; }
.ls-storia p  { font-size: 15px; color: #6b7280; line-height: 1.9; }
.ls-storia-stat { margin-top: 32px; padding-top: 28px; border-top: 1px solid #e5e7eb; }
.ls-storia-stat-n { font-size: 52px; font-weight: 500; color: #0C3B6E; line-height: 1; }
.ls-storia-stat-n span { color: #378ADD; }
.ls-storia-stat-l { font-size: 12px; color: #9ca3af; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* -- Soci / Team ---------------------------------------------- */
.ls-team {
  padding: 56px max(40px, calc(50% - 600px));
  background: #EEF8FF;
  border-bottom: 1px solid #e5e7eb;
}
.ls-team-ey   { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #378ADD; margin-bottom: 8px; }
.ls-team h2   { font-size: 22px; font-weight: 500; color: #1a1a1a; margin-bottom: 32px; }
.ls-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ls-team-card {
  background: #fff;
  border: 0.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.ls-team-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.ls-team-photo {
  height: 200px;
  background: #0C3B6E;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.ls-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ls-team-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ls-team-photo-placeholder svg { opacity: .15; }
.ls-team-num {
  position: absolute;
  bottom: 12px; right: 16px;
  font-size: 48px;
  font-weight: 500;
  color: rgba(255,255,255,.08);
  line-height: 1;
  letter-spacing: -2px;
}
.ls-team-body { padding: 22px; }
.ls-team-name { font-size: 16px; font-weight: 500; color: #1a1a1a; margin-bottom: 6px; }
.ls-team-role { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #378ADD; margin-bottom: 12px; }
.ls-team-bio  { font-size: 14px; color: #6b7280; line-height: 1.75; }

/* -- Operazioni straordinarie --------------------------------- */
.ls-str {
  padding: 64px max(40px, calc(50% - 600px));
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.ls-str-intro {
  max-width: 640px;
  margin-bottom: 40px;
}
.ls-str-ey { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #378ADD; margin-bottom: 8px; }
.ls-str h2 { font-size: 22px; font-weight: 500; color: #1a1a1a; line-height: 1.4; margin-bottom: 12px; }
.ls-str-lead { font-size: 15px; color: #6b7280; line-height: 1.85; }
.ls-str-lead strong { color: #1a1a1a; font-weight: 500; }

/* Icon cards */
.ls-ops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ls-ops-cell {
  flex: 0 0 calc(25% - 11px);
  max-width: calc(25% - 11px);
  background: #EEF8FF;
  border: 0.5px solid #dce8f5;
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: default;
  transition: background .22s, border-color .22s, box-shadow .22s;
}
.ls-ops-cell:hover {
  background: #fff;
  border-color: #378ADD;
  box-shadow: 0 4px 20px rgba(55,138,221,.12);
}
.ls-ops-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(55,138,221,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0C3B6E;
  transition: background .22s;
}
.ls-ops-cell:hover .ls-ops-ico {
  background: rgba(55,138,221,.24);
}
.ls-ops-t { font-size: 13px; font-weight: 500; color: #1a1a1a; line-height: 1.45; }

/* -- Tipologie di clienti ------------------------------------- */
.ls-clienti {
  padding: 64px max(40px, calc(50% - 600px));
  background: #051E3E;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ls-clienti-ey { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #85B7EB; margin-bottom: 8px; }
.ls-clienti h2 { font-size: 22px; font-weight: 500; color: #fff; margin-bottom: 36px; }
.ls-clienti-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.ls-clienti-card {
  flex: 0 0 calc(25% - 11px);
  max-width: calc(25% - 11px);
  background: rgba(255,255,255,.06);
  border: 0.5px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .22s, border-color .22s;
}
.ls-clienti-card:hover {
  background: rgba(55,138,221,.14);
  border-color: rgba(55,138,221,.45);
}
.ls-clienti-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(55,138,221,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #85B7EB;
  transition: background .22s, color .22s;
}
.ls-clienti-card:hover .ls-clienti-ico {
  background: rgba(55,138,221,.32);
  color: #fff;
}
.ls-clienti-t { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); line-height: 1.45; }

/* -- CTA finale ----------------------------------------------- */
.ls-cta {
  padding: 56px max(40px, calc(50% - 600px));
  background: #0c3b6e;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.ls-cta h2 { font-size: 24px; font-weight: 500; color: #fff; line-height: 1.35; }
.ls-cta h2 em { font-style: normal; color: #85B7EB; }
.ls-cta p  { font-size: 15px; color: rgba(255,255,255,1); margin-top: 8px; line-height: 1.7; }
.ls-cta-btn {
  display: inline-block;
  background: #378ADD;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
  transition: background .2s;
}
.ls-cta-btn:hover { background: #185FA5; color: #fff; }

/* -- Responsive Lo Studio ------------------------------------- */
@media (max-width: 900px) {
  .ls-hero       { padding: 44px 20px 40px; }
  .ls-hero h1    { font-size: 26px; }
  .ls-storia     { grid-template-columns: 1fr; padding: 36px 20px; }
  .ls-storia-divider { display: none; }
  .ls-team       { padding: 36px 20px; }
  .ls-team-grid  { grid-template-columns: 1fr; }
  .ls-str        { padding: 36px 20px; }
  .ls-ops-cell   { flex: 0 0 calc(50% - 7px); max-width: calc(50% - 7px); }
  .ls-clienti    { padding: 36px 20px; }
  .ls-clienti-card { flex: 0 0 calc(50% - 7px); max-width: calc(50% - 7px); }
  .ls-cta        { grid-template-columns: 1fr; padding: 36px 20px; gap: 20px; }
}

@media (max-width: 480px) {
  .ls-ops-cell      { flex: 0 0 100%; max-width: 100%; }
  .ls-clienti-card  { flex: 0 0 100%; max-width: 100%; }
  .ls-hero h1       { font-size: 22px; }
}


/* ===============================================================
   FONT SCALE v2  —  tutto più grande, menu e logo in primis
   =============================================================== */

/* -- Logo ----------------------------------------------------- */
.m1-nav-logo img  { height: 52px; }
.m1-nav-logo span { font-size: 22px; letter-spacing: 5px; }

/* -- Nav ------------------------------------------------------ */
.m1-nav           { height: 64px; padding: 0 max(36px, calc(50% - 600px)); }
.m1-nav-link      { font-size: 13px; letter-spacing: 1.5px; }
.m1-nav-phone     { font-size: 13px; padding: 7px 16px; }
.m1-drawer-link   { font-size: 15px; padding: 13px 0; }
.m1-drawer-phone  { font-size: 14px; margin-top: 18px; }

/* -- Eyebrow / label ------------------------------------------ */
.m1-label         { font-size: 12px; letter-spacing: 2.5px; }
.m1-title         { font-size: 22px; }
.r-eyebrow        { font-size: 12px; letter-spacing: 2.5px; }
.r-section-title  { font-size: 22px; }

/* -- Hero ----------------------------------------------------- */
.m1-hero          { padding: 64px max(40px, calc(50% - 600px)) 0; }
.m1-hero h1       { font-size: 42px; }
.m1-hero-tag      { font-size: 12px; padding: 6px 16px; }
.m1-hero-sub      { font-size: 17px; line-height: 1.8; }
.m1-stat-n        { font-size: 32px; }
.m1-stat-l        { font-size: 12px; letter-spacing: 1.5px; }
.m1-btn-primary,
.m1-btn-dark,
.m1-btn-outline   { font-size: 14px; padding: 13px 28px; letter-spacing: .8px; }

/* -- Strip ---------------------------------------------------- */
.m1-strip-label   { font-size: 12px; }
.m1-strip-item    { font-size: 13px; padding: 5px 14px; }

/* -- Storia / badge ------------------------------------------- */
.m1-storia h2,
.m1-storia-b h2   { font-size: 24px; line-height: 1.3; }
.m1-storia p,
.m1-storia-b p    { font-size: 16px; line-height: 1.9; }
.m1-badge-n       { font-size: 56px; }
.m1-badge-l       { font-size: 12px; letter-spacing: 2px; margin-top: 8px; }
.m1-badge-sub     { font-size: 13px; margin-top: 12px; }

/* -- Ordinarie (v1 classi riusate) --------------------------- */
.v1-ord-num       { font-size: 48px; }
.v1-ord-title     { font-size: 16px; }
.v1-ord-desc      { font-size: 15px; line-height: 1.8; }

/* -- Straordinarie head --------------------------------------- */
.v1-str-head h2   { font-size: 26px; line-height: 1.3; }
.v1-str-head p    { font-size: 16px; line-height: 1.85; }
.v1-str-big-n     { font-size: 88px; }
.v1-str-big-l     { font-size: 10px; letter-spacing: 2px; }
.v1-str-btn       { font-size: 11px; padding: 12px 24px; }
.v1-str-cell-n    { font-size: 13px; margin-bottom: 7px; }
.v1-str-cell-t    { font-size: 14px; line-height: 1.45; }

/* -- Str panel ------------------------------------------------ */
.m1-str-panel-title          { font-size: 12px; letter-spacing: 2px; margin-bottom: 18px; }
.m1-str-panel-item strong    { font-size: 15px; margin-bottom: 4px; }
.m1-str-panel-item span      { font-size: 14px; }

/* -- News ----------------------------------------------------- */
.m1-news-tag      { font-size: 11px; padding: 3px 9px; }
.m1-news-date     { font-size: 12px; margin-bottom: 7px; }
.m1-news-title    { font-size: 15px; line-height: 1.5; margin-bottom: 14px; }
.m1-news-link     { font-size: 14px; }
.m1-news-all      { font-size: 14px; }

/* -- Newsletter ----------------------------------------------- */
.m1-nl-label      { font-size: 12px; letter-spacing: 2.5px; margin-bottom: 14px; }
.m1-nl-title      { font-size: 32px; line-height: 1.2; margin-bottom: 14px; }
.m1-nl-sub        { font-size: 16px; line-height: 1.85; }
.m1-nl-input      { font-size: 15px; padding: 6px 18px; }
.m1-nl-privacy    { font-size: 13px; gap: 10px; }
.m1-nl-btn        { font-size: 14px; padding: 7px; letter-spacing: 1px; }

/* -- Footer --------------------------------------------------- */
.m1-footer-brand strong { font-size: 16px; letter-spacing: 4px; margin-bottom: 14px; }
.m1-footer-brand p      { font-size: 13px; line-height: 2.1; }
.m1-footer-col h4       { font-size: 11px; letter-spacing: 2px; margin-bottom: 16px; }
.m1-footer-col a        { font-size: 14px; margin-bottom: 10px; }
.m1-footer-legal        { font-size: 12px; }
.m1-footer-policy a     { font-size: 12px; }

/* -- Lo Studio font scale ------------------------------------- */
.ls-hero-ey       { font-size: 12px; }
.ls-hero h1       { font-size: 40px; }
.ls-hero-sub      { font-size: 18px; line-height: 1.65; }
.ls-hero-body     { font-size: 16px; line-height: 1.9; }
.ls-storia-label  { font-size: 12px; }
.ls-storia h2     { font-size: 24px; }
.ls-storia p      { font-size: 16px; line-height: 1.9; }
.ls-storia-stat-n { font-size: 56px; }
.ls-storia-stat-l { font-size: 13px; }
.ls-team-ey       { font-size: 12px; }
.ls-team h2       { font-size: 24px; margin-bottom: 36px; }
.ls-team-name     { font-size: 18px; }
.ls-team-role     { font-size: 12px; letter-spacing: 1.5px; margin-bottom: 14px; }
.ls-team-bio      { font-size: 15px; line-height: 1.8; }
.ls-str-ey        { font-size: 12px; }
.ls-str h2        { font-size: 24px; }
.ls-str-lead      { font-size: 16px; line-height: 1.85; }
.ls-ops-t         { font-size: 14px; }
.ls-clienti-ey    { font-size: 12px; }
.ls-clienti h2    { font-size: 24px; margin-bottom: 36px; }
.ls-clienti-t     { font-size: 15px; }
.ls-cta h2        { font-size: 28px; }
.ls-cta p         { font-size: 16px; margin-top: 10px; }
.ls-cta-btn       { font-size: 14px; padding: 15px 32px; }

/* -- Mobile: logo e nav hamburger ridimensionati -------------- */
@media (max-width: 900px) {
  .m1-nav         { height: 58px; padding: 0 20px; }
  .m1-nav-logo img { height: 40px; }
  .m1-nav-logo span { font-size: 18px; }
  .m1-hero        { padding: 44px 20px 0; }
  .m1-hero h1     { font-size: 28px; }
  .m1-hero-sub    { font-size: 16px; }
  .ls-hero        { padding: 44px 20px 40px; }
  .ls-hero h1     { font-size: 28px; }
  .ls-hero-sub    { font-size: 16px; }
  .ls-storia-stat-n { font-size: 40px; }
}

@media (max-width: 480px) {
  .m1-hero h1     { font-size: 24px; }
  .ls-hero h1     { font-size: 24px; }
}


/* ===============================================================
   FIX HERO HOME  —  max-width uniforme a Lo Studio + stats spacing
   =============================================================== */

.m1-hero h1           { max-width: 680px; }
.m1-hero-sub          { max-width: 680px; }
.m1-hero-actions      { margin-bottom: 56px; }

/* Stats: più respiro sotto */
.m1-hero-stats        { padding-top: 28px; padding-bottom: 32px; }
.m1-stat              { padding: 28px 36px 32px; }


/* ===============================================================
   HERO FLOATING CIRCLES  —  animazione elegante, tre layer
   =============================================================== */

@keyframes float-a {
  0%,100% { transform: translate(0, 0)    scale(1);    }
  30%     { transform: translate(-14px, 10px) scale(1.05); }
  65%     { transform: translate(9px, -8px)  scale(0.96); }
}
@keyframes float-b {
  0%,100% { transform: translate(0, 0)    scale(1);    }
  40%     { transform: translate(12px,-12px) scale(1.07); }
  72%     { transform: translate(-9px, 7px)  scale(0.94); }
}
@keyframes float-c {
  0%,100% { transform: translate(0, 0)   scale(1);    }
  25%     { transform: translate(8px, 14px) scale(1.04); }
  58%     { transform: translate(-10px,-5px) scale(0.97); }
}

/* Primo e secondo cerchio (pseudo-elementi esistenti) */
.m1-hero::before { animation: float-a  9s ease-in-out infinite; }
.m1-hero::after  { animation: float-b 13s ease-in-out infinite; }

/* Terzo cerchio aggiuntivo */
.m1-hero-c3 {
  position: absolute;
  left: -60px; bottom: 60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(55,138,221,.06);
  pointer-events: none;
  animation: float-c 10s ease-in-out infinite;
}

/* Stessa animazione per lo studio (ls-hero condivide il gradiente) */
.ls-hero::before { animation: float-a  9s ease-in-out infinite; }
.ls-hero::after  { animation: float-b 13s ease-in-out infinite; }


/* ===============================================================
   SERVIZI  —  stili pagina
   =============================================================== */

/* Intro hero */
.sv-hero { /* eredita da ls-hero */ }

/* Ordinarie — card espanse */
.sv-ord {
  padding: 56px max(40px, calc(50% - 600px));
  border-bottom: 1px solid #e5e7eb;
  background-color: #EEF8FF;
}
.sv-ord-ey  { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: #378ADD; margin-bottom: 8px; }
.sv-ord h2  { font-size: 22px; font-weight: 500; color: #1a1a1a; margin-bottom: 36px; line-height: 1.35; }
.sv-ord-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sv-ord-card {
  background: #fff;
  border: 0.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px 24px 80px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.sv-ord-card:hover { border-color: #378ADD; box-shadow: 0 4px 20px rgba(55,138,221,.08); }
.sv-ord-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #0C3B6E;
  transition: background .25s;
}
.sv-ord-card:hover::before { background: #378ADD; }
.sv-ord-num   { font-size: 48px; font-weight: 500; color: #E6F1FB; line-height: 1; margin-bottom: 14px; letter-spacing: -2px; }
.sv-ord-title { font-size: 17px; font-weight: 500; color: #1a1a1a; margin-bottom: 12px; line-height: 1.3; }
.sv-ord-desc  { font-size: 15px; color: #6b7280; line-height: 1.85; }
.sv-ord-link  {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 13px;
  color: #185FA5;
  text-decoration: none;
  letter-spacing: .3px;
}

/* Straordinarie intro dark band */
.sv-str-band {
  background: #051E3E;
  padding: 48px max(40px, calc(50% - 600px));
  position: relative;
  overflow: hidden;
}
.sv-str-band::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(55,138,221,.06);
  pointer-events: none;
}
.sv-str-band-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.sv-str-band-ey { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: #85B7EB; margin-bottom: 10px; }
.sv-str-band h2 { font-size: 26px; font-weight: 500; color: #fff; line-height: 1.35; margin-bottom: 14px; }
.sv-str-band h2 strong { font-weight: 500; color: #85B7EB; }
.sv-str-band p  { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.85; }
.sv-str-band p strong { color: rgba(255,255,255,.85); font-weight: 500; }

/* Griglia operazioni 2-col con descrizione */
.sv-str-list {
  padding: 0 max(40px, calc(50% - 600px));
  border-bottom: 1px solid #e5e7eb;
}
.sv-str-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 32px;
  padding: 32px 0;
  border-bottom: 1px solid #e5e7eb;
  align-items: start;
}
.sv-str-item:last-child { border-bottom: none; }
.sv-str-item-left { padding-top: 4px; }
.sv-str-item-n {
  font-size: 13px;
  font-weight: 500;
  color: #378ADD;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.sv-str-item-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #E6F1FB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-str-item-dot svg { opacity: .5; }
.sv-str-item-right {}
.sv-str-item-title { font-size: 18px; font-weight: 500; color: #1a1a1a; margin-bottom: 10px; line-height: 1.3; }
.sv-str-item-desc  { font-size: 15px; color: #6b7280; line-height: 1.85; max-width: 680px; }

/* Shanghai lines: i blocchi devono stare sopra il pattern */
.v1-ord--pattern .sv-extra-block { position: relative; z-index: 1; }

/* Familiari + Partnership */
.sv-extra {
  padding: 56px max(40px, calc(50% - 600px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.sv-extra-block {
  background: #EEF8FF;
  padding: 40px;
}
.sv-extra-block:first-child { background: #fff; }
.sv-extra-ey  { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: #378ADD; margin-bottom: 10px; }
.sv-extra h3  { font-size: 20px; font-weight: 500; color: #1a1a1a; margin-bottom: 14px; line-height: 1.35; }
.sv-extra h3 strong { font-weight: 500; }
.sv-extra p   { font-size: 15px; color: #6b7280; line-height: 1.85; }
.sv-extra p strong { color: #1a1a1a; font-weight: 500; }


/* ===============================================================
   CONTATTI  —  stili pagina
   =============================================================== */

.ct-main {
  padding: 56px max(40px, calc(50% - 600px));
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  border-bottom: 1px solid #e5e7eb;
  background-color: #FFF;
}

/* Colonna sinistra — info */
.ct-info-ey   { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: #378ADD; margin-bottom: 10px; }
.ct-info h2   { font-size: 28px; font-weight: 500; color: #1a1a1a; line-height: 1.3; margin-bottom: 28px; }
.ct-info-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; }
.ct-info-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ct-info-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; margin-bottom: 6px; }
.ct-info-val  { font-size: 16px; color: #1a1a1a; line-height: 1.7; }
.ct-info-val a { color: #185FA5; text-decoration: none; }
.ct-info-val a:hover { text-decoration: underline; }

/* Mappa placeholder */
.ct-map {
  margin-top: 28px;
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid #e5e7eb;
  height: 200px;
  background: #e8e6e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #9ca3af;
  letter-spacing: .5px;
}
/* Se si usa un iframe Google Maps reale */
.ct-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Colonna destra — form */
.ct-form-wrap {}
.ct-form-title { font-size: 20px; font-weight: 500; color: #1a1a1a; margin-bottom: 24px; }
.ct-form { display: flex; flex-direction: column; gap: 14px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-label {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  letter-spacing: .3px;
}
.ct-input,
.ct-textarea {
  border: 0.5px solid #d1d5db;
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a1a;
  outline: none;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.ct-input:focus,
.ct-textarea:focus {
  border-color: #378ADD;
  box-shadow: 0 0 0 3px rgba(55,138,221,.1);
}
.ct-textarea    { min-height: 140px; resize: vertical; line-height: 1.7; }
.ct-select      { appearance: none; -webkit-appearance: none; cursor: pointer;
                  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
                  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.ct-select:invalid { color: #9ca3af; }
.ct-privacy {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.ct-privacy input { margin-top: 2px; accent-color: #378ADD; flex-shrink: 0; }
.ct-privacy a { color: #185FA5; }
.ct-submit {
  background: #0C3B6E;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  align-self: flex-start;
}
.ct-submit:hover { background: #185FA5; }

/* Responsive servizi e contatti */
@media (max-width: 900px) {
  .sv-ord        { padding: 36px 20px; }
  .sv-ord-grid   { grid-template-columns: 1fr; }
  .sv-str-band   { padding: 40px 20px; }
  .sv-str-list   { padding: 0 20px; }
  .sv-str-item   { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .sv-str-item-left { display: flex; align-items: center; gap: 10px; }
  .sv-extra      { grid-template-columns: 1fr; padding: 0; gap: 1px; }
  .sv-extra-block { padding: 36px 20px; }
  .ct-main       { grid-template-columns: 1fr; padding: 36px 20px; gap: 40px; }
  .ct-field-row  { grid-template-columns: 1fr; }
}


/* ===============================================================
   SERVIZI — Straordinarie tab interattiva
   =============================================================== */

.sv-str-tabs-outer {
  padding: 40px max(40px, calc(50% - 600px));
  border-bottom: 1px solid #e5e7eb;
  background-color: #EEF8FF;
}
.sv-str-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 480px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 28px rgba(12,59,110,.10);
}

/* Lista numerata sinistra */
.sv-tabs-nav {
  background: #051E3E;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sv-tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-left: 3px solid transparent;
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  text-align: left;
  transition: background .18s, border-color .18s;
  font-family: inherit;
}
.sv-tab-btn:last-child { border-bottom: none; }
.sv-tab-btn:hover { background: rgba(255,255,255,.04); }
.sv-tab-btn.active {
  background: rgba(55,138,221,.1);
  border-left-color: #378ADD;
}
.sv-tab-n {
  font-size: 11px;
  font-weight: 500;
  color: #378ADD;
  letter-spacing: 1px;
  min-width: 22px;
  flex-shrink: 0;
  transition: color .18s;
}
.sv-tab-btn:not(.active) .sv-tab-n { color: rgba(55,138,221,.5); }
.sv-tab-label {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
  transition: color .18s;
}
.sv-tab-btn.active .sv-tab-label,
.sv-tab-btn:hover  .sv-tab-label { color: rgba(255,255,255,.9); }

/* Contenuto destra */
.sv-tabs-content { background: #fff; position: relative; }
.sv-tab-panel {
  display: none;
  padding: 48px 48px 48px 52px;
  height: 100%;
  animation: sv-fade .22s ease;
}
.sv-tab-panel.active { display: flex; flex-direction: column; justify-content: center; }
@keyframes sv-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.sv-panel-ey {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #378ADD;
  margin-bottom: 10px;
}
.sv-panel-num {
  font-size: 80px;
  font-weight: 500;
  color: #E6F1FB;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: -12px;
}
.sv-panel-title {
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}
.sv-panel-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.9;
  max-width: 560px;
}
.sv-panel-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #185FA5;
  text-decoration: none;
  letter-spacing: .3px;
  font-weight: 500;
}
.sv-panel-link:hover { text-decoration: underline; }

/* Mobile straordinarie: accordion */
@media (max-width: 900px) {
  .sv-str-tabs-outer { padding: 20px; }
  .sv-str-tabs       { grid-template-columns: 1fr; min-height: auto; border-radius: 8px; }
  .sv-tabs-nav       { order: 1; }
  .sv-tabs-content   { order: 2; display: none; }
  .sv-tabs-content.mobile-open { display: block; }
  .sv-tab-panel      { padding: 32px 20px; }
  .sv-tab-btn        { padding: 16px 20px; }
  .sv-panel-num      { font-size: 56px; }
  .sv-panel-title    { font-size: 20px; }
  .sv-panel-desc     { font-size: 15px; }
}


/* ===============================================================
   NEWS ARCHIVE
   =============================================================== */

/* Featured article band + card */
.nw-featured-band {
  background: #EEF8FF;
  padding: 40px max(40px, calc(50% - 600px));
  border-bottom: 1px solid #d0e8f8;
}
.nw-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 340px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 24px rgba(12,59,110,.10);
}
.nw-featured-left {
  background: #051E3E center/cover no-repeat;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.nw-featured-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(5,30,62,.80) 0%, rgba(12,59,110,.55) 100%);
  pointer-events: none;
}
.nw-featured-left > * {
  position: relative;
  z-index: 1;
}
.nw-feat-ey   { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #85B7EB; margin-bottom: 8px; }
.nw-feat-num  { font-size: 96px; font-weight: 500; color: rgba(255,255,255,.18); line-height: 1; letter-spacing: -4px; }
.nw-feat-tag  {
  display: inline-block;
  background: rgba(55,138,221,.2);
  color: #85B7EB;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  border: 0.5px solid rgba(133,183,235,.25);
}
.nw-featured-right {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}
.nw-feat-date  { font-size: 12px; color: #9ca3af; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.nw-feat-title {
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.nw-feat-title:hover { color: #185FA5; }
.nw-feat-excerpt { font-size: 16px; color: #6b7280; line-height: 1.85; }
.nw-feat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.nw-feat-studio { font-size: 12px; color: #9ca3af; }
.nw-feat-read {
  font-size: 13px;
  color: #185FA5;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .3px;
}
.nw-feat-read:hover { text-decoration: underline; }

/* Featured topics */
.nw-feat-topics        { margin-top: 20px; }
.nw-feat-topics-label  { font-size: 11px; font-weight: 600; letter-spacing: .8px;
                          text-transform: uppercase; color: #9ca3af; display: block; margin-bottom: 8px; }
.nw-feat-topics-chips  { display: flex; flex-wrap: wrap; gap: 6px; }
.nw-feat-topic         { font-size: 11px; font-weight: 500; padding: 4px 10px;
                          border-radius: 20px; background: rgba(55,138,221,.1);
                          color: #185FA5; border: 0.5px solid rgba(55,138,221,.25); }

/* Search bar */
.nw-search-bar   { background: #fff; padding: 16px max(40px, calc(50% - 600px));
                   border-bottom: 0.5px solid #e5e7eb; }
.nw-search-form  { display: flex; align-items: center; gap: 0; max-width: 560px;
                   background: #f3f4f6; border: 0.5px solid #e5e7eb;
                   border-radius: 8px; padding: 0 14px; }
.nw-search-ico   { color: #9ca3af; flex-shrink: 0; }
.nw-search-input { flex: 1; border: none; background: transparent; padding: 11px 10px;
                   font-size: 14px; font-family: inherit; outline: none; color: #1a1a1a; }
.nw-search-input::placeholder { color: #9ca3af; }
.nw-search-clear { display: none; align-items: center; justify-content: center;
                   background: none; border: none; cursor: pointer; padding: 4px;
                   color: #9ca3af; font-size: 12px; flex-shrink: 0; }
.nw-search-clear:hover { color: #374151; }
.nw-search-hint  { font-size: 12px; color: #6b7280; margin-top: 6px; display: none; }
.nw-empty        { text-align: center; padding: 60px 20px; color: #6b7280;
                   font-size: 15px; grid-column: 1 / -1; }

/* CTA archivio */
.nw-arch-cta-band { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
                    padding: 24px max(40px, calc(50% - 600px));
                    background: #EEF8FF; border-top: 0.5px solid #d0e8f7; }
.nw-arch-cta-band span { font-size: 14px; color: #374151; }
.nw-arch-cta-btn { font-size: 13px; font-weight: 600; color: #185FA5; text-decoration: none;
                   letter-spacing: .3px; white-space: nowrap; }
.nw-arch-cta-btn:hover { text-decoration: underline; }

/* Pagina archivio */
.nw-arch-section  { padding: 48px max(40px, calc(50% - 600px)) 64px; }
.nw-arch-header   { display: flex; justify-content: space-between; align-items: center;
                    margin-bottom: 28px; padding-bottom: 16px; border-bottom: 0.5px solid #e5e7eb; }
.nw-arch-count    { font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: #9ca3af; }
.nw-arch-back     { font-size: 13px; color: #185FA5; text-decoration: none; font-weight: 500; }
.nw-arch-back:hover { text-decoration: underline; }
.nw-arch-list     { display: flex; flex-direction: column; gap: 0; }
.nw-arch-item     { display: grid; grid-template-columns: 48px 1fr 32px; align-items: center; gap: 20px;
                    padding: 20px 0; border-bottom: 0.5px solid #e5e7eb; text-decoration: none;
                    transition: background .18s; border-radius: 4px; }
.nw-arch-item:hover { background: #f9fafb; padding-left: 12px; padding-right: 12px; margin: 0 -12px; }
.nw-arch-num      { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #9ca3af;
                    font-family: monospace; }
.nw-arch-title    { font-size: 15px; font-weight: 500; color: #111827; line-height: 1.4; margin-bottom: 6px; }
.nw-arch-meta     { display: flex; align-items: center; gap: 12px; }
.nw-arch-tag      { font-size: 11px; font-weight: 600; letter-spacing: .4px; padding: 3px 8px;
                    border-radius: 12px; background: rgba(55,138,221,.1); color: #185FA5; }
.nw-arch-date     { font-size: 12px; color: #9ca3af; }
.nw-arch-arr      { color: #d1d5db; font-size: 16px; transition: color .18s; }
.nw-arch-item:hover .nw-arch-arr { color: #185FA5; }

/* Filtri categoria */
.nw-filters {
  padding: 20px max(40px, calc(50% - 600px));
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, #051E3E 0%, #0C3B6E 60%, #185FA5 100%);
  flex-wrap: wrap;
}
.nw-filter-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-right: 4px; }
.nw-filter-btn {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.55);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
}
.nw-filter-btn:hover,
.nw-filter-btn.active { background: #378ADD; border-color: #378ADD; color: #fff; }

/* Griglia articoli */
.nw-grid-section { padding: 40px max(40px, calc(50% - 600px)) 56px; border-bottom: 1px solid #e5e7eb; background-color: #FFF;}
.nw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nw-card {
  border: 0.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .22s, box-shadow .22s;
}
.nw-card:hover { border-color: #378ADD; box-shadow: 0 4px 20px rgba(55,138,221,.09); }
.nw-card-top {
  padding: 28px 24px 20px;
  background: #fff;
  flex: 1;
}
.nw-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.nw-card-num  { font-size: 36px; font-weight: 500; color: #E6F1FB; line-height: 1; letter-spacing: -1px; }
.nw-card-tag  {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #378ADD;
  background: #EBF4FF;
  padding: 4px 10px;
  border-radius: 3px;
}
.nw-card-date  { font-size: 11px; color: #9ca3af; letter-spacing: .5px; margin-bottom: 8px; }
.nw-card-title { font-size: 16px; font-weight: 500; color: #1a1a1a; line-height: 1.4; margin-bottom: 12px; }
.nw-card-excerpt { font-size: 14px; color: #6b7280; line-height: 1.75; }
.nw-card-foot {
  padding: 14px 24px;
  background: #051E3E;
  border-top: 0.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nw-card-studio { font-size: 14px; color: #FFF; }
.nw-card-arrow  { font-size: 20px;   color: #FFF; }


/* ===============================================================
   NEWS SINGOLA — articolo
   =============================================================== */

/* Hero articolo */
.art-hero {
  background: linear-gradient(135deg, #051E3E 0%, #0C3B6E 60%, #185FA5 100%);
  padding: 28px max(40px, calc(50% - 600px)) 56px;
}
.art-hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}
.art-back {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.art-back:hover { color: #fff; }
.art-breadcrumb { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: .3px; }
.art-breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.art-breadcrumb a:hover { color: rgba(255,255,255,.75); }
.art-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #85B7EB;
  background: rgba(55,138,221,.2);
  border: 0.5px solid rgba(133,183,235,.3);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.art-hero h1 {
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 760px;
  letter-spacing: -.3px;
}
.art-header-sub {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  font-weight: 400;
  max-width: 640px;
}
.art-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.art-meta-sep { color: rgba(255,255,255,.2); }

/* Body articolo */
.art-layout-band {
  background: #EEF8FF;
  border-bottom: 1px solid #e5e7eb;
}
.art-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.art-body {
  padding: 56px 64px 72px 40px;
  border-right: 1px solid #e5e7eb;
  background: #fff;
}
.art-body p {
  font-size: 17px;
  color: #374151;
  line-height: 1.95;
  margin-bottom: 28px;
}
.art-body p:last-child { margin-bottom: 0; }
.art-body h2 {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 40px 0 16px;
  line-height: 1.3;
}
.art-body h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 32px 0 12px;
}
.art-body ul, .art-body ol {
  margin: 0 0 28px 24px;
  font-size: 17px;
  color: #374151;
  line-height: 1.95;
}
.art-body li { margin-bottom: 8px; }

/* Pull quote */
.art-pullquote {
  border-left: 3px solid #378ADD;
  margin: 36px 0;
  padding: 20px 28px;
  background: #F0F4FA;
  border-radius: 0 6px 6px 0;
}
.art-pullquote p {
  font-size: 19px !important;
  color: #1a1a1a !important;
  font-style: italic;
  margin-bottom: 0 !important;
  line-height: 1.7 !important;
}

/* Sidebar articolo */
.art-sidebar {
  padding: 48px 32px 56px 28px;
  position: sticky;
  top: 64px;
  background: #F8FAFC;
}
.art-sidebar-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 0.5px solid #e5e7eb; }
.art-sidebar-block:last-child { border-bottom: none; margin-bottom: 0; }
.art-sidebar-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; margin-bottom: 10px; }
.art-sidebar-info  { font-size: 14px; color: #374151; line-height: 1.7; }
.art-sidebar-info strong { color: #1a1a1a; font-weight: 500; }
.art-sidebar-topics { display: flex; flex-direction: column; gap: 6px; }
.art-sidebar-topic {
  font-size: 12px;
  color: #6b7280;
  padding: 6px 10px;
  background: #fff;
  border-radius: 4px;
  border: 0.5px solid #e5e7eb;
}

/* Prev/Next */
.art-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.art-nav-item {
  padding: 32px 40px;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #EEF8FF;
}
.art-nav-item:hover { background: #dceeff; }
.art-nav-item + .art-nav-item {
  background: #051E3E;
  text-align: right;
  border-left: none;
}
.art-nav-item + .art-nav-item:hover { background: #0C3B6E; }
.art-nav-dir  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; }
.art-nav-item + .art-nav-item .art-nav-dir { color: rgba(255,255,255,.35); }
.art-nav-title { font-size: 15px; font-weight: 500; color: #1a1a1a; line-height: 1.35; }
.art-nav-item + .art-nav-item .art-nav-title { color: rgba(255,255,255,.9); }

/* Articoli correlati */
.art-related { padding: 48px max(40px, calc(50% - 600px)) 56px; background: #EEF8FF; border-bottom: 1px solid #e5e7eb; }
.art-related-ey { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #378ADD; margin-bottom: 8px; }
.art-related h2 { font-size: 22px; font-weight: 500; color: #1a1a1a; margin-bottom: 28px; }
.art-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Responsive news */
@media (max-width: 900px) {
  .nw-featured-band  { padding: 24px 20px; }
  .nw-featured       { grid-template-columns: 1fr; }
  .nw-featured-left  { padding: 36px 20px; min-height: 200px; }
  .nw-featured-right { padding: 32px 20px; }
  .nw-feat-title     { font-size: 20px; }
  .nw-filters        { padding: 16px 20px; }
  .nw-grid-section   { padding: 28px 20px 40px; }
  .nw-grid           { grid-template-columns: 1fr; }
  .art-hero          { padding: 24px 20px 40px; }
  .art-hero-nav      { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 28px; }
  .art-hero h1       { font-size: 26px; }
  .art-header-sub    { font-size: 16px; }
  .art-layout        { grid-template-columns: 1fr; }
  .art-sidebar       { display: none; }
  .art-body          { padding: 32px 20px 40px; border-right: none; }
  .art-body p        { font-size: 16px; }
  .art-nav           { grid-template-columns: 1fr; }
  .art-nav-item + .art-nav-item { text-align: left; }
  .art-related       { padding: 36px 20px; }
  .art-related-grid  { grid-template-columns: 1fr; }
}


/* ===============================================================
   FASCIA FOTOGRAFICA — storia B (Option C)
   =============================================================== */

.m1-photo-band {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}
.m1-photo-band-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Leggero zoom su hover per vitalità */
  transition: transform 8s ease;
}
.m1-photo-band:hover .m1-photo-band-img {
  transform: scale(1.03);
}
.m1-photo-band-overlay {
  position: absolute;
  inset: 0;
  /* Gradiente direzionale: sinistra più opaca (testo), destra più trasparente */
  background: linear-gradient(
    100deg,
    rgba(5,30,62,.88) 0%,
    rgba(12,59,110,.78) 40%,
    rgba(12,59,110,.55) 70%,
    rgba(24,95,165,.35) 100%
  );
}
.m1-photo-band-content {
  position: relative;
  z-index: 1;
  padding: 56px 40px 56px max(40px, calc(50% - 600px));
  max-width: calc(600px + max(40px, calc(50% - 600px)));
}
.m1-photo-band-content h2 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.m1-photo-band-content p {
  font-size: 16px;
  color: rgba(255,255,255,1);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .m1-photo-band         { min-height: 280px; }
  .m1-photo-band-content { padding: 40px 20px; }
  .m1-photo-band-content h2 { font-size: 22px; }
  .m1-photo-band-content p  { font-size: 15px; }
}


/* ===============================================================
   NEWS CARD — header fotografico
   =============================================================== */

.m1-news-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  /* Leggero zoom al hover della card */
  overflow: hidden;
}
.m1-news-card:hover .m1-news-photo {
  background-size: 110%;
}
.m1-news-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,30,62,.72) 0%,
    rgba(12,59,110,.55) 100%
  );
  transition: opacity .25s;
}
.m1-news-card:hover .m1-news-photo-overlay {
  opacity: .85;
}
/* Il tag rimane sopra l'overlay */
.m1-news-photo .m1-news-tag {
  position: relative;
  z-index: 1;
}


/* ===============================================================
   ACCORDION MOBILE — Straordinarie su servizi.php
   =============================================================== */

.sv-accordion-panel {
  display: none; /* nascosto sempre su desktop */
}

@media (max-width: 900px) {
  /* Su mobile: tab-content (destra) sparisce, accordion appare */
  .sv-tabs-content { display: none !important; }

  .sv-tabs-nav { background: #051E3E; }

  .sv-accordion-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
  }
  .sv-accordion-panel.open {
    max-height: 600px; /* abbastanza grande per qualsiasi testo */
    padding: 28px 20px 32px;
  }

  /* Indicatore aperto/chiuso sul bottone */
  .sv-tab-btn::after {
    content: '+';
    margin-left: auto;
    font-size: 18px;
    color: rgba(255,255,255,.3);
    font-weight: 300;
    line-height: 1;
    transition: transform .25s, color .25s;
    flex-shrink: 0;
  }
  .sv-tab-btn.active::after {
    content: '−';
    color: #378ADD;
    transform: rotate(0deg);
  }

  /* Contenuto accordion: stesso stile del panel desktop */
  .sv-accordion-panel .sv-panel-ey    { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #378ADD; margin-bottom: 8px; }
  .sv-accordion-panel .sv-panel-num   { font-size: 56px; font-weight: 500; color: #E6F1FB; line-height: 1; letter-spacing: -2px; margin-bottom: -8px; }
  .sv-accordion-panel .sv-panel-title { font-size: 20px; font-weight: 500; color: #1a1a1a; line-height: 1.3; margin-bottom: 14px; position: relative; }
  .sv-accordion-panel .sv-panel-desc  { font-size: 15px; color: #6b7280; line-height: 1.85; }
  .sv-accordion-panel .sv-panel-link  { display: inline-block; margin-top: 20px; font-size: 13px; color: #185FA5; text-decoration: none; font-weight: 500; }
}


/* ===============================================================
   CHI SIAMO — foto Milano al posto del badge blu
   =============================================================== */

.m1-storia-photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 260px;
}
.m1-storia-photo-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 8s ease;
}
.m1-storia:hover .m1-storia-photo-img {
  transform: scale(1.04);
}
/* Overlay sfumato dal basso — lascia leggere la città */
.m1-storia-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,30,62,0)    40%,
    rgba(5,30,62,.75) 100%
  );
  pointer-events: none;
}
/* Badge numerico in basso */
.m1-storia-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 22px;
  z-index: 1;
}
.m1-storia-photo-n {
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.m1-storia-photo-n span { color: #85B7EB; }
.m1-storia-photo-l {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .m1-storia-photo { min-height: 200px; border-radius: 8px; }
}


/* ===============================================================
   ATTIVITÀ ORDINARIE — pattern geometrico lievissimo
   =============================================================== */

/* .v1-ord--pattern {
  position: relative;
}
.v1-ord--pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none; */
  /* SVG inline: griglia di punti, quasi impercettibile */
  /* background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='11' y='11' width='6' height='6' fill='%230C3B6E' opacity='.1'/%3E%3C/svg%3E"); */
  /* background-size: 28px 28px; */
  /* background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='10' width='280' height='280' fill='none' stroke='%230C3B6E' stroke-width='1.8' opacity='.20' transform='rotate(8 6 10)'/%3E%3Crect x='-140' y='-120' width='310' height='310' fill='none' stroke='%230C3B6E' stroke-width='1.4' opacity='.14' transform='rotate(-22 15 50)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
} */

.v1-ord--pattern {
  position: relative;
  overflow: hidden;
}

.v1-ord--pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1' preserveAspectRatio='none'%3E%3Cg stroke='%230C3B6E' fill='none'%3E%3Cline x1='0.076' y1='0' x2='0.271' y2='1' stroke-width='1.3' opacity='.13' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0.403' y1='0' x2='0.569' y2='1' stroke-width='1.0' opacity='.09' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0.764' y1='0' x2='0.931' y2='1' stroke-width='1.4' opacity='.12' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0.194' y1='0' x2='0' y2='1' stroke-width='1.2' opacity='.11' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0.556' y1='0' x2='0.361' y2='1' stroke-width='0.9' opacity='.08' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0.944' y1='0' x2='0.750' y2='1' stroke-width='1.1' opacity='.10' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0' y1='0.188' x2='1' y2='0.646' stroke-width='1.0' opacity='.08' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0' y1='0.833' x2='1' y2='0.115' stroke-width='0.9' opacity='.07' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0' y1='0.438' x2='1' y2='0.917' stroke-width='0.8' opacity='.06' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0' y1='0.708' x2='0.583' y2='0' stroke-width='1.1' opacity='.09' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0.417' y1='1' x2='1' y2='0.271' stroke-width='0.9' opacity='.07' vector-effect='non-scaling-stroke'/%3E%3C/g%3E%3C/svg%3E");
}

/* Le card devono stare sopra */
.v1-ord--pattern .v1-ord-grid { position: relative; z-index: 1; }
.v1-ord--pattern .r-eyebrow,
.v1-ord--pattern .r-section-title { position: relative; z-index: 1; }
.v1-ord--pattern .ls-str-intro,
.v1-ord--pattern .ls-ops-grid { position: relative; z-index: 1; }

/* ===============================================================
   LO STUDIO — fascia fotografica 3 pannelli tra storia e soci
   =============================================================== */

.ls-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 240px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}
.ls-photo-strip-item {
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
  filter: brightness(.88) saturate(.9);
}
.ls-photo-strip:hover .ls-photo-strip-item {
  transform: scale(1.04);
  filter: brightness(.95) saturate(1);
}
/* Hover su singolo pannello */
.ls-photo-strip-item:hover {
  transform: scale(1.06) !important;
  filter: brightness(1) saturate(1.05) !important;
  z-index: 1;
}
/* Separatori tra pannelli */
.ls-photo-strip-item + .ls-photo-strip-item {
  border-left: 2px solid #fff;
}

@media (max-width: 900px) {
  .ls-photo-strip              { grid-template-columns: 1fr 1fr; height: 180px; }
  .ls-photo-strip-item:last-child { display: none; }
}
@media (max-width: 480px) {
  .ls-photo-strip { grid-template-columns: 1fr; height: 200px; }
  .ls-photo-strip-item:nth-child(2),
  .ls-photo-strip-item:last-child { display: none; }
}


/* ===============================================================
   NEWS CARD — header fotografico (archivio + articolo correlati)
   =============================================================== */

.nw-card-photo {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: background-size .5s ease;
  flex-shrink: 0;
}
.nw-card:hover .nw-card-photo {
  background-size: 110%;
}
.nw-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,30,62,.6)  0%,
    rgba(12,59,110,.4) 100%
  );
  transition: opacity .25s;
}
.nw-card:hover .nw-card-photo-overlay { opacity: .75; }

.nw-card-photo-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nw-card-date-over {
  font-size: 10px;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px;
}

/* Rimuovi l'head numerica che c'era prima, non serve più */
.nw-card-top { padding: 20px 20px 16px; }

@media (max-width: 900px) {
  .nw-card-photo { height: 140px; }
}