@charset "UTF-8";
/* CSS Document */ :root {
  --blue: #003b78;
  --blue-dark: #003166;
  --white: #ffffff;
  --text: #003166;
  --container: 1255px;
  --container-lg: 1360px;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.container {
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
  max-width: 90rem;
}
.container-lg {
  width: min(100% - 64px, var(--container-lg));
  margin: 0 auto;
  max-width: 90rem;
}
.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
}
.topbar {
  height: 38px;
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.96);
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 84px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}
.topbar-nav a {
  opacity: 0.98;
}
.mainbar {
  height: 68px;
  background: #fff;
  padding-top: 18px;
  box-shadow: 0 0 4rem 0 rgba(0, 122, 255, .06);
}
.mainbar-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 250px 1fr 42px;
  align-items: center;
}
.mainbar-phone {
  position: absolute;
  top: -9px;
  right: 0;
  font-size: 12px;
  line-height: 1;
  color: var(--blue-dark);
  font-weight: 400;
}
.mainbar-phone:hover {
  opacity: 0.8;
}
.mainbar-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 128px;
}
.brand svg {
  width: 166px;
  height: auto;
  display: block;
}
.main-nav {
  height: 100%;
}
.main-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, max-content);
  justify-content: center;
  column-gap: 140px;
  align-items: stretch;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-link {
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-size: 0.908rem;
  font-weight: 400;
  letter-spacing: -.031rem;
  transition: opacity 0.2s ease;
  position: relative;
  line-height: 1.3125rem;
}
.nav-item:hover > .nav-link::after, .nav-item.is-open > .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84px;
  height: 1px;
  background: var(--blue-dark);
  transform: translateX(-50%);
}
.nav-link:hover {
  opacity: 0.8;
}
.search-btn, .mobile-toggle {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.search-btn svg, .mobile-toggle svg {
  width: 24px;
  height: 24px;
}
.mobile-toggle, .mobile-panel {
  display: none;
}
.hero {
  position: relative;
  min-height: 608px;
  margin-top: 68px;
  overflow: hidden;
}
/* IMMAGINE */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* OVERLAY BLU */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* CONTENUTO */
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 1360px);
  margin: 0 auto;
  min-height: 608px;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 700px;
  color: #fff;
}
.hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 3vw, 3rem);
  line-height: clamp(1.2, 1.5vw, 1.6);
  letter-spacing: -0.045em;
  font-weight: 800;
}
.hero-button {
  margin-top: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: .5rem;
  background: #006cff;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -.031rem;
  line-height: 1.4875rem;
}
.mega-menu {
  position: fixed;
  left: 0;
  top: 68px;
  width: 100%;
  min-height: 360px;
  background: #FFF;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 40;
}
.nav-item:hover .mega-menu, .nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-panel {
  background: #FFF;
  padding: 28px 0;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 52px;
  align-items: start;
}
.mega-title {
  margin: 0 0 26px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #5f7fa8;
  text-transform: none;
}
.mega-title-label {
  display: block;
}
.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-list li + li {
  margin-top: 26px;
}
.mega-list a {
  font-size: 18px;
  line-height: 1.22;
  color: var(--blue-dark);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.mega-list-primary a {
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.031rem;
}
.mega-list-secondary li + li {
  margin-top: 22px;
}
.mega-list-secondary a {
  font-size: .9375rem;
  line-height: 1.3125rem;
  letter-spacing: -.031rem;
}
.mega-list a:hover {
  opacity: 0.8;
}
.mega-col-spacer {
  min-height: 1px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background-color: #FFFF;
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: #003166;
  color: rgba(255, 255, 255, 0.92);
  min-height: 30rem;
}
.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-bg svg {
  z-index: 0;
  position: absolute;
  height: 60rem;
  width: 60rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer-inner {
  position: relative;
  z-index: 1;
  padding-top: 44px;
  padding-bottom: 18px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1fr 1fr 1.2fr 1fr;
  column-gap: 58px;
  align-items: start;
}
.footer-title {
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  color: hsla(0, 0%, 100%, .67)
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links-compact li + li {
  margin-top: 13px;
}
.footer-links a {
  font-size: .9375rem;
  line-height: 1.3125rem;
  color: #CCE4FF;
  letter-spacing: -0.02em;
}
.footer-links a:hover, .footer-legal-links a:hover {
  opacity: 0.8;
}
.footer-socials {
  display: flex;
  gap: 7px;
  align-items: center;
}
.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  /*! background: rgba(255, 255, 255, 0.06); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.social-icon svg {
  width: 1.9rem;
  height: 1.9rem;
}
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand-block {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-brand {
  width: 136px;
  flex: 0 0 auto;
  display: block;
}
.footer-brand svg {
  width: 113px;
  height: auto;
  display: block;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  /*! padding-bottom: 6px; */
}
.footer-legal-links a, .footer-copyright {
  font-size: .9375rem;
  color: #CCE4FF;
  line-height: 1.2;
  font-weight: 400;
}
.section-light {
  position: relative;
}
.section-inner {
  position: relative;
  z-index: 1;
  padding-top: 5.5rem;
  padding-bottom: 6.5rem;
}
.section-heading {
  margin-bottom: 2.7rem;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.05rem;
  color: #0062CC;
  font-weight: 400;
}
.section-title {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.75rem;
  line-height: 2.275rem;
  font-weight: 700;
}
/* BENEFITS / TRUST */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.8rem;
}
.benefit-card {
  color: var(--blue-dark);
}
.benefit-icon {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--blue-dark);
}
.benefit-icon svg {
  width: 4rem;
  height: 4rem;
  display: block;
}
.benefit-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.benefit-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--blue-dark);
}
.home-faq {
  background-color: #F5FAFF;
}
/* TRUST SECTION BACKGROUND SVG */
.section-light--pattern {
  overflow: hidden;
}
.trust-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.trust-bg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60rem;
  height: 60rem;
  transform: translate(-50%, -50%);
  opacity: .1;
}
/* FAQ */
.home-faq .section-inner {
  padding-top: 6rem;
  padding-bottom: 7rem;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.faq-header .section-heading {
  margin-bottom: 0;
}
.faq-link {
  margin-top: 1.4rem;
  color: #0062CC;
  font-size: 1rem;
  line-height: 1.2;
  border-bottom: 1px solid #0062CC;
  padding-bottom: 0.2rem;
  letter-spacing: -0.5px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}
.faq-column {
  display: flex;
  flex-direction: column;
}
.faq-item + .faq-item {
  margin-top: 1rem;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 0 1.5rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span:first-child {
  color: var(--blue-dark);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -.031rem;
  line-height: 1.4875rem;
}
.faq-item summary span:hover {
  color: #0070eb
}
.faq-arrow {
  position: relative;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.45rem;
}
.faq-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 0.45rem solid transparent;
  border-right: 0.45rem solid transparent;
  border-top: 0.55rem solid var(--blue-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-arrow::before {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 0 1.5rem;
}
.faq-answer p {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 42rem;
}
/* ABOUT HERO */
.about-hero {
  position: relative;
  min-height: 38rem;
  margin-top: 68px;
  overflow: hidden;
  background: #dbe5ee;
}
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 38rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}
.about-breadcrumbs {
  position: absolute;
  top: 1.5rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.2;
  margin-bottom: 0;
}
.about-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.2;
  margin-bottom: 4.8rem;
}
.about-breadcrumbs a, .about-breadcrumbs span {
  color: #fff;
}
.about-breadcrumb-sep {
  opacity: 0.9;
}
.about-hero-content {
  max-width: 32rem;
  color: #fff;
}
.about-hero-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
}
.about-hero-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}
/* SPLIT SECTIONS */
.about-split {
  background: #fff;
}
.about-split-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.81fr;
  align-items: center;
  gap: 5.5rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.about-split-inner--reverse .about-split-content {
  order: 1;
}
.about-split-inner--reverse .about-split-media {
  order: 2;
}
.about-split-media img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  height: 100%;
}
.section-title--about {
  font-weight: 700;
  max-width: 38rem;
}
.about-wysiwyg {
  margin-top: 1.4rem;
  color: var(--blue-dark);
}
.about-wysiwyg p {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.6rem;
}
.about-wysiwyg ul {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}
.about-wysiwyg li {
  margin-bottom: 0.95rem;
  font-size: 1.0625rem;
  line-height: 1.6rem;
  padding-left: 13px;
}
/* VALUES */
.about-values {
  position: relative;
  overflow: hidden;
  background-color: #f5faff;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.75rem;
}
.about-value-card {
  position: relative;
  z-index: 1;
  color: var(--blue-dark);
}
.about-value-icon {
  margin-bottom: 1.5rem;
  color: var(--blue-dark);
}
.about-value-icon svg {
  width: 4rem;
  height: 4rem;
  display: block;
}
.about-value-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}
.about-value-card p {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--blue-dark);
}
/* CONTACT PAGE */
.contact-page {
  background: #fff;
}
.contact-hero {
  padding-top: 7.5rem;
  padding-bottom: 2.25rem;
}
.contact-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-dark);
  font-size: 0.8125rem;
  line-height: 1.2;
  margin-bottom: 2.25rem;
}
.contact-breadcrumbs a, .contact-breadcrumbs span {
  color: var(--blue-dark);
}
.contact-page-title {
  margin: 0;
  color: #000c1a;
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 800;
}
.contact-section {
  padding-bottom: 6rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6.9rem;
  align-items: start;
}
.contact-form {
  max-width: 100%;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 0.9rem;
}
.contact-field {
  position: relative;
  display: block;
}
.contact-field-label {
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  z-index: 2;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #1f5fa8;
  pointer-events: none;
}
.contact-field sup, .contact-required sup {
  color: #f05b5b;
}
.contact-field input, .contact-field select, .contact-field textarea {
  width: 100%;
  border: 0;
  border-radius: 0.45rem;
  background: rgba(0, 49, 102, .03);
  color: #0062cc;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  outline: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.contact-field input, .contact-field select {
  height: 4.1rem;
  padding: 1.75rem 1rem 0.7rem;
}
.contact-field textarea {
  min-height: 16rem;
  padding: 2rem 1rem 1rem;
  resize: vertical;
}
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus {
  box-shadow: inset 0 0 0 1px rgba(0, 49, 102, 0.22);
  background: #fef7ee;
  border: 2px solid #f67e23
}
.contact-field--select select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #003166 50%), linear-gradient(135deg, #003166 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 1px), calc(100% - 12px) calc(50% - 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.contact-field--full {
  grid-column: 1 / -1;
}
.contact-note, .contact-consent, .contact-privacy, .contact-required, .contact-submit {
  margin-top: 2rem;
}
.contact-note p, .contact-consent p, .contact-privacy p, .contact-required {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.98rem;
  line-height: 1.7;
}
.contact-consent-title {
  margin-bottom: 1rem !important;
}
.contact-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
}
.contact-checkboxes label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue-dark);
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
}
.contact-checkboxes input[type="checkbox"] {
  width: 0.95rem;
  height: 0.95rem;
  margin: 0;
}
.contact-privacy a {
  color: #1f5fa8;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.contact-submit {
  display: flex;
  justify-content: flex-end;
}
.contact-submit-btn {
  min-width: 7rem;
  height: 3.2rem;
  border: 0;
  border-radius: 0.55rem;
  background: #d9ebff;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-submit-btn:hover {
  opacity: 0.9;
}
/* RIGHT COLUMN */
.contact-info-col {
  padding-top: 0.2rem;
}
.contact-address {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 2rem;
  color: var(--blue-dark);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.6rem;
}
.contact-address-icon {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.1rem;
}
.contact-address-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.contact-card + .contact-card {
  margin-top: 2rem;
}
.contact-card h3 {
  margin: 0 0 0.75rem;
  color: var(--blue-dark);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.6rem;
}
.contact-card p {
  margin: 0 0 0.9rem;
  color: rgba(0, 49, 102, 0.65);
  font-size: 0.83rem;
  line-height: 1.5;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid rgba(0, 49, 102, 0.12);
  border-radius: 0.45rem;
  color: #3066a4;
  font-size: .9375rem;
  line-height: 1.7;
  background: #fff;
}
.contact-phone:hover {
  opacity: 0.85;
}
/* =========================
   PAGINA PRODOTTI
========================= */
.products-page {
  padding-top: 8.5rem;
  padding-bottom: 7rem;
}
.products-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  font-size: .9375rem;
  line-height: 1.3125rem;
  color: #003166;
}
.products-breadcrumbs a {
  color: var(--blue-dark);
}
.products-breadcrumbs span {
  color: #003166;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.031rem;
}
.products-page-header {
  max-width: 32rem;
  margin-bottom: 1.55rem;
}
.products-page-title {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 2.6rem;
  letter-spacing: -0.045em;
  color: #000c1a;
  font-weight: 800;
}
.products-page-intro {
  margin: 0;
  font-size: .75rem !important;
  font-weight: 400 !important;
  line-height: 1.05rem !important;
  color: rgba(0, 49, 102, . 67);
  max-width: 48rem;
}
.products-layout {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 3.6rem;
  align-items: start;
}
.products-sidebar {
  position: sticky;
  top: 8.5rem;
}
.products-filters {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.products-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.products-filter-title {
  margin: 0;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75rem;
  color: var(--blue-dark);
}
.products-main-filters {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.products-pill {
  min-height: 2.6rem;
  padding: 0 1.6rem;
  border: 0;
  border-radius: 999px;
  background: #f1f4f8;
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.products-pill.is-active {
  background: #0070eb;
  color: #fff;
}
.products-application-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.products-application-item {
  width: 100%;
  min-height: 2.3rem;
  padding: 0 1rem;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.products-application-item:hover {
  background: #f4f8fc;
}
.products-application-item.is-active {
  background: #edf4fb;
}
.products-application-icon {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  position: relative;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
  color: var(--blue-dark);
}
.products-application-item span:last-child {
  font-size: .9375rem;
  line-height: 1.3125rem;
  color: var(--blue-dark);
}
.products-filter-actions {
  padding-top: 1rem;
}
.products-filter-reset {
  width: 100%;
  min-height: 3.4rem;
  border: 1px solid #d7e4f0;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c7d6e5;
  font-size: 0.95rem;
  font-weight: 700;
  background: #fff;
  pointer-events: none;
  opacity: 0.45;
  transition: all 0.2s ease;
}
.products-filter-reset.is-enabled {
  color: #003166;
  border-color: #cddced;
  opacity: 1;
  pointer-events: auto;
}
.products-content {
  min-width: 0;
}
.products-results-count {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.6rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #8ca6c4;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 1.6rem;
}
.product-card {
  min-width: 0;
  
}
.product-card-image-link {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}
.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.product-card-image-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 24, 51, .25);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card-body {
  min-width: 0;
}
.product-card-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-image-link::after {
  opacity: 1;
}
.product-card:hover .product-card-image-link {
  box-shadow: 0 .25rem 1rem 0 rgba(0, 98, 204, .25);
}
.product-card-title {
  margin: 0 0 0.7rem;
  font-size: 1.75rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
}
.product-card-title a {
  color: inherit;
}
.product-card-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--blue-dark);
}
/* Card più simili allo screen */
.products-grid .product-card-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.products-grid .product-card-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-filter-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1rem;
}
.products-filter-submit {
  width: 100%;
  min-height: 3.4rem;
  border: 0;
  border-radius: 0.7rem;
  background: #d8ebff;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.45;
  pointer-events: none;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.products-filter-submit.is-enabled {
  background: #0070eb;
  opacity: 1;
  pointer-events: auto;
}
.products-filter-reset {
  width: 100%;
  min-height: 3.4rem;
  border: 1px solid #d7e4f0;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c7d6e5;
  font-size: 0.95rem;
  font-weight: 700;
  background: #fff;
}
.product-topbar {
  padding: 14px 0 18px;
  margin-top: 68px;
  background: #e5f2ff;
  position: sticky;
  top: 68px;
  z-index: 80;
}
.product-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.product-topbar-kicker {
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.05rem;
  color: #0062cc;
  margin-bottom: 4px;
}
.product-topbar-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.95rem;
  color: var(--blue-dark);
}
.product-documents-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  background: #fff;
  color: #0070eb;
  white-space: nowrap;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -.031rem;
  line-height: 1.4875rem;
}
.product-intro {
  padding: 34px 0 70px;
}
.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 4rem;
  font-size: 14px;
  line-height: 1.4;
  color: var(--blue-dark);
}
.product-breadcrumbs a:hover {
  opacity: 0.8;
}
.product-breadcrumbs .is-current {
  font-weight: 700;
}
.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 97.6px;
  align-items: start;
  position: relative;
  overflow: visible;
}
.product-gallery {
  min-width: 0;
}
.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  cursor: crosshair;
}
.product-gallery-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.12s linear;
  transform-origin: center center;
}
.product-gallery-lens {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 8px;
  background: rgba(0, 108, 255, 0.22);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.product-gallery-main.is-zoomed .product-gallery-lens {
  opacity: 1;
}
.product-gallery-thumb {
  width: 84px;
  height: 84px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.product-gallery-thumb.is-active {
  border-color: #006cff;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-summary-title {
  margin: 0 0 24px;
  font-size: 4rem;
  line-height: 4.8rem;
  font-weight: 900;
  color: #000c1a;
}
.product-summary-intro {
  margin-bottom: 28px;
  font-size: .9375rem;
  line-height: 1.7;
  color: #003166;
}
.product-summary-intro p {
  margin: 0;
}
.product-summary-features {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.6rem;
  color: #003166;
}
.product-summary-features div + div {
  margin-top: 2px;
}
.product-description-section {
  background: #eaf5ff;
  padding: 64px 0 72px;
}
.product-description-box {
  max-width: 1100px;
}
.product-section-kicker {
  margin-bottom: 8px;
  font-size: 13px;
  color: #5d84ae;
}
.product-section-title {
  margin: 0 0 24px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--blue-dark);
}
.product-description-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--blue-dark);
}
.product-description-content p {
  margin: 0;
}
.product-description-content p + p {
  margin-top: 16px;
}
.product-gallery-stage {
  position: relative;
  display: block;
}
.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: .5rem;
  background: #fff;
  cursor: crosshair;
}
.product-gallery-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .5rem;
}
.product-gallery-lens {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: .5rem;
  background: rgba(0, 112, 235, 0.28);
  border: 1px solid rgba(0, 112, 235, 0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.product-gallery-main.is-zooming .product-gallery-lens {
  opacity: 1;
}
.product-gallery-zoom {
  position: absolute;
  top: 0;
  left: calc(100% + 4rem);
  width: 38rem;
  height: 30rem;
  border-radius: .5rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 190%;
  background-position: center;
  box-shadow: 0 0.25rem 1rem rgba(0, 98, 204, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.product-gallery-zoom.is-active {
  opacity: 1;
  visibility: visible;
}
.product-gallery-thumb {
  width: 5.5rem;
  height: 5.5rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.product-gallery-thumb.is-active {
  border-color: #0070eb;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery-desktop {
  display: block;
}
.product-gallery-mobile {
  display: none;
}
.product-description-section {
  background: #f7fbff;
  padding: 5.5rem 0 5rem;
}
.product-description-box {
  max-width: 78rem;
}
.product-section-kicker {
  margin-bottom: 0.45rem;
  color: #0062cc;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.05rem;
}
.product-section-title {
  margin: 0 0 1.5rem;
  color: #003166;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.95rem;
  ;
}
.product-description-content {
  max-width: 75rem;
  font-weight: 400;
  font-style: normal;
  font-size: .9375rem;
  line-height: 1.7;
}
.product-description-content p {
  margin: 0;
}
/* SPECIFICHE TECNICHE */
.product-tech-section {
  background: #eaf2ff;
  padding: 5.5rem 0 7rem;
}
.product-tech-header {
  text-align: center;
  margin-bottom: 2.75rem;
}
.product-tech-kicker {
  margin-bottom: 0.45rem;
  color: #0062cc;
  font-size: 0.75rem;
  line-height: 1.05rem;
  font-weight: 400;
}
.product-tech-title {
  margin: 0;
  color: #003166;
  font-size: 1.75rem;
  line-height: 2.275rem;
  font-weight: bold;
}
.product-tech-groups {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: center;
}
.product-tech-group {
  width: 100%;
  max-width: 40rem;
}
.product-tech-group-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: #003166;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6rem;
}
.product-tech-group-icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1rem;
}
.product-tech-table-wrap {
  border-radius: 0.85rem;
  overflow: hidden;
  background: #fff;
}
.product-tech-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.product-tech-table th, .product-tech-table td {
  padding: 1rem 2rem;
  border: 1px solid #d5e4f2;
  text-align: left;
  vertical-align: middle;
  color: #003166;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.6rem;
}
.product-tech-table th {
  width: 50%;
  background: rgba(255, 255, 255, 0.92);
}
.product-tech-table td {
  width: 50%;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.98);
  font-style: normal;
  font-size: .9375rem;
  line-height: 1.7;
}
.product-tech-table tr:first-child th, .product-tech-table tr:first-child td {
  border-top: 0;
}
.product-tech-table tr:last-child th, .product-tech-table tr:last-child td {
  border-bottom: 0;
}
.product-tech-table tr th:first-child, .product-tech-table tr td:first-child {
  border-left: 0;
}
.product-tech-table tr th:last-child, .product-tech-table tr td:last-child {
  border-right: 0;
}
.product-tech-group-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: #003166;
}
.product-tech-group-title {
  color: #003166; /* colore icona incluso */
}
.product-gallery-thumbs-slider {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
}
.product-gallery-thumbs-viewport {
  width: calc((6.2rem * 5) + (1.26rem * 4));
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.product-gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.26rem;
  transition: transform 0.3s ease;
  will-change: transform;
}
.product-gallery-thumb {
  flex: 0 0 6.2rem;
  width: 6.2rem;
  height: 6.2rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.product-gallery-thumb.is-active {
  border-color: #0070eb;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery-thumbs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: #FFF;
  color: #003166;
  box-shadow: 0 .25rem 1rem rgba(0, 98, 204, 0.12);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.product-gallery-thumbs-nav span {
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-2px);
}
.product-gallery-thumbs-prev {
  left: 1rem;
}
.product-gallery-thumbs-next {
  right: 1rem;
}
.product-gallery-thumbs-slider.has-nav .product-gallery-thumbs-nav {
  display: inline-flex;
}
.product-gallery-thumbs-nav.is-disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.product-gallery-thumbs-slider::before, .product-gallery-thumbs-slider::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
  border-radius: 15px;
}
.product-gallery-thumbs-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 24, 51, 0.5), rgba(0, 24, 51, 0));
}
.product-gallery-thumbs-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 24, 51, 0.5), rgba(0, 24, 51, 0));
}
.product-gallery-thumbs-nav {
  z-index: 3;
}
.product-gallery-thumbs-slider.at-start::before {
  opacity: 0;
}
.product-gallery-thumbs-slider.at-end::after {
  opacity: 0;
}
.product-gallery-thumbs-slider::before, .product-gallery-thumbs-slider::after {
  transition: opacity 0.2s ease;
}
.products-mobile-toolbar, .products-mobile-panel-header, .products-mobile-overlay {
  display: none;
}
.products-application-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  position: relative;
}
.products-application-icon::after {
  content: '';
  position: absolute;
  left: 0.28rem;
  top: 0.1rem;
  width: 0.38rem;
  height: 0.72rem;
  border-right: 2px solid #2f6fb5;
  border-bottom: 2px solid #2f6fb5;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.products-application-item.is-active .products-application-icon::after {
  transform: rotate(45deg) scale(1);
}
.phone-ico {
  height: 40px;
  font-size: 21px;
  display: inline-block;
  margin-right: 9px;
}
/* =========================
   PAGINE LEGALI
========================= */

.legal-page {
  background: #fff;
}

.legal-hero {
  padding-top: 7.5rem;
  padding-bottom: 2rem;
}

.legal-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 2rem;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.031rem;
}

.legal-breadcrumbs a {
  color:#003166;
}
.legal-breadcrumbs span {
  color:#003166;
  font-weight: 700
}

.legal-page-header {
  max-width: 36rem;
}

.legal-page-title {
  margin: 0;
  color: #061120;
  font-size: 3rem;
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.legal-content-section {
  padding-bottom: 6rem;
}

.legal-content {
  color: var(--blue-dark);
  max-width: 75rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.75;
  color: #003166;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6rem;
}

.legal-content p {
  margin: 0 0 1.25rem;
}

.legal-content ul {
  margin: 0 0 1.5rem 1.2rem;
  padding: 0;
}

.legal-content li + li {
  margin-top: 0.15rem;
}

.legal-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  color: ;
}

.legal-content h3 {
  margin: 2rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 700;
  color: #061120;
}

.legal-content a {
  color: #0062cc;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.legal-table-block + .legal-table-block {
  margin-top: 2rem;
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
  background: #fff;
}

.legal-table th,
.legal-table td {
  border: 1px solid #d9e4ef;
  padding: 1rem 1rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--blue-dark);
}

.legal-table th {
  font-weight: 700;
  background: #fbfdff;
}
.legal-content ul {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.legal-content li {
  position: relative;
  padding-left: 1.2rem;
  margin-top: 5px;
}

.legal-content li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-dark);
}
.assistance-page {
  background: #fff;
}

.assistance-section {
  padding-bottom: 6rem;
}

.assistance-filter-form {
  margin-bottom: 2.5rem;
}

.assistance-filter-label {
  display: block;
  margin-bottom: 0.75rem;
  color: #003166;
  font-size: 1rem;
  font-weight: 700;
}

.assistance-filter-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.assistance-select {
  min-width: 20rem;
  min-height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid #d7e4f0;
  border-radius: 0.75rem;
  background: #fff;
  color: #003166;
  font-size: 1rem;
}

.assistance-submit,
.assistance-reset {
  min-height: 3.5rem;
  padding: 0 1.25rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.assistance-submit {
  border: 0;
  background: #0062cc;
  color: #fff;
  cursor: pointer;
}

.assistance-reset {
  border: 1px solid #d7e4f0;
  background: #fff;
  color: #003166;
}

.assistance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.assistance-card {
  background: #fff;
  border: 1px solid #e4edf5;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 98, 204, 0.06);
}

.assistance-card-title {
  margin: 0 0 1rem;
  color: #003166;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
}

.assistance-card-content p {
  margin: 0 0 1rem;
  color: #003166;
  font-size: 0.95rem;
  line-height: 1.6;
}

.assistance-card-content a {
  color: #0062cc;
}

.assistance-empty {
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: #f5faff;
  color: #003166;
}

@media (max-width: 980px) {
  .assistance-list {
    grid-template-columns: 1fr;
  }

  .assistance-select {
    min-width: 100%;
    width: 100%;
  }

  .assistance-filter-row {
    align-items: stretch;
  }
}
/* solo desktop */
@media (max-width: 980px) {
  .product-gallery-thumbs-slider, .product-gallery-thumbs-nav, .product-gallery-thumbs-viewport, .product-gallery-thumbs {
    display: none !important;
  }
  .product-card {
padding-bottom: 20px
}
}
/* ------------ RESPONSIVE */
@media (max-width: 1280px) {
  .footer-top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 42px;
  }
  .footer-social-column {
    grid-column: 1 / -1;
  }
  .footer-bg svg {
    right: -20px;
    width: 760px;
  }
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
  .trust-bg svg {
    width: 62rem;
  }
  .products-layout {
    grid-template-columns: 14rem minmax(0, 1fr);
    gap: 3rem;
  }
  .products-grid {
    gap: 2rem 1.25rem;
  }
  .product-card-title {
    font-size: 1.45rem;
  }
  .product-gallery-zoom {
    position: absolute;
    top: 0;
    left: calc(100% + 4rem);
    width: 26rem;
    height: 26rem;
    border-radius: .5rem;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 190%;
    background-position: center;
    box-shadow: 0 0.25rem 1rem rgba(0, 98, 204, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 20;
    transition: opacity 0.18s ease, visibility 0.18s ease;
  }
  .topbar-nav {
    gap: 52px;
    font-size: 14px;
  }
  .mainbar-inner {
    grid-template-columns: 200px 1fr 54px;
  }
  .main-nav-list {
    justify-content: space-between;
    gap: 28px;
  }
  .product-summary-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 3rem;
  }
  .product-intro-grid {
    gap: 30px;
  }
}
@media (max-width: 980px) {
  .site-footer {
    min-height: auto;
  }
  .footer-inner {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 24px;
    gap: 64px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
    column-gap: 32px;
  }
  .footer-bottom, .footer-brand-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copyright {
    margin-top: 10px;
  }
  .hero {
    min-height: 520px;
    margin-top: 74px;
  }
  .hero-inner {
    width: min(100% - 32px, 1410px);
    min-height: 520px;
    align-items: flex-start;
  }
  .hero-button {
    margin-top: 36px;
  }
  .hero-content {
    text-align: center;
    width: 100%;
    padding-top: 15rem;
    margin: 0 auto;
  }
  .section-inner {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .section-heading {
    margin-bottom: 3rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
  .faq-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .faq-link {
    margin-top: 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-column + .faq-column {
    margin-top: 1.5rem;
  }
  .about-hero {
    min-height: 35rem;
    margin-top: 74px;
  }
  .about-hero-inner {
    min-height: 35rem;
    justify-content: center;
    padding-top: 0;
  }
  .about-breadcrumbs {
    position: absolute;
    top: 1.25rem;
    left: 0;
    margin-bottom: 0;
  }
  .about-hero-content {
    max-width: 39rem;
    transform: translateY(-0.75rem);
  }
  .about-hero-title {
    font-size: 2.9rem;
  }
  .about-split-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .about-split-inner--reverse .about-split-content, .about-split-inner--reverse .about-split-media {
    order: initial;
  }
  .about-split-media img {
    max-width: 22rem;
    margin: 0 auto;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 2rem;
  }
  .section-title--about {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.95rem;
  }
  .contact-hero {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info-col {
    padding-top: 0;
  }
  .products-page {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
  .products-page-header {
    margin-bottom: 2.5rem;
  }
  .products-page-title {
    font-size: 2.4rem;
  }
  .products-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1rem 3rem 0;
  }
  .products-sidebar {
    position: static;
  }
  .products-filters {
    gap: 1.1rem;
    padding: 1.4rem;
    border: 1px solid #e4edf5;
    border-radius: 1rem;
    background: #fbfdff;
  }
  .products-filter-group {
    gap: 0.8rem;
  }
  .products-results-count {
    display: none
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1rem;
  }
  .product-card-title {
    font-size: 1.25rem;
  }
  .product-card-text {
    font-size: 0.9rem;
  }
  .products-filter-title {
font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.125rem;
    color: #000c1a
  }
  .products-pill {
    min-height: 3rem;
    font-size: 0.95rem;
  }
  .products-application-item {
    min-height: 3.15rem;
    padding: 0 0.9rem;
  }
  .products-application-item span:last-child {
    font-size: 0.95rem;
  }
  .product-topbar {
    padding: 14px 0 16px;
  }
  .product-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-documents-btn {
    min-width: 0;
    width: 100%;
    max-width: 260px;
    height: 56px;
  }
  .product-intro {
    padding: 26px 0 48px;
  }
  .product-breadcrumbs {
    margin-bottom: 28px;
    font-size: 13px;
  }
  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-gallery-thumb {
    width: 74px;
    height: 74px;
  }
  .product-section-title {
    font-size: 34px;
  }
  .product-gallery-stage {
    grid-template-columns: 1fr;
  }
  .product-intro-grid {
    overflow: hidden;
  }
  .product-gallery-stage {
    display: block;
  }
  .product-gallery-main {
    cursor: default;
    border-radius: 0;
  }
  .product-gallery-image {
    border-radius: 0;
  }
  .product-gallery-lens, .product-gallery-zoom, .product-gallery-thumbs {
    display: none !important;
  }
  .product-gallery--desktop {
    display: none;
  }
  .product-gallery-desktop {
    display: none;
  }
  .product-gallery-mobile {
    display: block;
    overflow: hidden;
  }
  .product-gallery-mobile-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .product-gallery-mobile-track::-webkit-scrollbar {
    display: none;
  }
  .product-gallery-mobile-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .product-gallery-mobile-slide img {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-gallery-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 0 10px;
    margin-top: -40px;
  }
  .product-gallery-mobile-dot {
    width: 0.7rem;
    height: 0.7rem;
    border: 0;
    border-radius: 999px;
    background: #deecfc;
    cursor: pointer;
    padding: 0;
  }
  .product-gallery-mobile-dot.is-active {
    background: #0070eb;
  }
  .container {
    width: min(100% - 32px, var(--container));
  }
  .topbar {
    display: none;
  }
  .mainbar {
    height: 74px;
  }
  .mainbar-inner {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .mobile-panel {
    display: none;
    background: #fff;
    border-top: 1px solid rgba(0, 49, 102, 0.08);
  }
  .mobile-panel.is-open {
    display: block;
  }
  .mobile-panel-inner {
    padding: 18px 0 24px;
  }
  .mobile-links, .mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-links > li + li {
    border-top: 1px solid rgba(0, 49, 102, 0.08);
  }
  .mobile-link, .mobile-accordion-btn, .mobile-submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 48px;
    background: transparent;
    border: 0;
    color: var(--blue-dark);
    font-size: 16px;
    padding: 0;
    text-align: left;
  }
  .mobile-submenu {
    display: none;
    padding: 8px 0 14px 16px;
  }
  .mobile-accordion.is-open .mobile-submenu {
    display: block;
  }
  .product-description-section {
    padding: 4rem 0 4.5rem;
  }
  .product-tech-section {
    padding: 4rem 0 5rem;
  }
  .product-section-title, .product-tech-title {
    font-size: 1.75rem;
    line-height: 2.2rem;
  }
  .product-tech-group {
    max-width: 100%;
  }
  .product-tech-table th, .product-tech-table td {
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
  }
  .product-gallery-thumbs-slider, .product-gallery-thumbs-nav, .product-gallery-thumbs-viewport, .product-gallery-thumbs {
    display: none !important;
  }
  .products-mobile-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dfe8f2;
  }
  .products-mobile-filters-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: 0;
    background: transparent;
    color: #003166;
    font-size: 1rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
  }
  .products-mobile-filters-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
  }
  .products-mobile-results {
    color: rgba(0,49,102,.67);
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .products-sidebar {
    position: static;
  }
  .products-mobile-panel-header {
    display: none;
  }
  .products-mobile-overlay {
    display: none;
  }
  .products-sidebar {
    transition: transform 0.28s ease;
  }
  .products-sidebar.is-mobile-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 120;
    background: #fff;
    border-radius: 0;
    max-height: 78vh;
    overflow-y: auto;
    padding: 0;
    transform: translateY(100%);
    box-shadow: 0 -0.5rem 2rem rgba(0, 24, 51, 0.14);
  }
  .products-sidebar.is-mobile-panel.is-open {
    transform: translateY(0);
  }
  .products-sidebar.is-mobile-panel .products-mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem 0.7rem;
    border-bottom: 1px solid #e4edf5;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
  }
  .products-mobile-panel-title {
    margin: 0;
    color: #000c1a;
font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.95rem;
  }
  .products-mobile-panel-close {
    border: 0;
    background: transparent;
    color: #003166;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }
  .products-sidebar.is-mobile-panel .products-filters {
    padding: -0.5rem 1.25rem 3rem;
    border: 0;
    border-radius: 0;
    background: #fff;
  }
  .products-sidebar.is-mobile-panel .products-filter-actions {
    position: sticky;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    padding: 1rem 1.25rem 1.25rem;
    background: #fff;
    border-top: 1px solid #e4edf5;
  }
  .products-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(229,242,255,.4);
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    backdrop-filter: blur(.5rem);
  }
  .products-mobile-overlay.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .products-sidebar.is-mobile-panel .products-application-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem 1.5rem;
  }
  .products-sidebar.is-mobile-panel .products-application-item {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .products-sidebar.is-mobile-panel .products-application-item:hover, .products-sidebar.is-mobile-panel .products-application-item.is-active {
    background: transparent;
  }
  .products-sidebar.is-mobile-panel .products-application-icon {
    width: auto;
    flex: 0 0 auto;
    font-size: 1.35rem;
    line-height: 1;
    margin-top: 0.05rem;
  }
  .products-sidebar.is-mobile-panel .products-application-item span:last-child {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.95rem;
    line-height: 1.3;
  }
  .products-sidebar.is-mobile-panel .products-main-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .products-sidebar.is-mobile-panel .products-pill {
    min-height: 3rem;
  }
	  .legal-hero {
    padding-top: 6.5rem;
    padding-bottom: 1.5rem;
  }

  .legal-page-title {
    font-size: 2.3rem;
  }

  .legal-content-section {
    padding-bottom: 4rem;
  }

  .legal-content {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-links a {
    font-size: 17px;
  }
  .footer-legal-links {
    gap: 14px 22px;
  }
  .hero {
    min-height: 460px;
  }
  .hero-inner {
    min-height: 38rem;
  }
  .section-inner {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .benefit-icon {
    margin-bottom: 1.25rem;
  }
  .benefit-card h3 {
    font-size: 1.75rem;
    line-height: 1.02;
  }
  .benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .faq-item summary span:first-child {
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .about-hero {
    min-height: 32rem;
  }
  .about-hero-inner {
    min-height: 32rem;
    padding-top: 1rem;
  }
  .contact-hero {
    padding-top: 6rem;
  }
  .contact-breadcrumbs {
    margin-bottom: 1.75rem;
  }
  .contact-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 2.6rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-note, .contact-consent, .contact-privacy, .contact-required, .contact-submit {
    margin-top: 1.5rem;
  }
  .contact-submit {
    justify-content: flex-start;
  }
  .contact-address {
    font-size: 1rem;
  }
  .products-page {
    padding-top: 6.6rem;
    padding-bottom: 4rem;
  }
  .products-breadcrumbs {
    margin-bottom: 1.25rem;
    font-size: 0.76rem;
  }
  .products-page-title {
    font-size: 2rem;
  }
  .products-page-intro {
    font-size: 0.9rem;
  }
  .products-filters {
    padding: 1rem;
    border-radius: 0.85rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .product-card-image-link {
    margin-bottom: 0.85rem;
  }
  .product-card-title {
    font-size: 1.15rem;
  }
  .products-filter-submit, .products-filter-reset {
    height: 3.15rem;
    font-size: 0.9rem;
  }
  .product-topbar-title {
    font-size: 18px;
  }
  .product-summary-title {
    font-size: 36px;
  }
  .product-gallery-thumbs {
    gap: 10px;
  }
  .product-gallery-thumb {
    width: 64px;
    height: 64px;
  }
  .product-gallery-lens {
    display: none;
  }
  .product-gallery-main {
    cursor: default;
  }
  .product-description-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .product-tech-table th, .product-tech-table td {
    display: block;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }
  .product-tech-table th {
    border-bottom: 0;
    padding-bottom: 0.35rem;
  }
  .product-tech-table td {
    padding-top: 0;
    padding-bottom: 0.95rem;
  }
  .product-tech-table tr {
    display: block;
    border-bottom: 1px solid #d5e4f2;
  }
  .product-tech-table tr:last-child {
    border-bottom: 0;
  }
  .products-sidebar.is-mobile-panel .products-application-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
  .products-sidebar.is-mobile-panel .products-main-filters {
    grid-template-columns: 1fr;
  }
	  .legal-page-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .legal-content p,
  .legal-content li,
  .legal-table th,
  .legal-table td {
    font-size: 0.92rem;
  }

  .legal-table {
    min-width: 36rem;
  }
}