:root {
  --ink: #0d252a;
  --ink-soft: #18363c;
  --paper: #f3f1ea;
  --paper-light: #fbfaf6;
  --sand: #d9a84e;
  --sand-light: #efc66f;
  --mist: #b8c5c5;
  --line-dark: rgba(13, 37, 42, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --container: min(1400px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: white;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--sand-light);
  outline-offset: 3px;
}

button,
input,
select {
  font: inherit;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: white;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.header.scrolled {
  background: rgba(13, 37, 42, 0.93);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header--solid {
  background: rgba(13, 37, 42, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header__inner {
  width: var(--container);
  height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo i {
  color: var(--sand-light);
  font-style: normal;
}

.logo__mark {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--sand-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav a:hover {
  color: white;
}

.nav a[aria-current="page"] {
  color: white;
}

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch {
  position: relative;
  flex: 0 0 auto;
}

.header__actions > .language-switch {
  margin-right: 8px;
}

.language-switch__current {
  height: 31px;
  padding: 0 9px 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  background: rgba(7, 18, 22, 0.18);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.language-switch__current:hover,
.language-switch.open .language-switch__current {
  border-color: var(--sand-light);
  background: rgba(7, 18, 22, 0.6);
}

.language-switch__flag {
  font-size: 15px;
  line-height: 1;
}

.language-switch__code {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switch__current i {
  margin-top: -3px;
  color: var(--sand-light);
  font-size: 12px;
  font-style: normal;
  transition: transform 0.25s ease;
}

.language-switch.open .language-switch__current i {
  transform: rotate(180deg);
}

.language-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 160px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 3px;
  background: rgba(7, 18, 22, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  backdrop-filter: blur(18px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.language-switch.open .language-switch__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switch__menu button {
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.language-switch__menu button:hover,
.language-switch__menu button.active {
  color: var(--ink);
  background: var(--sand-light);
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-social {
  position: relative;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.header-social:hover {
  border-color: var(--sand-light);
  color: var(--ink);
  background: var(--sand-light);
  transform: translateY(-2px);
}

.header-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-social--telegram svg {
  fill: currentColor;
  stroke: none;
}

.header-social--max span {
  font-size: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header__phone {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.button {
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 0 20px;
  white-space: nowrap;
}

.button--light {
  background: white;
}

.button--light:hover {
  background: var(--sand-light);
}

.button--accent {
  background: var(--sand-light);
}

.button--accent:hover {
  background: white;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  backdrop-filter: blur(4px);
}

.button--ghost:hover {
  border-color: white;
  background: white;
  color: var(--ink);
}

.button--dark {
  width: 100%;
  background: var(--ink);
  color: white;
}

.button--dark:hover {
  background: #173238;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("assets/hero-kazakhstan.webp");
  background-position: center center;
  background-size: cover;
  transform: scale(1.03);
  animation: hero-in 1.8s cubic-bezier(0.2, 0.7, 0, 1) both;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 25, 29, 0.84) 0%, rgba(7, 25, 29, 0.48) 42%, rgba(7, 25, 29, 0.03) 75%),
    linear-gradient(180deg, rgba(7, 25, 29, 0.24) 0%, transparent 40%, rgba(7, 25, 29, 0.62) 100%);
}

.hero__sonar {
  position: absolute;
  top: 52%;
  right: 9%;
  width: 400px;
  height: 400px;
  transform: translateY(-50%);
  opacity: 0.24;
  pointer-events: none;
}

.hero__sonar::before,
.hero__sonar span {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero__sonar::before {
  width: 4px;
  height: 4px;
  border: 0;
  background: var(--sand-light);
  box-shadow: 0 0 20px var(--sand-light);
}

.hero__sonar span:nth-child(1) {
  width: 34%;
  height: 34%;
}

.hero__sonar span:nth-child(2) {
  width: 67%;
  height: 67%;
}

.hero__sonar span:nth-child(3) {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: auto;
  padding-top: clamp(180px, 24vh, 250px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--sand-light);
}

.eyebrow--dark {
  color: rgba(7, 18, 22, 0.58);
}

.hero h1 {
  max-width: 950px;
  margin: 28px 0 26px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(58px, 7.8vw, 124px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero h1.hero__title--long {
  max-width: 1120px;
  font-size: clamp(44px, 4.6vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hero__title--long span,
.hero__title--long em {
  display: block;
}

.hero h1 em,
.section-title em,
.footer h2 em {
  color: var(--sand-light);
  font-style: normal;
}

.hero__lead {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

html[lang="kk"] .hero__buttons {
  margin-top: 48px;
}

.hero__meta {
  position: absolute;
  z-index: 2;
  right: max(40px, calc((100vw - 1400px) / 2));
  bottom: 55px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__meta div {
  min-width: 150px;
  padding: 18px 24px 0 0;
}

.hero__meta small,
.showroom__card small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__meta strong {
  font-size: 12px;
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: max(40px, calc((100vw - 1400px) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll i {
  position: relative;
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  animation: scroll-line 2s ease-in-out infinite;
}

.section {
  padding: 130px 0;
}

.section__grid,
.section__head,
.catalog-grid,
.brands,
.about__top,
.values {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.section__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 120px;
}

.section-title {
  max-width: 920px;
  margin: 24px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(38px, 4.5vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.section-title em {
  color: #91702f;
}

.section-title--light {
  color: white;
}

.section-title--light em {
  color: var(--sand-light);
}

.intro {
  padding-bottom: 0;
  background: var(--paper-light);
}

.intro__copy {
  padding-top: 42px;
}

.intro__copy p {
  margin: 0 0 22px;
  color: rgba(7, 18, 22, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.ticker {
  margin-top: 120px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.ticker__track {
  width: max-content;
  padding: 23px 0;
  display: flex;
  align-items: center;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 0 38px;
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  white-space: nowrap;
}

.ticker i {
  color: #a1792d;
  font-style: normal;
}

.catalog {
  background: var(--paper);
}

.section__head {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 80px;
}

.section__head p {
  margin: 0 0 8px;
  color: rgba(7, 18, 22, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(3, 310px);
  gap: 18px;
}

.product-card {
  position: relative;
  padding: 38px;
  color: white;
  background: #122226;
  overflow: hidden;
}

.product-card--large {
  grid-row: 1 / 4;
}

.product-card img,
.product-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-card img {
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0, 1);
}

.product-card__shade {
  background: linear-gradient(180deg, rgba(7, 18, 22, 0.05) 20%, rgba(7, 18, 22, 0.9) 100%);
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card__number {
  min-width: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
  line-height: 1;
}

.product-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-card__content {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 38px;
  left: 38px;
}

.product-card__meta > span:last-child {
  color: var(--sand-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 14px 0 18px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.product-card:not(.product-card--large) h3 {
  font-size: clamp(24px, 2.4vw, 38px);
}

.product-card p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.6;
}

.product-card a {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.product-card a i {
  color: var(--sand-light);
  font-style: normal;
  transition: transform 0.25s ease;
}

.product-card a:hover i {
  transform: translate(3px, -3px);
}

.product-card--plain {
  background: #10272c;
}

.product-card--sand {
  color: var(--ink);
  background: #d5b677;
}

.product-card--sand .product-card__number,
.product-card--sand .product-card__meta > span:last-child,
.product-card--sand p {
  color: rgba(7, 18, 22, 0.62);
}

.product-card--sand a {
  color: var(--ink);
  border-color: rgba(7, 18, 22, 0.24);
}

.product-card--sand a i {
  color: var(--ink);
}

.pulse-icon {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 45%;
  fill: none;
  stroke: rgba(239, 198, 111, 0.8);
  stroke-width: 2;
}

.map-lines {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(7, 18, 22, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(7, 18, 22, 0.04),
    0 0 0 90px rgba(7, 18, 22, 0.035);
}

.brands {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brands > span {
  color: rgba(7, 18, 22, 0.48);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brands > div {
  display: flex;
  align-items: center;
  gap: clamp(25px, 4vw, 60px);
}

.brands a,
.brands > div > span {
  position: relative;
  color: rgba(7, 18, 22, 0.66);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(11px, 1.2vw, 16px);
  font-weight: 500;
  transition: color 0.25s ease;
}

.brands a::after {
  content: "↓";
  position: absolute;
  top: -8px;
  right: -10px;
  color: #91702f;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.brands a:hover {
  color: #91702f;
}

.brands a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.popular {
  color: white;
  background: var(--ink);
}

#garmin-products,
#lowrance-products {
  scroll-margin-top: 105px;
}

.popular__head,
.popular__brands {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.popular__head {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 90px;
}

.popular__head > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.75;
}

.popular__brands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-showcase {
  min-width: 0;
  background: #17343a;
}

.brand-showcase__image {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.brand-showcase__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 18, 22, 0.72));
}

.brand-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0, 1);
}

.brand-showcase:hover .brand-showcase__image img {
  transform: scale(1.025);
}

.brand-showcase__image > span {
  position: absolute;
  z-index: 2;
  bottom: 27px;
  left: 30px;
  font-family: "Unbounded", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.brand-showcase__models {
  padding: 8px 30px 14px;
}

.model-row {
  min-height: 190px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.model-row:last-child {
  border-bottom: 0;
}

.model-row small {
  display: block;
  margin-bottom: 9px;
  color: var(--sand-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-row h3 {
  margin: 0 0 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.model-row h3 a,
.accessory-card h3 a {
  transition: color 0.25s ease;
}

.model-row h3 a:hover {
  color: var(--sand-light);
}

.model-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.55;
}

.model-row .price-actions {
  min-width: 148px;
}

.model-row .price-action--primary {
  min-height: 42px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 11px;
  font-weight: 700;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.model-row .price-action--primary:hover {
  border-color: var(--sand-light);
  color: var(--ink);
  background: var(--sand-light);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal {
  padding-top: 180px;
  color: var(--ink);
  background: var(--paper-light);
}

.legal__head,
.legal__content {
  width: var(--container);
  margin: 0 auto;
}

.legal__head {
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-dark);
}

.legal__head h1 {
  max-width: min(1100px, 100%);
  margin: 24px 0 22px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(32px, 6.2vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.legal__head h1 em {
  color: #91702f;
  font-style: normal;
}

.legal__head > p {
  margin: 0;
  color: rgba(13, 37, 42, 0.56);
}

.legal__content {
  max-width: 920px;
  padding: 70px 0 20px;
}

.legal__content section {
  padding: 0 0 44px;
}

.legal__content h2 {
  margin: 0 0 16px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
}

.legal__content p {
  margin: 0;
  color: rgba(13, 37, 42, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.legal__content a {
  color: #7e6028;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-fallback {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  background: white;
}

.seo-fallback h3 {
  margin: 0 0 12px;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
}

.seo-fallback p {
  margin: 0 0 20px;
  color: rgba(13, 37, 42, 0.65);
}

.seo-fallback ul {
  margin: 0;
  padding-left: 20px;
  columns: 2;
}

.seo-fallback li {
  margin-bottom: 8px;
  break-inside: avoid;
}

.seo-fallback a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store {
  background:
    radial-gradient(circle at 12% 4%, rgba(217, 168, 78, 0.13), transparent 25%),
    linear-gradient(180deg, #f7f7f2 0%, #e9efeb 100%);
}

.store__head,
.store__toolbar,
.store__grid,
.store__empty,
.store__note {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.store__head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: end;
  gap: 80px;
}

.store__head > p {
  margin: 0 0 8px;
  color: rgba(13, 37, 42, 0.64);
  font-size: 15px;
  line-height: 1.75;
}

.store__toolbar {
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid rgba(13, 37, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 45px rgba(13, 37, 42, 0.06);
  backdrop-filter: blur(12px);
}

.store__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.store__categories button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(13, 37, 42, 0.14);
  border-radius: 999px;
  color: rgba(13, 37, 42, 0.72);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.store__categories button:hover,
.store__categories button.active {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.store__controls {
  display: grid;
  grid-template-columns: 190px 150px auto;
  align-items: center;
  gap: 8px;
}

.store__controls input,
.store__controls select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(13, 37, 42, 0.16);
  border-radius: 0;
  color: var(--ink);
  background: white;
  font-size: 12px;
  outline: 0;
}

.store__controls input:focus,
.store__controls select:focus {
  border-color: #9d762d;
}

.store__controls output {
  min-width: 60px;
  color: rgba(13, 37, 42, 0.5);
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  text-align: right;
}

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

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

.store-card {
  min-width: 0;
  border: 1px solid rgba(13, 37, 42, 0.11);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(13, 37, 42, 0.05);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.store-card:hover {
  border-color: rgba(145, 112, 47, 0.35);
  box-shadow: 0 24px 60px rgba(13, 37, 42, 0.11);
  transform: translateY(-5px);
}

.store-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(13, 37, 42, 0.08);
  background: #f8f9f7;
  overflow: hidden;
}

.store-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0, 1);
}

.store-card:hover .store-card__image img {
  transform: scale(1.025);
}

.store-card__image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: white;
  background: rgba(13, 37, 42, 0.9);
  font-family: "Unbounded", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.store-card__body {
  min-height: 0;
  padding: 24px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.store-card__body > small {
  margin-bottom: 11px;
  color: #91702f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-card h3 {
  margin: 0 0 13px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.store-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.store-card h3 a {
  transition: color 0.25s ease;
}

.store-card h3 a:hover {
  color: #91702f;
}

.store-card__body > p {
  margin: 0 0 22px;
  color: rgba(13, 37, 42, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.store-card__footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 37, 42, 0.12);
}

.store-card__prices {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.store-card__prices > div {
  min-width: 0;
}

.store-card__prices > div > span {
  margin-bottom: 4px;
  display: block;
  color: rgba(13, 37, 42, 0.47);
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
}

.store-card__footer strong {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 600;
  line-height: 1.25;
}

.store-card__price-rub {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(13, 37, 42, 0.12);
  color: rgba(13, 37, 42, 0.64);
  background: rgba(246, 247, 244, 0.9);
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.store-card .price-actions {
  width: 100%;
}

.store-card .price-action--primary {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.store-card .price-action--primary i {
  color: var(--sand-light);
  font-style: normal;
}

.store-card .price-action--primary:hover {
  color: var(--ink);
  background: var(--sand-light);
}

.store-card .price-action--primary:hover i {
  color: var(--ink);
}

.store__empty {
  padding: 70px 20px;
  border: 1px dashed rgba(13, 37, 42, 0.22);
  color: rgba(13, 37, 42, 0.58);
  text-align: center;
}

.store__note {
  margin-top: 25px;
  color: rgba(13, 37, 42, 0.48);
  font-size: 11px;
  line-height: 1.6;
}

.store__all {
  width: var(--container);
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.store__all .button {
  width: auto;
  min-width: 260px;
}

.store__all p {
  max-width: 480px;
  margin: 0;
  color: rgba(13, 37, 42, 0.54);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.catalog-hero {
  position: relative;
  min-height: 780px;
  padding: 210px 0 120px;
  display: flex;
  align-items: center;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.catalog-hero__visual,
.catalog-hero__shade {
  position: absolute;
  inset: 0;
}

.catalog-hero__visual {
  background-image: url("assets/products-garmin.webp");
  background-position: 70% center;
  background-size: cover;
  transform: scale(1.03);
}

.catalog-hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 25, 29, 0.94) 0%, rgba(7, 25, 29, 0.76) 48%, rgba(7, 25, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 25, 29, 0.18), rgba(7, 25, 29, 0.74));
}

.catalog-hero__content,
.catalog-hero__facts {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.catalog-hero__content h1 {
  max-width: 1050px;
  margin: 28px 0 26px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(52px, 6.5vw, 100px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.catalog-hero__content h1 em {
  color: var(--sand-light);
  font-style: normal;
}

.catalog-hero__content > p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.catalog-hero__actions {
  margin-top: 38px;
  display: flex;
  gap: 12px;
}

.catalog-hero__facts {
  position: absolute;
  right: 0;
  bottom: 44px;
  left: 0;
  display: flex;
  justify-content: flex-end;
}

.catalog-hero__facts div {
  min-width: 165px;
  padding: 16px 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.catalog-hero__facts strong,
.catalog-hero__facts span {
  display: block;
}

.catalog-hero__facts strong {
  margin-bottom: 5px;
  color: var(--sand-light);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
}

.catalog-hero__facts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.category-guide {
  background: var(--paper-light);
}

.category-guide__head,
.category-guide__grid {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.category-guide__head {
  margin-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: end;
  gap: 80px;
}

.category-guide__head > p {
  margin: 0 0 8px;
  color: rgba(13, 37, 42, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.category-guide__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.category-guide__card {
  min-height: 350px;
  padding: 32px 26px;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  grid-column: span 2;
}

.category-guide__card:nth-child(4) {
  grid-column: 2 / span 2;
  border-left: 1px solid var(--line-dark);
}

.category-guide__card > span {
  color: #91702f;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
}

.category-guide__card h3 {
  margin: 42px 0 16px;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.category-guide__card p {
  margin: 0 0 28px;
  color: rgba(13, 37, 42, 0.6);
  font-size: 13px;
  line-height: 1.7;
}

.category-guide__card a {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
}

.category-guide__card a i {
  color: #91702f;
  font-style: normal;
  transition: transform 0.25s ease;
}

.category-guide__card a:hover i {
  transform: translate(3px, -3px);
}

.selection--catalog {
  background: var(--paper-light);
}

.support-hero {
  position: relative;
  min-height: 760px;
  padding: 205px 0 120px;
  display: flex;
  align-items: center;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.support-hero__visual,
.support-hero__shade {
  position: absolute;
  inset: 0;
}

.support-hero__visual {
  background-image: url("assets/showroom-consultation.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.support-hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 25, 29, 0.95) 0%, rgba(7, 25, 29, 0.78) 48%, rgba(7, 25, 29, 0.26) 100%),
    linear-gradient(180deg, rgba(7, 25, 29, 0.16), rgba(7, 25, 29, 0.78));
}

.support-hero__content,
.support-hero__facts {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.support-hero__content h1 {
  max-width: 1040px;
  margin: 28px 0 26px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(52px, 6.5vw, 98px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.support-hero__content h1 em {
  color: var(--sand-light);
  font-style: normal;
}

.support-hero__content > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.support-hero__actions {
  margin-top: 38px;
  display: flex;
  gap: 12px;
}

.support-hero__facts {
  position: absolute;
  right: 0;
  bottom: 44px;
  left: 0;
  display: flex;
  justify-content: flex-end;
}

.support-hero__facts div {
  min-width: 175px;
  padding: 16px 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.support-hero__facts strong,
.support-hero__facts span {
  display: block;
}

.support-hero__facts strong {
  margin-bottom: 5px;
  color: var(--sand-light);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
}

.support-hero__facts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.support-start {
  background: var(--paper-light);
}

.support-start__head,
.support-start__cards,
.support-directory__head,
.support-toolbar,
.support-files,
.support-files__empty {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.support-start__head,
.support-directory__head {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: end;
  gap: 80px;
}

.support-start__head > p,
.support-directory__head > p {
  margin: 0 0 8px;
  color: rgba(13, 37, 42, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.support-start__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.support-start__cards article {
  min-height: 280px;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
}

.support-start__cards article:first-child {
  border-left: 1px solid var(--line-dark);
}

.support-start__cards article > span {
  color: #91702f;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
}

.support-start__cards h3 {
  margin: 64px 0 15px;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.support-start__cards p {
  margin: 0;
  color: rgba(13, 37, 42, 0.6);
  font-size: 13px;
  line-height: 1.7;
}

.support-start__cards .support-start__warning {
  color: white;
  background: var(--ink);
}

.support-start__warning h3 {
  color: var(--sand-light);
}

.support-start__warning p {
  color: rgba(255, 255, 255, 0.65);
}

.support-directory {
  background:
    radial-gradient(circle at 90% 5%, rgba(217, 168, 78, 0.12), transparent 24%),
    linear-gradient(180deg, #edf2ee, #f8f8f4);
}

.support-toolbar {
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid rgba(13, 37, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 45px rgba(13, 37, 42, 0.06);
}

.support-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.support-toolbar__filters button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(13, 37, 42, 0.14);
  border-radius: 999px;
  color: rgba(13, 37, 42, 0.72);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.support-toolbar__filters button:hover,
.support-toolbar__filters button.active {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.support-toolbar__search {
  display: grid;
  grid-template-columns: 210px auto;
  align-items: center;
  gap: 10px;
}

.support-toolbar__search input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(13, 37, 42, 0.16);
  border-radius: 0;
  color: var(--ink);
  background: white;
  font-size: 12px;
  outline: 0;
}

.support-toolbar__search input:focus {
  border-color: #91702f;
}

.support-toolbar__search output {
  min-width: 58px;
  color: rgba(13, 37, 42, 0.5);
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  text-align: right;
}

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

.support-file {
  min-width: 0;
  min-height: 255px;
  padding: 24px;
  border: 1px solid rgba(13, 37, 42, 0.11);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(13, 37, 42, 0.05);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.support-file:hover {
  border-color: rgba(145, 112, 47, 0.4);
  box-shadow: 0 22px 55px rgba(13, 37, 42, 0.1);
  transform: translateY(-4px);
}

.support-file__top,
.support-file__meta,
.support-file > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.support-file__top > span {
  color: rgba(13, 37, 42, 0.42);
  font-family: "Unbounded", sans-serif;
  font-size: 9px;
}

.support-file__top > i {
  padding: 5px 7px;
  color: var(--ink);
  background: var(--sand-light);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.support-file h3 {
  margin: 34px 0 20px;
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.support-file__meta {
  margin-top: auto;
  padding-bottom: 16px;
  color: rgba(13, 37, 42, 0.46);
  font-size: 9px;
}

.support-file > a {
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  font-weight: 700;
}

.support-file > a span {
  color: #91702f;
  transition: transform 0.25s ease;
}

.support-file > a:hover span {
  transform: translate(3px, -3px);
}

.support-files__empty {
  padding: 70px 20px;
  border: 1px dashed rgba(13, 37, 42, 0.22);
  color: rgba(13, 37, 42, 0.58);
  text-align: center;
}

.support-help {
  color: white;
  background: var(--ink);
}

.support-help__inner {
  width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 110px;
}

.support-help__copy > p {
  max-width: 610px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

.support-help__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-help__checklist li {
  min-height: 105px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  gap: 20px;
}

.support-help__checklist span {
  color: var(--sand-light);
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
}

.support-help__checklist p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.accessories {
  position: relative;
  margin-top: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 10%, rgba(217, 168, 78, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f7f2 0%, #eef1ed 100%);
}

.accessories::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(13, 37, 42, 0.12);
}

.accessories__head,
.accessories__grid {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.accessories__head {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.accessories__head h2 {
  margin: 20px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.accessories__head > p {
  max-width: 350px;
  margin: 0 0 7px;
  color: rgba(13, 37, 42, 0.6);
  font-size: 14px;
  line-height: 1.65;
}

.accessories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.accessory-card {
  min-width: 0;
  border: 1px solid rgba(13, 37, 42, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(13, 37, 42, 0.06);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.accessory-card[data-catalog-url] {
  cursor: pointer;
}

.accessory-card:hover {
  box-shadow: 0 28px 65px rgba(13, 37, 42, 0.12);
  transform: translateY(-5px);
}

.accessory-card > img {
  width: 100%;
  height: 330px;
  border-bottom: 1px solid rgba(13, 37, 42, 0.1);
  object-fit: cover;
}

.accessory-card > img.accessory-card__product-image {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), transparent 48%),
    linear-gradient(180deg, #f1f4f0 0%, #dfe7e3 100%);
  object-fit: contain;
}

.accessory-card__body {
  padding: 28px;
}

.accessory-card__body > span {
  color: #91702f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accessory-card h3 {
  margin: 12px 0 12px;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.accessory-card h3 a:hover {
  color: #91702f;
}

.accessory-card p {
  min-height: 44px;
  margin: 0 0 25px;
  color: rgba(7, 18, 22, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.price-actions {
  display: flex;
  align-items: stretch;
  gap: 7px;
}

.accessory-card .price-actions {
  padding-top: 16px;
  border-top: 1px solid rgba(7, 18, 22, 0.2);
}

.accessory-card .price-action--primary {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}

.accessory-card .price-action--primary i {
  color: #91702f;
  font-style: normal;
  transition: transform 0.25s ease;
}

.accessory-card .price-action--primary:hover i {
  transform: translate(3px, -3px);
}

.price-action--messenger {
  flex: 0 0 42px;
  width: 42px;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 800;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.price-action--messenger svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-action--phone {
  color: var(--ink);
}

.price-action--phone:hover {
  border-color: var(--sand);
  color: var(--ink);
  background: var(--sand-light);
}

.price-action--telegram svg {
  fill: currentColor;
  stroke: none;
}

.model-row .price-action--messenger {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

.accessory-card .price-action--messenger {
  color: var(--ink);
  border-color: rgba(13, 37, 42, 0.26);
}

.price-action--whatsapp:hover {
  border-color: #25d366;
  color: white;
  background: #25d366;
  transform: translateY(-2px);
}

.price-action--telegram:hover {
  border-color: #229ed9;
  color: white;
  background: #229ed9;
  transform: translateY(-2px);
}

.pvc {
  background: #ebe4d8;
}

.pvc__head,
.pvc__visual,
.pvc__bottom {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.pvc__head {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 90px;
}

.pvc__intro p {
  margin: 0 0 28px;
  color: rgba(7, 18, 22, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.pvc__intro a {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}

.pvc__intro a span {
  color: #91702f;
  transition: transform 0.25s ease;
}

.pvc__intro a:hover span {
  transform: translate(3px, -3px);
}

.pvc__visual {
  position: relative;
  height: min(68vw, 780px);
  min-height: 570px;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.pvc__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 22, 0.08) 45%, rgba(7, 18, 22, 0.7) 100%),
    linear-gradient(90deg, rgba(7, 18, 22, 0.28), transparent 35%);
}

.pvc__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0, 1);
}

.pvc__visual:hover > img {
  transform: scale(1.025);
}

.pvc__visual-label {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.pvc__visual-label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 13px);
  width: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.pvc__visual-label span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--sand-light);
  font-family: "Unbounded", sans-serif;
  font-size: 7px;
}

.pvc__visual-label--sonar {
  top: 44%;
  left: 47%;
}

.pvc__visual-label--motor {
  top: 61%;
  left: 19%;
}

.pvc__visual-label--power {
  top: 46%;
  right: 8%;
}

.pvc__visual-caption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 34px;
  left: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pvc__visual-caption span {
  color: var(--sand-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pvc__visual-caption strong {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.pvc__bottom {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}

.pvc__detail {
  position: relative;
  min-height: 530px;
  overflow: hidden;
}

.pvc__detail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 18, 22, 0.72));
}

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

.pvc__detail > span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: white;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.pvc__equipment {
  padding: 20px 44px;
  background: #f8f5ee;
}

.pvc__equipment article {
  min-height: 122px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(7, 18, 22, 0.16);
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
}

.pvc__equipment article:last-child {
  border-bottom: 0;
}

.pvc__equipment article > span {
  color: #91702f;
  font-family: "Unbounded", sans-serif;
  font-size: 9px;
}

.pvc__equipment h3 {
  margin: 0 0 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.pvc__equipment p {
  max-width: 560px;
  margin: 0;
  color: rgba(7, 18, 22, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.services {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
}

.services__image {
  position: relative;
  min-height: 930px;
  overflow: hidden;
}

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

.services__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 18, 22, 0.5));
}

.services__badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 200px;
  padding: 30px;
  color: var(--ink);
  background: var(--sand-light);
}

.services__badge span {
  display: block;
  margin-bottom: 42px;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
}

.services__badge strong {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.services__content {
  padding: 120px max(40px, calc((100vw - 1400px) / 2)) 110px 8vw;
}

.steps {
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 25px 0;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 15px;
}

.steps li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.steps li > span {
  padding-top: 4px;
  color: var(--sand-light);
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
}

.steps h3 {
  margin: 0 0 8px;
  color: white;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.services__cta {
  margin-top: 42px;
}

.selection {
  background: var(--paper-light);
}

.selection__panel {
  width: var(--container);
  margin: auto;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 110px;
  background: #e1d8c8;
}

.selection__copy > p {
  max-width: 600px;
  margin: 30px 0;
  color: rgba(7, 18, 22, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.selection__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
}

.selection__facts span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.selection__facts i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c8f50;
  box-shadow: 0 0 0 4px rgba(124, 143, 80, 0.15);
}

.form {
  position: relative;
  padding: 38px;
  background: var(--paper-light);
}

.form__product {
  position: relative;
  margin: -8px 0 26px;
  padding: 15px 42px 15px 16px;
  color: white;
  background: var(--ink-soft);
}

.form__product[hidden] {
  display: none;
}

.form__product span {
  display: block;
  margin-bottom: 4px;
  color: var(--sand-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form__product strong {
  font-size: 12px;
}

.form__product button {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
}

.form label {
  margin-bottom: 24px;
  display: block;
}

.form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(7, 18, 22, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form input,
.form select {
  width: 100%;
  height: 48px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 18, 22, 0.24);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.form input:focus,
.form select:focus {
  border-color: var(--ink);
}

.form input::placeholder {
  color: rgba(7, 18, 22, 0.38);
}

.form button {
  margin-top: 12px;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form small {
  display: block;
  margin-top: 14px;
  color: rgba(7, 18, 22, 0.42);
  font-size: 9px;
  line-height: 1.5;
}

.about {
  background: var(--paper);
}

.about__top {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 100px;
}

.about__top > p {
  margin: 0 0 8px;
  color: rgba(7, 18, 22, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.values {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values article {
  min-width: 0;
  padding: 18px 18px 30px;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.48);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.values article:not(:first-child) {
  padding-left: 18px;
}

.values article:last-child {
  border-right: 1px solid var(--line-dark);
}

.values article:hover {
  border-color: rgba(145, 112, 47, 0.38);
  box-shadow: 0 24px 55px rgba(13, 37, 42, 0.09);
  transform: translateY(-5px);
}

.values span {
  margin: 4px 0 18px;
  color: #91702f;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
}

.values__media {
  position: relative;
  margin: 0 0 28px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe5e0;
}

.values__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(13, 37, 42, 0.2));
  pointer-events: none;
}

.values__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0, 1);
}

.values article:hover .values__media img {
  transform: scale(1.035);
}

.values h3 {
  max-width: 300px;
  margin: 0 0 16px;
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.values p {
  max-width: 340px;
  margin: 0;
  color: rgba(7, 18, 22, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.faq {
  background: #e5ebe7;
}

.faq__inner {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.faq__head {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 100px;
}

.faq__head > p {
  margin: 0 0 8px;
  color: rgba(13, 37, 42, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.faq__list {
  margin-top: 75px;
  border-top: 1px solid rgba(13, 37, 42, 0.2);
}

.faq details {
  border-bottom: 1px solid rgba(13, 37, 42, 0.2);
}

.faq summary {
  min-height: 92px;
  padding: 26px 68px 26px 0;
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(13, 37, 42, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.faq details[open] summary::after {
  color: white;
  background: var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.faq details > p {
  max-width: 900px;
  margin: -4px 70px 30px 0;
  color: rgba(13, 37, 42, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.showroom {
  position: relative;
  min-height: 900px;
  padding: 130px max(40px, calc((100vw - 1400px) / 2));
  display: flex;
  align-items: center;
  color: white;
  background: #0b1a1e;
  overflow: hidden;
}

.showroom__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 17, 0.94) 0%, rgba(5, 14, 17, 0.62) 45%, rgba(5, 14, 17, 0.16) 100%),
    url("assets/showroom-consultation.webp") center center / cover;
  filter: saturate(0.8);
}

.showroom__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.showroom__content > p {
  max-width: 550px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.showroom__location {
  position: absolute;
  z-index: 3;
  right: max(40px, calc((100vw - 1400px) / 2));
  bottom: 50px;
  width: 410px;
}

.showroom__map {
  position: relative;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #d8d7d1;
  overflow: hidden;
}

.showroom__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.75) contrast(1.05);
}

.showroom__map-note {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 13px;
  color: white;
  background: rgba(7, 18, 22, 0.88);
  backdrop-filter: blur(10px);
}

.showroom__map-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--sand-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showroom__map-note strong {
  font-size: 10px;
  font-weight: 600;
}

.showroom__card {
  width: 100%;
  padding: 32px;
  background: rgba(13, 30, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  backdrop-filter: blur(16px);
}

.showroom__card > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.showroom__card > div:first-child {
  padding-top: 0;
}

.showroom__card > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.showroom__card strong,
.showroom__card a {
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.showroom__card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.footer {
  padding: 100px max(40px, calc((100vw - 1400px) / 2)) 30px;
  color: white;
  background: var(--ink);
}

.footer__top {
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.footer h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.footer__phone {
  justify-self: end;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
}

.footer__middle {
  padding: 60px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
}

.footer__middle > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__middle span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__middle a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer__middle a:hover {
  color: var(--sand-light);
}

.footer__note p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.social-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 8px;
}

.social-float__main {
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sand-light);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.social-float.open .social-float__main {
  transform: rotate(8deg);
}

.social-float__links {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.social-float.open .social-float__links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.social-float__links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: min(370px, calc(100vw - 48px));
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: white;
  background: var(--ink);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

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

.toast--error {
  background: #5a2424;
}

body.toast-visible .social-float {
  bottom: 118px;
}

.toast strong {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
}

.toast span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

/* Чуть более крупная типографика для комфортного чтения */
.nav a,
.header__phone,
.button {
  font-size: 14px;
}

.eyebrow {
  font-size: 12px;
}

.hero__lead {
  font-size: 18px;
}

.hero__meta small,
.showroom__card small {
  font-size: 11px;
}

.hero__meta strong {
  font-size: 13px;
}

.intro__copy p {
  font-size: 17px;
}

.section__head p,
.about__top > p,
.pvc__intro p,
.selection__copy > p,
.showroom__content > p {
  font-size: 16px;
}

.product-card__meta > span:last-child,
.brands > span {
  font-size: 11px;
}

.product-card p,
.steps p,
.values p,
.footer__middle a,
.footer__note p {
  font-size: 14px;
}

.product-card a {
  font-size: 13px;
}

.steps h3,
.pvc__equipment h3 {
  font-size: 18px;
}

.pvc__equipment p {
  font-size: 13px;
}

.form label > span {
  font-size: 11px;
}

.form input,
.form select {
  font-size: 15px;
}

.form small,
.footer__bottom {
  font-size: 11px;
}

.form__privacy {
  line-height: 1.55;
}

.form__privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.showroom__card p {
  font-size: 12px;
}

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

.js-ready .reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0, 1);
}

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

.js-ready :target .reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  :root {
    --container: calc(100vw - 48px);
  }

  .nav {
    gap: 20px;
  }

  .header__phone {
    display: none;
  }

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

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

  .store__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .store__controls {
    grid-template-columns: minmax(220px, 1fr) 190px auto;
  }

  .category-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-guide__card,
  .category-guide__card:nth-child(4) {
    grid-column: auto;
  }

  .category-guide__card:nth-child(4) {
    border-left: 0;
  }

  .category-guide__card:last-child {
    grid-column: 1 / 3;
  }

  .support-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .support-toolbar__search {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

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

  .brand-showcase__image {
    height: 520px;
  }

  .hero__meta {
    right: 24px;
  }

  .hero__scroll {
    left: 24px;
  }

  .section__grid,
  .selection__panel {
    gap: 60px;
  }

  .services__content {
    padding-right: 40px;
    padding-left: 55px;
  }

  .showroom {
    padding-right: 24px;
    padding-left: 24px;
  }

  .showroom__location {
    right: 24px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: calc(100vw - 36px);
  }

  .header__inner {
    height: 76px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }

  body.menu-open {
    touch-action: none;
    overscroll-behavior: none;
  }

  body.menu-open .header {
    height: 76px;
    background: var(--ink);
    backdrop-filter: none;
  }

  .nav,
  .header__actions {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: transparent;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    background: white;
    transition: transform 0.25s ease;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 60;
    top: 76px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100vw;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    min-height: calc(100vh - 76px);
    padding: 25px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: white;
    background: var(--ink) !important;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-family: "Unbounded", sans-serif;
    font-size: clamp(19px, 5.5vw, 25px);
    line-height: 1.2;
  }

  .mobile-menu a[aria-current="page"] {
    color: var(--sand-light);
  }

  .mobile-menu .mobile-menu__cta {
    min-height: 54px;
    margin: 18px 0 8px;
    padding: 0 18px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--sand-light);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-menu > a[href^="tel:"] {
    margin-top: 8px;
    color: var(--sand-light);
    font-size: 18px;
  }

  .language-switch--mobile {
    width: 160px;
    margin-top: 22px;
  }

  .language-switch--mobile .language-switch__current {
    width: 100%;
    height: 42px;
    justify-content: center;
  }

  .language-switch--mobile .language-switch__menu {
    top: calc(100% + 7px);
    right: auto;
    left: 0;
    z-index: 2;
  }

  .mobile-menu__socials {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .mobile-menu__socials a {
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
  }

  .hero {
    min-height: 780px;
  }

  .hero__image {
    background-position: 61% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(4, 12, 15, 0.82), rgba(4, 12, 15, 0.28)),
      linear-gradient(180deg, rgba(4, 12, 15, 0.18), rgba(4, 12, 15, 0.84));
  }

  .hero__content {
    padding-top: 175px;
  }

  .hero h1 {
    font-size: clamp(50px, 11vw, 82px);
  }

  .hero h1.hero__title--long {
    max-width: 760px;
    font-size: clamp(38px, 7vw, 58px);
    line-height: 1.08;
  }

  .hero__sonar {
    right: -150px;
  }

  .hero__meta {
    right: 18px;
    bottom: 34px;
  }

  .hero__meta div {
    min-width: auto;
    padding-right: 18px;
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .section__grid,
  .section__head,
  .about__top,
  .faq__head,
  .selection__panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro__copy {
    padding-top: 0;
  }

  .ticker {
    margin-top: 80px;
  }

  .section__head {
    margin-bottom: 50px;
  }

  .section__head p,
  .about__top > p,
  .faq__head > p {
    max-width: 600px;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 600px 420px 330px;
  }

  .product-card--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .product-card--sand {
    grid-column: 1 / 3;
  }

  .brands {
    align-items: flex-start;
    flex-direction: column;
  }

  .brands > div {
    width: 100%;
    flex-wrap: wrap;
  }

  .popular__head {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .popular__head > p {
    max-width: 620px;
  }

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

  .store__head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .store__head > p {
    max-width: 620px;
  }

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

  .catalog-hero {
    min-height: 760px;
    padding-top: 170px;
  }

  .catalog-hero__content h1 {
    font-size: clamp(48px, 9vw, 74px);
  }

  .catalog-hero__facts {
    justify-content: flex-start;
  }

  .category-guide__head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-guide__head > p {
    max-width: 620px;
  }

  .support-hero {
    min-height: 760px;
    padding-top: 170px;
  }

  .support-hero__content h1 {
    font-size: clamp(48px, 9vw, 74px);
  }

  .support-hero__facts {
    justify-content: flex-start;
  }

  .support-start__head,
  .support-directory__head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .support-start__head > p,
  .support-directory__head > p {
    max-width: 620px;
  }

  .support-start__cards {
    grid-template-columns: 1fr;
  }

  .support-start__cards article,
  .support-start__cards article:first-child {
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .support-files {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-help__inner {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .brand-showcase__image {
    height: 520px;
  }

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

  .accessory-card:last-child {
    grid-column: 1 / 3;
  }

  .accessory-card:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .accessory-card:last-child > img {
    height: 100%;
    min-height: 330px;
  }

  .pvc__head {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .pvc__intro {
    max-width: 620px;
  }

  .pvc__visual {
    height: 620px;
  }

  .pvc__visual-label--sonar {
    top: 40%;
    left: 43%;
  }

  .pvc__visual-label--motor {
    top: 60%;
    left: 16%;
  }

  .pvc__visual-label--power {
    top: 47%;
    right: 5%;
  }

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

  .pvc__detail {
    min-height: 560px;
  }

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

  .services__image {
    min-height: 620px;
  }

  .services__content {
    padding: 90px 24px;
  }

  .selection__panel {
    padding: 55px;
  }

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

  .values article,
  .values article:not(:first-child) {
    min-height: 300px;
    padding: 18px;
    border: 1px solid var(--line-dark);
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 30px;
  }

  .values span {
    grid-column: 2;
    margin-top: 10px;
  }

  .values__media {
    height: 100%;
    min-height: 264px;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 4;
    aspect-ratio: auto;
  }

  .values h3,
  .values p {
    grid-column: 2;
  }

  .showroom {
    min-height: 1000px;
    align-items: flex-start;
  }

  .showroom__location {
    right: 18px;
    bottom: 40px;
    left: 18px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .showroom__map {
    height: auto;
    min-height: 320px;
  }

  .showroom__card {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer__phone {
    justify-self: start;
  }

  .footer h2 {
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .logo {
    font-size: 13px;
  }

  .logo__mark {
    width: 31px;
    height: 31px;
  }

  .legal {
    padding-top: 125px;
  }

  .legal__head {
    padding-bottom: 45px;
  }

  .legal__head h1 {
    font-size: clamp(20px, 6.4vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .legal__content {
    padding-top: 45px;
  }

  .legal__content p {
    font-size: 14px;
  }

  .seo-fallback {
    padding: 22px;
  }

  .seo-fallback ul {
    columns: 1;
  }

  .hero {
    min-height: 780px;
  }

  .hero__content {
    padding-top: 150px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: 46px;
    line-height: 1.02;
  }

  .hero h1.hero__title--long {
    font-size: clamp(21px, 6.5vw, 32px);
    line-height: 1.16;
    letter-spacing: -0.03em;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__buttons {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .hero__buttons .button {
    width: 100%;
  }

  .hero__meta {
    right: 14px;
    left: 14px;
    justify-content: space-between;
  }

  .hero__meta div {
    min-width: 0;
    padding-right: 8px;
  }

  .hero__meta strong {
    font-size: 9px;
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(24px, 7.4vw, 32px);
  }

  .ticker {
    margin-top: 65px;
  }

  .ticker span {
    padding: 0 24px;
    font-size: 12px;
  }

  .catalog-grid {
    display: block;
  }

  .product-card {
    min-height: 480px;
    margin-bottom: 12px;
    padding: 25px;
  }

  .product-card--plain {
    min-height: 360px;
  }

  .product-card__content {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .product-card h3,
  .product-card:not(.product-card--large) h3 {
    font-size: 29px;
  }

  .brands > div {
    gap: 20px;
  }

  .brands a,
  .brands > div > span {
    font-size: 10px;
  }

  .popular__head {
    margin-bottom: 48px;
  }

  .brand-showcase__image {
    height: 350px;
  }

  .brand-showcase__models {
    padding: 4px 20px 10px;
  }

  .model-row {
    min-height: 0;
    padding: 25px 0;
    align-items: stretch;
    flex-direction: column;
  }

  .model-row .price-actions {
    width: 100%;
  }

  .model-row .price-action--primary {
    flex: 1 1 auto;
  }

  .store__head {
    margin-bottom: 38px;
  }

  .store__toolbar {
    padding: 14px;
  }

  .store__categories {
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .store__categories::-webkit-scrollbar {
    display: none;
  }

  .store__categories button {
    flex: 0 0 auto;
  }

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

  .store__controls output {
    grid-column: 1 / 3;
    text-align: left;
  }

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

  .store-card__body {
    min-height: 0;
  }

  .store__all {
    align-items: stretch;
    flex-direction: column;
  }

  .store__all .button {
    width: 100%;
  }

  .store__all p {
    text-align: left;
  }

  .catalog-hero {
    min-height: 800px;
    padding: 140px 0 170px;
    align-items: flex-start;
  }

  .catalog-hero__visual {
    background-position: 63% center;
  }

  .catalog-hero__content h1 {
    margin-top: 22px;
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.14;
    letter-spacing: -0.03em;
  }

  .catalog-hero__content > p {
    font-size: 14px;
  }

  .catalog-hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .catalog-hero__facts {
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-hero__facts div {
    min-width: 0;
    padding: 13px 8px 0 0;
  }

  .catalog-hero__facts strong {
    font-size: 15px;
  }

  .catalog-hero__facts span {
    font-size: 8px;
    line-height: 1.35;
  }

  .category-guide__head {
    margin-bottom: 44px;
  }

  .category-guide__grid {
    grid-template-columns: 1fr;
  }

  .category-guide__card,
  .category-guide__card:nth-child(4),
  .category-guide__card:last-child {
    min-height: 310px;
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
    grid-column: auto;
  }

  .support-hero {
    min-height: 810px;
    padding: 140px 0 175px;
    align-items: flex-start;
  }

  .support-hero__visual {
    background-position: 60% center;
  }

  .support-hero__content h1 {
    margin-top: 22px;
    font-size: clamp(28px, 8.4vw, 36px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .support-hero__content > p {
    font-size: 14px;
  }

  .support-hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .support-hero__facts {
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .support-hero__facts div {
    min-width: 0;
    padding: 13px 8px 0 0;
  }

  .support-hero__facts strong {
    font-size: 14px;
  }

  .support-hero__facts span {
    font-size: 8px;
    line-height: 1.35;
  }

  .support-start__head,
  .support-directory__head {
    margin-bottom: 42px;
  }

  .support-start__cards article {
    min-height: 250px;
    padding: 28px 22px;
  }

  .support-toolbar {
    padding: 14px;
  }

  .support-toolbar__filters {
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .support-toolbar__filters::-webkit-scrollbar {
    display: none;
  }

  .support-toolbar__filters button {
    flex: 0 0 auto;
  }

  .support-toolbar__search {
    grid-template-columns: 1fr;
  }

  .support-toolbar__search output {
    text-align: left;
  }

  .support-files {
    grid-template-columns: 1fr;
  }

  .support-file {
    min-height: 235px;
  }

  .support-help__inner {
    gap: 50px;
  }

  .accessories {
    margin-top: 0;
  }

  .accessories__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .accessory-card:last-child {
    grid-column: auto;
    display: block;
  }

  .accessory-card:last-child > img,
  .accessory-card > img {
    height: 300px;
    min-height: 0;
  }

  .pvc__head {
    margin-bottom: 48px;
  }

  .pvc__visual {
    width: 100%;
    height: 530px;
    min-height: 0;
  }

  .pvc__visual > img {
    object-position: 58% center;
  }

  .pvc__visual-label {
    display: none;
  }

  .pvc__visual-caption {
    right: 20px;
    bottom: 22px;
    left: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pvc__visual-caption strong {
    font-size: 11px;
    line-height: 1.45;
  }

  .pvc__bottom {
    width: 100%;
  }

  .pvc__detail {
    min-height: 430px;
  }

  .pvc__equipment {
    padding: 12px 20px;
  }

  .pvc__equipment article {
    grid-template-columns: 42px 1fr;
  }

  .pvc__equipment h3 {
    font-size: 15px;
  }

  .services__image {
    min-height: 500px;
  }

  .services__badge {
    width: 210px;
    height: 160px;
    padding: 23px;
  }

  .services__badge span {
    margin-bottom: 28px;
  }

  .services__badge strong {
    font-size: 13px;
  }

  .services__content {
    padding: 72px 14px;
  }

  .steps {
    margin-top: 50px;
  }

  .selection__panel {
    width: 100%;
    padding: 55px 14px;
  }

  .form {
    padding: 28px 20px;
  }

  .selection__facts {
    flex-direction: column;
  }

  .values {
    margin-top: 55px;
  }

  .faq__list {
    margin-top: 50px;
  }

  .faq summary {
    min-height: 80px;
    padding: 22px 58px 22px 0;
    font-size: 16px;
  }

  .faq summary::after {
    right: 4px;
    width: 34px;
    height: 34px;
  }

  .faq details > p {
    margin: -2px 0 26px;
    font-size: 14px;
  }

  .values article,
  .values article:not(:first-child) {
    min-height: 0;
    padding: 14px 14px 26px;
    display: flex;
  }

  .values span {
    margin: 4px 0 14px;
  }

  .values__media {
    width: 100%;
    min-height: 0;
    margin: 0 0 24px;
    aspect-ratio: 4 / 3;
  }

  .showroom {
    min-height: 1240px;
    padding: 78px 14px;
  }

  .showroom__background {
    background-position: 72% center;
  }

  .showroom__content > p {
    max-width: 330px;
  }

  .showroom__location {
    right: 14px;
    bottom: 25px;
    left: 14px;
    display: block;
  }

  .showroom__map {
    height: 230px;
    min-height: 0;
  }

  .showroom__card {
    padding: 24px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer {
    padding: 70px 14px 25px;
  }

  .footer__top,
  .footer__middle {
    grid-template-columns: 1fr;
  }

  .footer__top {
    gap: 40px;
  }

  .footer h2 {
    grid-row: auto;
  }

  .footer__middle {
    gap: 42px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .social-float__main {
    width: 66px;
    height: 66px;
  }
}

.hero h1,
.support-hero__content h1,
.catalog-hero__content h1,
.legal__head h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.selection__copy {
  container-type: inline-size;
  min-width: 0;
}

.selection__copy .section-title {
  max-width: none;
  font-size: clamp(24px, 3.2vw, 42px);
  font-size: clamp(24px, 8.4cqi, 42px);
  letter-spacing: -0.028em;
  line-height: 1.16;
}

.section-title--compact em {
  white-space: nowrap;
}

.form {
  min-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
