:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-strong: #edf2f7;
  --text: #17202c;
  --muted: #667384;
  --line: #d7e0ea;
  --accent: #0e6fc5;
  --accent-strong: #095593;
  --warning: #f3b426;
  --shadow: 0 18px 45px rgba(23, 32, 44, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

body,
main {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 224, 234, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 7px solid var(--accent);
  border-right-color: var(--warning);
  border-radius: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #445266;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.site-footer a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.header-cta,
.button.primary {
  background: var(--accent);
  color: #fff;
}

.header-cta:hover,
.button.primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  max-width: 1240px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 48px 54px;
}

.hero > *,
.equipment > *,
.contacts > * {
  min-width: 0;
}

.hero::after {
  position: absolute;
  right: 48px;
  bottom: 0;
  left: 48px;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  overflow-wrap: anywhere;
}

.page-dates {
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.page-dates time {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 560px;
  margin: 46px 0 0;
}

.hero-facts div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-facts dt {
  margin: 0;
  font-size: 26px;
  font-weight: 850;
}

.hero-facts dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  align-self: center;
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 38px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 111, 197, 0.09), rgba(255, 255, 255, 0) 42%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  inset: 12% 8% auto auto;
  width: 42%;
  height: 1px;
  background: var(--line);
  box-shadow:
    -140px 90px 0 var(--line),
    -60px 190px 0 var(--line),
    -180px 300px 0 var(--line);
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  border-radius: 10px;
  filter: drop-shadow(0 28px 28px rgba(23, 32, 44, 0.18));
}

.visual-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 2px;
  max-width: 260px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 32, 44, 0.12);
}

.visual-note strong {
  font-size: 18px;
}

.visual-note span {
  color: var(--muted);
  font-size: 13px;
}

.models-section,
.benefits,
.equipment,
.contacts {
  max-width: 1240px;
  margin: 0 auto;
  padding: 86px 48px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-heading.compact {
  align-items: start;
}

.section-heading h2,
.equipment-copy h2,
.contact-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 830;
  line-height: 1;
}

.section-heading p,
.equipment-copy p,
.contact-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.outdoor-section {
  padding-top: 42px;
}

.series-link-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.model-card {
  display: grid;
  min-height: 420px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.model-card .model-image-link {
  display: block;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  margin-bottom: 18px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.model-card .image-slider {
  margin-bottom: 18px;
}

.model-card .image-slider .model-image-link {
  width: 100%;
  margin-bottom: 0;
  border-bottom: 0;
}

.model-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: contain;
  padding: 10px;
  transition: transform 180ms ease;
}

.model-card .model-image-link:hover img,
.model-card .model-image-link:focus-visible img {
  transform: scale(1.055);
}

.model-card .model-image-link:focus-visible {
  outline: 3px solid rgba(14, 111, 197, 0.35);
  outline-offset: 3px;
}

.model-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.model-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.model-size {
  align-self: end;
  color: var(--accent);
  font-size: 17px;
  font-weight: 800;
}

.model-card a {
  align-self: end;
  width: fit-content;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 2px solid var(--warning);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 38px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 48px 42px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 700;
}

.product-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.product-hero p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.product-media {
  display: grid;
  gap: 14px;
}

.image-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.image-slider-link {
  display: block;
  width: 100%;
}

.image-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.image-slider-arrow:hover,
.image-slider-arrow:focus-visible {
  background: #fff;
  border-color: rgba(14, 111, 197, 0.5);
  transform: translateY(-50%) scale(1.06);
}

.image-slider-arrow:focus-visible {
  outline: 3px solid rgba(14, 111, 197, 0.35);
  outline-offset: 2px;
}

.image-slider-prev {
  left: 12px;
}

.image-slider-next {
  right: 12px;
}

.image-slider-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
}

.product-media-main,
.product-media-secondary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-media-main {
  padding: 18px;
}

.product-image-slider {
  padding: 18px;
  box-shadow: var(--shadow);
}

.product-media-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
  overflow: visible;
  box-shadow: none;
}

.product-media img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.product-media .model-image-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-media .model-image-link img {
  transition: transform 180ms ease;
}

.product-media .model-image-link:hover img,
.product-media .model-image-link:focus-visible img {
  transform: scale(1.045);
}

.product-media .model-image-link:focus-visible {
  outline: 3px solid rgba(14, 111, 197, 0.35);
  outline-offset: 3px;
}

.product-media-secondary img {
  height: 150px;
  max-height: none;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
}

.product-content,
.related-models,
.configurator-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 48px;
}

.product-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 30px;
  align-items: start;
}

.content-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-panel h2,
.related-models h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.content-panel h3 {
  margin: 0;
  font-size: 22px;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  font-size: 17px;
}

.content-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.product-specs {
  display: grid;
  gap: 0;
  align-self: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(23, 32, 44, 0.08);
}

.product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.product-specs div:last-child {
  border-bottom: 0;
}

.product-specs span {
  color: var(--muted);
}

.product-specs strong {
  text-align: right;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.related-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.related-card strong {
  font-size: 18px;
}

.related-card a {
  color: var(--accent);
  font-weight: 800;
}

.configurator-hero {
  align-items: stretch;
}

.configurator-preview,
.configurator-frame {
  overflow: hidden;
  background: #dce0e6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.configurator-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.configurator-preview iframe,
.configurator-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.configurator-frame iframe {
  min-height: 760px;
}

.benefits {
  background: #17202c;
  color: #fff;
  max-width: none;
}

.benefits > * {
  max-width: 1144px;
  margin-right: auto;
  margin-left: auto;
}

.benefits .section-heading p {
  color: #b9c5d2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.benefit-item {
  min-height: 220px;
  padding: 28px;
  background: #202c3a;
}

.benefit-item h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.benefit-item p {
  margin: 0;
  color: #b9c5d2;
  font-size: 15px;
}

.icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  color: var(--warning);
  background: currentColor;
}

.ventilation {
  clip-path: polygon(0 12%, 100% 12%, 100% 24%, 0 24%, 0 44%, 100% 44%, 100% 56%, 0 56%, 0 76%, 100% 76%, 100% 88%, 0 88%);
}

.lock {
  border-radius: 6px;
  clip-path: polygon(20% 42%, 20% 100%, 80% 100%, 80% 42%, 68% 42%, 68% 27%, 60% 16%, 50% 12%, 40% 16%, 32% 27%, 32% 42%);
}

.chain {
  clip-path: polygon(38% 0, 62% 0, 62% 38%, 100% 38%, 100% 62%, 62% 62%, 62% 100%, 38% 100%, 38% 62%, 0 62%, 0 38%, 38% 38%);
}

.ramp {
  clip-path: polygon(4% 76%, 100% 44%, 100% 62%, 4% 94%);
}

.coating {
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
}

.mount {
  clip-path: polygon(10% 0, 30% 0, 30% 36%, 70% 36%, 70% 0, 90% 0, 90% 100%, 70% 100%, 70% 60%, 30% 60%, 30% 100%, 10% 100%);
}

.equipment {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 46px;
  align-items: start;
}

.spec-list {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list span {
  color: var(--muted);
}

.spec-list strong {
  text-align: right;
  font-size: 18px;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 46px;
  align-items: start;
  padding-top: 42px;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-copy a {
  width: fit-content;
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
}

.contact-copy .download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 44, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #344257;
  font-size: 14px;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 15px;
  resize: vertical;
}

.lead-form input[type="file"] {
  padding: 7px;
  color: var(--muted);
  font-weight: 700;
}

.lead-form input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.lead-form input[type="file"]::file-selector-button:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.lead-form .captcha-field input {
  max-width: 180px;
}

.lead-form .consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.lead-form .consent-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--accent);
}

.lead-form .consent-field a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(14, 111, 197, 0.18);
  border-color: var(--accent);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 48px 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 48px 42px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 0.98;
}

.legal-hero > p:not(.legal-kicker):not(.page-dates) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 30px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 48px 86px;
}

.legal-layout > *,
.legal-hero > * {
  min-width: 0;
}

.legal-article {
  display: grid;
  gap: 18px;
}

.legal-article section,
.legal-aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-article section {
  padding: 28px 30px;
}

.legal-article h2,
.legal-aside h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.legal-article p,
.legal-article li,
.legal-aside p {
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.legal-article p {
  margin: 0 0 14px;
}

.legal-article p:last-child,
.legal-aside p {
  margin-bottom: 0;
}

.legal-article ul,
.legal-article ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.legal-article a,
.legal-aside a {
  color: var(--accent);
  font-weight: 800;
}

.legal-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(23, 32, 44, 0.08);
}

.legal-aside > a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.legal-aside > a[aria-current="page"] {
  color: var(--text);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    min-height: auto;
    padding: 18px 26px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }

  .hero,
  .product-hero,
  .equipment,
  .contacts,
  .product-content,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 52px 26px 42px;
  }

  .product-hero,
  .product-content,
  .related-models,
  .legal-hero,
  .legal-layout {
    padding: 42px 26px;
  }

  .legal-aside {
    position: static;
  }

  .hero-visual {
    min-height: 470px;
  }

  .models-section,
  .equipment,
  .contacts {
    padding: 64px 26px;
  }

  .benefits {
    padding: 64px 26px;
  }

  .section-heading {
    display: grid;
  }

  .model-grid,
  .benefit-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand {
    font-size: 14px;
  }

  .header-cta {
    width: 100%;
  }

  .main-nav {
    font-size: 13px;
  }

  .hero {
    padding: 42px 18px 34px;
  }

  .product-hero,
  .product-content,
  .related-models {
    padding: 34px 18px;
  }

  .product-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-facts,
  .model-grid,
  .benefit-grid,
  .related-grid,
  .product-media-secondary {
    grid-template-columns: 1fr;
  }

  .product-media-secondary img {
    height: 190px;
  }

  .content-panel {
    padding: 22px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
    padding: 22px;
  }

  .visual-note {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }

  .models-section,
  .equipment,
  .contacts,
  .benefits {
    padding: 52px 18px;
  }

  .model-card {
    min-height: 0;
  }

  .spec-list div {
    display: grid;
    gap: 6px;
  }

  .spec-list strong {
    text-align: left;
  }

  .lead-form {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px 34px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero,
  .legal-layout {
    padding: 34px 18px;
  }

  .legal-hero h1 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.04;
  }

  .legal-hero > p:not(.legal-kicker):not(.page-dates) {
    font-size: 18px;
  }

  .legal-article section,
  .legal-aside {
    padding: 22px;
  }
}
