@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titillium-web/titillium-web-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titillium-web/titillium-web-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titillium-web/titillium-web-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f2f5f9;
  --bg-2: #e9eef5;
  --text: #12263a;
  --muted: #4f6277;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --stroke: #cfdae6;
  --primary: #1d3f66;
  --primary-dark: #2a5d99;
  --accent: #e67e22;
  --shadow: 0 12px 30px rgba(18, 38, 58, 0.12);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Titillium Web", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a,
a:visited {
  color: var(--primary);
}

a:hover,
a:focus-visible {
  color: var(--primary-dark);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(29, 63, 102, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 85% 8%, rgba(45, 143, 78, 0.08) 0%, transparent 35%),
    linear-gradient(160deg, var(--bg) 20%, var(--bg-2) 100%);
}

.site-header {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: sticky;
  top: 0.7rem;
  z-index: 20;
}

.warranty-strip {
  width: min(1120px, calc(100% - 2rem));
  margin: 0.7rem auto 0;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(29, 63, 102, 0.22);
  background: linear-gradient(90deg, rgba(29, 63, 102, 0.08), rgba(45, 143, 78, 0.1));
  box-shadow: var(--shadow);
}

.warranty-strip p {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  text-align: center;
}

.warranty-strip small {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  color: var(--muted);
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: clamp(8.6rem, 16vw, 12rem);
  height: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.8rem;
  border: 1px solid var(--stroke);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-direction: column;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header-search {
  position: relative;
  flex: 0 0 auto;
  max-width: none;
  margin: 0 0.1rem 0 0.2rem;
}

.header-search input {
  width: 8.6rem;
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  background: #ffffff;
  color: var(--muted);
  padding: 0.45rem 0.72rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
}

.header-search input:focus {
  outline: 2px solid rgba(29, 63, 102, 0.2);
  outline-offset: 0;
}

.header-search-results {
  position: fixed;
  left: 0;
  top: 0;
  width: min(1120px, calc(100% - 2rem));
  max-height: min(60vh, 620px);
  overflow-y: auto;
  border: 1px solid var(--stroke);
  border-radius: 0.95rem;
  background: #ffffff;
  box-shadow: var(--shadow);
  z-index: 80;
}

.search-result-item {
  border-top: 1px solid #e8eef6;
}

.search-result-item:first-child {
  border-top: 0;
}

.search-result-item a {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 0.72rem 0.85rem;
}

.search-result-item a:hover {
  background: rgba(29, 63, 102, 0.06);
}

.search-result-title {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
}

.search-result-excerpt {
  margin: 0.24rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.search-empty {
  margin: 0;
  padding: 0.82rem 0.9rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover {
  color: var(--primary);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 1.65rem;
  left: 0;
  min-width: 15.5rem;
  z-index: 30;
  padding: 0.5rem;
  border-radius: 0.8rem;
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.nav-dropdown[open] .nav-dropdown-menu {
  display: grid;
  gap: 0.35rem;
}

.nav-dropdown-menu a {
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(29, 63, 102, 0.09);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 2.2rem auto;
}

main#top > .section:not(.hero):not(.cta):not(.section-no-panel) {
  background: #ffffff;
  border: 1px solid #dbe3ed;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
}

main#top > .section:nth-of-type(even):not(.hero):not(.cta):not(.section-no-panel) {
  background: #eef2f7;
}

main#top > .section:not(.hero):not(.cta):not(.section-no-panel):hover {
  box-shadow: 0 10px 24px rgba(18, 38, 58, 0.06);
}

.hero {
  padding: 4rem 2.2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(240, 245, 251, 0.95)),
    linear-gradient(150deg, rgba(29, 63, 102, 0.06), rgba(45, 143, 78, 0.05));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--primary-dark);
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  font-family: "Titillium Web", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

h1 span {
  color: var(--primary-dark);
}

.hero-copy {
  color: var(--muted);
  max-width: 65ch;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.hero-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 0.8rem;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, var(--accent), #f3a447);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(230, 126, 34, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(230, 126, 34, 0.46);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--stroke);
  box-shadow: none;
}

.btn-ghost:hover {
  box-shadow: 0 10px 20px rgba(29, 63, 102, 0.14);
}

.hero-points {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.hero-points li {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(29, 63, 102, 0.06);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-slider {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.home-slider-track {
  position: relative;
  min-height: 220px;
}

.home-slide {
  display: none;
  animation: sliderFade 0.28s ease;
}

.home-slide.is-active {
  display: block;
}

.home-slide h3 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.18;
}

.home-slide p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.slide-points {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.slide-points li {
  color: var(--muted);
  position: relative;
  padding-left: 1.15rem;
  line-height: 1.45;
}

.slide-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.home-slider-controls {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slider-btn {
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--text);
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.slider-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: 0;
  background: rgba(29, 63, 102, 0.22);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--primary-dark);
}

.blog-link-slider .home-slide p:last-child {
  margin-top: 0.85rem;
}

.blog-link-slider {
  padding: 1rem 1.1rem;
}

.blog-link-slider .home-slider-track {
  min-height: 150px;
}

.blog-link-slider .home-slide h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  margin: 0.35rem 0 0.45rem;
}

.compact-related-slider {
  padding: 0.8rem 1rem;
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  background: #f6f9fd;
  box-shadow: none;
}

.compact-related-slider .home-slider-track {
  min-height: 110px;
}

.compact-related-slider .home-slide {
  animation: none;
}

.compact-related-slider .home-slide .eyebrow {
  margin-bottom: 0.18rem;
}

.compact-related-slider .related-headline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.3rem;
}

.compact-related-slider .related-headline h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.related-title-link,
.related-title-link:visited {
  color: var(--text);
  text-decoration: none;
}

.related-title-link:hover,
.related-title-link:focus-visible {
  color: var(--primary);
  text-decoration: underline;
}

.compact-related-slider .home-slide p {
  margin: 0;
}

.compact-related-slider .home-slider-controls {
  margin-top: 0.45rem;
}

@keyframes sliderFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(31, 108, 134, 0.75);
  box-shadow: var(--shadow);
}

.contact-card {
  text-align: center;
}

.contact-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 0.7rem;
  display: block;
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(21%) sepia(39%) saturate(1169%) hue-rotate(174deg) brightness(93%) contrast(92%);
}

.contact-card h3 {
  margin-bottom: 0.7rem;
}

.contact-card p {
  margin: 0;
}

.card-soft p {
  color: var(--muted);
}

.card-gradient {
  color: #ffffff;
  background: linear-gradient(145deg, #1d3f66, #2a5d99 70%, #3d71aa);
}

.card-gradient ul {
  margin: 0;
  padding-left: 1.2rem;
}

.log-manager-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(13, 40, 66, 0.9), rgba(34, 82, 130, 0.74)),
    url("../images/sfondo-ufficio.jpg") center / cover no-repeat;
}

.log-manager-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 23, 0.08), rgba(4, 13, 23, 0.32));
}

.log-manager-bg .log-manager-bg-inner {
  position: relative;
  z-index: 1;
  max-width: 74ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.stats div {
  padding: 0.75rem;
  border-radius: 0.9rem;
  background: #f3f7fb;
  border: 1px solid var(--stroke);
}

.stats strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 1.2rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section-head {
  margin-bottom: 1.2rem;
  padding-left: 0.9rem;
  border-left: 4px solid rgba(29, 63, 102, 0.28);
}

.section-head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}

.section-lead {
  margin: -0.25rem 0 1rem;
  max-width: 74ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.technical-nav .tech-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.product-links {
  grid-template-columns: repeat(3, 1fr);
}

.technical-nav .tech-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--stroke);
  background: var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease;
  word-break: break-word;
}

.technical-nav .tech-links a:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--text);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--text);
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form .btn {
  width: fit-content;
}

.form-feedback {
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.form-feedback-error {
  border-color: rgba(190, 56, 56, 0.4);
  background: rgba(255, 236, 236, 0.9);
  color: #8a2323;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.breadcrumbs {
  width: min(1120px, calc(100% - 2rem));
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--primary-dark);
  text-decoration: none;
}

.internal-hero {
  padding: 2.5rem 2rem;
}

.internal-hero h1 {
  margin-bottom: 0.6rem;
}

.spec-grid {
  grid-template-columns: repeat(3, 1fr);
}

.spec-grid .card h3 {
  margin-bottom: 0.4rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 0.8rem;
  border: 1px solid var(--stroke);
  background: var(--surface-solid);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid var(--stroke);
  vertical-align: top;
}

.spec-table th {
  background: rgba(24, 167, 209, 0.2);
  font-family: "Titillium Web", sans-serif;
}

.note-card {
  border-left: 4px solid var(--accent);
}

.quality-graph .quality-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7rem;
  padding-top: 2.2rem;
}

.quality-graph .quality-track::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  top: 2.55rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 136, 175, 0.8), rgba(24, 167, 209, 0.85));
}

.quality-milestone {
  position: relative;
}

.quality-milestone .year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 0.7rem;
  border: 1px solid var(--stroke);
  background: #f0f5fa;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.quality-milestone .node {
  position: absolute;
  top: 2.18rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid #e7edf4;
  box-shadow: 0 0 0 3px rgba(45, 143, 78, 0.2);
}

.quality-milestone:nth-child(2n) .node {
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 63, 102, 0.16);
}

.quality-milestone .milestone-card {
  margin-top: 1.25rem;
  padding: 0.9rem 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid var(--stroke);
  background: #ffffff;
  min-height: 10.2rem;
}

.quality-milestone .milestone-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.quality-milestone .milestone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid #2a2a2a;
  border-radius: 0.9rem;
  background: #050607;
}

.compare-mobile {
  display: none;
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #090a0c;
  color: #e6e6e6;
}

.compare-table thead th {
  padding: 0.8rem 0.6rem;
  border-bottom: 1px solid #2a2a2a;
  text-align: center;
  font-family: "Titillium Web", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.compare-table thead th:first-child {
  text-align: left;
  width: 260px;
  padding-left: 1rem;
}

.compare-head {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.compare-head img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.compare-table tbody td {
  border-bottom: 1px solid #222326;
  padding: 0.58rem 0.6rem;
  text-align: center;
  font-size: 0.9rem;
}

.compare-table tbody td:first-child {
  text-align: left;
  padding-left: 1rem;
  color: #d6d6d6;
  font-weight: 600;
}

.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  display: inline-block;
}

.dot.orange {
  background: #ff8f2b;
}

.dot.yellow {
  background: #f5cf4d;
}

.dot.blue {
  background: #5f88d3;
}

.dot.purple {
  background: #9a56c7;
}

.dot.green {
  background: #7bc528;
}

.dot.white {
  background: #f4f4f4;
}

.dot.empty {
  background: transparent;
  border: 1px solid #3e3e3e;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.media-gallery figure {
  margin: 0;
  padding: 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid var(--stroke);
  background: var(--surface-solid);
}

.media-gallery img {
  width: 100%;
  border-radius: 0.6rem;
  object-fit: cover;
}

.media-gallery figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-shot-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  align-items: center;
}

.product-shot-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem;
}

.grid.products {
  grid-template-columns: repeat(3, 1fr);
}

.classify-grid,
.glossary-grid,
.download-grid,
.app-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--surface-solid);
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem;
  margin-bottom: 0.85rem;
}

.product-card p {
  color: var(--muted);
}

.product-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.step-badge {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(29, 63, 102, 0.25);
}

.pricing-card .price {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
}

.pricing-card .price span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-intro-list {
  margin: -0.15rem 0 0.8rem 1.1rem;
  color: var(--text);
}

.pricing-intro-list li {
  margin-bottom: 0.3rem;
}

.pricing-benefits {
  margin: 0;
  padding-left: 1.2rem;
}

.pricing-benefits li {
  margin-bottom: 0.35rem;
}

.pricing-tech-title {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-tech {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-tech li {
  margin-bottom: 0.25rem;
}

.timeline ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(31, 108, 134, 0.75);
}

.timeline li span {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--primary);
  color: #e6e6e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.history-timeline li span {
  width: auto;
  min-width: 3.6rem;
  padding: 0 0.55rem;
  border-radius: 0.7rem;
  font-size: 0.82rem;
}

.timeline h3 {
  margin-bottom: 0.35rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.faq details {
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  background: var(--surface-solid);
  padding: 0.95rem 1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta {
  text-align: center;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #1a3658, #21486f 55%, #2a5d8c);
  color: #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-banner {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
}

.cta-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta h2 {
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.cta p {
  margin: 0 auto;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.cta .btn,
.cta .btn-ghost {
  position: relative;
  z-index: 1;
}

.cta .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.cta .btn {
  box-shadow: 0 16px 28px rgba(230, 126, 34, 0.5);
}

.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 1.2rem auto 0;
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.96);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-company-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.2rem;
  margin-right: 0.15rem;
  vertical-align: middle;
}

.footer-company-brand img {
  width: auto;
  height: 1rem;
  display: block;
}

.footer-contacts,
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.site-footer a {
  color: var(--primary);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary-dark);
}

.mobile-sticky-cta {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner .cookie-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-banner .cookie-actions .btn {
  padding: 0.6rem 0.9rem;
  min-width: 7.2rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 14, 24, 0.58);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal-panel {
  width: min(860px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cookie-modal-panel h3 {
  margin: 0 0 0.45rem;
}

.cookie-modal-panel p {
  margin: 0;
  color: var(--muted);
}

.cookie-modal-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
}

.cookie-modal-section {
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  background: var(--surface);
  overflow: hidden;
}

.cookie-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.85rem;
  background: transparent;
}

.cookie-modal-section.is-required .cookie-modal-row {
  background: #f7f9fc;
}

.cookie-modal-label strong {
  display: block;
  color: var(--text);
}

.cookie-modal-label small {
  color: var(--muted);
}

.cookie-modal-row input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--primary);
}

.cookie-modal-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--stroke);
  background: #ffffff;
}

.cookie-modal-table {
  width: 100%;
  border-collapse: collapse;
}

.cookie-modal-table th,
.cookie-modal-table td {
  text-align: left;
  padding: 0.62rem 0.75rem;
  border-bottom: 1px solid #e7edf5;
  font-size: 0.92rem;
  vertical-align: top;
}

.cookie-modal-table th {
  color: var(--text);
  background: #f7f9fc;
  font-weight: 700;
}

.cookie-modal-table td {
  color: var(--muted);
}

.cookie-modal-table tr:last-child td {
  border-bottom: 0;
}

.cookie-always-on {
  color: var(--muted);
  font-weight: 700;
}

.cookie-modal-actions {
  margin-top: 0.95rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

.zoomable-image-link {
  display: block;
}

.zoomable-image {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(8, 14, 24, 0.88);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox img {
  max-width: min(96vw, 1600px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 0.6rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
  background: #ffffff;
}

.image-lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(12, 22, 40, 0.6);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-prefs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.cookie-prefs label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .split,
  .technical-nav .tech-links,
  .product-links,
  .lead-form,
  .product-shot-card,
  .media-gallery,
  .grid.products,
  .classify-grid,
  .glossary-grid,
  .download-grid,
  .app-grid,
  .spec-grid,
  .timeline ol {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 1rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 1rem;
    justify-content: space-between;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header .btn-small {
    display: none;
  }

  .header-search {
    order: 10;
    flex: 1 1 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .header-search input {
    width: 100%;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font-size: 1rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.45rem);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--stroke);
    border-radius: 0.95rem;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    gap: 0.3rem;
    z-index: 40;
  }

  .main-nav a {
    display: block;
    padding: 0.62rem 0.7rem;
    border-radius: 0.65rem;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(29, 63, 102, 0.08);
  }

  .site-header.menu-open .main-nav {
    display: grid;
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero {
    padding: 2.8rem 1.15rem;
  }

  .section {
    margin: 1.4rem auto;
  }

  .mobile-sticky-cta {
    display: inline-flex;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: linear-gradient(130deg, var(--accent), #f3a447);
    box-shadow: 0 14px 24px rgba(230, 126, 34, 0.35);
    z-index: 30;
  }

  main#top {
    padding-bottom: 5.4rem;
  }

  .cookie-banner {
    bottom: calc(5.9rem + env(safe-area-inset-bottom));
  }

  .cookie-banner-inner {
    display: grid;
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .cookie-prefs {
    display: grid;
    gap: 0.45rem;
  }

  .cookie-banner .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .cookie-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .cookie-modal {
    padding: 0.7rem;
  }

  .cookie-modal-panel {
    width: 100%;
    max-height: 88vh;
    padding: 0.85rem;
  }

  .cookie-modal-row {
    padding: 0.65rem 0.7rem;
  }

  .cookie-modal-table th,
  .cookie-modal-table td {
    padding: 0.55rem 0.6rem;
    font-size: 0.88rem;
  }

  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-search-results {
    width: calc(100% - 2rem);
    max-height: 52vh;
  }

  .compare-desktop {
    display: none;
  }

  .compare-mobile {
    display: grid;
    gap: 0.85rem;
  }

  .compare-mobile .card {
    background: var(--surface-solid);
    border-color: var(--stroke);
  }

  .compare-mobile h3 {
    margin-bottom: 0.45rem;
  }

  .compare-mobile ul {
    margin: 0;
    padding-left: 1.1rem;
  }

  .compare-mobile li {
    color: var(--muted);
    margin-bottom: 0.25rem;
  }

  .quality-graph .quality-track {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-top: 0;
    padding-left: 1.2rem;
  }

  .quality-graph .quality-track::before {
    left: 0.55rem;
    right: auto;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(15, 136, 175, 0.8), rgba(24, 167, 209, 0.85));
  }

  .quality-milestone .year {
    margin-left: 0.6rem;
  }

  .quality-milestone .node {
    top: 0.56rem;
    left: -1.22rem;
    transform: none;
  }

  .quality-milestone .milestone-card {
    margin-top: 0.45rem;
    min-height: auto;
  }

  .site-footer {
    margin-top: 0.8rem;
    margin-bottom: 5.6rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  .site-footer-inner {
    display: grid;
    gap: 0.55rem;
    align-items: start;
  }

  .site-footer p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .footer-contacts,
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }
}
