@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #0066b3;
  --blue-dark: #004d88;
  --blue-light: #e8f3fb;
  --blue-mid: #3388c9;
  --ink: #1a2a3a;
  --soft: #4a5a6a;
  --muted: #6b7c8d;
  --line: #dce4ec;
  --bg: #f4f7fa;
  --white: #fff;
  --nav: #0d2840;
  --font: "Source Sans 3", system-ui, sans-serif;
  --pad: clamp(16px, 3vw, 40px);
  --max: 1560px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.nav-open { overflow: hidden; }
body { margin: 0; font-family: var(--font); font-size: 16px; color: var(--ink); background: var(--white); line-height: 1.6; }
img, video { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

/* HEADER */
.site-header { background: var(--white); border-bottom: none; margin: 0; }
.site-header--division .header-bar { padding: 8px var(--pad); }
.site-header--division .brand-logo { height: clamp(48px, 7vw, 72px); }
main { margin: 0; padding: 0; }
.header-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px var(--pad); max-width: 100%;
}
.brand { display: flex; align-items: center; color: var(--ink); flex-shrink: 0; }
.brand:hover { color: var(--ink); opacity: .92; }
.brand-logo {
  display: block;
  height: clamp(64px, 9vw, 96px);
  width: auto;
  max-width: min(440px, 72vw);
  object-fit: contain;
}
.header-actions { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; }
.header-tel { font-weight: 800; font-size: 1.1rem; color: var(--blue); white-space: nowrap; }
.btn-cta { background: var(--blue); color: #fff; padding: 11px 22px; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; border-radius: 3px; }
.btn-cta:hover { background: var(--blue-dark); color: #fff; }

/* NAV */
.main-nav { background: var(--nav); position: sticky; top: 0; z-index: 500; }
.nav-inner { display: flex; align-items: stretch; padding: 0 var(--pad); }
.nav-links { display: flex; list-style: none; margin: 0; padding: 0; flex: 1; flex-wrap: wrap; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  display: flex; align-items: center; height: 54px; padding: 0 16px;
  color: rgba(255,255,255,.92); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .04em; background: none; border: none;
  cursor: pointer; font-family: inherit; white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
}
.nav-links > li > a:hover, .nav-links > li.active > a,
.nav-links > li > button:hover { background: rgba(255,255,255,.06); border-bottom-color: var(--blue-mid); color: #fff; }
.has-mega { position: static !important; }
.mega {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-top: 4px solid var(--blue);
  box-shadow: 0 24px 64px rgba(0,0,0,.12); padding: 28px var(--pad) 32px; z-index: 600;
}
.has-mega:hover .mega, .has-mega.open .mega { display: block; }
.mega-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 28px; }
.mega-inner--2 { grid-template-columns: 1.3fr 1fr 1fr; }
.mega-btn { display: inline-block; margin-top: 10px; padding: 10px 16px; font-size: .75rem; }
.breadcrumb { margin: 0 0 12px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.65); }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; opacity: .5; }
.offer-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) { .offer-row { grid-template-columns: 1fr; } .mega-inner--2 { grid-template-columns: 1fr; } }
.mega-intro h3 { margin: 0 0 8px; font-size: 1.15rem; color: var(--ink); }
.mega-intro p { margin: 0 0 14px; font-size: .88rem; color: var(--muted); line-height: 1.55; }
.mega-col h4 { margin: 0 0 10px; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); }
.mega-col a { display: block; padding: 5px 0; color: var(--ink); font-size: .88rem; font-weight: 600; }
.mega-col a:hover { color: var(--blue); }
.menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; margin: 0;
  background: var(--nav); border: none; border-radius: 4px;
  cursor: pointer; flex-shrink: 0;
}
.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block; width: 20px; height: 2px; background: #fff; border-radius: 1px;
  transition: transform .25s, opacity .25s;
}
.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.nav-open .menu-icon { background: transparent; }
.nav-open .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }
.nav-backdrop {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(10, 22, 40, .55); backdrop-filter: blur(2px);
}
.nav-drawer-cta { display: none; }

/* VIDEO HERO */
.video-hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; background: #0a1628; }
.video-hero .video-wrap { position: absolute; inset: 0; z-index: 0; }
.video-hero video, .video-hero iframe {
  position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
  width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; border: none;
}
.video-hero .overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(0,30,60,.88) 0%, rgba(0,40,80,.65) 45%, rgba(0,20,40,.5) 100%);
}
.video-hero .hero-content {
  position: relative; z-index: 2; padding: 48px var(--pad); width: 100%; max-width: var(--max); margin: 0 auto;
}
.video-hero h1 { margin: 0 0 16px; color: #fff; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.1; max-width: 16em; }
.video-hero .lead { margin: 0 0 28px; color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 36em; line-height: 1.65; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-pills a {
  padding: 10px 18px; border-radius: 2px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}
.hero-pills a:hover { background: #fff; color: var(--blue-dark); }
.btn { display: inline-block; padding: 14px 26px; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; border-radius: 3px; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-mid); color: #fff; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-light); color: var(--blue-dark); }
.btn-ghost { border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-ghost:hover { background: #fff; color: var(--blue-dark); }

/* HUB home — card chiare e leggibili */
.hub-pick {
  padding: clamp(32px, 5vw, 56px) var(--pad) clamp(48px, 6vw, 72px);
  background: var(--bg);
}
.hub-pick .inner { max-width: var(--max); margin: 0 auto; }
.hub-kicker {
  margin: 0 0 8px; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--blue);
}
.hub-title {
  margin: 0 0 12px; font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.12; color: var(--ink);
}
.hub-pick .hub-lead {
  margin: 0 0 36px; max-width: 40em; font-size: 1.05rem;
  color: var(--soft); line-height: 1.65;
}
.hub-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hub-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); color: var(--ink);
  overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.hub-card:hover {
  box-shadow: 0 20px 50px rgba(0, 50, 100, .12);
  transform: translateY(-3px); color: var(--ink);
}
.hub-card-photo {
  width: 100%; height: 220px; object-fit: cover; display: block;
}
.hub-card-body { padding: 24px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.hub-card-logo {
  height: 44px; width: auto; max-width: 100%; object-fit: contain;
  margin-bottom: 16px; align-self: flex-start;
}
.hub-card h2 {
  margin: 0 0 10px; font-size: 1.35rem; font-weight: 800; color: var(--ink);
}
.hub-card p {
  margin: 0 0 20px; font-size: .95rem; line-height: 1.65; color: var(--soft); flex: 1;
}
.hub-card-link {
  font-weight: 800; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--blue);
}
@media (max-width: 960px) { .hub-cards { grid-template-columns: 1fr; } .hub-card-photo { height: 200px; } }

/* HOME corporate */
.corp-hero {
  position: relative; min-height: clamp(420px, 62vh, 640px);
  display: flex; align-items: flex-end;
  background: #0a1628 center/cover no-repeat;
}
.corp-hero .ov {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,22,44,.92) 0%, rgba(0,40,80,.72) 50%, rgba(0,25,50,.45) 100%);
}
.corp-hero .inner { position: relative; z-index: 2; padding: 56px var(--pad) 48px; max-width: var(--max); margin: 0 auto; width: 100%; }
.corp-hero h1 {
  margin: 0 0 16px; color: #fff; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1; max-width: 16em;
}
.corp-hero .lead { margin: 0 0 28px; color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.5vw, 1.2rem); max-width: 42em; line-height: 1.65; }
.corp-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.corp-pills a {
  padding: 11px 20px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.corp-pills a:hover { background: #fff; color: var(--blue-dark); }

.home-intro { max-width: 820px; }
.home-intro .prose-page p { font-size: 1.05rem; }

.hub-card-specs {
  margin: 0 0 20px; padding: 0; list-style: none;
}
.hub-card-specs li {
  position: relative; padding: 3px 0 3px 14px; font-size: .86rem; color: var(--soft); line-height: 1.45;
}
.hub-card-specs li::before { content: ""; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; background: var(--blue); }

.home-integrate {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px;
}
.home-integrate-item {
  padding: 28px 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
}
.home-integrate-item h3 { margin: 0 0 10px; color: #fff; font-size: 1.05rem; font-weight: 800; }
.home-integrate-item p { margin: 0; font-size: .92rem; color: rgba(255,255,255,.78); line-height: 1.65; }
@media (max-width: 900px) { .home-integrate { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .home-integrate { grid-template-columns: 1fr; } }

.svc-card-link { font-weight: 700; font-size: .8rem; color: var(--blue); }
.svc-card-link::after { content: " →"; }

/* legacy hub doors */
.page-hub { background: var(--bg); }
.site-header--hub { background: var(--white); border-bottom: 1px solid var(--line); }
.site-header--hub .header-bar { padding: 10px var(--pad); }
.site-header--hub .brand-logo { height: clamp(52px, 7vw, 76px); }

.hub-splash {
  text-align: center; padding: clamp(28px, 4vw, 44px) var(--pad) clamp(20px, 3vw, 32px);
  background: linear-gradient(180deg, var(--nav) 0%, #0f3050 100%);
  color: #fff;
}
.hub-kicker {
  margin: 0 0 8px; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: #7ec8ff;
}
.hub-splash h1 {
  margin: 0 0 10px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.15;
}
.hub-lead {
  margin: 0 auto; max-width: 36em; font-size: clamp(.95rem, 1.4vw, 1.08rem);
  color: rgba(255,255,255,.82); line-height: 1.6;
}

.hub-doors--hero {
  min-height: calc(100vh - 280px);
  min-height: calc(100dvh - 280px);
}
.hub-doors--hero .door { min-height: clamp(340px, 52vh, 620px); }
.door-logo {
  display: block; width: auto; height: clamp(36px, 5vw, 52px);
  max-width: 100%; object-fit: contain; margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.door h2 {
  margin: 0 0 8px; font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800; line-height: 1.2;
}
.hub-footer {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 14px;
  padding: 20px var(--pad) 28px; background: var(--nav);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; font-weight: 600;
}
.hub-footer a { color: rgba(255,255,255,.75); }
.hub-footer a:hover { color: #fff; }
.hub-footer span { color: rgba(255,255,255,.25); }

/* HUB — tre porte (NO numeri) */
.hub-intro { padding: 40px var(--pad) 24px; background: var(--bg); text-align: center; }
.hub-intro h2 { margin: 0 0 10px; font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--ink); }
.hub-intro p { margin: 0 auto; max-width: 40em; color: var(--soft); font-size: 1.02rem; }

.hub-doors { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 560px; }
.door {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden; border-right: 1px solid rgba(255,255,255,.12);
  min-height: 480px;
}
.door:last-child { border-right: none; }
.door-bg { position: absolute; inset: 0; }
.door-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.door:hover .door-bg img { transform: scale(1.07); }
.door-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,35,70,.95) 0%, rgba(0,50,100,.55) 45%, rgba(0,30,60,.25) 100%);
  transition: background .35s;
}
.door:hover .door-bg::after { background: linear-gradient(to top, rgba(0,80,140,.95) 0%, rgba(0,60,110,.7) 50%, rgba(0,40,80,.35) 100%); }
.door-body { position: relative; z-index: 2; padding: 32px clamp(20px, 3vw, 36px) 40px; }
.door-tag { display: inline-block; background: var(--blue); color: #fff; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 5px 10px; margin-bottom: 12px; }
.door h3 { margin: 0 0 10px; font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 800; line-height: 1.15; }
.door-desc { margin: 0 0 22px; font-size: .92rem; line-height: 1.5; opacity: .9; max-width: 28em; }
.door .enter { font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 8px; }
.door .enter::after { content: "→"; transition: transform .2s; }
.door:hover .enter::after { transform: translateX(5px); }

/* SECTIONS full width */
.fw { padding: clamp(48px, 6vw, 72px) var(--pad); }
.fw.alt { background: var(--bg); }
.fw.dark { background: var(--nav); color: rgba(255,255,255,.85); }
.inner { max-width: var(--max); margin: 0 auto; }
.eyebrow { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); margin-bottom: 8px; }
.fw.dark .eyebrow { color: #7ec8ff; }
h2.title { margin: 0 0 12px; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; line-height: 1.2; }
.fw.dark h2.title { color: #fff; }
.intro { margin: 0 0 36px; color: var(--soft); font-size: 1.02rem; max-width: 50em; line-height: 1.7; }
.fw.dark .intro { color: rgba(255,255,255,.75); }
.fw.dark .prose-page p { color: rgba(255,255,255,.82); }
.fw.dark .prose-page a { color: #7ec8ff; }

/* service cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s; }
.card:hover { box-shadow: 0 12px 40px rgba(0,60,120,.1); }
.card img { width: 100%; height: 170px; object-fit: cover; }
.card-body { padding: 22px 24px 26px; }
.card h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; }
.card p { margin: 0; font-size: .9rem; color: var(--soft); line-height: 1.65; }
.card .lnk { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .8rem; text-transform: uppercase; color: var(--blue); }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.split img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.split-text { padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.split-text h2 { margin: 0 0 14px; font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.split-text p { margin: 0 0 12px; color: var(--soft); line-height: 1.75; font-size: .98rem; }
.split-text p:last-child { margin-bottom: 0; }
.prose-page h2 { margin: 0 0 14px; font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.split.alt .split-text { background: var(--bg); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--white); padding: 28px 20px; text-align: center; }
.stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--blue); }
.stat span { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 600; }

.markets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mkt { position: relative; min-height: 160px; overflow: hidden; color: #fff; display: block; }
.mkt img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mkt:hover img { transform: scale(1.05); }
.mkt::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,30,60,.9), rgba(0,30,60,.25)); }
.mkt span { position: relative; z-index: 1; display: flex; align-items: flex-end; height: 100%; min-height: 160px; padding: 16px; font-weight: 700; font-size: .9rem; }

.cta-fw { background: var(--blue); color: #fff; text-align: center; padding: 56px var(--pad); }
.cta-fw h2 { margin: 0 0 12px; color: #fff; font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; }
.cta-fw p { margin: 0 auto 24px; max-width: 36em; opacity: .92; }

/* HERO divisioni — immagine subito sotto il menu, zero gap */
.page-hero {
  position: relative; margin: 0; min-height: clamp(320px, 48vh, 520px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: #0a1628 center/cover no-repeat;
}
.page-hero .ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,22,44,.94) 0%, rgba(0,35,70,.55) 55%, rgba(0,25,50,.35) 100%);
}
.page-hero .inner { position: relative; z-index: 2; padding: 48px var(--pad) 28px; width: 100%; max-width: var(--max); margin: 0 auto; }
.page-hero h1 { margin: 0; color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; max-width: 14em; line-height: 1.12; }
.page-hero .lead { margin: 14px 0 0; color: rgba(255,255,255,.9); font-size: clamp(.98rem, 1.4vw, 1.12rem); max-width: 40em; line-height: 1.65; }
.page-hero--tall { min-height: clamp(380px, 52vh, 560px); }

.div-intro { background: var(--white); }
.inner.narrow { max-width: 820px; }
.inner.narrow .title { margin-bottom: 20px; }

.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.svc-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); color: var(--ink); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.svc-card:hover {
  box-shadow: 0 16px 48px rgba(0,50,100,.1); transform: translateY(-2px); color: var(--ink);
}
.svc-card img { width: 100%; height: 200px; object-fit: cover; }
.svc-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { margin: 0 0 10px; font-size: 1.15rem; font-weight: 800; }
.svc-card > .svc-card-body > p { margin: 0 0 14px; font-size: .92rem; color: var(--soft); line-height: 1.6; }
.svc-card ul {
  margin: 0 0 18px; padding: 0; list-style: none; flex: 1;
}
.svc-card ul li {
  position: relative; padding: 4px 0 4px 18px; font-size: .88rem; color: var(--soft); line-height: 1.5;
}
.svc-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.svc-card-link { font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--blue); }

.process-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px;
}
.process-item {
  padding: 28px 24px; background: var(--bg); border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
}
.process-item h3 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 800; }
.process-item p { margin: 0; font-size: .92rem; color: var(--soft); line-height: 1.65; }

.markets-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.market-tag {
  display: inline-block; padding: 12px 20px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); color: #fff; font-weight: 600; font-size: .88rem;
}

@media (max-width: 960px) {
  .svc-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
}

.hero-subnav {
  position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 0;
  background: var(--nav); border-top: 1px solid rgba(255,255,255,.08);
}
.hero-subnav a {
  flex: 1 1 auto; min-width: fit-content;
  padding: 14px 18px; text-align: center;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.78); border-right: 1px solid rgba(255,255,255,.06);
}
.hero-subnav a:last-child { border-right: none; }
.hero-subnav a:hover, .hero-subnav a.is-active { color: #fff; background: rgba(255,255,255,.06); }

/* Offerte edilizia (stile card orizzontali) */
.offer-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer {
  display: block; background: var(--white); border: 1px solid var(--line);
  color: var(--ink); overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.offer:hover { box-shadow: 0 20px 50px rgba(0,40,80,.1); color: var(--ink); transform: translateY(-2px); }
.offer img { width: 100%; height: 200px; object-fit: cover; }
.offer-body { padding: 22px 24px 28px; }
.offer h3 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.offer p { margin: 0; font-size: .9rem; color: var(--soft); line-height: 1.65; }

/* Servizi testuali — senza griglia immagini */
.svc-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc-item { background: var(--white); padding: 28px 32px; scroll-margin-top: 100px; }
.svc-item h2 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 800; color: var(--blue-dark); }
.svc-item p { margin: 0; font-size: .92rem; color: var(--soft); line-height: 1.7; }
.svc-item p + p { margin-top: 8px; }

/* Sezioni testo lungo — stile Circet / corporate */
.prose-section { padding: clamp(52px, 6vw, 80px) var(--pad); border-bottom: 1px solid var(--line); }
.prose-section.alt { background: var(--bg); }
.prose-section .inner { max-width: 820px; }
.prose-section h2 { margin: 0 0 18px; font-size: clamp(1.35rem, 2.2vw, 1.65rem); font-weight: 800; color: var(--ink); line-height: 1.25; }
.prose-section p { margin: 0 0 16px; font-size: 1rem; color: var(--soft); line-height: 1.85; }
.prose-section p:last-child { margin-bottom: 0; }

.svc-block { padding: 48px var(--pad); border-bottom: 1px solid var(--line); }
.svc-block .inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.svc-block:nth-child(even) .inner { direction: rtl; }
.svc-block:nth-child(even) .inner > * { direction: ltr; }
.svc-block img { width: 100%; border-radius: 2px; }
.svc-block h2 { margin: 0 0 12px; font-size: 1.35rem; font-weight: 800; color: var(--blue-dark); }
.svc-block p { margin: 0 0 10px; color: var(--soft); line-height: 1.75; font-size: .97rem; }

/* TLC / division pages — layout moderno */
.svc-nav-wrap {
  position: sticky; top: 54px; z-index: 120;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.svc-nav {
  display: flex; gap: 6px; overflow-x: auto; padding: 14px 0;
  scrollbar-width: none;
}
.svc-nav::-webkit-scrollbar { display: none; }
.svc-nav a {
  flex-shrink: 0; padding: 9px 16px; border-radius: 2px;
  font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--soft); border: 1px solid transparent;
}
.svc-nav a:hover { color: var(--blue); border-color: var(--line); background: var(--bg); }
.svc-nav a.is-active { color: var(--blue); background: var(--blue-light); border-color: #c5ddf0; }

.svc-page-head { margin-bottom: 36px; max-width: 42em; }
.svc-page-head h2 { margin: 0 0 10px; font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 800; }
.svc-page-head p { margin: 0; color: var(--soft); line-height: 1.7; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line);
  scroll-margin-top: 130px; overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.svc-card:hover { box-shadow: 0 16px 48px rgba(0,60,120,.08); border-color: #c5ddf0; }
.svc-card-media { position: relative; height: 220px; background: var(--bg); overflow: hidden; }
.svc-card-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card-media.contain img { object-fit: contain; padding: 24px; }
.svc-card-body { padding: 26px 28px 32px; }
.svc-card h2 { margin: 0 0 10px; font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1.25; }
.svc-card p { margin: 0 0 10px; color: var(--soft); line-height: 1.7; font-size: .94rem; }
.svc-card p:last-child { margin-bottom: 0; }
.svc-list { margin: 14px 0 0; padding: 0; list-style: none; }
.svc-list li {
  position: relative; padding: 6px 0 6px 18px;
  color: var(--soft); font-size: .92rem; line-height: 1.55;
}
.svc-list li::before { content: ""; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; background: var(--blue); border-radius: 1px; }
.svc-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; }
.svc-card-wide .svc-card-media { height: 100%; min-height: 260px; }

.prose-page { max-width: 720px; }
.prose-page p { margin: 0 0 1em; color: var(--soft); line-height: 1.8; }
.form-note { background: var(--blue-light); border-left: 4px solid var(--blue); padding: 20px 24px; margin-top: 24px; font-size: .95rem; }

.partner-note { margin: 24px 0 0; font-size: .9rem; color: var(--soft); }
.partner-note a { color: var(--blue); font-weight: 700; }

/* TLC / Edilizia — piattaforma interattiva */
.ix-platform { overflow: visible; }
.ix-platform-intro {
  max-width: 42em; margin: 0 0 32px; color: rgba(255,255,255,.75); line-height: 1.7;
}
.ix-layout {
  display: grid; grid-template-columns: minmax(360px, 580px) 1fr;
  gap: clamp(24px, 3vw, 48px); align-items: center;
}
.ix-visual-wrap {
  width: 100%; display: flex; justify-content: center;
  overflow: visible; padding: 4px 0;
}
.ix-visual {
  position: relative;
  width: min(100%, 580px);
  height: 580px;
  margin: 0 auto;
}
.ix-visual[data-count="5"] { --step: 72deg; --orbit: -242px; }
.ix-visual[data-count="6"] { --step: 60deg; --orbit: -248px; }
.ix-orbit-stage {
  position: absolute; inset: 0; pointer-events: none;
}
.ix-node-list { position: absolute; inset: 0; }

/* Onde radio TLC */
.ix-visual--rf { color: #7ec8ff; }
.rf-waves { position: absolute; inset: 0; pointer-events: none; }
.rf-ring {
  position: absolute; left: 50%; top: 50%; border-radius: 50%;
  border: 1px solid rgba(126, 200, 255, .28);
  transform: translate(-50%, -50%);
}
.rf-ring--1 { width: 54%; height: 54%; }
.rf-ring--2 { width: 74%; height: 74%; }
.rf-ring--3 { width: 94%; height: 94%; }
.rf-wave {
  position: absolute; left: 50%; top: 50%; border-radius: 50%;
  width: 110px; height: 110px; margin: -55px 0 0 -55px;
  border: 2px solid rgba(126, 200, 255, .5);
  animation: rfPulse 4.5s ease-out infinite;
  animation-delay: calc(var(--d) * 0.85s);
}
@keyframes rfPulse {
  0% { transform: scale(0.35); opacity: .85; }
  100% { transform: scale(5.4); opacity: 0; }
}
.rf-core, .brick-core {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  transform: translate(-50%, -50%);
  width: 128px; height: 128px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 10px rgba(0, 102, 179, .22), 0 16px 48px rgba(0, 0, 0, .4);
}
.rf-core { background: #0a2840; }
.rf-tower-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
}
.brick-icon { width: 56px; height: 56px; }

/* Mattoni Edilizia */
.ix-visual--brick { color: #e8a882; }
.brick-bg {
  position: absolute; inset: 6%; border-radius: 50%; overflow: hidden; opacity: .3;
  background:
    repeating-linear-gradient(90deg, #8b4a32 0 24px, #6d3826 24px 26px),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(0,0,0,.15) 14px 16px);
  animation: brickDrift 12s linear infinite;
}
@keyframes brickDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 52px 0, 0 32px; }
}
.brick-core {
  background: radial-gradient(circle at 35% 30%, #c4714a, #7a3f28); color: #fff8f0;
}

/* Nodi — stessa forma per tutti */
.ix-node-list .ix-node {
  position: absolute; left: 50%; top: 50%; z-index: 3;
  width: 158px; min-height: 80px; height: auto; padding: 9px 8px; margin: 0;
  box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; cursor: pointer; font-family: inherit;
  border-radius: 8px;
  transition: box-shadow .2s, border-color .2s, background .2s, filter .2s;
  --angle: calc(var(--i) * var(--step, 72deg) - 90deg);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(var(--orbit, -242px)) rotate(calc(-1 * var(--angle)));
}
.ix-node-line {
  display: block; width: 100%;
  font-size: .76rem; font-weight: 800; line-height: 1.15;
  white-space: normal; overflow: visible;
}
.ix-node-line2 {
  display: block;
  font-size: .66rem; font-weight: 700; line-height: 1.15;
  margin-top: 2px;
}
.ix-node span.ix-node-line { /* legacy single-line span */
  display: block; width: 100%;
  font-size: .76rem; font-weight: 800; line-height: 1.15;
  white-space: normal; overflow: visible;
}
.ix-node small {
  display: block; width: 100%; margin-top: 4px;
  font-size: .58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; opacity: .9; line-height: 1.2;
  white-space: normal; overflow: visible;
}
.ix-node--rf {
  background: rgba(8, 28, 48, .96); border: 2px solid rgba(126, 200, 255, .5); color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}
.ix-node--rf:hover, .ix-node--rf.is-active {
  background: var(--blue); border-color: #9ed4ff;
  box-shadow: 0 10px 28px rgba(0, 102, 179, .5);
}
.ix-node--brick {
  background: linear-gradient(165deg, #c4714a 0%, #9a4f32 100%);
  border: 2px solid #7a3f28; border-radius: 4px; color: #fff8f0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255,255,255,.15);
}
.ix-node--brick:hover, .ix-node--brick.is-active {
  background: linear-gradient(165deg, #d4845a 0%, #b05a38 100%);
  border-color: #e8a882;
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255,255,255,.2);
}

.ix-stage {
  background: rgba(255, 255, 255, .97); border-radius: 4px;
  padding: clamp(24px, 3vw, 40px); min-height: 360px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}
.ix-panel { display: none; animation: platformFade .3s ease; }
.ix-panel.is-active { display: block; }
@keyframes platformFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ix-panel h3 {
  margin: 0 0 12px; font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800; color: var(--ink);
}
.ix-panel-intro { margin: 0 0 24px; color: var(--soft); line-height: 1.75; font-size: .98rem; }
.ix-panel-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
  margin-bottom: 24px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.ix-panel h4 {
  margin: 0 0 10px; font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; color: var(--blue-dark);
}
.ix-panel ul { margin: 0; padding: 0; list-style: none; }
.ix-panel li {
  position: relative; padding: 5px 0 5px 16px; font-size: .9rem; color: var(--soft); line-height: 1.5;
}
.ix-panel li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 5px; height: 5px;
  background: var(--blue); border-radius: 1px;
}

.tlc-svc-strip { border-top: 1px solid var(--line); }
.tlc-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.tlc-svc-link {
  display: flex; flex-direction: column; padding: 22px 20px 24px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  border-top: 3px solid var(--blue); transition: box-shadow .2s, border-color .2s;
}
.tlc-svc-link:hover { box-shadow: 0 12px 36px rgba(0,50,100,.08); border-color: #c5ddf0; color: var(--ink); }
.tlc-svc-link h3 { margin: 0 0 8px; font-size: .98rem; font-weight: 800; color: var(--blue-dark); line-height: 1.25; }
.tlc-svc-link p { margin: 0; flex: 1; font-size: .86rem; color: var(--soft); line-height: 1.55; }
.tlc-svc-link span { margin-top: 14px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--blue); }

.tlc-clients .intro { max-width: 40em; margin-bottom: 28px; }
.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.client-card {
  display: flex; flex-direction: column; padding: 26px 24px 28px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.client-card:hover {
  box-shadow: 0 14px 40px rgba(0,50,100,.1); transform: translateY(-2px);
  border-color: #c5ddf0; color: var(--ink);
}
.client-card h3 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 800; color: var(--blue-dark); }
.client-card p { margin: 0; flex: 1; font-size: .9rem; color: var(--soft); line-height: 1.65; }
.client-card-link {
  margin-top: 16px; font-size: .76rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; color: var(--blue);
}

.tlc-partners .intro { max-width: 40em; margin-bottom: 24px; }
.partner-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-chip {
  display: inline-block; padding: 14px 22px;
  background: var(--bg); border: 1px solid var(--line);
  font-weight: 700; font-size: .88rem; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.partner-chip:hover { border-color: var(--blue); background: var(--blue-light); }

@media (max-width: 960px) {
  .ix-layout { grid-template-columns: 1fr; }
  .ix-visual-wrap { padding: 8px 0 12px; }
  .ix-visual {
    width: min(calc(100vw - 20px), 380px);
    height: min(calc(100vw - 20px), 380px);
  }
  .ix-visual[data-count="5"] { --orbit: -136px; }
  .ix-visual[data-count="6"] { --orbit: -140px; }
  .ix-orbit-stage { position: absolute; inset: 0; }
  .ix-node-list { position: absolute; inset: 0; }
  .ix-node-list .ix-node {
    width: 124px; min-height: 74px; height: auto; padding: 8px 6px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(var(--orbit)) rotate(calc(-1 * var(--angle)));
  }
  .ix-node-line, .ix-node span.ix-node-line { font-size: .68rem; }
  .ix-node-line2 { font-size: .6rem; }
  .ix-node small { font-size: .52rem; }
  .rf-core, .brick-core { width: 92px; height: 92px; }
  @keyframes rfPulse {
    0% { transform: scale(0.35); opacity: .8; }
    100% { transform: scale(4.2); opacity: 0; }
  }
  .ix-panel-cols { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .tlc-svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .ix-visual {
    width: min(calc(100vw - 16px), 340px);
    height: min(calc(100vw - 16px), 340px);
  }
  .ix-visual[data-count="5"] { --orbit: -122px; }
  .ix-visual[data-count="6"] { --orbit: -126px; }
  .ix-node-list .ix-node { width: 112px; min-height: 70px; height: auto; }
  .ix-node-line, .ix-node span.ix-node-line { font-size: .64rem; }
  .ix-node-line2 { font-size: .58rem; }
  .rf-core, .brick-core { width: 80px; height: 80px; }
  .client-grid, .tlc-svc-grid { grid-template-columns: 1fr; }
}

.site-footer { background: #0a1628; color: rgba(255,255,255,.72); padding: 48px var(--pad) 0; font-size: .86rem; line-height: 1.65; }
.footer-main {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px 28px;
  padding-bottom: 36px;
}
.footer-company {
  margin: 0 0 16px; font-size: 1.05rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: #fff;
}
.footer-brand p { margin: 0 0 10px; }
.footer-meta { margin-top: 14px; font-size: .82rem; opacity: .75; }
.footer-col strong {
  display: block; color: #fff; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
.footer-col a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 600; }
.footer-col a:hover { color: #7ec8ff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: var(--max); margin: 0 auto;
  padding: 16px 0 20px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px;
  font-size: .76rem; color: rgba(255,255,255,.45);
}
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 28px; padding-bottom: 32px; }
.footer-grid strong { display: block; color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.footer-grid a { color: rgba(255,255,255,.85); display: block; margin-bottom: 5px; font-size: .86rem; }
.footer-grid a:hover { color: #7ec8ff; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; text-align: center; font-size: .76rem; opacity: .5; max-width: var(--max); margin: 0 auto; }

/* HOME — hero Elettro TLC style */
.ms-hero {
  position: relative; min-height: 78vh; display: flex; flex-direction: column;
  align-items: stretch; overflow: hidden; background: #0a1628;
}
.ms-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  will-change: transform;
}
.ms-hero-bg-panel {
  position: relative; display: block;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat; min-height: 100%;
  border: none; text-decoration: none;
}
.ms-hero-bg-label {
  position: absolute; bottom: clamp(16px, 3vw, 28px); left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: #fff; background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 2px;
  white-space: nowrap;
}
.ms-hero-bg-panel:hover .ms-hero-bg-label { background: var(--blue); border-color: var(--blue-mid); }
.ms-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(6, 18, 36, 0.72) 0%,
    rgba(6, 18, 36, 0.42) 38%,
    rgba(6, 18, 36, 0.22) 68%,
    rgba(6, 18, 36, 0.28) 100%
  );
}
#ms-hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2; pointer-events: none; opacity: 0.32;
}
.ms-hero { cursor: default; }
.ms-hero-body {
  position: relative; z-index: 3; flex: 1;
  display: flex; align-items: center;
  padding: clamp(48px, 8vw, 100px) var(--pad) clamp(24px, 4vw, 40px);
}
.ms-hero-content {
  width: 100%; max-width: var(--max); margin: 0 auto;
}
.ms-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 102, 179, 0.25); border: 1px solid rgba(126, 200, 255, 0.45);
  color: #7ec8ff; padding: 7px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 22px;
}
.ms-hero-content h1 {
  margin: 0 0 18px; color: #fff; font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 800; line-height: 1.08; max-width: 18em;
}
.ms-hero-accent { color: #7ec8ff; }
.ms-hero-lead {
  margin: 0 0 32px; font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.85); max-width: 36em; line-height: 1.65;
}
.ms-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-outline-light {
  display: inline-block; padding: 14px 22px;
  font-weight: 700; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .04em; border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.65); color: #fff; background: transparent;
}
.btn-outline-light:hover { background: #fff; color: var(--blue-dark); }
.hero-animate {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-animate.hero-visible { opacity: 1; transform: translateY(0); }
.hero-stats-wrap {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-stats-wrap.hero-visible { opacity: 1; transform: translateY(0); }
.ms-hero-stats {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.ms-stat-item {
  padding: 26px 20px; background: rgba(8, 22, 40, 0.92); text-align: center;
}
.ms-stat-num {
  display: block; font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.02em;
  word-break: break-word;
}
.ms-stat-label {
  display: block; margin-top: 8px; font-size: .76rem;
  color: rgba(255, 255, 255, 0.68); text-transform: uppercase; letter-spacing: 0.06em;
}
.ticker-section {
  background: #0a1628; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.ticker-wrapper { width: 100%; overflow: hidden; padding: 14px 0; }
.ticker-track {
  display: flex; flex-direction: row; flex-wrap: nowrap; width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  flex-shrink: 0; white-space: nowrap; padding: 0 48px;
  font-size: .92rem; font-weight: 600; color: rgba(255, 255, 255, 0.92);
}
.ticker-track span em { font-style: normal; color: #7ec8ff; margin-right: 10px; font-size: 10px; }
.ticker-static { display: none; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HOME — divisioni */
.home-pillars {
  background: #e8edf2;
  padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
}
.home-pillars-head { max-width: 42em; margin-bottom: clamp(28px, 4vw, 44px); }
.home-pillars-head .title {
  margin: 0; font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
}
.home-pillars-head .intro {
  margin: 14px 0 0; color: var(--soft);
  font-size: 1.05rem; line-height: 1.65; max-width: 36em;
}
.home-pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.5vw, 18px);
}
.home-pillar {
  position: relative; display: flex; flex-direction: column;
  border-radius: 16px; overflow: hidden;
  background: #fff;
  color: var(--ink); text-decoration: none;
  border: 2px solid var(--blue);
  box-shadow: 0 2px 14px rgba(15, 35, 60, 0.06);
  animation: homeFadeUp .65s ease both;
  animation-delay: calc(var(--d) * 0.1s);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.home-pillar:hover {
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 102, 179, 0.15);
  border-color: var(--blue);
}
.home-pillar-photo {
  position: relative; flex: 0 0 auto;
  height: clamp(240px, 30vw, 340px);
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}
.home-pillar-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}
.home-pillar:hover .home-pillar-photo img { transform: scale(1.05); }
.home-pillar-sector {
  display: block; flex: 0 0 auto;
  padding: 11px 18px;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  text-align: center; color: #fff;
  background: var(--blue);
}
.home-pillar-foot {
  flex: 1; display: flex; flex-direction: column;
  padding: clamp(20px, 2.5vw, 26px) clamp(22px, 2.8vw, 28px) clamp(22px, 2.8vw, 28px);
  background: #fff;
}
.home-pillar-logo {
  height: clamp(44px, 5vw, 58px); width: auto; max-width: 100%;
  margin-bottom: 14px; object-fit: contain; object-position: left;
  display: block;
}
.home-pillar ul { margin: 0 0 14px; padding: 0; list-style: none; flex: 1; }
.home-pillar li {
  position: relative; padding: 3px 0 3px 14px;
  font-size: .88rem; color: var(--soft); line-height: 1.45;
}
.home-pillar li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 4px; height: 4px; background: var(--blue); border-radius: 50%;
}
.home-pillar-link {
  font-size: .86rem; font-weight: 700; color: var(--blue);
  transition: color .2s;
}
.home-pillar:hover .home-pillar-link { color: var(--blue-dark); }
@keyframes homeFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HOME — servizi (tile fotografici) */
.home-services {
  background: var(--white);
  padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
}
.home-services-head {
  max-width: 42em; margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}
.home-services-head .title {
  margin: 0; font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
}
.home-services-head .lead {
  margin: 14px auto 0; color: var(--soft);
  font-size: 1.05rem; line-height: 1.65; max-width: 36em;
}
.home-svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}
.home-svc-tile {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4 / 3; border-radius: 8px;
  text-decoration: none; color: #fff;
}
.home-svc-tile img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .65s cubic-bezier(.25, .46, .45, .94);
}
.home-svc-tile:hover img { transform: scale(1.06); }
.home-svc-tile-cap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: clamp(16px, 2vw, 22px);
  background: linear-gradient(180deg, transparent 35%, rgba(6, 16, 30, 0.82) 100%);
  transition: background .3s;
}
.home-svc-tile:hover .home-svc-tile-cap {
  background: linear-gradient(180deg, transparent 25%, rgba(6, 16, 30, 0.9) 100%);
}
.home-svc-tile h3 {
  margin: 0; font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700; line-height: 1.25;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* HOME — banda contatti */
.home-contact-band {
  background: var(--white); border-top: 1px solid var(--line);
  padding: clamp(40px, 5vw, 56px) var(--pad);
  text-align: center;
}
.home-contact-band .inner { max-width: 640px; margin: 0 auto; }
.home-contact-band h2 {
  margin: 0 0 10px; font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800; color: var(--ink);
}
.home-contact-band p { margin: 0 0 24px; color: var(--soft); line-height: 1.65; }
.home-contact-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.btn-outline {
  display: inline-block; padding: 14px 22px;
  font-weight: 700; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .04em; border-radius: 3px;
  border: 2px solid var(--blue); color: var(--blue); background: transparent;
}
.btn-outline:hover { background: var(--blue-light); color: var(--blue-dark); }

@media (max-width: 1100px) {
  .hub-doors { grid-template-columns: 1fr; }
  .door { min-height: 400px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .cards, .markets { grid-template-columns: repeat(2, 1fr); }
  .mega-inner { grid-template-columns: 1fr 1fr; }
  .split, .svc-block .inner { grid-template-columns: 1fr; }
  .svc-block:nth-child(even) .inner { direction: ltr; }
  .offer-row, .svc-stack { grid-template-columns: 1fr; }
  .svc-card-wide { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .ms-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .home-pillars-grid { grid-template-columns: 1fr; }
  .home-svc-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .site-header {
    position: sticky; top: 0; z-index: 900;
    background: var(--white); border-bottom: 1px solid var(--line);
  }
  .header-bar {
    flex-wrap: nowrap; gap: 12px;
    padding: 10px var(--pad); min-height: 64px;
  }
  .brand { flex: 1; min-width: 0; }
  .brand-logo { height: 48px; max-width: min(220px, 58vw); }
  .site-header--division .brand-logo { height: 44px; }
  .header-actions { gap: 0; flex-shrink: 0; }
  .header-tel, .header-actions .btn-cta { display: none; }
  .menu-btn {
    display: flex;
    width: 48px; height: 48px;
    background: var(--white); border: 2px solid var(--nav); border-radius: 6px;
  }
  .menu-icon, .menu-icon::before, .menu-icon::after { background: var(--nav); }
  .nav-open .menu-btn { background: var(--nav); border-color: var(--nav); }
  .nav-open .menu-icon::before, .nav-open .menu-icon::after { background: #fff; }

  .main-nav {
    position: static; height: 0; overflow: visible;
    background: transparent; z-index: auto;
  }
  .nav-backdrop { display: block; opacity: 0; pointer-events: none; transition: opacity .25s; }
  .nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
  .nav-drawer {
    position: fixed; top: 0; right: 0; z-index: 850;
    width: min(100%, 320px); height: 100vh; height: 100dvh;
    background: var(--nav); transform: translateX(100%);
    transition: transform .28s ease; overflow-y: auto;
    box-shadow: -12px 0 48px rgba(0,0,0,.25);
    -webkit-overflow-scrolling: touch;
  }
  .nav-open .nav-drawer { transform: translateX(0); }
  .nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.1);
    color: #fff; font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em;
  }
  .nav-drawer-cta {
    display: flex; flex-direction: column; gap: 12px;
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-drawer-tel {
    color: #fff; font-weight: 800; font-size: 1.15rem; text-decoration: none;
  }
  .nav-drawer-tel:hover { color: #7ec8ff; }
  .nav-drawer-btn {
    display: block; text-align: center; padding: 14px 16px;
    font-size: .8rem; border-radius: 4px;
  }
  .nav-close {
    width: 44px; height: 44px; border: none; border-radius: 6px;
    background: rgba(255,255,255,.1); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer;
  }
  .nav-links {
    display: flex; flex-direction: column; width: 100%; margin: 0; padding: 4px 0 32px;
  }
  .nav-links > li { width: 100%; }
  .nav-links > li > a, .nav-links > li > button {
    height: auto; min-height: 50px; padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08); width: 100%;
    justify-content: space-between; font-size: .82rem;
    border-left: none; margin-bottom: 0;
  }
  .has-mega > button::after {
    content: "+"; font-size: 1.25rem; font-weight: 400; opacity: .75; margin-left: 12px; flex-shrink: 0;
  }
  .has-mega.open > button::after { content: "−"; }
  .mega {
    display: none; position: static; padding: 0;
    background: #0f2234; border-top: none; box-shadow: none;
  }
  .has-mega:hover .mega { display: none; }
  .has-mega.open .mega { display: block; }
  .mega-inner, .mega-inner--2 { grid-template-columns: 1fr; gap: 0; }
  .mega-intro { padding: 12px 20px 8px; border-bottom: none; }
  .mega-intro h3 { color: rgba(255,255,255,.9); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin: 0; }
  .mega-intro p { display: none; }
  .mega-intro .btn { display: none; }
  .mega-col h4 { padding: 10px 20px 2px; color: #7ec8ff; font-size: .68rem; margin: 0; }
  .mega-col a {
    color: rgba(255,255,255,.92); padding: 11px 20px 11px 28px;
    border-bottom: 1px solid rgba(255,255,255,.05); font-size: .88rem; font-weight: 600;
  }
  .cards, .markets, .stats, .footer-grid, .footer-main { grid-template-columns: 1fr; }
  .home-svc-grid { grid-template-columns: 1fr; }
  .ms-hero-stats { grid-template-columns: 1fr 1fr; }
  .ms-hero-bg { grid-template-columns: 1fr; }
  .ms-hero-bg-panel { min-height: 33vh; }
  .ticker-wrapper { display: none; }
  .ticker-static { display: flex; flex-direction: column; }
  .ticker-static span {
    display: block; padding: 10px 20px; text-align: center;
    color: rgba(255, 255, 255, 0.92); font-size: 13px; font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .ticker-static span:last-child { border-bottom: none; }
}
@media (min-width: 769px) {
  .nav-drawer-head, .nav-drawer-cta { display: none; }
  .nav-drawer {
    position: static; transform: none; width: 100%; height: auto;
    overflow: visible; box-shadow: none; background: transparent;
  }
  .main-nav { background: var(--nav); }
  .nav-links {
    display: flex; flex-direction: row; flex-wrap: wrap;
    padding: 0 var(--pad); max-width: 100%;
  }
  .has-mega > button::after { display: none; }
}

/* —— Photo showcase mosaics —— */
.photo-showcase-intro {
  max-width: 52ch; margin: 0 0 28px; color: var(--muted); font-size: 1.05rem; line-height: 1.6;
}
.photo-showcase.dark .photo-showcase-intro { color: rgba(255,255,255,.78); }

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 10px;
}
.pm {
  position: relative; margin: 0; overflow: hidden; border-radius: 6px;
  grid-column: span 4; min-height: 180px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.pm--wide { grid-column: span 8; min-height: 260px; }
.pm img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.pm:hover img { transform: scale(1.04); }
.pm figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .02em;
}
.pm--tlc::after,
.pm--edil::after,
.pm--ple::after {
  content: ""; position: absolute; top: 10px; left: 10px;
  width: 4px; height: 28px; border-radius: 2px;
}
.pm--tlc::after { background: #0066b3; }
.pm--edil::after { background: #c45c26; }
.pm--ple::after { background: #e63946; }

@media (max-width: 960px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(120px, auto); }
  .pm, .pm--wide { grid-column: span 1; min-height: 150px; }
  .pm--wide { grid-column: span 2; min-height: 200px; }
}
@media (max-width: 520px) {
  .pm--wide { grid-column: span 2; }
}

/* —— TLC strumentazione —— */
.tlc-instruments .intro { max-width: 58ch; margin: 0 0 28px; color: var(--muted); line-height: 1.7; }
.instr-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 24px;
}
.instr-card {
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,40,80,.07);
}
.instr-card-media {
  position: relative;
  min-height: 240px; padding: 28px 24px 8px;
  display: flex; align-items: flex-end; justify-content: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(0,102,179,.22) 0%, transparent 70%),
    linear-gradient(165deg, #071525 0%, #0f2d4a 45%, #0a1f35 100%);
}
.instr-card-media--viavi {
  background:
    radial-gradient(ellipse 75% 65% at 50% 100%, rgba(230,57,70,.18) 0%, transparent 70%),
    linear-gradient(165deg, #120a14 0%, #2a1528 45%, #0f1a28 100%);
}
.instr-card-media img {
  width: auto; max-width: 92%; max-height: 210px; object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.45));
}
.instr-card-head {
  padding: 20px 22px 14px; border-bottom: 1px solid var(--line); background: #fff;
}
.instr-brand {
  display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.instr-card h3 { margin: 0 0 4px; font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1.3; }
.instr-card h3 small { font-size: .82rem; font-weight: 700; color: var(--soft); }
.instr-sub { margin: 0; font-size: .88rem; color: var(--soft); font-weight: 600; }
.instr-card-body { padding: 18px 22px 22px; flex: 1; }
.instr-card-body > p { margin: 0 0 12px; color: var(--soft); line-height: 1.65; font-size: .94rem; }
.instr-card-body ul { margin: 0; padding-left: 1.15rem; color: var(--ink); font-size: .9rem; line-height: 1.55; }
.instr-card-body li { margin-bottom: 8px; }
.instr-card-body li:last-child { margin-bottom: 0; }
.instr-note {
  margin: 0; padding: 16px 18px; border-radius: 6px; background: #eef5fb;
  color: var(--soft); font-size: .9rem; line-height: 1.65; border-left: 4px solid var(--blue);
}
@media (max-width: 768px) {
  .instr-grid { grid-template-columns: 1fr; }
}

/* —— TLC settori istituzionali / ponti radio analogici —— */
.tlc-institutional .intro { max-width: 62ch; margin: 0 0 28px; color: rgba(255,255,255,.78); line-height: 1.7; }
.inst-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 22px;
}
.inst-card {
  padding: 20px 22px; border-radius: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.inst-card h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 800; color: #fff; }
.inst-card--highlight { border-color: rgba(126,200,255,.35); background: rgba(0,102,179,.15); }
.inst-card p { margin: 0; font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.72); }
.inst-note {
  margin: 0; font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px;
}
@media (max-width: 640px) {
  .inst-grid { grid-template-columns: 1fr; }
}

/* ========== HOME ENTERPRISE (v83) ========== */
:root {
  --anthracite: #141a22;
  --anthracite-2: #1c2430;
}

body.page-home { background: #fff; }

/* Header home: solid over light corporate hero */
.site-header--home {
  position: absolute; top: 0; left: 0; right: 0; z-index: 800;
  background: rgba(255,255,255,.98);
  border: none;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  transition: background .22s ease, box-shadow .22s ease;
}
.site-header--home.is-scrolled {
  position: fixed;
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}
.header-bar--home {
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--pad);
  transition: padding .22s ease;
}
.site-header--home.is-scrolled .header-bar--home { padding: 10px var(--pad); }
.site-header--home .brand-logo {
  height: clamp(44px, 5vw, 60px);
  transition: height .22s ease;
  filter: none;
}
.site-header--home.is-scrolled .brand-logo { filter: none; height: clamp(40px, 4.5vw, 56px); }
.home-nav { flex: 1; display: flex; justify-content: center; align-self: stretch; }
.home-nav-links {
  display: flex; flex-wrap: nowrap; align-items: stretch; gap: 0;
  list-style: none; margin: 0; padding: 0; height: 100%;
}
.home-nav-links > li {
  position: relative; display: flex; align-items: stretch;
}
.home-nav-links > li > a,
.home-nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink);
  background: none; border: 0; border-bottom: 2px solid transparent;
  cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.home-nav-links > li > a:hover,
.home-nav-trigger:hover,
.home-nav-links > li > a:focus-visible,
.home-nav-trigger:focus-visible {
  color: var(--blue); border-bottom-color: var(--blue); outline: none;
}
.home-mega.open > .home-nav-trigger,
.home-drop.open > .home-nav-trigger {
  color: var(--blue); border-bottom-color: var(--blue);
}
.site-header--home.is-scrolled .home-nav-links > li > a,
.site-header--home.is-scrolled .home-nav-trigger { color: var(--ink); }
.site-header--home.is-scrolled .home-nav-links > li > a:hover,
.site-header--home.is-scrolled .home-nav-trigger:hover,
.site-header--home.is-scrolled .home-mega.open > .home-nav-trigger,
.site-header--home.is-scrolled .home-drop.open > .home-nav-trigger {
  color: var(--blue); border-bottom-color: var(--blue);
}
.nav-chevron {
  display: inline-block; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s ease; opacity: .75;
}
.home-mega.open .nav-chevron,
.home-drop.open .nav-chevron,
.nav-acc.open .nav-chevron {
  transform: rotate(225deg) translateY(-1px);
}

/* Mega panel home */
.home-mega-panel,
.home-drop-panel {
  position: absolute; top: 100%; left: 50%;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 900;
}
.home-mega.open > .home-mega-panel,
.home-drop.open > .home-drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.home-mega > .home-mega-panel {
  left: 0; right: auto; width: min(920px, calc(100vw - 48px));
  transform: translate(0, 6px);
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(10, 20, 35, .1);
}
.home-mega.open > .home-mega-panel { transform: translate(0, 0); }
.home-mega-inner {
  display: grid; grid-template-columns: 1.25fr 1fr 1fr;
  gap: 0; max-width: var(--max); margin: 0 auto;
  padding: 28px 0;
}
.home-mega-inner--edil { grid-template-columns: 1.3fr 1fr 1fr; }
.home-mega-intro,
.home-mega-col {
  padding: 4px 28px;
  border-right: 1px solid var(--line);
}
.home-mega-col:last-child { border-right: none; }
.home-mega-intro h3 {
  margin: 0 0 10px; font-size: .95rem; font-weight: 800; color: var(--anthracite);
}
.home-mega-intro p {
  margin: 0 0 16px; font-size: .88rem; line-height: 1.55; color: var(--soft); max-width: 28em;
}
.home-mega-cta {
  font-size: .78rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--blue);
}
.home-mega-cta:hover { color: var(--blue-dark); }
.home-mega-col h4 {
  margin: 0 0 12px; font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.home-mega-col a {
  display: block; padding: 8px 0; font-size: .9rem; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid transparent;
}
.home-mega-col a:hover { color: var(--blue); }

/* Align mega to site container: full-bleed under header */
.home-nav-links > .home-mega {
  position: static;
}
.home-mega > .home-mega-panel {
  left: 0; right: 0; width: 100vw;
  margin-left: calc(50% - 50vw);
  transform: translateY(6px);
  padding: 0 var(--pad);
}
.home-mega.open > .home-mega-panel { transform: translateY(0); }

.home-drop-panel {
  left: 0; transform: translate(0, 6px);
  min-width: 200px; background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(10, 20, 35, .08);
  padding: 8px 0;
}
.home-drop.open > .home-drop-panel { transform: translate(0, 0); }
.home-drop-panel a {
  display: block; padding: 10px 16px; font-size: .88rem; font-weight: 600; color: var(--ink);
}
.home-drop-panel a:hover { color: var(--blue); background: #f5f8fb; }

.site-header--home.is-menu-open {
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.site-header--home.is-menu-open .brand-logo { filter: none; }
.site-header--home.is-menu-open .home-nav-links > li > a,
.site-header--home.is-menu-open .home-nav-trigger { color: var(--ink); }
.site-header--home.is-menu-open .home-mega.open > .home-nav-trigger,
.site-header--home.is-menu-open .home-drop.open > .home-nav-trigger {
  color: var(--blue); border-bottom-color: var(--blue);
}
.site-header--home.is-menu-open .btn-cta {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.site-header--home.is-menu-open .menu-btn { border-color: var(--line); }
.site-header--home.is-menu-open .menu-icon,
.site-header--home.is-menu-open .menu-icon::before,
.site-header--home.is-menu-open .menu-icon::after { background: var(--ink); }

.site-header--home .btn-cta {
  background: var(--blue); border: 1px solid var(--blue); color: #fff;
}
.site-header--home .btn-cta:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.site-header--home.is-scrolled .btn-cta {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.site-header--home.is-scrolled .btn-cta:hover { background: var(--blue-dark); color: #fff; }
.site-header--home .menu-btn {
  display: none; border-color: var(--line);
}
.site-header--home .menu-icon,
.site-header--home .menu-icon::before,
.site-header--home .menu-icon::after { background: var(--ink); }
.site-header--home.is-scrolled .menu-btn { border-color: var(--line); }
.site-header--home.is-scrolled .menu-icon,
.site-header--home.is-scrolled .menu-icon::before,
.site-header--home.is-scrolled .menu-icon::after { background: var(--ink); }
.main-nav--drawer-only { background: transparent; position: static; }
.main-nav--drawer-only .nav-links { display: none; }

/* Mobile accordion drawer */
.nav-links--home-drawer .nav-acc > button {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92); font: inherit; font-weight: 700; font-size: .88rem;
  text-transform: uppercase; letter-spacing: .04em; cursor: pointer; text-align: left;
}
.nav-acc-panel { padding: 4px 0 10px; background: rgba(0,0,0,.15); }
.nav-acc-panel a {
  display: block; padding: 10px 20px 10px 28px !important;
  font-size: .86rem !important; font-weight: 600 !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
}

@media (max-width: 1100px) {
  .home-nav { display: none; }
  .site-header--home .menu-btn { display: inline-flex; }
  .main-nav--drawer-only .nav-links { display: block; }
}

/* HOME hero — corporate B2B split (light) */
.ms-hero--static {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: #f3f5f7;
  min-height: 0;
}
.ms-hero--static .ms-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: 100%;
  min-height: 0;
  height: clamp(560px, 62vh, 650px);
  padding-top: clamp(88px, 11vh, 110px);
  padding-bottom: clamp(28px, 3.5vh, 40px);
  box-sizing: border-box;
}
.ms-hero--static .ms-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  max-width: 36em;
  background: none;
}
.ms-hero--static .ms-eyebrow {
  margin-bottom: 14px;
}
.ms-hero--static h1 {
  margin: 0 0 18px;
  color: var(--anthracite);
  font-size: clamp(2.25rem, 3.6vw, 3.75rem); /* ~36–60px */
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 14ch;
  text-wrap: balance;
}
@media (min-width: 1280px) {
  .ms-hero--static h1 { font-size: clamp(3rem, 3.4vw, 4rem); } /* 48–64 */
}
@media (min-width: 1440px) {
  .ms-hero--static h1 { font-size: 3.75rem; } /* 60px within 56–64 */
}
.ms-hero--static .ms-hero-sub {
  margin: 0 0 14px;
  color: var(--soft);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 38em;
}
.ms-hero--static .ms-hero-line {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: .01em;
}
.ms-hero--static .ms-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.ms-hero--static .btn-outline {
  display: inline-block;
  padding: 13px 22px;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 2px;
  border: 1px solid rgba(20,26,34,.28);
  color: var(--anthracite);
  background: transparent;
}
.ms-hero--static .btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}
.ms-hero--static .ms-hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 100%;
  max-height: 100%;
  background: #dce3ea;
  border: 1px solid rgba(20,26,34,.08);
  overflow: hidden;
  border-radius: 0;
}
.ms-hero--static .ms-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.ms-hero--static .ms-hero-visual::before,
.ms-hero--static .ms-hero-visual::after {
  display: none !important;
  content: none !important;
}
.ms-hero-entries {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid var(--line);
  background: #fff;
}
.ms-hero--static > .ms-hero-entries {
  max-width: none;
  padding: 0 var(--pad);
  box-sizing: border-box;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ms-hero-entries a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  margin: 0 clamp(12px, 1.5vw, 24px);
  color: var(--anthracite);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  border-right: 1px solid var(--line);
  transition: color .2s ease;
}
.ms-hero-entries a:last-child { border-right: none; }
.ms-hero-entries a span {
  color: var(--blue);
  font-weight: 800;
  transition: transform .2s ease;
}
.ms-hero-entries a:hover {
  color: var(--blue);
  background: transparent;
}
.ms-hero-entries a:hover span { transform: translateX(3px); }

.ms-facts {
  background: #fff;
  border-top: none;
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3.2vw, 36px) var(--pad);
}

.hero-animate {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.hero-animate.hero-visible { opacity: 1; transform: none; }
.ms-facts-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.page-home .ms-facts-row--3 {
  grid-template-columns: repeat(3, 1fr);
}
.ms-fact {
  padding: 8px clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--line);
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.ms-fact.is-in { opacity: 1; transform: none; }
.ms-fact:last-child { border-right: none; }
.ms-fact-num {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--anthracite); line-height: 1.1;
}
.ms-fact-label {
  margin-top: 10px; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.4;
}

/* Intro */
.ms-intro { padding: clamp(48px, 6vw, 80px) var(--pad); background: #fff; }
.ms-intro-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px);
  align-items: start;
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.ms-intro-grid.is-in { opacity: 1; transform: none; }
.ms-eyebrow {
  display: block; margin-bottom: 14px;
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
}
.ms-intro-head h2 {
  margin: 0; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: var(--anthracite);
}
.ms-intro-text {
  margin: 0; font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75; color: var(--soft); max-width: 36em;
}

/* Divisions editorial — compact corporate cards */
.ms-divisions { background: #fff; }
.ms-div {
  padding: clamp(48px, 6vw, 88px) 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}
.ms-div.is-in { opacity: 1; transform: none; }
.ms-div--alt { background: #f4f6f8; }
.ms-div-row {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  max-height: none;
}
.ms-div--photo-right .ms-div-row {
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
}
.ms-div-media {
  overflow: hidden; background: #d8dee6;
  aspect-ratio: 4 / 3;
  max-height: 420px;
}
.ms-div-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.ms-div:hover .ms-div-media img { transform: scale(1.03); }
.ms-div-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0; max-width: 36em;
  background: transparent;
}
.ms-div-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.ms-div-copy h2 {
  margin: 0 0 12px; font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--anthracite);
}
.ms-div-copy > p {
  margin: 0 0 16px; color: var(--soft); font-size: .98rem; line-height: 1.65; max-width: 34em;
}
.ms-div-highlight {
  margin: 0 0 10px !important;
  color: var(--anthracite) !important;
  font-weight: 700; font-size: 1.02rem !important;
}
.ms-div-caps {
  margin: 0 0 22px !important;
  color: var(--ink) !important;
  font-size: .9rem !important; font-weight: 600; line-height: 1.5 !important;
  max-width: 32em;
}
.ms-div-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--blue);
  width: fit-content;
}
.ms-div-cta span {
  display: inline-block; transition: transform .2s ease;
}
.ms-div-cta:hover { color: var(--blue-dark); }
.ms-div-cta:hover span { transform: translateX(4px); }


/* Divisioni — tre business unit panels */
.ms-bu {
  background: #0a1220;
  padding: 0;
}
.ms-bu-track {
  display: flex;
  min-height: clamp(520px, 78vh, 720px);
  width: 100%;
}
.ms-bu-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  transition: flex .42s cubic-bezier(.22,.61,.36,1);
}
.ms-bu-panel + .ms-bu-panel {
  border-left: 1px solid rgba(255,255,255,.12);
}
.ms-bu-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .9s ease;
}
.ms-bu-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6,12,22,.18) 0%,
    rgba(6,12,22,.28) 35%,
    rgba(6,12,22,.78) 72%,
    rgba(6,12,22,.94) 100%
  );
  transition: background .45s ease;
}
.ms-bu-body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: 0;
  width: 100%;
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 2.5vw, 36px) clamp(32px, 4vw, 48px);
}
.ms-bu-label {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(2.35rem, 3.1vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  text-transform: none;
  line-height: 1.05;
  color: #fff;
  max-width: 11em;
  text-wrap: balance;
}
.ms-bu-title {
  display: block;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  color: rgba(158,212,255,.92);
  max-width: 28em;
}
.ms-bu-desc,
.ms-bu-caps,
.ms-bu-cta {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height .42s ease, opacity .42s ease, transform .42s ease, margin .42s ease;
}
.ms-bu-desc {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .9rem; line-height: 1.55;
  font-weight: 400;
  max-width: 30em;
}
.ms-bu-caps {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.4;
}
.ms-bu-cta {
  margin: 0;
  font-size: .74rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: #9ed4ff;
  width: fit-content;
}
.ms-bu-cta span { display: inline-block; transition: transform .2s ease; }

@media (hover: hover) and (min-width: 901px) {
  .ms-bu-track:hover .ms-bu-panel { flex: 0.88 1 0; }
  .ms-bu-track:hover .ms-bu-panel:hover {
    flex: 1.28 1 0;
  }
  .ms-bu-panel:hover .ms-bu-img,
  .ms-bu-panel:focus-visible .ms-bu-img {
    transform: scale(1.06);
  }
  .ms-bu-panel:hover .ms-bu-shade,
  .ms-bu-panel:focus-visible .ms-bu-shade {
    background: linear-gradient(
      180deg,
      rgba(6,12,22,.28) 0%,
      rgba(6,12,22,.42) 40%,
      rgba(6,12,22,.88) 78%,
      rgba(6,12,22,.96) 100%
    );
  }
  .ms-bu-panel:hover .ms-bu-desc,
  .ms-bu-panel:focus-visible .ms-bu-desc {
    max-height: 8em; opacity: 1; transform: none; margin-top: 14px;
  }
  .ms-bu-panel:hover .ms-bu-caps,
  .ms-bu-panel:focus-visible .ms-bu-caps {
    max-height: 4em; opacity: 1; transform: none; margin-top: 14px;
  }
  .ms-bu-panel:hover .ms-bu-cta,
  .ms-bu-panel:focus-visible .ms-bu-cta {
    max-height: 2em; opacity: 1; transform: none; margin-top: 18px;
  }
  .ms-bu-panel:hover .ms-bu-cta span { transform: translateX(4px); }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .ms-bu-label {
    font-size: clamp(2.05rem, 2.8vw, 2.7rem);
    line-height: 1.06;
  }
}

@media (max-width: 900px) {
  .ms-bu-label {
    font-size: clamp(1.85rem, 6.2vw, 2.35rem);
    line-height: 1.06;
    max-width: 14em;
  }
  .ms-bu-title {
    font-size: 1rem;
  }
    .ms-bu-track {
    flex-direction: column;
    min-height: 0;
  }
  .ms-bu-panel {
    flex: none !important;
    min-height: 420px;
  }
  .ms-bu-panel + .ms-bu-panel {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .ms-bu-desc,
  .ms-bu-caps,
  .ms-bu-cta {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
  }
  .ms-bu-desc { margin-top: 14px; }
  .ms-bu-caps { margin-top: 14px; }
  .ms-bu-cta { margin-top: 18px; }
  .ms-bu-img { transform: none; }
}

/* Struttura operativa (fused) */
.ms-structure {
  background: var(--anthracite); color: rgba(255,255,255,.74);
  padding: clamp(56px, 7vw, 92px) var(--pad);
}
.ms-eyebrow--light { color: #7ec8ff; }
.ms-structure h2 {
  margin: 0 0 18px; color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
}
.ms-structure-lead {
  margin: 0 0 40px; max-width: 48em; font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.66);
}
.ms-struct-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px);
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 28px;
}
.ms-struct-item {
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.ms-struct-item.is-in { opacity: 1; transform: none; }
.ms-struct-item strong {
  display: block; margin-bottom: 10px;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.ms-struct-item span { font-size: .95rem; line-height: 1.55; color: rgba(255,255,255,.62); }

/* Operations */
.ms-ops {
  background: #f3f5f7; padding: clamp(56px, 7vw, 96px) var(--pad);
}
.ms-ops h2 {
  margin: 0 0 32px; font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em; color: var(--anthracite);
}
.ms-ops--compact { padding-top: clamp(36px, 4vw, 56px); padding-bottom: clamp(36px, 4vw, 56px); }
.ms-ops--compact .ms-ops-grid {
  min-height: 0;
  grid-template-rows: none;
  gap: 12px;
}
.ms-ops--compact .ms-ops-tile { min-height: 220px; }
.ms-ops--compact .ms-ops-tile:first-child { grid-row: auto; min-height: 220px; }
.ms-ops-grid {
  display: grid; grid-template-columns: 1.45fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 16px; margin-bottom: 28px; min-height: clamp(420px, 58vh, 620px);
}
.ms-ops-tile {
  position: relative; margin: 0; overflow: hidden; min-height: 240px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.ms-ops-tile.is-in { opacity: 1; transform: none; }
.ms-ops-tile:first-child { grid-row: span 2; min-height: 100%; }
.ms-ops-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.ms-ops-tile:hover img { transform: scale(1.04); }
.ms-ops-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 20px 18px;
  background: linear-gradient(transparent, rgba(8,14,24,.85));
  color: #fff;
}
.ms-ops-div {
  display: block; font-size: .65rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px;
}
.ms-ops-tile strong { display: block; font-size: 1.05rem; font-weight: 800; }
.ms-ops-tile em { display: block; margin-top: 4px; font-style: normal; font-size: .82rem; color: rgba(255,255,255,.65); }

/* Final CTA */
.ms-final-cta {
  background: var(--anthracite); color: rgba(255,255,255,.75);
  padding: clamp(56px, 7vw, 88px) var(--pad); text-align: center;
}
.ms-final-cta h2 {
  margin: 0 0 16px; color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -0.02em;
}
.page-home .ms-final-lead {
  margin: 0 auto 28px;
  max-width: 34em;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.ms-final-contacts {
  margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px;
}
.ms-final-contacts a {
  color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem;
}
.ms-final-contacts a:hover { color: #fff; }

/* Footer enterprise */
.site-footer--enterprise {
  background: var(--anthracite); color: rgba(255,255,255,.65);
  padding: 0; font-size: .88rem;
}
.site-footer--enterprise .footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 48px var(--pad) 0;
}
.site-footer--enterprise .footer-top { margin-bottom: 32px; }
.site-footer--enterprise .footer-company {
  margin: 0 0 8px; color: #fff; font-size: 1.05rem; font-weight: 800; letter-spacing: .06em;
}
.site-footer--enterprise .footer-tagline {
  margin: 0; color: rgba(255,255,255,.55); font-size: .92rem;
}
.site-footer--enterprise .footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.5fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  padding: 0 0 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer--enterprise .footer-col strong {
  display: block; margin: 0 0 16px; color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.site-footer--enterprise .footer-col a,
.site-footer--enterprise .footer-col p {
  display: block; margin: 0 0 12px; color: rgba(255,255,255,.62);
  font-size: .9rem; line-height: 1.55;
}
.site-footer--enterprise .footer-col a:hover { color: #fff; }
.site-footer--enterprise .footer-col p:last-child,
.site-footer--enterprise .footer-col a:last-child { margin-bottom: 0; }
.site-footer--enterprise .footer-col span {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px;
}
.site-footer--enterprise .footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 0 22px; font-size: .78rem; color: rgba(255,255,255,.42);
}
.site-footer--enterprise .footer-legal a { color: rgba(255,255,255,.5); }
.site-footer--enterprise .footer-legal a:hover { color: #fff; }

@media (max-width: 1100px) {
  .ms-facts-row { grid-template-columns: repeat(2, 1fr); }
  .page-home .ms-facts-row--3 { grid-template-columns: repeat(3, 1fr); }
  .ms-fact:nth-child(2) { border-right: none; }
  .page-home .ms-facts-row--3 .ms-fact:nth-child(2) { border-right: 1px solid var(--line); }
  .page-home .ms-facts-row--3 .ms-fact:nth-child(1),
  .page-home .ms-facts-row--3 .ms-fact:nth-child(2) { border-bottom: none; margin-bottom: 0; padding-bottom: 8px; }
  .ms-fact:nth-child(1), .ms-fact:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 8px; }
  .page-home .ms-facts-row--3 .ms-fact:nth-child(1),
  .page-home .ms-facts-row--3 .ms-fact:nth-child(2) { border-bottom: none; padding-bottom: 8px; margin-bottom: 0; }
  .ms-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .ms-div { padding: clamp(40px, 5vw, 64px) 0; }
  .ms-div-row,
  .ms-div--photo-right .ms-div-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ms-div--photo-right .ms-div-copy { order: 2; }
  .ms-div--photo-right .ms-div-media { order: 1; }
  .ms-div-media { max-height: none; width: 100%; }
  .ms-struct-grid { grid-template-columns: 1fr 1fr; }
  .ms-ops-grid { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .ms-ops-tile:first-child { grid-row: auto; min-height: 300px; }
  .site-footer--enterprise .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .ms-hero--static .ms-hero-stage {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 22px;
    padding-top: clamp(92px, 14vh, 112px);
    padding-bottom: 24px;
  }
  .ms-hero--static .ms-hero-copy {
    order: 1;
    max-width: none;
  }
  .ms-hero--static .ms-hero-visual {
    order: 2;
    position: relative;
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 200px;
  }
  .ms-hero--static .ms-hero-visual img {
    object-position: center 30%;
  }
  .ms-hero--static h1 {
    font-size: clamp(2.25rem, 6.2vw, 3rem); /* 36–48 */
    max-width: none;
    margin-bottom: 14px;
  }
  .ms-hero--static .ms-hero-sub {
    font-size: .98rem;
  }
  .ms-hero--static .ms-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ms-hero--static .ms-hero-actions .btn,
  .ms-hero--static .ms-hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
  .ms-hero-entries {
    grid-template-columns: 1fr;
  }
  .ms-hero--static > .ms-hero-entries {
    padding: 0;
  }
  .ms-hero-entries a {
    margin: 0;
    padding: 16px var(--pad);
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .ms-hero-entries a:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .ms-facts-row { grid-template-columns: 1fr; }
  .ms-fact { border-right: none; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .ms-fact:nth-child(1), .ms-fact:nth-child(2) { border-bottom: 1px solid var(--line); margin-bottom: 0; padding-bottom: 16px; }
  .ms-struct-grid { grid-template-columns: 1fr; }
  .site-footer--enterprise .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .site-footer--enterprise .footer-bottom { align-items: flex-start; flex-direction: column; }
}

/* ========== TLC corporate landing ========== */
.ms-tlc .tlc-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(110px, 14vh, 150px) var(--pad) clamp(48px, 7vh, 80px);
  overflow: hidden;
  color: #fff;
}
.tlc-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 40%, rgba(0,102,179,.28), transparent 55%),
    linear-gradient(145deg, #07101c 0%, #0c1e33 48%, #0a1628 100%);
}
.tlc-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(126,200,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,200,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .45;
  mask-image: linear-gradient(90deg, transparent 0%, #000 55%, #000 100%);
}
.tlc-hero-grid {
  position: relative; z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.tlc-hero-eyebrow {
  margin: 0 0 14px;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(158,212,255,.9);
}
.tlc-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -.02em;
  max-width: 14ch;
}
.tlc-hero-lead {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7; color: rgba(255,255,255,.78);
  max-width: 38em;
}
.tlc-hero-caps {
  margin: 0 0 28px;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; color: rgba(158,212,255,.85);
}
.tlc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ms-tlc .tlc-hero .btn-ghost {
  border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent;
}
.ms-tlc .tlc-hero .btn-ghost:hover { background: #fff; color: var(--anthracite); }

.tlc-hero-visual { position: relative; min-height: 340px; }
.tlc-hero-frame {
  position: relative;
  width: 88%; margin-left: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(126,200,255,.28);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  background: #0a1628;
}
.tlc-hero-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  display: block;
}
.tlc-hero-frame-edge {
  position: absolute; inset: 10px; pointer-events: none;
  border: 1px solid rgba(126,200,255,.18);
}
.tlc-hero-frame-rule {
  position: absolute; left: 0; right: 0; top: 28%;
  height: 1px; background: rgba(126,200,255,.22); pointer-events: none;
}
.tlc-hero-coord {
  position: absolute; z-index: 2;
  font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  color: rgba(158,212,255,.75); text-transform: uppercase;
}
.tlc-hero-coord--tl { top: 14px; left: 16px; }
.tlc-hero-coord--br { bottom: 14px; right: 16px; }
.tlc-hero-inset {
  position: absolute;
  left: 0; bottom: -8%;
  width: 42%; aspect-ratio: 4 / 3;
  border: 1px solid rgba(126,200,255,.35);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  overflow: hidden; background: #0a1628;
}
.tlc-hero-inset img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.tlc-facts .ms-fact-num { font-size: clamp(1.05rem, 2vw, 1.35rem); }
.tlc-intro .ms-intro-text p + p { margin-top: 1em; }

/* Platform TLC — orbital, readable but compact */
.ms-tlc .ix-platform {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  background: linear-gradient(180deg, #07101c 0%, #0a1a2e 100%);
  overflow: visible;
}
.ms-tlc .ix-platform .eyebrow { font-size: .7rem; letter-spacing: .14em; margin-bottom: 8px; }
.ms-tlc .ix-platform .title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: 16ch;
  margin: 0 0 10px;
}
.ms-tlc .ix-platform-hint {
  margin: 0 0 20px;
  max-width: 40em;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(158,212,255,.9);
}
.ms-tlc .ix-platform-hint-mob { display: none; }
.ms-tlc .ix-layout {
  gap: clamp(20px, 2.5vw, 36px);
  align-items: center;
}
.ms-tlc .ix-visual {
  width: min(100%, 540px);
  height: 540px;
}
.ms-tlc .ix-visual[data-count="5"] { --orbit: -228px; }
.ms-tlc .ix-node-list .ix-node {
  width: 152px; min-height: 78px; padding: 8px 8px;
}
.ms-tlc .ix-node-line,
.ms-tlc .ix-node span.ix-node-line {
  font-size: 1.1rem; font-weight: 650; line-height: 1.1;
}
.ms-tlc .ix-node-line2 { font-size: .9rem; font-weight: 650; line-height: 1.1; }
.ms-tlc .ix-node small {
  margin-top: 4px;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .02em; text-transform: none;
  opacity: .92; line-height: 1.2;
}
.ms-tlc .ix-node--rf {
  background: rgba(6, 22, 38, .92);
  border: 1px solid rgba(126,200,255,.42);
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  cursor: pointer;
}
.ms-tlc .ix-node--rf:hover,
.ms-tlc .ix-node--rf.is-active {
  background: rgba(0,102,179,.95);
  border-color: rgba(158,212,255,.9);
  box-shadow: 0 10px 26px rgba(0,102,179,.35);
}
.ms-tlc .ix-node--rf.is-tutor-pulse {
  box-shadow: 0 0 0 3px rgba(126,200,255,.25), 0 10px 26px rgba(0,102,179,.4);
}
.ms-tlc .rf-wave {
  border-width: 1px;
  border-color: rgba(126,200,255,.35);
  animation-duration: 6.5s;
}
.ms-tlc .rf-ring { border-color: rgba(126,200,255,.16); }
.ms-tlc .ix-stage {
  background: rgba(255,255,255,.98);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.08);
  padding: clamp(20px, 2.4vw, 32px);
  min-height: 0;
}
.ms-tlc .ix-stage.ix-tutor-flash { animation: ixTutorFlash .55s ease; }
@keyframes ixTutorFlash {
  0% { box-shadow: 0 16px 40px rgba(0,0,0,.18); }
  40% { box-shadow: 0 0 0 2px rgba(0,102,179,.22), 0 16px 40px rgba(0,0,0,.18); }
  100% { box-shadow: 0 16px 40px rgba(0,0,0,.18); }
}
.ms-tlc .ix-panel h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 800; line-height: 1.1;
  margin: 0 0 10px;
}
.ms-tlc .ix-panel-intro {
  font-size: 1rem; line-height: 1.55;
  margin: 0 0 18px;
}
.ms-tlc .ix-panel-cols {
  margin-bottom: 18px; padding: 14px 0;
}
.ms-tlc .ix-panel h4 {
  font-size: .95rem; font-weight: 700;
  letter-spacing: .04em; margin-bottom: 8px;
}
.ms-tlc .ix-panel li {
  font-size: .95rem; line-height: 1.5;
  padding: 4px 0 4px 14px;
}
.ms-tlc .ix-panel .btn-primary {
  margin-top: 2px; font-size: .82rem; padding: 12px 18px;
}
.ms-tlc .ix-visual-wrap { position: relative; }
.ms-tlc .ix-tutor {
  position: absolute; left: 0; top: 0; z-index: 8;
  width: 22px; height: 22px;
  transform: translate(var(--tx, 50%), var(--ty, 50%));
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
  pointer-events: none; color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
  opacity: 0;
}
.ms-tlc .ix-tutor-cursor { display: block; }
.ms-tlc .ix-tutor-ripple {
  position: absolute; left: 2px; top: 2px;
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(158,212,255,.7);
  opacity: 0; transform: scale(.4);
}
.ms-tlc .ix-tutor.is-click .ix-tutor-ripple { animation: ixTutorRipple .5s ease-out; }
@keyframes ixTutorRipple {
  0% { opacity: .7; transform: scale(.4); }
  100% { opacity: 0; transform: scale(3.2); }
}
@media (max-width: 960px) {
  .ms-tlc .ix-platform .title {
    font-size: clamp(2rem, 7vw, 2.6rem);
    max-width: none;
  }
  .ms-tlc .ix-platform-hint-desk { display: none; }
  .ms-tlc .ix-platform-hint-mob { display: inline; }
  .ms-tlc .ix-tutor { display: none !important; }
  .ms-tlc .ix-visual { width: min(100%, 360px); height: min(100vw - 24px, 360px); }
  .ms-tlc .ix-visual[data-count="5"] { --orbit: -130px; }
  .ms-tlc .ix-node-list .ix-node { width: 118px; min-height: 70px; }
  .ms-tlc .ix-node-line, .ms-tlc .ix-node span.ix-node-line { font-size: 1rem; }
  .ms-tlc .ix-node-line2 { font-size: .82rem; }
  .ms-tlc .ix-node small { font-size: .78rem; }
  .ms-tlc .ix-panel h3 { font-size: clamp(1.6rem, 5.5vw, 1.9rem); }
  .ms-tlc .ix-node-list.is-hint-nudge { animation: ixHintNudge 1.4s ease; }
}
@keyframes ixHintNudge {
  0%, 100% { transform: none; }
  30% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  .ms-tlc .ix-tutor { display: none !important; }
  .ms-tlc .ix-node-list.is-hint-nudge { animation: none; }
  .ms-tlc .ix-stage.ix-tutor-flash { animation: none; }
}

/* TLC page compact section rhythm */
.ms-tlc .fw { padding-top: clamp(40px, 5vw, 68px); padding-bottom: clamp(40px, 5vw, 68px); }
.ms-tlc .tlc-instruments .intro { margin-bottom: 24px; }
.ms-tlc .tlc-instr-row { margin-bottom: clamp(28px, 4vw, 48px); }

/* Instruments premium */
.tlc-instruments .intro { max-width: 58ch; margin: 0 0 36px; color: var(--muted); line-height: 1.7; }
.tlc-instr-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.tlc-instr-row--rev { grid-template-columns: 1.1fr .9fr; }
.tlc-instr-row--rev .tlc-instr-media { order: 2; }
.tlc-instr-row--rev .tlc-instr-copy { order: 1; }
.tlc-instr-media {
  overflow: hidden; background: #f0f3f6;
  aspect-ratio: 4 / 3;
}
.tlc-instr-media img {
  width: 100%; height: 100%; object-fit: contain; display: block; padding: 8%;
}
.tlc-instr-media--viavi img { object-fit: cover; padding: 0; }
.tlc-instr-copy .instr-brand {
  display: inline-block; margin-bottom: 8px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
}
.tlc-instr-copy h3 {
  margin: 0 0 12px; font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 800;
}
.tlc-instr-copy > p { margin: 0 0 18px; color: var(--soft); line-height: 1.7; }
.tlc-instr-caps {
  margin: 0; padding: 0; list-style: none;
  border-top: 1px solid var(--line);
}
.tlc-instr-caps li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem; font-weight: 600; color: var(--ink);
}

/* Capacity timeline */
.tlc-timeline {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.tlc-timeline-item {
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.tlc-timeline-item:nth-child(3n) { border-right: none; }
.tlc-timeline-item strong {
  display: block; margin-bottom: 6px;
  font-size: .98rem; font-weight: 800; color: var(--ink);
}
.tlc-timeline-item span {
  display: block; font-size: .88rem; color: var(--soft); line-height: 1.55;
}

/* Infra */
.tlc-infra { padding: 0; }
.tlc-infra-grid {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
}
.tlc-infra-media { min-height: 320px; }
.tlc-infra-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.tlc-infra-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
}
.tlc-infra-copy .title { color: #fff; }
.tlc-infra-copy > p { color: rgba(255,255,255,.75); line-height: 1.7; max-width: 36em; }
.tlc-infra-list {
  margin: 28px 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.tlc-infra-list li {
  position: relative; padding-left: 14px;
  font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.92);
}
.tlc-infra-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; background: var(--blue);
}

/* Radio depth */
.tlc-radio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 12px;
}
.tlc-radio-grid h3 {
  margin: 0 0 10px; font-size: 1.15rem; font-weight: 800; color: var(--blue-dark);
}
.tlc-radio-grid p { margin: 0; color: var(--soft); line-height: 1.7; }

/* Motorola */
.tlc-motorola-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding-top: 8px; padding-bottom: 8px;
}
.tlc-motorola-copy { max-width: 40em; }
.tlc-motorola-copy .title { margin-bottom: 12px; }
.tlc-motorola-copy p { margin: 0 0 22px; color: var(--soft); line-height: 1.7; }

/* Field */
.tlc-field { padding-top: clamp(48px, 6vw, 80px); }
.tlc-field h2 { margin-bottom: 12px; }
.tlc-field-lead {
  max-width: 48em; margin: 0 0 28px; color: var(--soft); line-height: 1.7;
}

/* Clients editorial */
.tlc-clients .intro { max-width: 42em; margin-bottom: 8px; }
.tlc-client-list { margin-top: 12px; border-top: 1px solid var(--line); }
.tlc-client-row {
  display: grid; grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 20px 32px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.tlc-client-row:hover { background: rgba(0,102,179,.03); }
.tlc-client-row h3 {
  margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--blue-dark);
}
.tlc-client-row p { margin: 0; color: var(--soft); line-height: 1.65; }

/* Final split */
.tlc-final-split {
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: 420px;
}
.tlc-final-media img {
  width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px;
}
.tlc-final-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 56px);
  background: #f4f6f8;
}
.tlc-final-copy h2 {
  margin: 0 0 14px; font-size: clamp(1.6rem, 2.5vw, 2.1rem); font-weight: 800;
}
.tlc-final-copy p { margin: 0 0 24px; color: var(--soft); line-height: 1.7; max-width: 34em; }

.tlc-cta-lead {
  margin: 0 auto 24px; max-width: 36em;
  color: rgba(255,255,255,.75); line-height: 1.65;
}

@media (max-width: 960px) {
  .tlc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .tlc-hero-copy h1 { max-width: none; }
  .tlc-hero-visual { min-height: 280px; max-width: 520px; }
  .tlc-hero-frame { width: 92%; }
  .tlc-instr-row,
  .tlc-instr-row--rev { grid-template-columns: 1fr; }
  .tlc-instr-row--rev .tlc-instr-media,
  .tlc-instr-row--rev .tlc-instr-copy { order: unset; }
  .tlc-timeline { grid-template-columns: 1fr 1fr; }
  .tlc-timeline-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .tlc-timeline-item:nth-child(2n) { border-right: none; }
  .tlc-infra-grid,
  .tlc-final-split,
  .tlc-radio-grid { grid-template-columns: 1fr; }
  .tlc-client-row { grid-template-columns: 1fr; gap: 8px; }
  .tlc-motorola-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .ms-tlc .tlc-hero { min-height: 0; padding-top: 100px; }
  .tlc-hero-inset { width: 48%; bottom: -4%; }
  .tlc-timeline { grid-template-columns: 1fr; }
  .tlc-timeline-item { border-right: none; }
  .tlc-infra-list { grid-template-columns: 1fr; }
}

/* TLC clients editorial */
.tlc-clients .intro { max-width: 42em; margin-bottom: 8px; }
.tlc-client-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 12px;
  border-top: 1px solid var(--line);
}
.tlc-client-item {
  padding: 22px 20px 24px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.tlc-client-item:nth-child(3n) { border-right: none; padding-right: 0; }
.tlc-client-item h3 {
  margin: 0 0 8px; font-size: 1.05rem; font-weight: 800; color: var(--blue-dark);
}
.tlc-client-item p { margin: 0; color: var(--soft); line-height: 1.6; font-size: .95rem; }
.tlc-client-item a {
  display: inline-block; margin-top: 12px;
  font-size: .74rem; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; color: var(--blue);
}

.tlc-critical .tlc-critical-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px;
}
.tlc-critical-item h3 {
  margin: 0 0 8px; font-size: 1.05rem; font-weight: 800; color: #fff;
}
.tlc-critical-item p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.6; font-size: .95rem; }
.tlc-critical .intro { color: rgba(255,255,255,.78); max-width: 54em; line-height: 1.7; }

.tlc-workflow .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.tlc-workflow-head {
  max-width: 40em;
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.tlc-workflow-head .title {
  margin: 0;
}
.tlc-workflow .tlc-workflow-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.tlc-workflow-item {
  margin: 0;
  padding: clamp(22px, 2.5vw, 28px);
  background: #fff;
  border: 1px solid #d7e0ea;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}
.tlc-workflow-item:last-child { border-right: 1px solid #d7e0ea; }
.tlc-workflow-num {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--blue);
}
.tlc-workflow-item h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 800;
  color: #122033;
  line-height: 1.25;
}
.tlc-workflow-item p {
  margin: 0;
  color: var(--soft);
  line-height: 1.65;
  font-size: .95rem;
}

.tlc-motorola .tlc-moto-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
}
.tlc-motorola .tlc-moto-chips span {
  padding: 10px 14px; border: 1px solid var(--line);
  font-size: .86rem; font-weight: 700; color: var(--ink); background: #fff;
}

.tlc-final-merge {
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: 420px;
}
.tlc-final-merge .tlc-final-media img {
  width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px;
}
.tlc-final-merge .tlc-final-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 56px);
  background: #0a1220; color: #fff;
}
.tlc-final-merge h2 {
  margin: 0 0 14px; font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 800;
}
.tlc-final-merge p { margin: 0 0 12px; color: rgba(255,255,255,.78); line-height: 1.7; max-width: 34em; }
.tlc-final-merge .tlc-final-contacts {
  display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 22px;
}
.tlc-final-merge .tlc-final-contacts a { color: rgba(255,255,255,.85); font-weight: 700; }
.tlc-final-merge .tlc-final-contacts a:hover { color: #9ed4ff; }

@media (max-width: 960px) {
  .tlc-client-grid { grid-template-columns: 1fr 1fr; }
  .tlc-client-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .tlc-client-item:nth-child(2n) { border-right: none; }
  .tlc-critical .tlc-critical-grid,
  .tlc-workflow .tlc-workflow-row,
  .tlc-final-merge { grid-template-columns: 1fr; }
  .tlc-workflow-item { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .tlc-client-grid { grid-template-columns: 1fr; }
  .tlc-client-item { border-right: none; }
}

/* ========== HOME page refinements (scoped) ========== */
.page-home .home-mega-static-title {
  margin: 0 0 12px;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.page-home .home-mega-static-text {
  margin: 0; max-width: 22em;
  font-size: .88rem; line-height: 1.55; color: var(--soft);
}
.page-home .nav-acc-static {
  display: block;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
}
.page-home .nav-acc-static strong {
  display: block;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.page-home .nav-acc-static em {
  display: block; margin-top: 6px;
  font-style: normal; font-size: .88rem; line-height: 1.45;
  color: rgba(255,255,255,.72);
}

/* Facts: three equal columns on home */
.page-home .ms-facts-row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .page-home .ms-facts-row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .ms-facts-row--3 .ms-fact {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 8px;
  }
  .page-home .ms-facts-row--3 .ms-fact:nth-child(2) {
    border-right: 1px solid var(--line);
  }
}
@media (max-width: 720px) {
  .page-home .ms-facts-row--3 {
    grid-template-columns: 1fr;
  }
  .page-home .ms-facts-row--3 .ms-fact {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .page-home .ms-facts-row--3 .ms-fact:last-child { border-bottom: none; }
}

/* Division panels: readable without hover (touch + desktop) */
.page-home .ms-bu-track { min-height: clamp(460px, 64vh, 600px); }
.page-home .ms-bu-panel {
  flex: 1 1 0;
  min-height: 0;
}
.page-home .ms-bu-shade {
  background: linear-gradient(
    180deg,
    rgba(6,12,22,.28) 0%,
    rgba(6,12,22,.48) 36%,
    rgba(6,12,22,.88) 72%,
    rgba(6,12,22,.97) 100%
  );
}
.page-home .ms-bu-body {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.2vw, 32px) clamp(28px, 3.5vw, 40px);
}
.page-home .ms-bu-label {
  margin: 0 0 12px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(158, 212, 255, .92);
  max-width: none;
}
.page-home .ms-bu-title {
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 16em;
  text-wrap: balance;
}
.page-home .ms-bu-desc,
.page-home .ms-bu-caps,
.page-home .ms-bu-cta {
  max-height: none;
  opacity: 1;
  overflow: visible;
  transform: none;
}
.page-home .ms-bu-desc {
  margin-top: 12px;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  line-height: 1.55;
  max-width: 32em;
}
.page-home .ms-bu-caps {
  margin-top: 12px;
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  line-height: 1.45;
}
.page-home .ms-bu-cta {
  margin-top: 18px;
  padding-top: 2px;
}
@media (hover: hover) and (min-width: 901px) {
  .page-home .ms-bu-track:hover .ms-bu-panel { flex: 1 1 0; }
  .page-home .ms-bu-track:hover .ms-bu-panel:hover {
    flex: 1.06 1 0;
  }
  .page-home .ms-bu-panel:hover .ms-bu-img,
  .page-home .ms-bu-panel:focus-visible .ms-bu-img {
    transform: scale(1.03);
  }
}
@media (max-width: 900px) {
  .page-home .ms-bu-track { min-height: 0; }
  .page-home .ms-bu-panel { min-height: 300px; }
  .page-home .ms-bu-label { font-size: .64rem; }
  .page-home .ms-bu-title { font-size: clamp(1.25rem, 4.8vw, 1.55rem); }
}

/* Ops compact — three equal photos */
.page-home .ms-ops--compact {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
}
.page-home .ms-ops--compact h2 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.page-home .ms-ops--compact .ms-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  min-height: 0;
  gap: 12px;
  margin-bottom: 0;
}
.page-home .ms-ops--compact .ms-ops-tile,
.page-home .ms-ops--compact .ms-ops-tile:first-child {
  min-height: 200px;
  aspect-ratio: 4 / 3;
  grid-row: auto;
}
.page-home .ms-ops-tile figcaption { padding: 16px 18px; }
.page-home .ms-ops-tile strong {
  font-size: .92rem; font-weight: 650; line-height: 1.4;
  color: rgba(255,255,255,.88);
}
@media (max-width: 900px) {
  .page-home .ms-ops--compact .ms-ops-grid {
    grid-template-columns: 1fr;
  }
  .page-home .ms-ops--compact .ms-ops-tile,
  .page-home .ms-ops--compact .ms-ops-tile:first-child {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

/* Hero corporate overrides */
.page-home .ms-hero--static .ms-hero-sub {
  margin: 0 0 14px;
  max-width: 38em;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.6;
  font-weight: 500;
  color: var(--soft);
}
.page-home .ms-hero--static .ms-hero-visual img {
  object-position: center 32%;
}

/* Spacing rhythm */
.page-home .ms-intro {
  padding: clamp(44px, 5.5vw, 72px) var(--pad);
}
.page-home .ms-structure {
  padding: clamp(48px, 6vw, 80px) var(--pad);
}
.page-home .ms-structure-lead {
  margin-bottom: 32px;
}
.page-home .ms-final-cta {
  padding: clamp(48px, 6vw, 76px) var(--pad);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Small phones */
@media (max-width: 390px) {
  .page-home .ms-facts-row--3 {
    grid-template-columns: 1fr;
  }
  .page-home .ms-facts-row--3 .ms-fact {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .page-home .ms-facts-row--3 .ms-fact:last-child { border-bottom: none; }
  .page-home .ms-hero-entries a {
    font-size: .86rem;
    padding: 15px var(--pad);
  }
  .page-home .ms-bu-panel { min-height: 280px; }
}
@media (max-width: 320px) {
  .page-home .ms-hero--static h1 {
    font-size: 2.1rem; /* ~34–36px */
    line-height: 1.15;
  }
  .page-home .ms-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-home .ms-hero-actions .btn,
  .page-home .ms-hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-animate,
  .page-home .ms-fact,
  .page-home .ms-intro-grid,
  .page-home .ms-bu-panel,
  .page-home .ms-struct-item,
  .page-home .ms-ops-tile {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .page-home .ms-bu-img,
  .page-home .ms-ops-tile img {
    transition: none !important;
  }
  .page-home .ms-bu-panel:hover .ms-bu-img,
  .page-home .ms-ops-tile:hover img {
    transform: none !important;
  }
  .page-home .ms-bu-panel {
    transition: none !important;
  }
}

/* HOME hero — REVERTED cinematic static (pre ChatGPT redesign) */
.ms-hero--static {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background: #07101c;
}
.ms-hero--static .ms-hero-stage {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  align-items: stretch;
  width: 100%;
  min-height: 0;
  height: auto !important;
  padding: 0 !important;
  gap: 0 !important;
  max-width: none !important;
}
.ms-hero--static .ms-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(118px, 15vh, 156px) clamp(28px, 4vw, 56px) clamp(28px, 4vh, 48px) var(--pad);
  max-width: none;
  background: linear-gradient(90deg, #07101c 0%, #07101c 72%, rgba(7,16,28,0) 100%);
}
.ms-hero--static h1 {
  margin: 0 0 clamp(22px, 3vh, 34px);
  color: #fff;
  font-size: clamp(4.5rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 9.5ch;
}
.ms-hero--static .ms-hero-sub {
  margin: 0 0 28px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
  max-width: 34em;
}
.ms-hero--static .ms-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ms-hero--static .btn-ghost {
  display: inline-block;
  padding: 14px 22px;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
}
.ms-hero--static .btn-ghost:hover { background: #fff; color: var(--anthracite); }
.ms-hero--static .ms-hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 100%;
  height: auto !important;
  max-height: none !important;
  background: #0a1628;
  border: none !important;
  margin: 0 !important;
}
.ms-hero--static .ms-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  display: block;
}
.ms-hero--static .ms-hero-visual::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #07101c 0%, rgba(7,16,28,.78) 12%, rgba(7,16,28,.28) 38%, rgba(7,16,28,0) 62%);
}
.ms-hero--static .ms-hero-visual::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7,16,28,.18) 0%, transparent 28%, rgba(7,16,28,.22) 100%);
}
.ms-hero-entries {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(5,12,22,.72);
  max-width: none !important;
  padding: 0 !important;
}
.ms-hero-entries a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 2.4vw, 28px);
  margin: 0 !important;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,.12);
}
.ms-hero-entries a:last-child { border-right: none; }
.ms-hero-entries a span { color: #9ed4ff; font-weight: 800; }
.ms-hero-entries a:hover { background: rgba(0,102,179,.28); color: #fff; }

/* Header over dark hero again */
.page-home .site-header--home {
  background: transparent !important;
  box-shadow: none !important;
}
.page-home .site-header--home .brand-logo { filter: brightness(0) invert(1) !important; }
.page-home .site-header--home .home-nav-links > li > a,
.page-home .site-header--home .home-nav-trigger { color: rgba(255,255,255,.9) !important; }
.page-home .site-header--home .btn-cta {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.65) !important;
  color: #fff !important;
}
.page-home .site-header--home.is-scrolled {
  background: rgba(255,255,255,.97) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,.08) !important;
}
.page-home .site-header--home.is-scrolled .brand-logo { filter: none !important; }
.page-home .site-header--home.is-scrolled .home-nav-links > li > a,
.page-home .site-header--home.is-scrolled .home-nav-trigger { color: var(--ink) !important; }
.page-home .site-header--home.is-scrolled .btn-cta {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}
.page-home .site-header--home .menu-icon,
.page-home .site-header--home .menu-icon::before,
.page-home .site-header--home .menu-icon::after { background: #fff !important; }
.page-home .site-header--home.is-scrolled .menu-icon,
.page-home .site-header--home.is-scrolled .menu-icon::before,
.page-home .site-header--home.is-scrolled .menu-icon::after { background: var(--ink) !important; }

@media (max-width: 900px) {
  .ms-hero--static { min-height: 92vh; }
  .ms-hero--static .ms-hero-stage { display: block !important; position: relative; flex: 1; }
  .ms-hero--static .ms-hero-visual { position: absolute; inset: 0; z-index: 0; min-height: 0; height: auto !important; }
  .ms-hero--static .ms-hero-visual::before {
    background: linear-gradient(180deg, rgba(7,16,28,.45) 0%, rgba(7,16,28,.62) 42%, rgba(7,16,28,.92) 78%, #07101c 100%) !important;
  }
  .ms-hero--static .ms-hero-visual::after { display: none !important; }
  .ms-hero--static .ms-hero-copy {
    position: relative; z-index: 2; min-height: 100%; justify-content: flex-end;
    padding: clamp(104px, 18vh, 132px) var(--pad) 28px !important; background: none !important;
  }
  .ms-hero--static h1 { font-size: clamp(3.1rem, 13vw, 4.6rem) !important; line-height: 0.94; max-width: 10ch; }
  .ms-hero-entries { grid-template-columns: 1fr !important; }
  .ms-hero-entries a { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 16px var(--pad); }
}



/* neutralize later redesign leftovers */
.page-home .ms-hero--corp { display: none !important; }
.page-home .ms-div-card,
.page-home .ms-model,
.page-home .ms-scopes { /* unused in reverted home */ }


/* =========================================================
   HOME v112 — tre divisioni equivalenti
   ========================================================= */
.page-home .ms-hero--tri {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #0a1628;
  padding: 0;
}
.page-home .ms-hero--tri .ms-hero-bg {
  display: none;
}
.page-home .ms-hero--tri #ms-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .55;
}
.page-home .ms-hero--tri .ms-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 102, 179, .22), transparent 70%),
    linear-gradient(180deg, rgba(6, 18, 36, .55) 0%, rgba(6, 18, 36, .72) 55%, rgba(6, 18, 36, .88) 100%);
}
.page-home .ms-hero--tri .ms-hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(88px, 12vh, 120px) var(--pad) clamp(40px, 5vw, 64px);
}
.page-home .ms-hero-top {
  max-width: 44rem;
  margin: 0 0 clamp(36px, 5vw, 52px);
}
.page-home .ms-eyebrow {
  margin: 0 0 14px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7ec8ff;
}
.page-home .ms-eyebrow--dark {
  color: var(--blue);
}
.page-home .ms-hero--tri h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.85rem, 4.2vw, 3.05rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 18em;
}
.page-home .ms-hero--tri .ms-hero-lead {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  max-width: 38em;
}
.page-home .ms-hero--tri .ms-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .ms-hero--tri .btn-ghost {
  border: 2px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}
.page-home .ms-hero--tri .btn-ghost:hover {
  background: #fff;
  color: var(--blue-dark);
}

.page-home .ms-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}
.page-home .ms-hero-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.page-home .ms-hero-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(126, 200, 255, .45);
  color: #fff;
  transform: translateY(-2px);
}
.page-home .ms-hero-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #061224;
}
.page-home .ms-hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(.92) contrast(1.02);
  transition: transform .45s ease;
}
.page-home .ms-hero-card:hover .ms-hero-card-media img {
  transform: scale(1.03);
}
.page-home .ms-hero-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
  gap: 8px;
}
.page-home .ms-hero-card-body h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.page-home .ms-hero-card-body p {
  margin: 0;
  flex: 1;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .78);
}
.page-home .ms-hero-card-link {
  margin-top: 8px;
  font-size: .84rem;
  font-weight: 700;
  color: #7ec8ff;
}

/* About */
.page-home .ms-about {
  background: #f5f7fa;
  padding: clamp(56px, 7vw, 96px) 0;
}
.page-home .ms-about-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.page-home .ms-about-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink, #122033);
}
.page-home .ms-about-copy p {
  margin: 0 0 14px;
  color: var(--soft, #4a5a6a);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38em;
}
.page-home .ms-about-media {
  margin: 0;
  overflow: hidden;
  background: #dce3ea;
  aspect-ratio: 4 / 3;
}
.page-home .ms-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Division rows — equal weight */
.page-home .ms-divisions {
  background: #fff;
}
.page-home .ms-div-row {
  padding: clamp(56px, 7vw, 92px) 0;
  border-top: 1px solid #e6ebf0;
}
.page-home .ms-div-row:first-child {
  border-top: none;
}
.page-home .ms-div-row--edil {
  background: #f7f9fb;
}
.page-home .ms-div-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: 420px;
}
.page-home .ms-div-row--reverse .ms-div-grid {
  direction: rtl;
}
.page-home .ms-div-row--reverse .ms-div-grid > * {
  direction: ltr;
}
.page-home .ms-div-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 220px;
  margin: 0 0 20px;
  object-fit: contain;
  object-position: left center;
}
.page-home .ms-div-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  color: #122033;
}
.page-home .ms-div-copy > p {
  margin: 0 0 18px;
  color: #4a5a6a;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 36em;
}
.page-home .ms-div-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.page-home .ms-div-list li {
  position: relative;
  padding-left: 14px;
  font-size: .94rem;
  line-height: 1.45;
  color: #334455;
}
.page-home .ms-div-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.page-home .ms-div-media {
  margin: 0;
  overflow: hidden;
  background: #dce3ea;
  aspect-ratio: 4 / 3;
  max-height: 460px;
}
.page-home .ms-div-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Field */
.page-home .ms-field {
  background: #eef2f6;
  padding: clamp(56px, 7vw, 96px) 0;
}
.page-home .ms-field .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.page-home .ms-field-head {
  max-width: 36em;
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.page-home .ms-field-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: #122033;
  line-height: 1.15;
}
.page-home .ms-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.page-home .ms-field-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: inherit;
  text-decoration: none;
  border: 1px solid #dde3ea;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.page-home .ms-field-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 10px 28px rgba(18, 32, 51, .08);
  color: inherit;
}
.page-home .ms-field-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce3ea;
}
.page-home .ms-field-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .ms-field-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
  gap: 8px;
}
.page-home .ms-field-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.page-home .ms-field-body h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: #122033;
  line-height: 1.25;
}
.page-home .ms-field-body p {
  margin: 0;
  flex: 1;
  font-size: .94rem;
  line-height: 1.55;
  color: #4a5a6a;
}
.page-home .ms-field-link {
  margin-top: 6px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--blue);
}

/* Final CTA */
.page-home .ms-cta-final {
  background: #0a1628;
  padding: clamp(56px, 7vw, 88px) 0;
  color: #fff;
}
.page-home .ms-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.page-home .ms-cta-final h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: #fff;
}
.page-home .ms-cta-final > .ms-cta-inner > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.6;
}
.page-home .ms-cta-divs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .ms-cta-divs .btn-primary {
  min-width: min(100%, 220px);
}
.page-home .ms-cta-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}
.page-home .ms-cta-contacts a {
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  font-size: .95rem;
}
.page-home .ms-cta-contacts a:hover {
  color: #7ec8ff;
}

@media (max-width: 980px) {
  .page-home .ms-hero-cards,
  .page-home .ms-field-grid {
    grid-template-columns: 1fr;
  }
  .page-home .ms-about-grid,
  .page-home .ms-div-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-home .ms-div-row--reverse .ms-div-grid {
    direction: ltr;
  }
  .page-home .ms-div-list {
    grid-template-columns: 1fr;
  }
  .page-home .ms-div-media,
  .page-home .ms-about-media {
    max-height: 360px;
  }
  .page-home .ms-hero--tri .ms-hero-inner {
    padding-top: clamp(76px, 10vh, 100px);
  }
}
@media (max-width: 640px) {
  .page-home .ms-cta-divs .btn-primary {
    width: 100%;
  }
  .page-home .ms-hero-card-body,
  .page-home .ms-field-body {
    padding: 16px;
  }
}


/* safety: classic 3-panel hero after tri experiment */
.page-home .ms-hero:not(.ms-hero--tri) {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0a1628;
}
.page-home .ms-hero:not(.ms-hero--tri) .ms-hero-bg {
  display: grid;
  position: absolute;
  inset: -12% 0 0;
  z-index: 0;
  grid-template-columns: repeat(3, 1fr);
}
.page-home .ms-hero:not(.ms-hero--tri) #ms-hero-canvas {
  opacity: 1;
}


/* HOME v114 — hero photos more visible + ventaglio divisioni */
.page-home .ms-hero-content {
  max-width: min(34rem, 100%);
  margin-left: 0;
  margin-right: auto;
  padding: 18px 20px 20px;
  background: linear-gradient(135deg, rgba(6, 18, 36, 0.55), rgba(6, 18, 36, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.page-home .ms-hero-content h1 {
  max-width: 12em;
}
.page-home .ms-hero:not(.ms-hero--tri) .ms-hero-bg {
  display: grid;
  inset: 0;
  gap: 3px;
}
.page-home .ms-hero:not(.ms-hero--tri) #ms-hero-canvas {
  opacity: 0.32;
}


/* HOME v116 — ventaglio: apre dal logo → 3 pannelli uguali e leggibili */
.ms-fan {
  position: relative;
  background: #071221;
  padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.ms-fan-stage {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.ms-fan-hub {
  position: relative;
  z-index: 5;
  text-align: center;
  margin: 0 auto clamp(22px, 3vw, 36px);
}
.ms-fan-hub img {
  display: block;
  height: clamp(44px, 5vw, 62px);
  width: auto;
  max-width: min(300px, 70vw);
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ms-fan-arc {
  --gap: 10px;
  --w: calc((100% - (var(--gap) * 2)) / 3);
  position: relative;
  height: clamp(440px, 58vh, 580px);
  max-width: 1180px;
  margin: 0 auto;
}

.ms-fan-slice {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--w);
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 42px rgba(0,0,0,.3);
  transform-origin: 50% 100%;
  transform: translateX(-50%) rotate(0) scale(0.92);
  transition:
    transform 1.85s cubic-bezier(.16, 1, .3, 1),
    left 1.85s cubic-bezier(.16, 1, .3, 1),
    opacity 1.1s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  will-change: transform, left;
}
.ms-fan-slice--tlc { z-index: 2; }
.ms-fan-slice--edil { z-index: 3; }
.ms-fan-slice--ple { z-index: 2; }

.ms-fan-slice--tlc {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.ms-fan-slice--ple {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.ms-fan-slice-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.85s cubic-bezier(.16, 1, .3, 1);
}
.ms-fan-slice-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7,18,33,.08) 0%,
    rgba(7,18,33,.22) 38%,
    rgba(7,18,33,.72) 70%,
    rgba(7,18,33,.92) 100%
  );
}
.ms-fan-slice-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px 24px;
  text-align: left;
}
.ms-fan-slice-copy strong {
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.ms-fan-slice-copy em {
  font-style: normal;
  font-size: .92rem;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
}
.ms-fan-slice-copy b {
  margin-top: 4px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #7ec8ff;
}

/* chiuso: piegato al centro sotto il logo */
.ms-fan:not(.is-open) .ms-fan-slice--tlc {
  transform: translateX(-50%) rotate(-14deg) scale(0.86);
}
.ms-fan:not(.is-open) .ms-fan-slice--edil {
  transform: translateX(-50%) rotate(0deg) scale(0.9);
}
.ms-fan:not(.is-open) .ms-fan-slice--ple {
  transform: translateX(-50%) rotate(14deg) scale(0.86);
}

/* aperto: tre colonne uguali, zero overlap, testo leggibile */
.ms-fan.is-open .ms-fan-slice {
  transform: translateX(0) rotate(0) scale(1);
}
.ms-fan.is-open .ms-fan-slice--tlc {
  left: 0;
  transition-delay: 0s;
}
.ms-fan.is-open .ms-fan-slice--edil {
  left: calc(var(--w) + var(--gap));
  transition-delay: .1s;
  z-index: 2;
}
.ms-fan.is-open .ms-fan-slice--ple {
  left: calc((var(--w) + var(--gap)) * 2);
  transition-delay: .2s;
}

.ms-fan.is-open .ms-fan-slice:hover {
  border-color: rgba(126,200,255,.5);
  box-shadow: 0 22px 48px rgba(0,102,179,.3);
  z-index: 4;
}
.ms-fan.is-open .ms-fan-slice:hover .ms-fan-slice-media { transform: scale(1.07); }
.ms-fan.is-open .ms-fan-slice:hover .ms-fan-slice-shade {
  background: linear-gradient(
    180deg,
    rgba(0,102,179,.14) 0%,
    rgba(7,18,33,.28) 40%,
    rgba(7,18,33,.8) 72%,
    rgba(7,18,33,.94) 100%
  );
}

@media (max-width: 900px) {
  .ms-fan-arc {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .ms-fan-slice {
    position: relative !important;
    left: auto !important;
    width: 100% !important;
    height: 230px;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    transform: none !important;
    transition: opacity .95s ease, transform .95s ease !important;
  }
  .ms-fan:not(.is-open) .ms-fan-slice {
    opacity: .4;
    transform: translateY(18px) !important;
  }
  .ms-fan.is-open .ms-fan-slice {
    opacity: 1;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-fan-slice,
  .ms-fan-slice-media { transition: none !important; }
  .ms-fan:not(.is-open) .ms-fan-slice--tlc,
  .ms-fan.is-open .ms-fan-slice--tlc { left: 0; transform: translateX(0) rotate(0) scale(1); }
  .ms-fan:not(.is-open) .ms-fan-slice--edil,
  .ms-fan.is-open .ms-fan-slice--edil { left: calc(var(--w) + var(--gap)); transform: translateX(0) rotate(0) scale(1); }
  .ms-fan:not(.is-open) .ms-fan-slice--ple,
  .ms-fan.is-open .ms-fan-slice--ple { left: calc((var(--w) + var(--gap)) * 2); transform: translateX(0) rotate(0) scale(1); }
}



/* HOME v117 — hero carousel sync con barra divisioni */
.ms-hero--carousel .ms-hero-bg {
  inset: 0;
  display: block;
  gap: 0;
  grid-template-columns: none;
}
.ms-hero--carousel .ms-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6.5s ease;
  will-change: opacity, transform;
}
.ms-hero--carousel .ms-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.ms-hero--carousel .ms-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(6, 18, 36, 0.78) 0%,
    rgba(6, 18, 36, 0.48) 42%,
    rgba(6, 18, 36, 0.28) 100%
  );
}
.ms-hero--carousel #ms-hero-canvas {
  opacity: 0.22;
}
.ms-hero--carousel .ms-hero-content {
  max-width: min(36rem, 100%);
  background: transparent;
  border: none;
  padding: 0;
}
.ms-hero--carousel .ms-stat-item {
  appearance: none;
  border: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: default;
  transition: background .35s ease, box-shadow .35s ease;
}
.ms-hero--carousel .ms-stat-item[data-hero-slide] {
  cursor: default;
  pointer-events: none;
  text-align: center;
  background: rgba(8, 22, 40, 0.92);
}
.ms-hero--carousel .ms-stat-item[data-hero-slide].is-active {
  background: linear-gradient(180deg, rgba(0, 102, 179, 0.95), rgba(0, 77, 136, 0.98));
  box-shadow: inset 0 3px 0 #7ec8ff;
}
.ms-hero--carousel .ms-stat-item[data-hero-slide].is-active .ms-stat-num,
.ms-hero--carousel .ms-stat-item[data-hero-slide].is-active .ms-stat-label {
  color: #fff;
}
.ms-hero--carousel .ms-stat-item--static {
  background: rgba(8, 22, 40, 0.92);
}
@media (max-width: 900px) {
  .ms-hero--carousel .ms-hero-bg {
    min-height: 100%;
  }
  .ms-hero--carousel .ms-hero-slide {
    min-height: 100%;
  }
}


/* HOME v119 — hero text shadow, no GROUP tag */
.ms-hero--carousel .ms-hero-content h1 {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 8px 28px rgba(0, 0, 0, 0.45);
}
.ms-hero--carousel .ms-hero-lead {
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.5),
    0 6px 18px rgba(0, 0, 0, 0.35);
}
.ms-hero--carousel .ms-hero-content {
  padding: 18px 20px 20px;
  background: linear-gradient(
    180deg,
    rgba(4, 12, 24, 0.28) 0%,
    rgba(4, 12, 24, 0.45) 100%
  );
  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}


/* HOME v120 — trittico divisioni (moderno, uguale peso) */
.ms-fan { display: none !important; }

.ms-tri {
  background: #071221;
  padding: 0;
}
.ms-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  min-height: clamp(460px, 62vh, 620px);
}
.ms-tri-panel {
  position: relative;
  display: block;
  min-height: inherit;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1);
}
.ms-tri-panel.is-in {
  opacity: 1;
  transform: none;
}
.ms-tri-panel:nth-child(1) { transition-delay: .05s; }
.ms-tri-panel:nth-child(2) { transition-delay: .15s; }
.ms-tri-panel:nth-child(3) { transition-delay: .25s; }

.ms-tri-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.ms-tri-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,18,33,.12) 0%,
    rgba(7,18,33,.28) 42%,
    rgba(7,18,33,.78) 74%,
    rgba(7,18,33,.94) 100%
  );
  transition: background .35s ease;
}
.ms-tri-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
}
.ms-tri-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7ec8ff;
}
.ms-tri-copy strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.ms-tri-copy em {
  font-style: normal;
  font-size: .98rem;
  line-height: 1.5;
  color: rgba(255,255,255,.86);
  max-width: 28em;
}
.ms-tri-copy b {
  margin-top: 4px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #7ec8ff;
}

.ms-tri-panel:hover .ms-tri-media,
.ms-tri-panel:focus-visible .ms-tri-media {
  transform: scale(1.12);
}
.ms-tri-panel:hover .ms-tri-shade,
.ms-tri-panel:focus-visible .ms-tri-shade {
  background: linear-gradient(
    180deg,
    rgba(0,102,179,.18) 0%,
    rgba(7,18,33,.32) 40%,
    rgba(7,18,33,.82) 74%,
    rgba(7,18,33,.95) 100%
  );
}

@media (max-width: 900px) {
  .ms-tri-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 2px;
  }
  .ms-tri-panel {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ms-tri-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ms-tri-media { transition: none; }
}

/* HOME v121 — stacco hero → divisioni */
.page-home .ms-hero--carousel {
  margin-bottom: 0;
}
.page-home .ms-tri {
  margin-top: 0;
  padding-top: clamp(36px, 5vw, 64px);
  background:
    linear-gradient(180deg, #0a1628 0%, #071221 28px, #071221 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.page-home .ms-tri-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(36px, 5vw, 64px);
  gap: clamp(12px, 1.5vw, 18px);
  box-sizing: border-box;
}


/* HOME v122 — sezioni azienda / campo / CTA */
.page-home .ms-eyebrow {
  margin: 0 0 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7ec8ff;
}
.page-home .ms-eyebrow--dark { color: var(--blue); }

.page-home .ms-about {
  background: #f5f7fa;
  padding: clamp(56px, 7vw, 96px) 0;
}
.page-home .ms-about-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.page-home .ms-about-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #122033;
}
.page-home .ms-about-copy p {
  margin: 0 0 14px;
  color: #4a5a6a;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38em;
}
.page-home .ms-about-copy .btn { margin-top: 10px; }
.page-home .ms-about-media {
  margin: 0;
  overflow: hidden;
  background: #dce3ea;
  aspect-ratio: 4 / 3;
}
.page-home .ms-about-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.page-home .ms-field {
  background: #fff;
  padding: clamp(56px, 7vw, 96px) 0;
}
.page-home .ms-field .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.page-home .ms-field-head {
  max-width: 40em;
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.page-home .ms-field-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: #122033;
  line-height: 1.15;
}
.page-home .ms-field-lead {
  margin: 0;
  color: #4a5a6a;
  font-size: 1.05rem;
  line-height: 1.6;
}
.page-home .ms-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.page-home .ms-field-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: inherit;
  text-decoration: none;
  border: 1px solid #dde3ea;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.page-home .ms-field-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 12px 32px rgba(18, 32, 51, .1);
  color: inherit;
  transform: translateY(-2px);
}
.page-home .ms-field-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce3ea;
}
.page-home .ms-field-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.page-home .ms-field-card:hover .ms-field-media img { transform: scale(1.04); }
.page-home .ms-field-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 18px 18px 20px;
}
.page-home .ms-field-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.page-home .ms-field-body h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: #122033;
  line-height: 1.25;
}
.page-home .ms-field-body p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.55;
  color: #4a5a6a;
}

.page-home .ms-cta-final {
  background: #0a1628;
  padding: clamp(56px, 7vw, 88px) 0;
  color: #fff;
}
.page-home .ms-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.page-home .ms-cta-final h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: #fff;
}
.page-home .ms-cta-inner > p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.6;
}
.page-home .ms-cta-divs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .ms-cta-divs .btn-primary { min-width: min(100%, 220px); }
.page-home .ms-cta-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}
.page-home .ms-cta-contacts a {
  color: rgba(255,255,255,.84);
  font-weight: 600;
  font-size: .95rem;
}
.page-home .ms-cta-contacts a:hover { color: #7ec8ff; }

@media (max-width: 900px) {
  .page-home .ms-about-grid,
  .page-home .ms-field-grid {
    grid-template-columns: 1fr;
  }
  .page-home .ms-about-media { max-height: 340px; }
  .page-home .ms-cta-divs .btn-primary { width: 100%; }
}


/* HOME v124 — about più ricco + come lavoriamo (stile completo, no cifre inventate) */
.page-home .ms-about-points {
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-home .ms-about-points li {
  position: relative;
  padding-left: 18px;
  color: #334455;
  font-size: 1rem;
  line-height: 1.45;
}
.page-home .ms-about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.page-home .ms-process {
  background: #f5f7fa;
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid #e6ebf0;
}
.page-home .ms-process .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.page-home .ms-process-head {
  max-width: 42em;
  margin: 0 0 clamp(28px, 4vw, 44px);
}
.page-home .ms-process-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: #122033;
  line-height: 1.15;
}
.page-home .ms-process-head p {
  margin: 0;
  color: #4a5a6a;
  font-size: 1.05rem;
  line-height: 1.6;
}
.page-home .ms-process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}
.page-home .ms-process-steps li {
  background: #fff;
  border: 1px solid #dde3ea;
  padding: clamp(18px, 2vw, 24px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.page-home .ms-process-steps li.is-in {
  opacity: 1;
  transform: none;
}
.page-home .ms-process-steps li:nth-child(1) { transition-delay: .05s; }
.page-home .ms-process-steps li:nth-child(2) { transition-delay: .1s; }
.page-home .ms-process-steps li:nth-child(3) { transition-delay: .15s; }
.page-home .ms-process-steps li:nth-child(4) { transition-delay: .2s; }
.page-home .ms-process-steps li:nth-child(5) { transition-delay: .25s; }
.page-home .ms-process-num {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--blue);
}
.page-home .ms-process-steps strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #122033;
  line-height: 1.25;
}
.page-home .ms-process-steps p {
  margin: 0;
  color: #4a5a6a;
  font-size: .92rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .page-home .ms-process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .page-home .ms-process-steps {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .ms-process-steps li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* HOME v125 — about: tre divisioni uguali, no processo in home */
.page-home .ms-about-divs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 22px;
}
.page-home .ms-about-divs a {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #cfd8e3;
  background: #fff;
  color: #122033;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.page-home .ms-about-divs a:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: #f3f8fc;
}


/* HOME v126 — hero lead secondario + CTA senza pulsanti divisione */
.ms-hero--carousel .ms-hero-lead--secondary {
  margin-top: -12px;
  margin-bottom: 28px;
  font-size: clamp(.98rem, 1.25vw, 1.08rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 36em;
}
.page-home .ms-cta-final .ms-cta-contacts {
  margin-top: 8px;
}
.page-home .ms-cta-final .ms-cta-contacts a {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 700;
}
.page-home .ms-cta-final .ms-cta-contacts a:hover {
  border-color: #7ec8ff;
  color: #7ec8ff;
}


/* HOME v128/129 — titolo divisioni centrato */
.page-home .ms-tri-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(24px, 3.5vw, 40px);
  text-align: center;
}
.page-home .ms-tri-head h2 {
  margin: 0 auto;
  max-width: 18em;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}


/* TLC v132 — traliccio SVG, griglia servizi, ambiti, collab marquee */
.ms-tlc .rf-core--svg {
  background: transparent;
  border: none;
  box-shadow: none;
  width: clamp(120px, 18vw, 168px);
  height: clamp(144px, 22vw, 200px);
  color: #7ec8ff;
  display: grid;
  place-items: center;
}
.ms-tlc .rf-core--svg .rf-tower {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 18px rgba(126, 200, 255, .25));
}
.ms-tlc .ix-visual--services {
  width: 100%;
  height: auto;
  min-height: 0;
  display: grid;
  gap: 22px;
  justify-items: center;
}
.ms-tlc .ix-visual--services .ix-orbit-stage {
  position: relative;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  margin: 0 auto;
}
.ms-tlc .ix-visual--services .ix-node-list--grid {
  position: static;
  inset: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  transform: none !important;
}
.ms-tlc .ix-visual--services .ix-node-list--grid .ix-node {
  position: static !important;
  transform: none !important;
  width: 100%;
  min-height: 64px;
  margin: 0;
  left: auto;
  top: auto;
}
.ms-tlc .ix-layout--stack {
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
}
@media (max-width: 960px) {
  .ms-tlc .ix-layout--stack {
    grid-template-columns: 1fr;
  }
  .ms-tlc .ix-visual--services .ix-node-list--grid {
    grid-template-columns: 1fr;
  }
}

.ms-tlc .tlc-clients {
  background: #eef3f8;
  padding: clamp(48px, 6vw, 80px) 0;
}
.ms-tlc .tlc-clients .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.ms-tlc .tlc-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.ms-tlc .tlc-client-item {
  background: #fff;
  border: 1px solid #d7e0ea;
  padding: 20px 18px;
  min-height: 100%;
}
.ms-tlc .tlc-client-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #122033;
}
.ms-tlc .tlc-client-item p {
  margin: 0;
  color: #4a5a6a;
  font-size: .94rem;
  line-height: 1.55;
}
.ms-tlc .tlc-client-item:nth-child(3n) {
  border-right: 1px solid #d7e0ea;
  padding-right: 18px;
}
@media (max-width: 900px) {
  .ms-tlc .tlc-client-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ms-tlc .tlc-client-grid { grid-template-columns: 1fr; }
}

.ms-tlc .tlc-collab {
  background: #0a1628;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.ms-tlc .tlc-collab-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: tlcCollabScroll 36s linear infinite;
}
.ms-tlc .tlc-collab-track span {
  flex-shrink: 0;
  padding: 0 36px;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
.ms-tlc .tlc-collab-track span::before {
  content: "◆";
  color: #7ec8ff;
  margin-right: 14px;
  font-size: .65rem;
}
@keyframes tlcCollabScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ms-tlc .tlc-collab-track { animation: none; }
}

.ms-tlc .tlc-motorola { display: none !important; }


/* TLC v133 — 6 aree raggruppate + orbit + traliccio SVG */
.ms-tlc .ix-visual[data-count="6"] { --step: 60deg; --orbit: -236px; }
.ms-tlc .ix-visual[data-count="6"] .ix-node-list .ix-node {
  width: 148px;
  min-height: 74px;
  padding: 8px 8px;
}
@media (max-width: 960px) {
  .ms-tlc .ix-visual[data-count="6"] { --orbit: -132px; }
  .ms-tlc .ix-visual[data-count="6"] .ix-node-list .ix-node {
    width: 118px;
    min-height: 68px;
  }
}


/* TLC workflow v137 responsive */
@media (max-width: 900px) {
  .tlc-workflow .tlc-workflow-row { grid-template-columns: 1fr; }
}


/* TLC v139 — modalità di intervento (non processo unico) */
.tlc-workflow-lead {
  margin: 12px 0 0;
  max-width: 44em;
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.tlc-workflow .tlc-workflow-row--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .tlc-workflow .tlc-workflow-row--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .tlc-workflow .tlc-workflow-row--4 {
    grid-template-columns: 1fr;
  }
}


/* TLC v140 — hero lead secondario */
.ms-tlc .tlc-hero-lead--secondary {
  margin-top: -6px;
  color: rgba(255,255,255,.78);
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  max-width: 38em;
}


/* Footer v141 — logo + visibilità */
.site-footer--enterprise {
  background: #071221;
  color: rgba(255, 255, 255, 0.88);
  padding-top: clamp(48px, 6vw, 72px);
}
.site-footer--enterprise .footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.site-footer--enterprise .footer-top {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.site-footer--enterprise .footer-brand-link {
  display: inline-block;
  width: fit-content;
  line-height: 0;
}
.site-footer--enterprise .footer-logo {
  display: block;
  height: clamp(42px, 4.8vw, 58px);
  width: auto;
  max-width: min(300px, 75vw);
  object-fit: contain;
  object-position: left center;
  /* stesso file della header: bianco pulito su fondo scuro, senza riquadro */
  filter: brightness(0) invert(1);
  background: transparent;
}
.site-footer--enterprise .footer-company { display: none; }
.site-footer--enterprise .footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: .95rem;
  line-height: 1.5;
  max-width: 40em;
}
.site-footer--enterprise .footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(28px, 4vw, 40px);
}
.site-footer--enterprise .footer-col strong {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-footer--enterprise .footer-col a,
.site-footer--enterprise .footer-col p {
  color: rgba(255, 255, 255, 0.86);
  font-size: .92rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
.site-footer--enterprise .footer-col a {
  font-weight: 600;
  text-decoration: none;
}
.site-footer--enterprise .footer-col a:hover {
  color: #9ed4ff;
}
.site-footer--enterprise .footer-col span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer--enterprise .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: .78rem;
  line-height: 1.5;
}
.site-footer--enterprise .footer-legal a {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer--enterprise .footer-legal a:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .site-footer--enterprise .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .site-footer--enterprise .footer-main {
    grid-template-columns: 1fr;
  }
}


/* SVC subpage v149 — allineata a home/TLC */
.ms-svc .svc-hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: clamp(520px, 72vh, 720px);
  background: #0a1628;
  overflow: hidden;
}
.ms-svc .svc-hero-copy {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(110px, 14vh, 150px) clamp(24px, 4vw, 56px) clamp(40px, 5vw, 64px);
  max-width: 40rem;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(ellipse 80% 70% at 0% 50%, rgba(0,102,179,.22), transparent 60%),
    #0a1628;
}
.ms-svc .svc-hero-copy .breadcrumb,
.ms-svc .breadcrumb--on-dark {
  margin: 0 0 18px;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}
.ms-svc .breadcrumb--on-dark a { color: rgba(255,255,255,.75); }
.ms-svc .breadcrumb--on-dark a:hover { color: #fff; }
.ms-svc .breadcrumb--on-dark span { margin: 0 6px; opacity: .5; }
.ms-svc .svc-eyebrow,
.ms-svc .eyebrow {
  margin: 0 0 10px;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: #7ec8ff;
}
.ms-svc .svc-hero-copy .svc-eyebrow { color: #7ec8ff; }
.ms-svc .svc-hero-copy h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 800; line-height: 1.12;
  max-width: 14em;
}
.ms-svc .svc-lead {
  margin: 0 0 12px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65; max-width: 36em;
}
.ms-svc .svc-caps {
  margin: 0 0 24px;
  color: rgba(255,255,255,.65);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.ms-svc .svc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ms-svc .svc-hero-media {
  margin: 0;
  position: relative;
  min-height: 100%;
  background: #071221;
}
.ms-svc .svc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ms-svc .svc-intro {
  background: #f5f7fa;
  padding: clamp(48px, 6vw, 80px) 0;
}
.ms-svc .svc-intro-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 48px); align-items: center;
}
.ms-svc .svc-intro-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800; color: #122033; line-height: 1.18;
}
.ms-svc .svc-intro-copy p {
  margin: 0 0 12px; color: #4a5a6a;
  font-size: 1.02rem; line-height: 1.7;
}
.ms-svc .svc-intro-media {
  margin: 0; overflow: hidden; background: #dce3ea; aspect-ratio: 4/3;
}
.ms-svc .svc-intro-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.ms-svc .svc-blocks {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) 0;
}
.ms-svc .svc-blocks .inner,
.ms-svc .svc-modes .inner,
.ms-svc .svc-note .inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.ms-svc .svc-blocks-head { max-width: 40em; margin: 0 0 clamp(24px, 3vw, 36px); }
.ms-svc .svc-blocks-head h2,
.ms-svc .svc-note h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  font-weight: 800; color: #122033; line-height: 1.18;
}
.ms-svc .svc-blocks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.ms-svc .svc-block {
  border: 1px solid #d7e0ea;
  background: #fff;
  padding: clamp(18px, 2vw, 24px);
}
.ms-svc .svc-block h3 {
  margin: 0 0 12px;
  font-size: 1.02rem; font-weight: 800; color: #122033;
}
.ms-svc .svc-block ul {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 8px;
}
.ms-svc .svc-block li {
  position: relative; padding-left: 14px;
  color: #4a5a6a; font-size: .94rem; line-height: 1.45;
}
.ms-svc .svc-block li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}

.ms-svc .svc-modes {
  background: #0a1628;
  padding: clamp(56px, 8vw, 100px) 0;
  color: #fff;
}
.ms-svc .svc-modes-layout {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.ms-svc .svc-modes-head { max-width: 22em; }
.ms-svc .svc-modes-head .eyebrow { color: #7ec8ff; }
.ms-svc .svc-modes-head h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 800; line-height: 1.18;
}
.ms-svc .svc-modes-lead {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1.02rem; line-height: 1.65;
}
.ms-svc .svc-modes-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.ms-svc .svc-modes-list li {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 16px 20px;
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  align-items: start;
}
.ms-svc .svc-modes-num {
  font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; color: #7ec8ff;
  padding-top: 4px;
}
.ms-svc .svc-modes-list h3 {
  margin: 0 0 6px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 800; color: #fff;
}
.ms-svc .svc-modes-list p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .98rem; line-height: 1.6;
  max-width: 40em;
}

/* Servizi: griglia a card (contrasto col metodo a lista) */
.ms-svc .svc-blocks {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 88px);
}
.ms-svc .svc-block {
  background: #f5f7fa;
  border: none;
  padding: clamp(22px, 2.4vw, 28px);
}

.ms-svc .svc-note {
  background: #f5f7fa;
  padding: clamp(56px, 7vw, 96px) 0;
  color: #122033;
  border-top: 1px solid #dce3ea;
}
.ms-svc .svc-note .eyebrow { color: var(--blue); }
.ms-svc .svc-note h2 { color: #122033; margin: 0 0 14px; }
.ms-svc .svc-note p { margin: 0; color: #4a5a6a; line-height: 1.7; max-width: 36em; }
.ms-svc .svc-note-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.ms-svc .svc-final {
  background: #0a1628;
  padding: clamp(72px, 10vw, 120px) 0 clamp(64px, 8vw, 96px);
  text-align: center;
  border-top: none;
}
.ms-svc .svc-final-inner { max-width: 720px; margin: 0 auto; padding: 0 var(--pad); }
.ms-svc .svc-final h2 {
  margin: 0 0 16px; color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800;
}
.ms-svc .svc-final > .svc-final-inner > p {
  margin: 0 0 32px; color: rgba(255,255,255,.78); line-height: 1.65;
}
.ms-svc .svc-final-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 28px;
}
.ms-svc .svc-final-back {
  margin: 0;
  padding-top: 8px;
}
.ms-svc .svc-final-back a {
  color: rgba(255,255,255,.62); font-weight: 600; font-size: .9rem;
}
.ms-svc .svc-final-back a:hover { color: #7ec8ff; }

/* Stacco chiaro tra CTA scura e footer */
.ms-svc .site-footer--enterprise {
  border-top: 1px solid rgba(255,255,255,.1);
}
.ms-svc .site-footer--enterprise .footer-inner {
  padding-top: clamp(56px, 7vw, 80px);
}

@media (max-width: 980px) {
  .ms-svc .svc-intro-grid,
  .ms-svc .svc-note-grid,
  .ms-svc .svc-blocks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ms-svc .svc-modes-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 700px) {
  .ms-svc .svc-intro-grid,
  .ms-svc .svc-note-grid,
  .ms-svc .svc-blocks-grid {
    grid-template-columns: 1fr;
  }
}


/* siti-radio content notes v149 */
.ms-svc .svc-intro-hero {
  margin: 0 0 24px;
  color: rgba(255,255,255,.82);
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  max-width: 38em;
}
.ms-svc .svc-blocks-head .svc-bts-note {
  margin: 12px 0 0;
  max-width: 40em;
  color: #4a5a6a;
  font-size: .98rem;
  line-height: 1.55;
}
.ms-svc .svc-block p {
  margin: 0;
  color: #4a5a6a;
  font-size: .95rem;
  line-height: 1.55;
}
.ms-svc .svc-maint-note {
  margin: clamp(22px, 3vw, 32px) 0 0;
  padding-top: 18px;
  border-top: 1px solid #d7e0ea;
  color: #4a5a6a;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.5;
}
.ms-svc .svc-hero-copy .svc-lead {
  margin-bottom: 14px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: rgba(255,255,255,.92);
}


/* siti-radio unified macroarea v150 */
.ms-svc-radio .svc-sec-head {
  max-width: 44em;
  margin: 0 0 clamp(22px, 3vw, 32px);
}
.ms-svc-radio .svc-sec-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 800;
  color: #122033;
  line-height: 1.18;
}
.ms-svc-radio .svc-sec-lead {
  margin: 12px 0 0;
  color: #4a5a6a;
  font-size: 1.02rem;
  line-height: 1.65;
}

.ms-svc-radio .svc-ambiti {
  background: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
}
.ms-svc-radio .svc-ambiti .inner,
.ms-svc-radio .svc-attivita .inner,
.ms-svc-radio .svc-ponti .inner,
.ms-svc-radio .svc-ops .inner,
.ms-svc-radio .svc-maint .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.ms-svc-radio .svc-ambiti-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.ms-svc-radio .svc-ambito {
  display: flex;
  flex-direction: column;
  background: #0a1628;
  color: #fff;
  border: 1px solid rgba(126,200,255,.28);
  padding: clamp(20px, 2.2vw, 26px);
  min-height: 100%;
  background-image:
    linear-gradient(rgba(126,200,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,200,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.ms-svc-radio .svc-ambito h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
}
.ms-svc-radio .svc-ambito > p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.55;
  flex: 1;
}
.ms-svc-radio .svc-ambito ul {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  gap: 8px;
}
.ms-svc-radio .svc-ambito li {
  position: relative;
  padding-left: 14px;
  color: rgba(255,255,255,.86);
  font-size: .9rem;
  line-height: 1.4;
}
.ms-svc-radio .svc-ambito li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #7ec8ff;
}

.ms-svc-radio .svc-attivita {
  background: #f5f7fa;
  padding: clamp(40px, 5vw, 64px) 0;
}
.ms-svc-radio .svc-attivita-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ms-svc-radio .svc-card-op {
  background: #fff;
  border: 1px solid #d7e0ea;
  padding: clamp(18px, 2vw, 24px);
}
.ms-svc-radio .svc-card-op h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 800;
  color: #122033;
}
.ms-svc-radio .svc-card-op p {
  margin: 0;
  color: #4a5a6a;
  font-size: .94rem;
  line-height: 1.55;
}

.ms-svc-radio .svc-ponti {
  background: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid #e4ebf2;
}
.ms-svc-radio .svc-ponti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
}
.ms-svc-radio .svc-ponti-col {
  background: #f5f7fa;
  border: 1px solid #d7e0ea;
  padding: clamp(20px, 2.2vw, 28px);
}
.ms-svc-radio .svc-ponti-col h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #122033;
}
.ms-svc-radio .svc-ponti-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ms-svc-radio .svc-ponti-col li {
  position: relative;
  padding-left: 14px;
  color: #4a5a6a;
  font-size: .95rem;
  line-height: 1.45;
}
.ms-svc-radio .svc-ponti-col li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.ms-svc-radio .svc-maint {
  background: #eef3f8;
  padding: clamp(28px, 4vw, 40px) 0;
}
.ms-svc-radio .svc-maint-inner {
  max-width: 40em;
}
.ms-svc-radio .svc-maint h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #122033;
}
.ms-svc-radio .svc-maint p {
  margin: 0;
  color: #4a5a6a;
  font-size: .98rem;
  line-height: 1.6;
}

.ms-svc-radio .svc-ops {
  background: #0a1628;
  padding: clamp(40px, 5vw, 64px) 0;
  color: #fff;
}
.ms-svc-radio .svc-ops .eyebrow { color: #7ec8ff; }
.ms-svc-radio .svc-ops .svc-sec-head h2 { color: #fff; }
.ms-svc-radio .svc-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ms-svc-radio .svc-ops-grid article {
  border-top: 2px solid rgba(126,200,255,.45);
  padding-top: 16px;
}
.ms-svc-radio .svc-ops-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.ms-svc-radio .svc-ops-grid p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: .95rem;
  line-height: 1.55;
}
.ms-svc-radio .svc-ops-foot {
  margin: clamp(22px, 3vw, 30px) 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

@media (max-width: 980px) {
  .ms-svc-radio .svc-ambiti-grid,
  .ms-svc-radio .svc-attivita-grid,
  .ms-svc-radio .svc-ops-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .ms-svc-radio .svc-ambiti-grid,
  .ms-svc-radio .svc-attivita-grid,
  .ms-svc-radio .svc-ponti-grid,
  .ms-svc-radio .svc-ops-grid {
    grid-template-columns: 1fr;
  }
}
