/* Локальные шрифты: итальянский алфавит, без внешних запросов к Google Fonts. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/inter.woff2) format("woff2");
  unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url(../fonts/manrope.woff2) format("woff2");
  unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Основной визуальный слой: цвета, типографика, секции и компоненты V42.
 * Порядок оставшихся адаптивных правил сохранён, чтобы не менять каскад.
 * Итоговая мобильная композиция находится в responsive.css. */
:root {
  --ink: #10202c;
  --muted: #63727b;
  --line: #dde5e9;
  --brand: #0d5ea8;
  --brand2: #43a6df;
  --soft: #f4f7f9;
  --dark: #0d1821;
  --shadow: 0 24px 70px rgba(16,32,44,.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter,sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: min(1180px,calc(100% - 40px));
  margin: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 999;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  z-index: 50;
  border-bottom: 1px solid rgba(15,32,44,.08);
}
.header-grid {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  font-family: Manrope;
}
.brand small {
  display: block;
  text-transform: uppercase;
  color: #7690a0;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  font-weight: 650;
  font-size: .86rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: .2s;
}
.btn-primary {
  background: linear-gradient(135deg,#0c3e80,#0f65b4);
  color: #fff;
  box-shadow: 0 10px 26px rgba(16,86,156,.18);
}
.btn-glass {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.42);
  color: #fff;
  backdrop-filter: blur(12px);
}
.btn:hover {
  transform: translateY(-1px);
}
.wide {
  width: 100%;
  margin-top: 18px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #10202c;
  margin: 5px;
}
.mobile-menu {
  position: fixed;
  z-index: 49;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  display: block;
  font-weight: 750;
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 70px 0;
}
.hero h1 {
  font: 800 clamp(3rem,5.7vw,5.7rem)/.97 Manrope;
  margin: 12px 0 0;
  letter-spacing: -.05em;
}
.hero h1 span {
  color: #62b4ef;
}
.hero p {
  max-width: 700px;
  font-size: 1.08rem;
  line-height: 1.66;
  color: #e5eef3;
  margin: 24px 0 0;
}
.eyebrow {
  display: inline-block;
  font: 800 .72rem Manrope;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a9d9f3;
}
.eyebrow.dark {
  color: var(--brand);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: .78rem;
}
.hero-points span:before {
  content: "✓";
  color: #78c5ec;
  margin-right: 7px;
}
.hero-form-card {
  color: var(--ink);
  padding: 30px;
  border-radius: 26px;
}
.hero-form-card h2 {
  font: 800 1.8rem/1.12 Manrope;
  margin: 8px 0;
}
.hero-form-card p {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.section {
  padding: 92px 0;
}
.soft {
  background: var(--soft);
}
.dark {
  background: var(--dark);
  color: #fff;
}
.section-heading {
  max-width: 800px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 60px;
  text-align: left;
  align-items: end;
}
.section-heading h2, .split-content h2 {
  font: 800 clamp(2.2rem,4vw,4.2rem)/1.02 Manrope;
  margin: 10px 0 0;
  letter-spacing: -.04em;
}
.section-heading p {
  color: var(--muted);
  line-height: 1.65;
}
.projects-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(14,39,54,.05);
}
.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.projects-head h3 {
  font: 800 1.35rem Manrope;
  margin: 4px 0 0;
}
.arrows {
  display: flex;
  gap: 7px;
}
.arrows button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 12px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.project-track::-webkit-scrollbar {
  display: none;
}
.project-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.project-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  background: #edf2f5;
}
.project-card div {
  padding: 16px;
}
.project-card span {
  font: 800 .66rem Manrope;
  color: var(--brand);
}
.project-card h4 {
  font: 800 1rem Manrope;
  margin: 7px 0;
}
.project-card p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5db;
}
.dots i.active {
  width: 20px;
  border-radius: 999px;
  background: var(--brand);
}
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-content .eyebrow {
  color: #9cd2ee;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.steps div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}
.steps b {
  display: block;
  color: #8cd4f5;
  font-size: .75rem;
  margin-bottom: 18px;
}
.steps span {
  font-weight: 700;
}
footer {
  background: #0b151d;
  color: #fff;
  padding: 48px 0 86px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 50px;
}
.footer-grid b {
  font: 800 1.2rem Manrope;
}
.footer-grid p, .footer-grid span, .footer-grid a {
  display: block;
  color: #a9b8c0;
  font-size: .84rem;
  line-height: 1.8;
}
.mobile-sticky {
  display: none;
}
.reveal.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease,transform .65s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.delay {
  transition-delay: .1s;
}
@media (max-width:1040px) {
.desktop-nav {
  gap: 14px;
  font-size: .78rem;
}
.hero-grid {
  grid-template-columns: 1fr .6fr;
  gap: 34px;
}
}
@media (max-width:820px) {
.desktop-nav, .header-cta {
  display: none;
}
.header-grid {
  grid-template-columns: 1fr auto;
}
.menu-toggle {
  display: block;
}
.hero {
  min-height: auto;
}
.hero-grid {
  grid-template-columns: 1fr;
  padding: 82px 0 54px;
}
.hero-form-card {
  max-width: none;
}
.hero-media {
  background-position: 64% center;
}
.hero-overlay {
  background: linear-gradient(0deg,rgba(7,18,27,.97),rgba(7,18,27,.64) 70%,rgba(7,18,27,.28));
}
.section {
  padding: 70px 0;
}
.section-heading.split, .split-content {
  grid-template-columns: 1fr;
}
.section-heading.split {
  gap: 14px;
}
.projects-panel {
  padding: 16px;
}
.footer-grid {
  grid-template-columns: 1fr 1fr;
}
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px max(12px,env(safe-area-inset-right)) max(8px,env(safe-area-inset-bottom)) max(12px,env(safe-area-inset-left));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-sticky a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 12px;
  font-weight: 800;
}
.mobile-sticky a:first-child {
  border: 1px solid var(--line);
}
.mobile-sticky a:last-child {
  background: var(--brand);
  color: #fff;
}
}
@media (max-width:560px) {
.shell {
  width: min(100% - 28px,1180px);
}
.site-header {
  height: 68px;
}
.mobile-menu {
  top: 68px;
}
.hero-grid {
  padding: 64px 0 42px;
}
.hero h1 {
  font-size: clamp(2.7rem,13vw,4.2rem);
}
.hero p {
  font-size: .98rem;
}
.hero-actions {
  display: grid;
}
.hero-actions .btn {
  width: 100%;
}
.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-form-card {
  padding: 22px;
  border-radius: 20px;
}
.section {
  padding: 58px 0;
}
.section-heading {
  margin-bottom: 26px;
}
.section-heading h2, .split-content h2 {
  font-size: clamp(2rem,10vw,3rem);
}
.project-track {
  grid-auto-columns: 88%;
}
.project-card img {
  aspect-ratio: 4/3;
}
.steps {
  grid-template-columns: 1fr;
}
.footer-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}
footer {
  padding-bottom: 96px;
}
}
@media (prefers-reduced-motion:reduce) {
html {
  scroll-behavior: auto;
}
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.btn {
  transition: none;
}
}
.brand-symbol {
  object-fit: contain;
  flex: 0 0 auto;
}
.energy-system {
  background: linear-gradient(180deg,#fff,#f6f9fb);
}
.energy-system-grid, .energy-page-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
}
.energy-system h2, .energy-page-grid h2 {
  font: 800 clamp(2.2rem,4vw,4rem)/1.02 Manrope;
  margin: 10px 0 18px;
  letter-spacing: -.04em;
}
.energy-system p, .energy-page-grid p {
  color: var(--muted);
  line-height: 1.65;
}
.feature-image {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.subhero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.subhero-media {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
}
.subhero-overlay {
  position: absolute;
  inset: 0;
}
.subhero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 70px;
}
.subhero h1 {
  font: 800 clamp(3rem,5.6vw,5.6rem)/.97 Manrope;
  margin: 12px 0 0;
  letter-spacing: -.05em;
  max-width: 920px;
}
.subhero p {
  max-width: 720px;
  color: #e6eef2;
  font-size: 1.06rem;
  line-height: 1.65;
  margin-top: 22px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 34px;
}
.service-detail-grid.compact {
  grid-template-columns: 1fr 1fr;
}
.service-detail-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #fff;
}
.service-detail-grid h3 {
  font: 800 1.08rem Manrope;
  margin: 0 0 9px;
}
.service-detail-grid p {
  font-size: .86rem;
  margin: 0;
  color: var(--muted);
}
.dark-section {
  background: #0d1821;
  color: #fff;
  padding: 90px 0;
}
.dark-section h2 {
  color: #fff;
}
.dark-section p {
  color: #b7c6ce;
}
.works-window .projects-panel {
  max-width: none;
}
.energy-visual {
  background: #0b1218;
}
@media (max-width:900px) {
.energy-system-grid, .energy-page-grid {
  grid-template-columns: 1fr;
}
.service-detail-grid {
  grid-template-columns: 1fr 1fr;
}
.subhero {
  min-height: 620px;
}
}
@media (max-width:560px) {
.brand-symbol {
  width: 36px;
  height: 36px;
}
.subhero {
  min-height: 690px;
}
.subhero-overlay {
  background: linear-gradient(0deg,rgba(7,18,27,.97),rgba(7,18,27,.64) 70%,rgba(7,18,27,.2));
}
.subhero-inner {
  padding: 110px 0 46px;
}
.subhero h1 {
  font-size: clamp(2.65rem,12vw,4rem);
}
.service-detail-grid, .service-detail-grid.compact {
  grid-template-columns: 1fr;
}
.feature-image {
  border-radius: 20px;
}
}
:root {
  --header-h: 82px;
}
body {
  background: #fff;
}
.header-grid {
  min-height: var(--header-h);
}
.brand {
  gap: 12px;
}
.brand b {
  font-size: 1.04rem;
  letter-spacing: .02em;
}
.brand small {
  font-size: .68rem;
  letter-spacing: .06em;
}
.brand-symbol {
  width: 46px;
  height: 46px;
}
.desktop-nav a {
  color: #132735;
}
.desktop-nav a:hover {
  color: var(--brand);
}
.header-cta {
  padding-inline: 20px;
}
.hero-overlay, .subhero-overlay {
  background: linear-gradient(90deg,rgba(5,18,28,.96) 0%,rgba(5,18,28,.84) 34%,rgba(5,18,28,.42) 66%,rgba(5,18,28,.12) 100%) !important;
}
.hero h1, .subhero h1 {
  text-shadow: 0 3px 28px rgba(0,0,0,.32);
}
.hero p, .subhero p {
  text-shadow: 0 2px 14px rgba(0,0,0,.22);
}
.hero-copy, .subhero-inner {
  max-width: 1180px;
}
.hero-copy>* {
  max-width: 780px;
}
.feature-image {
  background: #0e151a;
}
.feature-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.contact-section-v3 {
  background: linear-gradient(180deg,#eef4f8,#fff);
}
.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: start;
}
.contact-copy h2 {
  font: 800 clamp(2.3rem,4vw,4.1rem)/1.02 Manrope,sans-serif;
  letter-spacing: -.045em;
  margin: 10px 0 18px;
}
.contact-copy>p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}
.contact-facts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.contact-facts>div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.contact-facts strong {
  display: block;
  font: 700 .88rem Manrope,sans-serif;
}
.contact-facts span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  margin-top: 4px;
}
.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(19,45,62,.10);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font: 700 .78rem Manrope,sans-serif;
  color: #243944;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #ccd7de;
  border-radius: 13px;
  background: #fbfcfd;
  padding: 13px 14px;
  font: 500 1rem/1.3 Inter,sans-serif;
  color: #12212b;
}
.lead-form textarea {
  min-height: 130px;
  resize: vertical;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: 3px solid rgba(33,108,153,.16);
  border-color: var(--brand);
}
.btn-wide {
  width: 100%;
  justify-content: center;
}
.form-status {
  font-size: .76rem;
  color: #72808a;
  margin-top: 10px;
  line-height: 1.45;
}
.map-shell {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #dfe8ed;
  box-shadow: 0 24px 70px rgba(18,45,62,.10);
}
.mobile-menu {
  padding: 18px 20px 26px;
}
.mobile-menu a {
  font: 800 1.05rem Manrope,sans-serif;
  padding: 15px 8px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-cta {
  margin-top: 12px;
  color: var(--brand) !important;
}
@media (max-width:980px) {
.desktop-nav {
  gap: 18px;
}
.desktop-nav a {
  font-size: .9rem;
}
.contact-layout {
  grid-template-columns: 1fr;
}
}
@media (max-width:760px) {
:root {
  --header-h: 72px;
}
.shell {
  width: min(100% - 26px,1180px);
}
.brand-symbol {
  width: 40px;
  height: 40px;
}
.brand b {
  font-size: .9rem;
}
.brand small {
  font-size: .58rem;
}
.header-cta {
  display: none;
}
.hero-overlay, .subhero-overlay {
  background: linear-gradient(0deg,rgba(5,18,28,.97) 0%,rgba(5,18,28,.82) 58%,rgba(5,18,28,.30) 100%) !important;
}
.hero-copy, .subhero-inner {
  padding-top: 190px !important;
  padding-bottom: 46px !important;
}
.hero h1, .subhero h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem,13vw,4.2rem) !important;
}
.hero p, .subhero p {
  font-size: .98rem;
}
.form-row {
  grid-template-columns: 1fr;
}
.lead-form {
  padding: 20px;
  border-radius: 20px;
}
.map-shell {
  min-height: 510px;
  border-radius: 22px;
}
}
@media (max-width:480px) {
.map-shell {
  min-height: 470px;
}
}
.hero-grid {
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(3.2rem,5.5vw,5.8rem);
}
.hero-form-card {
  align-self: center;
  margin-top: 74px;
  background: rgba(250,252,253,.97);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.hero-lead-form label {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  color: #31444f;
  font: 700 .72rem Manrope,sans-serif;
}
.hero-lead-form input, .hero-lead-form select, .hero-lead-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #ccd7de;
  border-radius: 11px;
  padding: 10px 12px;
  background: #fff;
  color: #13242e;
  font: 500 .92rem Inter,sans-serif;
}
.hero-lead-form textarea {
  resize: vertical;
  min-height: 74px;
}
.hero-lead-form small {
  display: block;
  margin-top: 8px;
  color: #71818b;
  font-size: .7rem;
}
.direction-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.direction-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20,47,64,.05);
  transition: transform .25s ease,box-shadow .25s ease;
}
.direction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(20,47,64,.12);
}
.direction-media {
  background: #eaf0f3;
  overflow: hidden;
}
.direction-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.direction-body {
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.direction-body>span {
  color: var(--brand);
  font: 800 .7rem Manrope,sans-serif;
}
.direction-body h3 {
  margin: 13px 0 9px;
  font: 800 1.15rem Manrope,sans-serif;
}
.direction-body p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.direction-body b {
  margin-top: auto;
  color: var(--brand);
  font: 800 .78rem Manrope,sans-serif;
}
.subhero-overlay {
  background: linear-gradient(90deg,rgba(5,17,26,.96),rgba(5,17,26,.74) 48%,rgba(5,17,26,.18)) !important;
}
.subhero h1, .subhero p {
  text-shadow: 0 4px 28px rgba(0,0,0,.38);
}
@media (max-width:1100px) {
.direction-grid {
  grid-template-columns: 1fr 1fr;
}
.hero-grid {
  grid-template-columns: minmax(0,1fr) 360px;
}
}
@media (max-width:900px) {
.hero {
  min-height: auto;
}
.hero-grid {
  grid-template-columns: 1fr;
  padding-bottom: 36px;
}
.hero-copy {
  padding: 150px 0 20px;
}
.hero-form-card {
  width: min(100%,620px);
  margin: 0;
}
}
@media (max-width:620px) {
.direction-grid {
  grid-template-columns: 1fr;
}
.direction-card {
  grid-template-columns: 42% 58%;
  grid-template-rows: minmax(160px,auto);
}
.direction-media {
  min-height: 160px;
}
.direction-body {
  padding: 18px;
}
.direction-body h3 {
  font-size: 1.05rem;
}
.direction-body p {
  font-size: .8rem;
}
.hero-copy {
  padding-top: 135px !important;
}
.hero-copy h1 {
  font-size: clamp(2.65rem,13vw,4rem) !important;
  max-width: 10ch;
}
}
@media (max-width:430px) {
.direction-card {
  grid-template-columns: 1fr;
  grid-template-rows: 190px auto;
}
.direction-media {
  min-height: 190px;
}
}
.direction-media picture, .direction-media picture img {
  width: 100%;
  height: 100%;
  display: block;
}
.direction-media picture img {
  object-fit: cover;
  object-position: center;
}
.eyebrow-on-light {
  display: inline-flex;
  color: #0c5f91 !important;
  background: #e9f4fb !important;
  border: 1px solid #c8e4f4 !important;
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 800;
  letter-spacing: .06em;
}
.v5-engineering-demo {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(17,44,61,.08);
}
.v5-demo-head {
  max-width: 720px;
  margin-bottom: 18px;
}
.v5-demo-head h3 {
  margin: 10px 0 8px;
  font: 800 clamp(1.7rem,3vw,2.7rem)/1.05 Manrope,sans-serif;
  letter-spacing: -.035em;
}
.v5-demo-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.v5-ba {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16/9;
  background: #111;
}
.v5-ba .ba-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.v5-ba picture, .v5-ba img {
  width: 100%;
  height: 100%;
  display: block;
}
.v5-ba img {
  object-fit: cover;
}
.v5-ba .ba-reveal {
  overflow: hidden;
  width: 50%;
}
@media (max-width:620px) {
.v5-engineering-demo {
  padding: 14px;
  border-radius: 20px;
}
.v5-ba {
  aspect-ratio: 4/5;
  border-radius: 16px;
}
.v5-demo-head h3 {
  font-size: 1.65rem;
}
}
.eyebrow-contrast {
  display: inline-flex !important;
  align-items: center;
  color: #0b5f94 !important;
  background: #eef7fc !important;
  border: 1px solid #c8e4f4 !important;
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 800;
  letter-spacing: .055em;
}
.dark-section .eyebrow-contrast, .hero .eyebrow-contrast, .subhero .eyebrow-contrast {
  color: #dff3ff !important;
  background: rgba(8,45,68,.72) !important;
  border-color: rgba(142,211,248,.34) !important;
  backdrop-filter: blur(10px);
}
.hero-media-v6 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-media-v6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v6-visual-proof {
  background: #f4f7f9;
}
.visual-proof-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
}
.visual-proof-copy h2 {
  font: 800 clamp(2rem,4vw,4rem)/1.02 Manrope,sans-serif;
  letter-spacing: -.04em;
  margin: 12px 0 16px;
}
.visual-proof-copy p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 590px;
}
.visual-proof-media {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(20,46,62,.12);
  background: #dce5ea;
}
.visual-proof-media img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width:800px) {
.visual-proof-grid {
  grid-template-columns: 1fr;
}
.visual-proof-copy h2 {
  font-size: 2.2rem;
}
}
.v7-story {
  background: #f5f8fa;
}
.v7-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: center;
}
.v7-reverse {
  grid-template-columns: 1.18fr .82fr;
}
.v7-copy h2 {
  margin: 12px 0 16px;
  font: 800 clamp(2.1rem,4vw,4rem)/1.02 Manrope,sans-serif;
  letter-spacing: -.045em;
}
.v7-copy p {
  color: var(--muted);
  line-height: 1.65;
}
.v7-points {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}
.v7-points span {
  position: relative;
  padding-left: 21px;
  font-weight: 650;
}
.v7-points span:before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.v7-photo {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: #e5ebef;
  box-shadow: 0 24px 70px rgba(17,44,61,.12);
}
.v7-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (max-width:800px) {
.v7-grid, .v7-reverse {
  grid-template-columns: 1fr;
  gap: 22px;
}
.v7-reverse .v7-photo {
  order: 2;
}
.v7-reverse .v7-copy {
  order: 1;
}
.v7-copy h2 {
  font-size: 2.15rem;
}
.v7-photo img {
  aspect-ratio: 4/5;
}
}
.series-civili-section {
  background: #f5f7f8;
}
.series-ref-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 210px;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 2px 10px;
  scrollbar-width: thin;
}
.series-ref-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.series-ref-card.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(20,105,157,.13);
}
.series-ref-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}
.series-ref-card div {
  padding: 11px 12px 13px;
}
.series-ref-card span, .series-ref-card strong, .series-ref-card small {
  display: block;
}
.series-ref-card span {
  color: var(--brand);
  font: 800 .63rem Manrope,sans-serif;
  text-transform: uppercase;
}
.series-ref-card strong {
  margin-top: 4px;
  font: 800 .84rem Manrope,sans-serif;
}
.series-ref-card small {
  margin-top: 3px;
  color: var(--muted);
}
@media (max-width:620px) {
.series-ref-rail {
  grid-auto-columns: 72vw;
}
.series-ref-card img {
  aspect-ratio: 5/6;
}
}
.hero {
  min-height: 720px;
}
.hero-grid {
  grid-template-columns: minmax(0,720px) 1fr;
  gap: 0;
}
.hero-copy {
  padding: 120px 0 70px;
}
.hero-copy h1 {
  max-width: 720px;
}
.hero-copy p {
  max-width: 610px;
}
.hero-overlay {
  background: linear-gradient(90deg,
      rgba(6,17,25,.84) 0%,
      rgba(6,17,25,.70) 27%,
      rgba(6,17,25,.32) 47%,
      rgba(6,17,25,.08) 61%,
      rgba(6,17,25,0) 72%) !important;
}
.hero-media-v6 img {
  object-position: center 48%;
}
.hero-request-strip {
  background: #f5f8fa;
  border-bottom: 1px solid var(--line);
  padding: 42px 0 48px;
}
.hero-request-grid {
  display: grid;
}
.hero-request-copy h2 {
  font: 800 clamp(2rem,3vw,3.2rem)/1.03 Manrope;
  letter-spacing: -.04em;
  margin: 9px 0 12px;
}
.hero-request-copy p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}
.hero-form-inline {
  margin: 0 !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 14px 42px rgba(16,32,44,.08) !important;
  backdrop-filter: none !important;
}
.hero-form-inline h2 {
  font-size: 1.45rem;
}
.hero-form-inline p {
  font-size: .82rem;
}
.hero-form-inline label {
  margin-top: 8px;
}
.hero-form-inline .wide {
  margin-top: 12px;
}
@media (max-width:900px) {
.hero {
  min-height: 640px;
}
.hero-grid {
  grid-template-columns: 1fr;
}
.hero-copy {
  padding: 135px 0 62px;
}
.hero-overlay {
  background: linear-gradient(0deg,
      rgba(6,17,25,.83) 0%,
      rgba(6,17,25,.56) 48%,
      rgba(6,17,25,.14) 78%,
      rgba(6,17,25,.04) 100%) !important;
}
.hero-request-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}
}
@media (max-width:620px) {
.hero {
  min-height: 620px;
}
.hero-copy {
  padding-top: 110px !important;
  padding-bottom: 42px;
}
.hero-request-strip {
  padding: 30px 0 34px;
}
.hero-request-grid {
  gap: 18px;
}
.hero-form-inline {
  padding: 20px !important;
}
.hero-media-v6 img {
  object-position: 58% center;
}
}
#progetti .section-heading {
  max-width: 760px;
}
#progetti .project-card img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
#progetti .project-card div {
  padding-top: 18px;
}
.signal-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  background: radial-gradient(circle at 15% 50%,rgba(29,130,216,.15),transparent 27%),
    linear-gradient(100deg,#071b2d,#0b2946 55%,#071b2d);
  border-top: 1px solid rgba(118,195,245,.16);
  border-bottom: 1px solid rgba(118,195,245,.16);
  overflow: hidden;
}
.signal-strip:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,transparent 0,transparent 89px,rgba(255,255,255,.025) 90px);
  pointer-events: none;
}
@property --p {
}
.hero-request-copy {
  grid-template-columns: 150px 1fr;
  column-gap: 24px;
  align-items: start;
}
.hero-request-copy .eyebrow, .hero-request-copy h2, .hero-request-copy p {
  grid-column: 2;
}
@media (max-width:900px) {
.hero-request-copy {
  grid-template-columns: 110px 1fr;
}
}
@media (max-width:620px) {
.hero-request-copy {
  display: block;
}
}
.quick-map-shell {
  overflow: hidden !important;
  position: relative !important;
  box-shadow: 0 12px 30px rgba(7,27,43,.12);
}
@media (max-width:620px) {
.quick-live-map, .quick-map-shell {
  width: 170px !important;
  height: 170px !important;
  min-height: 170px !important;
}
}
.quick-map-shell {
  width: 100% !important;
  height: 220px !important;
  min-height: 220px !important;
  border-radius: 18px !important;
}
@media (max-width:900px) {
.quick-live-map, .quick-map-shell {
  height: 190px !important;
  min-height: 190px !important;
}
}
@media (max-width:620px) {
.quick-live-map, .quick-map-shell {
  width: 100% !important;
  height: 165px !important;
  min-height: 165px !important;
}
}
#progetti .v25-showcase-stack {
  display: grid;
  gap: 28px;
}
#progetti .v25-before-after, #progetti .v25-gallery-card {
  margin-top: 0;
}
#progetti .v25-before-after .v5-demo-head, #progetti .v25-gallery-head {
  max-width: 860px;
  min-height: 0;
}
#progetti .v25-before-after .v5-ba {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16/9;
}
.v25-gallery-card {
  overflow: hidden;
}
.v25-gallery-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f6f8fa;
  aspect-ratio: 16/9;
  min-height: 430px;
}
.v25-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  z-index: 1;
}
.v25-slide-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 560px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.90);
  color: #173247;
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 8px 28px rgba(15,38,56,.10);
}
.v25-slide-copy span {
  font: 800 .72rem/1 Manrope,sans-serif;
  letter-spacing: .09em;
  color: #197acb;
}
.v25-slide-copy h4 {
  margin: 5px 0 4px;
  color: #173247;
  font-size: 1.12rem;
}
.v25-slide-copy p {
  margin: 0;
  color: #5d7180;
  font-size: .85rem;
  line-height: 1.45;
}
.v25-gallery-arrow {
  position: absolute;
  z-index: 7;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.94);
  color: #10283b;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(3,20,33,.18);
}
.v25-gallery-arrow.prev {
  left: 16px;
}
.v25-gallery-arrow.next {
  right: 16px;
}
.v25-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}
.v25-gallery-footer {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 2px 2px;
}
.v25-gallery-counter {
  display: flex;
  align-items: baseline;
  gap: 2px;
  min-width: 52px;
  color: #173247;
  font: 800 1rem/1 Manrope,sans-serif;
}
.v25-gallery-counter small {
  font-size: .68rem;
  color: #8293a0;
}
.v25-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  padding: 2px 1px 7px;
  scroll-snap-type: x proximity;
}
.v25-thumb.is-active {
  opacity: 1;
  border-color: #197acb;
  transform: translateY(-1px);
}
@media (max-width:900px) {
.v25-gallery-viewport {
  min-height: 0;
  aspect-ratio: 4/3;
}
}
@media (max-width:620px) {
#progetti .v25-showcase-stack {
  gap: 20px;
}
.v25-gallery-card {
  padding: 14px;
}
.v25-gallery-viewport {
  border-radius: 16px;
  aspect-ratio: 4/5;
}
.v25-slide-copy {
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 11px 12px;
}
.v25-slide-copy p {
  display: none;
}
.v25-gallery-arrow {
  width: 42px;
  height: 42px;
}
.v25-gallery-arrow.prev {
  left: 9px;
}
.v25-gallery-arrow.next {
  right: 9px;
}
.v25-gallery-footer {
  grid-template-columns: 1fr;
  gap: 9px;
}
.v25-gallery-counter {
  padding-left: 2px;
}
}
.v26-service-hero {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: none !important;
}
@media (max-width:620px) {
.v26-service-hero {
  background-position: center !important;
}
}
.signal-strip-v26 {
  background: linear-gradient(105deg,#06192b,#082847 54%,#06192b);
  padding: 0;
  overflow: hidden;
}
.signal-grid-v26 {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  min-height: 124px;
}
.metric-card-v26 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 16px;
  border-right: 1px solid rgba(255,255,255,.09);
  color: #eef7ff;
  overflow: hidden;
}
.metric-card-v26:last-child {
  border-right: 0;
}
.metric-icon-v26 {
  font: 800 2.3rem/1 Manrope;
  color: #65b8ff;
  filter: drop-shadow(0 0 10px rgba(64,174,255,.32));
  min-width: 44px;
  text-align: center;
}
.m-energy .metric-icon-v26 {
  color: #ffc93e;
}
.m-water .metric-icon-v26 {
  color: #55b8ff;
}
.m-security .metric-icon-v26 {
  color: #9cc8ff;
}
.m-efficiency .metric-icon-v26 {
  color: #b890ff;
}
.m-impact .metric-icon-v26 {
  color: #8bd94d;
}
.metric-core-v26 {
  position: relative;
  min-width: 0;
  flex: 1;
  max-width: 150px;
  height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.metric-core-v26>span, .m-comfort>span {
  font: 500 .72rem/1.15 Inter,sans-serif;
  color: #f3f8fb;
  text-align: center;
  margin-top: 5px;
  white-space: nowrap;
}
.metric-number-v26 {
  position: absolute;
  right: 0;
  top: 1px;
  font: 800 1rem/1 Manrope;
  color: #51baff;
  text-shadow: 0 0 14px rgba(67,180,255,.22);
}
.m-energy .metric-number-v26 {
  color: #ffd145;
}
.m-water .metric-number-v26 {
  color: #4fc2ff;
}
.m-security .metric-number-v26 {
  color: #4fc2ff;
}
.m-efficiency .metric-number-v26 {
  color: #c27cff;
}
.m-impact .metric-number-v26 {
  color: #82de4b;
}
.metric-spark-v26 {
  width: 100%;
  height: 56px;
  overflow: visible;
  filter: drop-shadow(0 0 4px currentColor);
}
.metric-spark-v26 path {
  fill: none;
  stroke: #45b4ff;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}
.signal-strip-v26.is-metric-active .metric-spark-v26 path:not(.metric-arrow-tip) {
  animation: v26Draw 5.8s cubic-bezier(.16,.72,.22,1) forwards;
}
.signal-strip-v26.is-metric-active .metric-spark-v26 .metric-arrow-tip {
  animation: v26ArrowTip .72s ease 5.02s forwards;
}
.metric-spark-v26.down path {
  stroke: #ffc62f;
}
.m-water .metric-spark-v26.down path {
  stroke: #39b8ff;
}
.metric-spark-v26.green path {
  stroke: #7fdb43;
}
.m-efficiency .metric-spark-v26.up path {
  stroke: #be7cff;
}
.metric-spark-v26 .metric-arrow-tip {
  stroke-width: 2.3;
  opacity:0;
  stroke-dasharray:30;
  stroke-dashoffset:30;
}
@keyframes v26ArrowTip {
  0% { opacity:0; stroke-dashoffset:30; }
  24% { opacity:.28; }
  100% { opacity:1; stroke-dashoffset:0; }
}
@keyframes v26Draw {
  to {
    stroke-dashoffset: 0;
  }
}
.m-comfort {
  flex-direction: column;
  gap: 0;
}
.metric-ring-v26 {
  --ring: 0;
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#8ed341 calc(var(--ring)*1%),#ffd04d 0 85%,rgba(255,255,255,.12) 0);
  --ring:0;
}
.metric-ring-v26:after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #09243d;
}
.metric-ring-v26 .metric-number-v26 {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  color: #dff76f;
  font-size: 1.05rem;
}
.signal-strip-v26.is-metric-active .metric-ring-v26 {
  animation:v26Ring 5.8s cubic-bezier(.16,.72,.22,1) forwards;
}
@keyframes v26Ring {
  0% { --ring:0; filter:drop-shadow(0 0 0 rgba(142,211,65,0)); }
  76% { filter:drop-shadow(0 0 4px rgba(142,211,65,.08)); }
  100% { --ring:85; filter:drop-shadow(0 0 8px rgba(142,211,65,.12)); }
}

.quick-live-map {
  width: 100% !important;
}
@media (max-width:1050px) {
.signal-grid-v26 {
  grid-template-columns: repeat(6,minmax(150px,1fr));
  overflow-x: auto;
}
.metric-card-v26 {
  min-width: 150px;
}
}
@media (max-width:620px) {
.signal-grid-v26 {
  grid-template-columns: repeat(6,145px);
}
.metric-card-v26 {
  min-width: 145px;
  padding: 14px 12px;
}
.metric-core-v26>span, .m-comfort>span {
  font-size: .66rem;
}
}
@media (prefers-reduced-motion:reduce) {
.metric-spark-v26 path {
  stroke-dashoffset: 0;
  animation: none;
}
.metric-ring-v26 {
  --ring: 85;
  animation: none;
}
}
.hero-request-grid {
  grid-template-columns: minmax(0,1.35fr) minmax(330px,.65fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
}
.hero-request-copy {
  display: flex !important;
  flex-direction: column !important;
  padding-top: 0 !important;
  min-width: 0;
}
.hero-request-copy>.eyebrow, .hero-request-copy>h2, .hero-request-copy>p:not(.territory-note) {
  display: none !important;
}
.quick-live-map {
  margin-top: 0 !important;
  height: 100% !important;
  min-height: 390px !important;
}
.hero-form-inline {
  width: 100% !important;
  min-height: 390px !important;
  aspect-ratio: 1/1;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  border-radius: 22px !important;
  padding: 24px !important;
}
.hero-form-inline textarea {
  min-height: 72px;
  resize: vertical;
}
@media (max-width:900px) {
.hero-request-grid {
  grid-template-columns: 1fr !important;
}
.quick-live-map {
  height: 260px !important;
  min-height: 260px !important;
}
.hero-form-inline {
  aspect-ratio: auto;
  min-height: 0 !important;
}
}
@media (max-width:620px) {
.quick-live-map {
  height: 210px !important;
  min-height: 210px !important;
}
}
@media (min-width:901px) {
#richiesta-rapida .hero-request-grid {
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}
#richiesta-rapida .hero-request-copy, #richiesta-rapida .hero-form-inline {
  width: 100% !important;
  min-width: 0 !important;
  height: 420px !important;
  min-height: 420px !important;
  aspect-ratio: auto !important;
  box-sizing: border-box !important;
}
#richiesta-rapida .quick-live-map {
  width: 100% !important;
  height: 420px !important;
  min-height: 420px !important;
  margin: 0 !important;
}
#richiesta-rapida .hero-form-inline {
  justify-content: center !important;
  overflow: hidden;
}
}
@media (min-width:901px) {
#richiesta-rapida .hero-request-grid {
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}
#richiesta-rapida .hero-request-copy {
  display: block !important;
  height: 460px !important;
  min-height: 460px !important;
  padding: 0 !important;
}
#richiesta-rapida .quick-live-map {
  width: 100% !important;
  height: 460px !important;
  min-height: 460px !important;
  margin: 0 !important;
}
#richiesta-rapida .hero-form-inline {
  width: 100% !important;
  height: 460px !important;
  min-height: 460px !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
  overflow: auto !important;
}
}
#richiesta-rapida {
  padding-top: 54px !important;
  padding-bottom: 76px !important;
  overflow: visible !important;
}
@media (min-width:901px) {
#richiesta-rapida .hero-request-grid {
  align-items: start !important;
}
#richiesta-rapida .hero-request-copy {
  height: 520px !important;
  min-height: 520px !important;
}
#richiesta-rapida .quick-live-map {
  height: 520px !important;
  min-height: 520px !important;
}
#richiesta-rapida .hero-form-inline {
  height: auto !important;
  min-height: 520px !important;
  overflow: visible !important;
  padding: 34px 32px 30px !important;
  align-self: start !important;
}
#richiesta-rapida .hero-form-inline .eyebrow {
  display: inline-block !important;
  margin-bottom: 4px !important;
}
}
@media (max-width:900px) {
#richiesta-rapida {
  padding-top: 36px !important;
}
}
.v34-ftv-system {
  gap: 16px !important;
}
.v34-ftv-system .v34-ftv-card {
  position: relative;
  min-height: 190px;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
  background-image: linear-gradient(180deg,rgba(5,19,31,.04) 20%,rgba(5,19,31,.88) 100%),
    var(--card-bg) !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 14px 30px rgba(7,24,38,.12);
}
.v34-ftv-system .v34-ftv-card>div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px 20px;
  z-index: 1;
}
.v34-ftv-system .v34-ftv-card h3 {
  margin: 0 0 6px !important;
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.30);
}
.v34-ftv-system .v34-ftv-card p {
  color: rgba(255,255,255,.88) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
@media (max-width:620px) {
.v34-ftv-system .v34-ftv-card {
  min-height: 180px;
}
}
.project-track-ftv {
  grid-auto-columns: min(72%,520px);
}
@media (max-width:820px) {
.project-track-ftv {
  grid-auto-columns: 84%;
}
}
@media (max-width:560px) {
.project-track-ftv {
  grid-auto-columns: 90%;
}
}
.service-fragment-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 28px 0 30px;
  position: relative;
  z-index: 5;
}
.fragment-nav-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.fragment-nav-head p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}
.fragment-links {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(145px,1fr));
  gap: 10px;
}
.fragment-links a {
  position: relative;
  display: flex;
  min-height: 82px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg,#fff,#f8fafb);
  transition: .2s ease;
  overflow: hidden;
}
.fragment-links a:after {
  content: "↓";
  position: absolute;
  right: 13px;
  top: 12px;
  color: #9db0bd;
  font-weight: 800;
}
.fragment-links a:hover {
  transform: translateY(-2px);
  border-color: #91bddb;
  box-shadow: 0 10px 26px rgba(15,71,110,.09);
}
.fragment-links b {
  font: 800 .91rem Manrope;
  color: var(--ink);
  padding-right: 16px;
}
.fragment-links small {
  font-size: .70rem;
  color: var(--muted);
  margin-top: 5px;
}
.fragment-target {
  scroll-margin-top: 118px;
}
.fragment-target:target {
  outline: 3px solid rgba(13,94,168,.15);
  outline-offset: 5px;
}
.security-fragment-grid {
  grid-template-columns: repeat(3,1fr);
}
@media (max-width:820px) {
.service-fragment-nav {
  padding: 22px 0;
}
.fragment-nav-head {
  display: block;
  margin-bottom: 12px;
}
.fragment-nav-head p {
  margin-top: 5px;
}
.fragment-links {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  gap: 9px;
  padding-bottom: 5px;
  scrollbar-width: none;
}
.fragment-links::-webkit-scrollbar {
  display: none;
}
.fragment-links a {
  flex: 0 0 154px;
  scroll-snap-align: start;
  min-height: 76px;
}
.security-fragment-grid {
  grid-template-columns: 1fr 1fr;
}
}
@media (max-width:560px) {
.security-fragment-grid {
  grid-template-columns: 1fr;
}
}
.v38-series-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 12px;
}
.v38-series-toolbar>span {
  font: 800 .78rem Manrope,sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.v38-series-rail {
  padding-top: 4px;
  grid-auto-columns: 230px;
}
.v38-series-rail .series-ref-card {
  cursor: default;
}
.v38-series-rail .series-ref-card.is-active {
  outline: none;
}
@media (max-width:820px) {
.v38-series-rail {
  grid-auto-columns: 72vw;
}
}
.project-track-security {
  grid-auto-columns: min(72%,520px);
}
.project-track-security .project-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #eef2f4;
}
@media (max-width:820px) {
.project-track-security {
  grid-auto-columns: 84%;
}
}
@media (max-width:560px) {
.project-track-security {
  grid-auto-columns: 90%;
}
}
:root {
  --v42-ease: cubic-bezier(.2,.75,.25,1);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 10px 0;
  pointer-events: none;
}
.site-header .header-grid {
  min-height: 68px;
  height: auto;
  padding: 9px 13px 9px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(12,29,41,.20);
  box-shadow: 0 12px 34px rgba(5,18,28,.10);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition: background .38s var(--v42-ease),border-color .38s var(--v42-ease),box-shadow .38s var(--v42-ease),transform .38s var(--v42-ease);
  pointer-events: auto;
}
.site-header:not(.is-scrolled) .brand b, .site-header:not(.is-scrolled) .brand small, .site-header:not(.is-scrolled) .desktop-nav a {
  color: #fff;
}
.site-header:not(.is-scrolled) .brand small {
  opacity: .78;
}
.site-header:not(.is-scrolled) .menu-toggle span {
  background: #fff;
}
.site-header.is-scrolled .header-grid {
  background: rgba(255,255,255,.94);
  border-color: rgba(16,32,44,.10);
  box-shadow: 0 14px 38px rgba(13,34,47,.10);
}
.desktop-nav {
  gap: 22px;
}
.desktop-nav a {
  font: 700 1.03rem/1.1 Manrope,sans-serif;
  padding: 12px 2px;
  transition: color .2s ease,opacity .2s ease;
}
.site-header:not(.is-scrolled) .desktop-nav a:hover {
  color: #fff;
  opacity: .72;
}
.site-header .header-cta {
  border-radius: 14px;
}
.mobile-menu {
  top: 88px;
  left: 14px;
  right: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(6,22,33,.16);
}
html {
  scroll-padding-top: 104px;
}
.reveal {
  transform: translateY(26px);
  transition: opacity .78s var(--v42-ease),transform .78s var(--v42-ease);
}
.v42-compare-grid .reveal:nth-child(2), .v42-image-rail .reveal:nth-child(2) {
  transition-delay: .06s;
}
.v42-compare-grid .reveal:nth-child(3), .v42-image-rail .reveal:nth-child(3) {
  transition-delay: .12s;
}
.v42-compare-grid .reveal:nth-child(4), .v42-image-rail .reveal:nth-child(4) {
  transition-delay: .18s;
}
.word-reveal .v42-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.7em);
  filter: blur(3px);
  transition: opacity .6s var(--v42-ease),transform .7s var(--v42-ease),filter .7s var(--v42-ease);
  transition-delay: calc(var(--i) * 48ms);
}
.word-reveal.v42-words-in .v42-word {
  opacity: 1;
  transform: none;
  filter: none;
}
.v42-living-section {
  background: linear-gradient(180deg,#fff 0%,#f4f7f9 100%);
  overflow: hidden;
}
.v42-heading {
  max-width: 900px;
}
.v42-heading h2 {
  max-width: 840px;
  margin-inline: auto;
}
.v42-compare-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
}
.v42-hover-compare {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(14,39,54,.06);
  outline: none;
  transition: transform .38s var(--v42-ease),box-shadow .38s var(--v42-ease);
}
.v42-hover-compare:hover, .v42-hover-compare:focus-visible, .v42-hover-compare.is-tech {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(14,39,54,.12);
}
.v42-compare-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #dfe6e9;
}
.v42-compare-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .9s var(--v42-ease),transform 1.15s var(--v42-ease);
}
.v42-tech {
  opacity: 0;
  transform: scale(1.025);
}
.v42-hover-compare.is-tech .v42-tech {
  opacity: 1;
  transform: scale(1);
}
.v42-hover-compare.is-tech .v42-base {
  opacity: .16;
  transform: scale(1.018);
}
.v42-state {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 8px 11px;
  border-radius: 999px;
  font: 800 .67rem/1 Manrope,sans-serif;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
  transition: opacity .35s ease,transform .35s ease;
}
.v42-state-base {
  left: 16px;
  color: #fff;
  background: rgba(10,26,37,.58);
}
.v42-state-tech {
  right: 16px;
  color: #163242;
  background: rgba(255,255,255,.9);
  opacity: 0;
  transform: translateY(-5px);
}
.v42-hover-compare.is-tech .v42-state-tech {
  opacity: 1;
  transform: none;
}
.v42-hover-compare.is-tech .v42-state-base {
  opacity: 0;
}
.v42-compare-copy {
  padding: 22px 23px 24px;
}
.v42-compare-copy>span {
  font: 800 .7rem Manrope,sans-serif;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--brand);
}
.v42-compare-copy h3 {
  font: 800 1.28rem/1.15 Manrope,sans-serif;
  letter-spacing: -.02em;
  margin: 8px 0;
}
.v42-compare-copy p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.58;
  margin: 0;
}
.v42-compare-wide {
  grid-column: span 1;
}
.v42-visual-library {
  padding-top: 76px;
  background: #fff;
}
.v42-library-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 26px;
}
.v42-library-head h2 {
  font: 800 clamp(2.1rem,3.5vw,3.7rem)/1.03 Manrope,sans-serif;
  letter-spacing: -.04em;
  margin: 10px 0 0;
}
.v42-library-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.v42-image-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px,31%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 1px 18px;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}
.v42-image-card {
  position: relative;
  margin: 0;
  min-height: 390px;
  border-radius: 24px;
  overflow: hidden;
  background: #e8eef1;
  scroll-snap-align: start;
}
.v42-image-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 1s var(--v42-ease);
}
.v42-image-card:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent,rgba(7,18,27,.78));
}
.v42-image-card:hover img {
  transform: scale(1.035);
}
.v42-image-card figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 17px;
  color: #fff;
  font: 800 .92rem Manrope,sans-serif;
}
@media (max-width:900px) {
.site-header {
  padding: 8px 0;
}
.site-header .header-grid {
  min-height: 62px;
  border-radius: 19px;
}
.mobile-menu {
  top: 80px;
}
.v42-library-head {
  grid-template-columns: 1fr;
  gap: 14px;
}
.v42-image-rail {
  grid-auto-columns: minmax(250px,72%);
}
}
@media (max-width:720px) {
.v42-compare-grid {
  grid-template-columns: 1fr;
}
.v42-compare-media {
  aspect-ratio: 4/3;
}
.v42-image-card {
  min-height: 340px;
}
.site-header .header-grid {
  padding: 7px 10px 7px 12px;
}
.brand small {
  display: none;
}
.brand b {
  font-size: .9rem;
}
}
@media (max-width:560px) {
.site-header {
  padding-top: 7px;
}
.site-header .header-grid {
  border-radius: 17px;
  min-height: 58px;
}
.mobile-menu {
  top: 74px;
}
.v42-image-rail {
  grid-auto-columns: 86%;
}
.v42-compare-copy {
  padding: 18px;
}
.v42-compare-grid {
  gap: 14px;
}
}
@media (prefers-reduced-motion:reduce) {
.word-reveal .v42-word {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}
.v42-hover-compare, .v42-compare-media img, .v42-image-card img {
  transition: none !important;
}
}
.desktop-nav {
  align-items: center;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-main {
  display: flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-chevron {
  font-size: .9em;
  line-height: 1;
  opacity: .62;
  transform: translateY(-1px);
  transition: transform .22s ease,opacity .22s ease;
}
.nav-has-dropdown:hover .nav-chevron, .nav-has-dropdown:focus-within .nav-chevron {
  transform: translateY(-1px) rotate(180deg);
  opacity: 1;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 270px;
  padding: 9px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(16,32,44,.10);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(11,31,44,.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%,-7px) scale(.985);
  transform-origin: top center;
  transition: opacity .2s ease,transform .24s var(--v42-ease),visibility .2s ease;
}
.nav-dropdown:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-has-dropdown:hover .nav-dropdown, .nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%,0) scale(1);
}
.desktop-nav .nav-dropdown a {
  display: block;
  color: #18303f !important;
  padding: 11px 12px;
  border-radius: 11px;
  font: 650 .86rem/1.25 Inter,sans-serif;
  letter-spacing: 0;
  opacity: 1 !important;
  transition: background .18s ease,color .18s ease,transform .18s ease;
}
.desktop-nav .nav-dropdown a:hover, .desktop-nav .nav-dropdown a:focus-visible {
  background: #f0f5f8;
  color: var(--brand) !important;
  transform: translateX(2px);
}
.nav-dropdown-electric {
  width: 285px;
}
.site-header:not(.is-scrolled) .nav-dropdown a {
  color: #18303f !important;
}
.v42-library-head .eyebrow.dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #71818b !important;
  font-size: .68rem;
  letter-spacing: .15em;
  box-shadow: none !important;
}
.v42-library-head .eyebrow.dark:before {
  content: "";
  width: 28px;
  height: 1px;
  background: #9aabb5;
  display: block;
}
.mobile-menu {
  max-height: calc(100vh - 100px);
  overflow: auto;
}
.mobile-menu-group {
  padding: 2px 0 8px;
  border-bottom: 1px solid #edf1f3;
  margin-bottom: 5px;
}
.mobile-menu .mobile-menu-parent {
  padding-bottom: 7px;
}
.mobile-subnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 12px;
  padding: 0 0 7px 10px;
}
.mobile-menu .mobile-subnav a {
  padding: 7px 0;
  color: #687984;
  font-weight: 600;
  font-size: .78rem;
  line-height: 1.3;
}
.mobile-menu .mobile-subnav a:hover {
  color: var(--brand);
}
@media (max-width:1040px) and (min-width:821px) {
.desktop-nav {
  gap: 13px;
}
.desktop-nav>a, .desktop-nav .nav-main {
  font-size: .9rem;
}
.nav-dropdown {
  width: 250px;
}
.nav-dropdown-electric {
  width: 270px;
}
}
@media (max-width:560px) {
.mobile-subnav {
  grid-template-columns: 1fr;
}
.mobile-menu .mobile-subnav a {
  padding: 6px 0;
}
}
.google-map-shell {
  position: relative !important;
  overflow: hidden !important;
  background: #e9eef3 !important;
  border: 1px solid rgba(255,255,255,.7) !important;
  box-shadow: 0 18px 38px rgba(7,27,43,.14) !important;
}
.google-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.98) contrast(1.02);
}
.map-pin-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 3;
}
.map-pin-pulse, .map-pin-pulse::before, .map-pin-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(21,112,214,.36);
  background: rgba(34,140,255,.08);
  animation: udinePulse 2.8s ease-out infinite;
}
.map-pin-pulse::before {
  animation-delay: .9s;
}
.map-pin-pulse::after {
  animation-delay: 1.8s;
}
.map-pin-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,#6cc4ff,#1975d9 68%,#145bb3 100%);
  box-shadow: 0 0 0 4px rgba(255,255,255,.82),0 10px 24px rgba(18,90,168,.42);
}
.map-pin-label {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #12385a;
  font: 700 .72rem/1 Inter,sans-serif;
  box-shadow: 0 8px 24px rgba(10,35,56,.16);
  white-space: nowrap;
}
.google-map-caption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #36556f;
  font: 600 .62rem/1 Inter,sans-serif;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(10,35,56,.10);
  z-index: 2;
}
@keyframes udinePulse {
  0% {
    transform: scale(.38);
    opacity: 0;
  }
  18% {
    opacity: .9;
  }
  100% {
    transform: scale(3.9);
    opacity: 0;
  }
}
@media (max-width:900px) {
.map-pin-overlay {
  width: 20px;
  height: 20px;
}
.map-pin-core {
  width: 12px;
  height: 12px;
}
.map-pin-label {
  top: 24px;
  font-size: .68rem;
  padding: 4px 9px;
}
}
@media (max-width:620px) {
.google-map-caption {
  right: 10px;
  bottom: 8px;
  font-size: .58rem;
  padding: 5px 8px;
}
}
@media (prefers-reduced-motion:reduce) {
.map-pin-pulse, .map-pin-pulse::before, .map-pin-pulse::after {
  animation: none;
  opacity: .35;
}
}
.google-map-shell-styled {
  isolation: isolate;
  border-radius: 24px !important;
  background: linear-gradient(180deg,#f3f7fb 0%,#dde8f2 100%) !important;
  border: 1px solid rgba(255,255,255,.86) !important;
  box-shadow: 0 22px 44px rgba(10,35,56,.12), inset 0 1px 0 rgba(255,255,255,.65) !important;
}
.google-map-shell-styled .google-map-frame {
  transform: scale(1.015);
}
.map-style-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at 58% 49%, rgba(50,135,224,.14), transparent 18%),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.45), transparent 28%),
    linear-gradient(180deg, rgba(4,22,41,.06) 0%, rgba(4,22,41,0) 18%, rgba(4,22,41,0) 72%, rgba(4,22,41,.08) 100%),
    linear-gradient(135deg, rgba(17,95,173,.10) 0%, rgba(255,255,255,0) 42%, rgba(17,95,173,.06) 100%);
}
.map-style-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.08));
}
.google-map-shell-styled .map-pin-overlay {
  z-index: 3;
}
.google-map-shell-styled .map-pin-pulse, .google-map-shell-styled .map-pin-pulse::before, .google-map-shell-styled .map-pin-pulse::after {
  border-color: rgba(23,115,221,.34);
  background: rgba(37,131,235,.10);
  animation: udinePulseSoft 3.2s cubic-bezier(.2,.55,.18,1) infinite;
}
.google-map-shell-styled .map-pin-pulse::before {
  animation-delay: 1.05s;
}
.google-map-shell-styled .map-pin-pulse::after {
  animation-delay: 2.1s;
}
.google-map-shell-styled .map-pin-core {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 5px rgba(255,255,255,.82), 0 16px 28px rgba(17,84,154,.32), 0 0 20px rgba(42,144,255,.25);
  background: radial-gradient(circle at 35% 35%, #8ad2ff, #2b8fff 62%, #1566c1 100%);
}
.google-map-shell-styled .map-pin-label {
  top: 32px;
  background: rgba(255,255,255,.95);
  color: #0d3557;
  border: 1px solid rgba(170,197,223,.75);
  box-shadow: 0 10px 24px rgba(10,35,56,.12);
}
.google-map-shell-styled .google-map-caption {
  z-index: 3;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(183,205,226,.7);
  color: #35556e;
}
@keyframes udinePulseSoft {
  0% {
    transform: scale(.42);
    opacity: 0;
  }
  16% {
    opacity: .82;
  }
  72% {
    opacity: .18;
  }
  100% {
    transform: scale(4.6);
    opacity: 0;
  }
}
@media (max-width:900px) {
.google-map-shell-styled {
  border-radius: 22px !important;
}
.map-style-grid {
  background-size: 30px 30px;
}
.google-map-shell-styled .map-pin-core {
  width: 14px;
  height: 14px;
}
.google-map-shell-styled .map-pin-label {
  top: 28px;
}
}
@media (max-width:620px) {
.google-map-shell-styled {
  border-radius: 18px !important;
}
.map-style-grid {
  background-size: 26px 26px;
  opacity: .14;
}
}
@media (prefers-reduced-motion:reduce) {
.google-map-shell-styled .map-pin-pulse, .google-map-shell-styled .map-pin-pulse::before, .google-map-shell-styled .map-pin-pulse::after {
  animation: none;
  opacity: .32;
}
}
.google-map-shell-styled {
  aspect-ratio: 1/1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: 100% !important;
}
.google-map-shell-styled .map-style-overlay {
  background: radial-gradient(circle at 58% 49%, rgba(78,168,255,.18), transparent 18%),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.24), transparent 28%),
    linear-gradient(180deg, rgba(27,108,188,.10) 0%, rgba(56,140,216,.08) 30%, rgba(36,122,205,.10) 72%, rgba(16,76,146,.14) 100%),
    linear-gradient(135deg, rgba(83,173,255,.16) 0%, rgba(50,141,223,.10) 38%, rgba(255,255,255,0) 58%, rgba(35,120,198,.14) 100%);
  mix-blend-mode: screen;
}
.google-map-shell-styled .map-style-grid {
  opacity: .10;
}
#richiesta-rapida .hero-request-copy {
  height: auto !important;
  min-height: 0 !important;
}
#richiesta-rapida .quick-live-map, #richiesta-rapida .google-map-shell-styled {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1/1 !important;
  margin: 0 !important;
}
#richiesta-rapida .quick-live-map {
  max-width: 100% !important;
}
#richiesta-rapida .google-map-shell-styled .google-map-caption {
  padding: 7px 11px;
}
@media (min-width:901px) {
#richiesta-rapida .hero-request-grid {
  align-items: start !important;
}
#richiesta-rapida .hero-request-copy {
  display: block !important;
  padding: 0 !important;
}
}
@media (max-width:900px) {
#richiesta-rapida .quick-live-map, #richiesta-rapida .google-map-shell-styled {
  aspect-ratio: 1/1 !important;
  height: auto !important;
  min-height: 0 !important;
}
.google-map-shell-styled .map-pin-label {
  top: 29px;
}
}
@media (max-width:620px) {
.google-map-shell-styled .map-style-grid {
  background-size: 24px 24px;
  opacity: .12;
}
.google-map-shell-styled .map-pin-overlay {
  width: 18px;
  height: 18px;
}
.google-map-shell-styled .map-pin-core {
  width: 12px;
  height: 12px;
}
}
.google-map-shell-styled .map-style-overlay, .google-map-shell-styled .map-style-grid {
  display: none !important;
}
.google-map-shell-styled .google-map-frame {
  filter: grayscale(.05) saturate(.90) brightness(1.00) contrast(1.02) !important;
}
.google-map-shell-styled::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: rgba(70,160,255,.14);
}
.google-map-shell-styled .map-pin-overlay, .google-map-shell-styled .google-map-caption {
  z-index: 4;
}
.if-crossfade {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
.if-crossfade .ba-reveal {
  width: 100% !important;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .85s var(--v42-ease, ease);
}
.if-crossfade.is-active .ba-reveal {
  opacity: 1;
}
.if-crossfade .ba-layer, .if-crossfade img {
  transform: none !important;
  clip-path: none !important;
}
.v42-single-visual-card {
  min-height: 0 !important;
}
.v42-single-visual-card .v42-compare-media {
  aspect-ratio: 16/10;
}
.v42-single-visual-card .v42-base {
  opacity: 1 !important;
  transform: none !important;
}
.service-start-layout {
  display: grid;
  align-items: start;
}
.service-start-main {
  min-width: 0;
}
.service-news-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fafb;
  box-shadow: 0 12px 34px rgba(16,32,44,.06);
  position: relative;
  overflow: hidden;
}
.service-news-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(#1879c4,#67b8e9);
}
.service-news-head h2 {
  margin: 9px 0 14px;
  font: 800 1.06rem/1.2 Manrope,sans-serif;
  color: var(--ink);
}
.service-news-list {
  display: grid;
  gap: 6px;
}
.service-news-item {
  display: grid;
  gap: 3px 10px;
  border-top: 1px solid #e2e8ec;
  transition: transform .2s ease,color .2s ease;
}
.service-news-item:first-child {
  border-top: 0;
  padding-top: 2px;
}
.service-news-item time {
  grid-row: 1/3;
  font-size: .67rem;
  line-height: 1.2;
  color: #82929c;
  font-weight: 700;
  padding-top: 2px;
}
.service-news-item strong {
  font: 750 .84rem/1.28 Manrope,sans-serif;
}
.service-news-item span {
  font-size: .68rem;
  color: var(--brand);
  font-weight: 750;
}
.service-news-item:hover {
  transform: translateX(3px);
  color: var(--brand);
}
.service-news-empty {
  padding: 4px 0 2px;
}
.service-news-empty strong {
  font: 750 .86rem Manrope,sans-serif;
}
.service-news-empty p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.48;
}
.service-mini-list {
  list-style: none;
  margin: 15px 0 0;
  padding: 13px 0 0;
  border-top: 1px solid #e4eaee;
  display: grid;
  gap: 7px;
}
.service-mini-list li {
  position: relative;
  padding-left: 17px;
  color: #526774;
  font-size: .76rem;
  line-height: 1.4;
}
.service-mini-list li:before {
  content: "";
  position: absolute;
  left: 1px;
  top: .54em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b9bd6;
}
.page-security .security-hero-media {
  background-position: 72% center !important;
}
@media (max-width:900px) {
.service-start-layout {
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-news-card {
  max-width: none;
  order: 2;
}
.service-start-main {
  order: 1;
}
.subhero {
  min-height: 560px;
}
.subhero-inner {
  padding-top: 128px !important;
  padding-bottom: 46px !important;
}
.subhero h1 {
  font-size: clamp(2.55rem,9vw,4.2rem);
  max-width: 11ch;
}
.subhero p {
  font-size: .98rem;
  max-width: 600px;
}
.project-track {
  grid-auto-columns: 78%;
}
.project-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
}
@media (max-width:620px) {
html {
  scroll-padding-top: 86px;
}
.shell {
  width: min(100% - 28px,1180px);
}
.subhero {
  min-height: 600px;
  align-items: flex-end;
}
.subhero-inner {
  padding-top: 128px !important;
  padding-bottom: 38px !important;
}
.subhero h1 {
  font-size: clamp(2.35rem,11.5vw,3.65rem) !important;
  line-height: .98;
  max-width: 10.5ch;
}
.subhero p {
  font-size: .92rem;
  line-height: 1.55;
  margin-top: 16px;
  max-width: 34em;
}
.subhero .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 20px;
}
.subhero .hero-actions .btn {
  width: 100%;
  min-height: 48px;
}
.service-fragment-nav {
  padding: 18px 0 20px;
}
.service-start-layout {
  gap: 14px;
}
.fragment-nav-head p {
  font-size: .78rem;
  line-height: 1.45;
}
.fragment-links {
  margin-inline: -14px;
  padding: 0 14px 7px;
  scroll-padding-left: 14px;
}
.fragment-links a {
  flex-basis: 148px;
  min-height: 72px;
  padding: 12px 13px;
  border-radius: 14px;
}
.fragment-links b {
  font-size: .84rem;
}
.fragment-links small {
  font-size: .66rem;
}
.service-news-card {
  border-radius: 17px;
  padding: 15px;
}
.service-news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-news-head h2 {
  font-size: .94rem;
  margin: 0;
}
.service-news-item {
  grid-template-columns: 56px 1fr;
}
.section {
  padding: 54px 0;
}
.section-heading {
  text-align: left;
  margin-bottom: 24px;
}
.section-heading h2 {
  font-size: clamp(1.95rem,9.5vw,2.75rem);
  line-height: 1.03;
}
.service-detail-grid, .security-fragment-grid {
  grid-template-columns: 1fr !important;
  gap: 12px;
  margin-top: 24px;
}
.security-fragment-grid article {
  padding: 19px;
}
.service-mini-list {
  margin-top: 12px;
  padding-top: 11px;
}
.service-mini-list li {
  font-size: .74rem;
}
.projects-panel {
  border-radius: 20px;
  padding: 13px;
}
.projects-head {
  align-items: flex-end;
}
.projects-head h3 {
  font-size: 1.08rem;
}
.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}
.project-track {
  grid-auto-columns: 86%;
  gap: 10px;
}
.project-card {
  border-radius: 17px;
}
.project-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.project-card div {
  padding: 14px;
}
.project-card p {
  font-size: .76rem;
}
.v7-grid, .v7-reverse {
  gap: 18px;
}
.v7-photo {
  border-radius: 19px;
}
.v7-photo img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}
.page-security .security-hero-media {
  background-position: 78% center !important;
}
.page-security .subhero-overlay {
  background: linear-gradient(0deg,rgba(5,17,26,.97) 0%,rgba(5,17,26,.78) 58%,rgba(5,17,26,.28) 100%) !important;
}
.page-electric .subhero-media {
  background-position: 64% center !important;
}
.page-hydraulic .subhero-media {
  background-position: 66% center !important;
}
.page-solar .subhero-media {
  background-position: 70% center !important;
}
.v25-gallery-viewport {
  aspect-ratio: 4/5 !important;
}
.v25-slide img {
  object-fit: cover;
  object-position: center;
}
.v42-image-card {
  min-height: 320px;
}
}
@media (max-width:420px) {
.project-track {
  grid-auto-columns: 91%;
}
.fragment-links a {
  flex-basis: 142px;
}
.service-news-item strong {
  font-size: .8rem;
}
.subhero {
  min-height: 570px;
}
}
.article-main {
  padding: 150px 0 90px;
  background: #fff;
}
.article-layout {
  max-width: 900px;
}
.article-head {
  max-width: 800px;
}
.article-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--brand);
  font-weight: 750;
}
.article-head time {
  display: block;
  color: #81929c;
  font-size: .75rem;
  font-weight: 700;
}
.article-head h1 {
  font: 800 clamp(2.6rem,5vw,5rem)/1 Manrope,sans-serif;
  letter-spacing: -.045em;
  margin: 12px 0 18px;
}
.article-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--muted);
}
.article-cover {
  margin: 34px 0;
  border-radius: 26px;
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
.article-content {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.78;
  color: #263b48;
}
.article-content h2, .article-content h3 {
  font-family: Manrope,sans-serif;
  line-height: 1.15;
  margin-top: 2em;
}
.article-content img {
  height: auto;
  border-radius: 18px;
}
@media (max-width:620px) {
.article-main {
  padding: 110px 0 70px;
}
.article-head h1 {
  font-size: clamp(2.25rem,11vw,3.4rem);
}
.article-cover {
  margin: 24px 0;
  border-radius: 18px;
}
.article-content {
  font-size: .94rem;
}
.article-head .article-lead {
  font-size: 1rem;
}
}
.service-start-layout {
  grid-template-columns: minmax(0,1fr) minmax(360px,390px);
  gap: 26px;
}
.service-news-card {
  padding: 22px 22px 20px;
}
.service-news-head h2 {
  font-size: 1.16rem;
}
.service-news-item {
  grid-template-columns: 70px minmax(0,1fr);
  padding: 13px 0;
}
.service-news-item strong {
  font-size: .9rem;
}
.service-topic-block {
  position: relative;
  overflow: hidden;
}
.service-topic-block + .service-topic-block {
  border-top: 1px solid rgba(16,32,44,.07);
}
.service-topic-head {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 30px;
}
.service-topic-head h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font: 800 clamp(2.35rem,4vw,4.4rem)/.98 Manrope,sans-serif;
  letter-spacing: -.045em;
}
.service-topic-copy {
  max-width: 540px;
}
.service-topic-copy>p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}
.service-topic-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 12px;
  background: #eaf4fa;
  color: #0d5ea8;
  font: 800 .76rem Manrope,sans-serif;
}
.dark-section .service-topic-number {
  background: rgba(255,255,255,.11);
  color: #fff;
}
.dark-section .service-topic-copy>p, 
.dark-section .service-mini-list li {
  color: rgba(255,255,255,.70);
}
.dark-section .service-mini-list {
  border-top-color: rgba(255,255,255,.13);
}
.service-topic-gallery {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: 12px;
}
.service-topic-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #edf2f5;
  min-height: 230px;
  box-shadow: 0 12px 34px rgba(13,34,47,.07);
}
.service-topic-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.service-topic-gallery figure:hover img {
  transform: scale(1.025);
}
.service-topic-gallery.count-1 figure {
  grid-column: 1/-1;
  min-height: 450px;
}
.service-topic-gallery.count-2 figure {
  grid-column: span 6;
  min-height: 350px;
}
.service-topic-gallery.count-3 figure:first-child {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 450px;
}
.service-topic-gallery.count-3 figure:not(:first-child) {
  grid-column: span 5;
  min-height: 219px;
}
.service-topic-gallery.count-4 figure {
  grid-column: span 6;
  min-height: 290px;
}
.service-topic-gallery.count-5 figure:first-child {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 450px;
}
.service-topic-gallery.count-5 figure:not(:first-child) {
  grid-column: span 5;
  min-height: 219px;
}
.service-topic-subsection {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.service-topic-subsection .section-heading {
  margin-bottom: 20px;
}
.service-topic-subsection .section-heading h3 {
  margin: 8px 0 0;
  font: 800 clamp(1.7rem,3vw,2.7rem)/1.02 Manrope,sans-serif;
  letter-spacing: -.035em;
}
.page-solar .subhero-media {
  background-position: center 48% !important;
}
@media (max-width:1020px) {
.service-start-layout {
  grid-template-columns: minmax(0,1fr) 340px;
}
.service-topic-head {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.service-topic-copy {
  max-width: 700px;
}
}
@media (max-width:900px) {
.service-start-layout {
  grid-template-columns: 1fr;
}
.service-news-card {
  width: 100%;
  max-width: none;
}
.service-topic-head {
  margin-bottom: 22px;
}
.service-topic-gallery.count-1 figure {
  min-height: 360px;
}
}
@media (max-width:620px) {
.service-topic-block {
  padding: 58px 0;
}
.service-topic-head {
  gap: 15px;
  margin-bottom: 20px;
}
.service-topic-head h2 {
  font-size: clamp(2rem,10vw,3.05rem);
}
.service-topic-copy>p {
  font-size: .9rem;
  line-height: 1.58;
}
.service-topic-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.service-topic-gallery {
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
}
.service-topic-gallery figure, 
  .service-topic-gallery.count-1 figure, 
  .service-topic-gallery.count-2 figure, 
  .service-topic-gallery.count-3 figure:first-child, 
  .service-topic-gallery.count-3 figure:not(:first-child), 
  .service-topic-gallery.count-4 figure, 
  .service-topic-gallery.count-5 figure:first-child, 
  .service-topic-gallery.count-5 figure:not(:first-child) {
  grid-column: auto;
  grid-row: auto;
  min-height: 150px;
  border-radius: 15px;
}
.service-topic-gallery figure:first-child {
  grid-column: 1/-1;
  min-height: 245px;
}
.service-topic-gallery.count-1 figure:first-child {
  min-height: 280px;
}
.service-topic-subsection {
  margin-top: 26px;
  padding-top: 24px;
}
.service-news-card {
  padding: 18px;
}
.service-news-item {
  grid-template-columns: 62px 1fr;
}
.page-solar .subhero-media {
  background-position: 62% center !important;
}
}
@media (max-width:420px) {
.service-topic-gallery figure {
  min-height: 135px;
}
.service-topic-gallery figure:first-child {
  min-height: 220px;
}
}


/* V42.15.4 — синхронная медленная анимация метрик на desktop. */
.metric-tracer-v26{
  position:absolute;
  left:0; top:0;
  width:5px; height:5px;
  border-radius:50%;
  background:rgba(225,247,255,.92);
  box-shadow:0 0 5px rgba(99,199,255,.65),0 0 12px rgba(99,199,255,.22);
  opacity:0;
  pointer-events:none;
  offset-rotate:0deg;
}
.m-energy .metric-tracer-v26{offset-path:path('M4 8 L24 16 L40 13 L58 24 L76 22 L95 34 L113 31 L132 43 L146 46');background:rgba(255,231,147,.92);box-shadow:0 0 5px rgba(255,198,47,.6),0 0 12px rgba(255,198,47,.2)}
.m-water .metric-tracer-v26{offset-path:path('M4 10 L22 17 L39 15 L57 26 L75 29 L94 38 L112 37 L131 45 L146 47')}
.m-security .metric-tracer-v26{offset-path:path('M4 46 L22 42 L39 38 L57 40 L75 28 L94 30 L112 19 L131 14 L146 7')}
.m-efficiency .metric-tracer-v26{offset-path:path('M4 45 L23 37 L41 39 L58 28 L76 30 L94 20 L113 22 L132 12 L146 7');background:rgba(227,207,255,.9);box-shadow:0 0 5px rgba(190,124,255,.55),0 0 12px rgba(190,124,255,.18)}
.m-impact .metric-tracer-v26{offset-path:path('M4 38 L22 27 L39 31 L57 19 L75 23 L94 14 L112 17 L131 10 L146 12');background:rgba(216,255,188,.9);box-shadow:0 0 5px rgba(127,219,67,.55),0 0 12px rgba(127,219,67,.18)}
.signal-strip-v26.is-metric-active .metric-tracer-v26{
  animation:v26Tracer 5.8s cubic-bezier(.16,.72,.22,1) forwards;
}
@keyframes v26Tracer{
  0%,3%{offset-distance:0%;opacity:0}
  8%{opacity:.18}
  44%{opacity:.42}
  82%{opacity:.25}
  96%{opacity:.12}
  100%{offset-distance:100%;opacity:0}
}
.signal-strip-v26.is-metric-active .metric-icon-v26{
  animation:v26IconBreath 5.8s ease-out both;
}
@keyframes v26IconBreath{
  0%{filter:drop-shadow(0 0 0 rgba(64,174,255,0));opacity:.72}
  48%{filter:drop-shadow(0 0 9px rgba(64,174,255,.22));opacity:1}
  100%{filter:drop-shadow(0 0 5px rgba(64,174,255,.12));opacity:1}
}
.mobile-smart-visual{display:none}


/* V42.15.7 — territorio, approfondimenti e nuove sottosezioni. */
.territory-note{
  display:grid;
  gap:4px;
  margin:14px 2px 0;
  color:#203b4a;
  font-size:.9rem;
  line-height:1.45;
}
.territory-note strong{font-family:Manrope,sans-serif;font-size:1rem;color:#102c3b}
.territory-note span{color:var(--muted)}

.fragment-alias{
  display:block;
  width:1px;
  height:1px;
  margin-top:-1px;
  pointer-events:none;
}

.topic-article-callout{
  margin-top:28px;
  padding:22px 24px;
  border:1px solid rgba(13,94,168,.13);
  border-radius:22px;
  background:linear-gradient(135deg,#f7fbfe 0%,#eef7fc 100%);
  box-shadow:0 16px 36px rgba(13,34,47,.06);
}
.topic-article-callout h3{
  margin:7px 0 8px;
  max-width:820px;
  font:800 clamp(1.35rem,2.2vw,2rem)/1.16 Manrope,sans-serif;
  letter-spacing:-.025em;
  color:#122f3f;
}
.topic-article-callout p{margin:0;max-width:850px;color:var(--muted);line-height:1.62}
.topic-article-callout a{
  display:inline-flex;
  margin-top:14px;
  color:var(--brand);
  font-weight:800;
  text-decoration:none;
}
.topic-article-callout a:hover{text-decoration:underline}
.service-detail-prose{overflow:hidden}
.service-prose-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.service-prose-grid article{
  padding:22px;
  border:1px solid rgba(16,32,44,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 28px rgba(13,34,47,.045);
}
.service-prose-grid article h3{
  margin:0 0 8px;
  font:800 1.08rem/1.2 Manrope,sans-serif;
  color:#133244;
}
.service-prose-grid article p{margin:0;color:var(--muted);font-size:.92rem;line-height:1.62}
.service-prose-grid.compact-copy{grid-template-columns:repeat(2,minmax(0,1fr))}
.service-prose-visual-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);
  gap:34px;
  align-items:center;
}
.service-prose-image{
  margin:0;
  overflow:hidden;
  border-radius:26px;
  box-shadow:0 18px 44px rgba(13,34,47,.10);
}
.service-prose-image img{display:block;width:100%;aspect-ratio:4/5;object-fit:cover}
.antiincendio-story .v7-grid{align-items:center}

.article-main-featured{background:linear-gradient(180deg,#fff 0%,#f8fbfd 100%)}
.article-cover-featured img{aspect-ratio:16/9;object-fit:cover}
.article-content ul{padding-left:1.2rem;margin:1.2rem 0 0}
.article-content li{margin:.55rem 0}
.article-sources{
  margin-top:46px;
  padding-top:28px;
  border-top:1px solid rgba(16,32,44,.11);
}
.article-sources h2{margin-top:0!important}
.article-sources p{color:var(--muted)}
.article-sources a{color:var(--brand);text-underline-offset:3px}
.article-cta-panel{
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:center;
  margin-top:48px;
  padding:30px;
  border-radius:26px;
  background:#eaf4fa;
  border:1px solid rgba(13,94,168,.12);
}
.article-cta-panel h2{
  margin:7px 0 8px;
  max-width:650px;
  font:800 clamp(1.7rem,3vw,2.8rem)/1.05 Manrope,sans-serif;
  letter-spacing:-.035em;
}
.article-cta-panel p{margin:0;max-width:650px;color:var(--muted);line-height:1.6}
.article-cta-panel .btn{flex:0 0 auto}


/* V42.15.9 — article header hover + fotovoltaico technical product visual. */
.page-article .site-header:not(.is-scrolled) .desktop-nav > a:hover,
.page-article .site-header:not(.is-scrolled) .desktop-nav > a:focus-visible,
.page-article .site-header:not(.is-scrolled) .nav-has-dropdown > a:hover,
.page-article .site-header:not(.is-scrolled) .nav-has-dropdown > a:focus-visible {
  color:#0b4f7b !important;
  opacity:.88 !important;
}

.ftv-product-explainer {
  padding-top:0;
}
.ftv-product-explainer-grid {
  display:grid;
  grid-template-columns:minmax(300px,.92fr) minmax(0,1.08fr);
  gap:42px;
  align-items:center;
  padding:34px;
  border:1px solid rgba(16,32,44,.08);
  border-radius:28px;
  background:linear-gradient(145deg,#ffffff 0%,#f5f9fc 100%);
  box-shadow:0 18px 48px rgba(13,34,47,.07);
}
.ftv-product-explainer-copy h2 {
  margin:10px 0 14px;
  max-width:680px;
  font:800 clamp(1.75rem,3vw,3rem)/1.06 Manrope,sans-serif;
  letter-spacing:-.035em;
  color:var(--ink);
}
.ftv-product-explainer-copy p {
  margin:0;
  max-width:650px;
  color:var(--muted);
  line-height:1.68;
}
.ftv-product-explainer-copy .ftv-product-points {
  display:grid;
  gap:10px;
  margin:20px 0 0;
  padding:0;
  list-style:none;
}
.ftv-product-explainer-copy .ftv-product-points li {
  position:relative;
  padding-left:22px;
  color:#263b48;
  line-height:1.5;
}
.ftv-product-explainer-copy .ftv-product-points li::before {
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 5px rgba(13,94,168,.08);
}
.ftv-product-explainer-visual {
  margin:0;
  min-width:0;
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 34px rgba(13,34,47,.08);
}
.ftv-product-explainer-visual img {
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1/1;
  object-fit:contain;
  background:#fff;
}
.ftv-product-explainer-visual figcaption {
  padding:10px 14px 13px;
  border-top:1px solid rgba(16,32,44,.06);
  color:#6f818d;
  font-size:.72rem;
  line-height:1.45;
}
