@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans/open-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans/open-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans/open-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway/raleway-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

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

:root {
  --bg: #f4f5f7;
  --bg-2: #eceff2;
  --text: #292929;
  --muted: #5d5d5d;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --stroke: #d8d8d8;
  --primary: #980b00;
  --primary-dark: #650700;
  --accent: #980b00;
  --shadow: 0 12px 30px rgba(20, 20, 20, 0.1);
  --radius-lg: 0.3rem;
  --radius-md: 0.2rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", 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(152, 11, 0, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 85% 8%, rgba(41, 41, 41, 0.07) 0%, transparent 35%),
    linear-gradient(160deg, var(--bg) 20%, var(--bg-2) 100%);
}

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

.warranty-strip {
  width: min(1120px, calc(100% - 2rem));
  margin: 0.7rem auto 0;
  padding: 0.8rem 1rem;
  border-radius: 0.18rem;
  border: 1px solid rgba(152, 11, 0, 0.22);
  background: linear-gradient(90deg, rgba(152, 11, 0, 0.08), rgba(41, 41, 41, 0.1));
  box-shadow: var(--shadow);
}

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

.warranty-strip small {
  font-family: "Open Sans", 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: "Open Sans", 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.18rem;
  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: 0.14rem;
  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.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
}

.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.18rem;
  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(152, 11, 0, 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.18rem;
  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(152, 11, 0, 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.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  line-height: 1;
  padding: 0;
}

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

.nav-dropdown summary::after {
  content: "▾";
  font-size: 0.65rem;
  line-height: 1;
  color: #7a7a7a;
  transition: transform 0.18s ease, color 0.18s ease;
}

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

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

.nav-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.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.2rem;
  border: 1px solid #3a3a3a;
  background: #292929;
  box-shadow: var(--shadow);
}

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

.nav-dropdown-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.11);
}

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

.section-fullbleed {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

main#top > .section-fullbleed:not(.section-no-panel) {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

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(245, 245, 245, 0.95)),
    linear-gradient(150deg, rgba(152, 11, 0, 0.06), rgba(41, 41, 41, 0.06));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.legacy-home-hero {
  text-align: center;
  color: #ffffff;
  min-height: clamp(420px, 60vh, 660px);
  display: grid;
  align-content: center;
  justify-items: center;
  background: #292929;
  border-color: #3a3a3a;
}

.legacy-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.38), rgba(20, 20, 20, 0.52));
  z-index: 1;
}

.legacy-home-hero .hero-media {
  opacity: 1;
}

.legacy-home-hero .hero-media img {
  filter: saturate(1.02) contrast(1.08) brightness(1.08);
  object-position: center 30%;
}

.legacy-home-hero .eyebrow,
.legacy-home-hero h1,
.legacy-home-hero .hero-copy,
.legacy-home-hero .hero-note,
.legacy-home-hero .hero-points,
.legacy-home-hero .hero-actions {
  position: relative;
  z-index: 2;
}

.legacy-home-hero .eyebrow,
.legacy-home-hero h1 span {
  color: #ffffff;
}

.legacy-home-hero .hero-copy {
  color: rgba(255, 255, 255, 0.9);
  max-width: 66ch;
}

.legacy-home-hero .hero-actions {
  justify-content: center;
}

.legacy-home-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: transparent;
}

.legacy-home-hero .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.legacy-home-hero .hero-points li {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.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,
h4,
h5,
h6 {
  font-family: "Raleway", 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: 1px solid #7d140d;
  border-radius: 0.18rem;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1;
  height: 2rem;
  padding: 0 0.86rem;
  background: #2a0b08;
  color: #e6e6e6;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(30, 8, 6, 0.24);
  transition:
    transform 0.18s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:visited {
  color: #e6e6e6;
}

.btn:hover {
  transform: translateY(-1px);
  background: #7d140d;
  border-color: #a42016;
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(70, 12, 8, 0.34);
}

.btn:visited:hover {
  color: #ffffff;
}

.btn-small {
  font-size: 0.72rem;
  line-height: 1;
  min-height: 2rem;
  padding: 0.46rem 0.86rem;
}

.site-header .btn-small {
  background: #ffffff;
  color: #980b00;
  border: 2px solid #980b00;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1;
  min-height: 2rem;
  padding: 0.46rem 0.86rem;
}

.site-header .btn-small:visited {
  color: #980b00;
}

.site-header .btn-small:hover,
.site-header .btn-small:visited:hover {
  background: #fff4f3;
  color: #7d140d;
  border-color: #7d140d;
  box-shadow: none;
  transform: none;
}

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

.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: 0.14rem;
  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: 0.14rem;
  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: 0.14rem;
  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: 0.22rem;
  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;
}

.split > * {
  min-width: 0;
}

.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);
  min-width: 0;
}

.card img {
  display: block;
  max-width: 100%;
  height: auto;
}

.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.18rem;
  background: #f3f7fb;
  border: 1px solid var(--stroke);
}

.stats strong {
  display: block;
  font-family: "Open Sans", 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(152, 11, 0, 0.35);
}

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

.mini-link-list {
  margin: 0;
  padding-left: 1.1rem;
}

.mini-link-list li {
  margin-bottom: 0.4rem;
}

.mini-link-list a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(152, 11, 0, 0.2);
}

.mini-link-list a:hover {
  color: var(--primary);
  border-bottom-color: rgba(152, 11, 0, 0.55);
}

.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.18rem;
  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;
}

.form-group-title {
  margin: 0.25rem 0 0;
  padding-top: 0.45rem;
  border-top: 1px solid var(--stroke);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.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.16rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lead-form textarea {
  resize: vertical;
}

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

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

.contact-form-note-list {
  margin: 0.2rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-form-note-list li + li {
  margin-top: 0.35rem;
}

.contact-side-panels {
  display: grid;
  gap: 1rem;
}

.contact-trust-list {
  margin: 0;
  padding-left: 1.2rem;
}

.contact-trust-list li + li {
  margin-top: 0.65rem;
}

.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.18rem;
  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: "Open Sans", 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.16rem;
  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: 0.14rem;
  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.18rem;
  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.18rem;
  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: "Open Sans", 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: 0.14rem;
  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.18rem;
  border: 1px solid var(--stroke);
  background: var(--surface-solid);
}

.media-gallery img {
  width: 100%;
  border-radius: 0.14rem;
  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.16rem;
  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.16rem;
  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: 0.14rem;
  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: 0.14rem;
  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.16rem;
  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.18rem;
  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, #222222, #2d2d2d 55%, #3a3a3a);
  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;
  height: 2.2rem;
  min-height: 2.2rem;
  padding: 0 1rem;
  font-size: 0.72rem;
  line-height: 1;
}

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

.cta .btn {
  box-shadow: none;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: linear-gradient(180deg, #222325 0%, #1c1d1f 100%);
}

.site-footer-inner {
  display: grid;
  gap: 0;
}

.site-footer-legacy {
  display: grid;
  gap: 0;
}

.footer-grid {
  display: grid;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  padding: 1.25rem 0 1.45rem;
}

.footer-col h3 {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.96);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.42rem;
  line-height: 1.4;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-legal {
  margin: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f4f4f4;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.footer-legal .footer-company,
.footer-legal .footer-company a,
.footer-legal .footer-company-brand span {
  color: #111111;
}

.footer-legal .footer-company {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  line-height: 1.35;
}

.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: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.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.18rem;
  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: 0.22rem;
  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.18rem;
  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;
  max-width: 100%;
  overflow: hidden;
}

.zoomable-image {
  cursor: zoom-in;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.smart-controls-grid .control-card {
  text-align: left;
}

.control-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.control-head h3 {
  margin: 0;
}

.control-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
}

.control-icon.is-green {
  filter: brightness(0) saturate(100%) invert(32%) sepia(76%) saturate(1323%) hue-rotate(88deg) brightness(91%) contrast(86%);
}

.control-icon.is-blue {
  filter: brightness(0) saturate(100%) invert(23%) sepia(48%) saturate(935%) hue-rotate(175deg) brightness(94%) contrast(92%);
}

.control-icon.is-orange {
  filter: brightness(0) saturate(100%) invert(46%) sepia(97%) saturate(1059%) hue-rotate(355deg) brightness(96%) contrast(90%);
}

.control-icon.is-red {
  filter: brightness(0) saturate(100%) invert(18%) sepia(87%) saturate(3367%) hue-rotate(356deg) brightness(79%) contrast(97%);
}

.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.14rem;
  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: 0.14rem;
  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,
  .split-columns-3,
  .spec-grid,
  .timeline ol {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: min(1120px, calc(100% - 1.5rem));
    padding: 1rem 0 1.2rem;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    border-radius: 0.22rem;
    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: 0.14rem;
    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.18rem;
    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.14rem;
  }

  .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: 0.14rem;
    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;
    margin-bottom: 5.6rem;
    padding: 0;
    border-radius: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: calc(100% - 1.25rem);
    padding: 0.85rem 0 1rem;
  }

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

  .footer-legal .footer-company {
    width: calc(100% - 1.25rem);
    padding: 0.85rem 0;
  }

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