@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded.ttf") format("truetype");
  font-weight: 500 800;
  font-display: swap;
}

:root {
  --sky: #0b5fff;
  --sky-2: #3b82f6;
  --sky-soft: #eaf2ff;
  --navy: #133b8a;
  --navy-2: #111827;
  --emerald: #12a86b;
  --lime: #bfe85f;
  --yellow: #ffd23a;
  --red: #d93636;
  --orange: #e58a1f;
  --bg: #f6f8fb;
  --band: #eef5fa;
  --paper: #fff;
  --ink: #10213d;
  --muted: #60708e;
  --soft: #91a0b8;
  --line: #dce7f2;
  --line-strong: #bfd2e7;
  --shadow: 0 18px 50px rgba(21, 52, 122, .12);
  --radius: 20px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  right: clamp(-260px, -11vw, -80px);
  bottom: clamp(-240px, -11vw, -90px);
  width: min(760px, 70vw);
  height: min(960px, 82vh);
  background: url("../images/velodostup_biker_watermark.png") center / contain no-repeat;
  opacity: .105;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(246, 248, 251, .88);
  border-bottom: 1px solid rgba(220, 231, 242, .86);
}

.topbar__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 156px;
  flex: 0 0 auto;
}

.brand img {
  height: 42px;
  width: auto;
  display: block;
}

.brand__fallback {
  font-family: "Unbounded", sans-serif;
  font-weight: 750;
  color: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 750;
  padding: 9px 10px;
  font-size: 14px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
  background: var(--sky-soft);
  outline: none;
}

.topbar__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.button {
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--navy);
  border-radius: 16px;
  min-height: 42px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--sky);
  box-shadow: 0 8px 22px rgba(31, 169, 221, .16);
  transform: translateY(-1px);
  outline: none;
}

.button--primary {
  border-color: var(--sky);
  background: var(--sky);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--sky-2);
}

.button--account {
  border-color: rgba(11, 95, 255, .28);
  background: var(--sky-soft);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(11, 95, 255, .12);
}

.button--account:hover,
.button--account:focus-visible {
  background: #fff;
  color: var(--sky);
}

.topbar-account-button,
.topbar-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  height: 44px;
  border-radius: 16px;
  padding: 10px 16px;
  white-space: nowrap;
}

.topbar-account-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--dark {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.button--ghost {
  background: transparent;
}

.icon-button {
  position: relative;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  height: 44px;
  border-radius: 18px;
  padding: 0;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.icon-button #cartCount {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--sky);
  font-size: 12px;
  font-weight: 850;
}

.mobile-menu {
  display: none;
}

.hero {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 520px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 40px -12vw 20px 42%;
  z-index: -2;
  border-radius: 44px;
  background:
    radial-gradient(circle at 82% 22%, rgba(59, 130, 246, .22), transparent 38%),
    linear-gradient(135deg, rgba(11, 95, 255, .1), rgba(255, 255, 255, .72));
  filter: blur(.2px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero__video {
  display: none;
}

.hero__visual {
  margin: 0;
  position: relative;
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(11, 95, 255, .18);
}

.hero__visual--banner {
  min-height: 0;
  aspect-ratio: 1280 / 511;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(11, 95, 255, .16);
}

.hero__visual--banner::after {
  display: none;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 24, 64, 0) 54%, rgba(4, 24, 64, .12)),
    linear-gradient(90deg, rgba(11, 95, 255, .1), rgba(11, 95, 255, 0) 42%);
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero__visual--banner img {
  min-height: 0;
  object-fit: contain;
}

.hero__visual--cards {
  min-height: 0;
  display: grid;
  gap: 16px;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.hero__visual--cards::after {
  display: none;
}

.hero-service-card {
  min-height: 178px;
  border: 1px solid rgba(191, 210, 231, .86);
  border-radius: 24px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(17, 24, 39, .14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.hero-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(11, 95, 255, .04));
  pointer-events: none;
}

.hero-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.hero-service-card--repair::after {
  background-image: url("../images/site_cards/02_remont_block.png");
  background-position: left center;
}

.hero-service-card--rent::after {
  background-image: url("../images/site_cards/03_prokat_block.png");
  background-position: left center;
}

.hero-service-card--parts::after {
  background-image: url("../images/site_cards/04_magazin_block.png");
  background-position: left center;
}

.hero-service-card > * {
  position: relative;
  z-index: 2;
}

.hero-service-card span {
  display: none;
}

.hero-service-card strong {
  display: none;
}

.hero-service-card small {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(11, 95, 255, .94);
  box-shadow: 0 12px 28px rgba(11, 95, 255, .26);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  opacity: 1;
}

.hero-service-card:hover,
.hero-service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 78px rgba(11, 95, 255, .2);
  outline: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--sky);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--emerald);
}

h1,
h2,
h3 {
  font-family: "Unbounded", sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
  margin: 0;
  color: var(--navy-2);
}

h1 {
  font-size: clamp(38px, 4.2vw, 56px);
  max-width: 590px;
  margin-top: 18px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero h1 span {
  display: block;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
}

h3 {
  font-size: 18px;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.hero__lead {
  font-size: clamp(18px, 1.7vw, 22px);
  max-width: 680px;
  color: #384762;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  max-width: 760px;
}

.hero-benefits span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .76);
  border-radius: var(--radius);
  padding: 9px 11px;
  color: var(--navy);
  font-weight: 850;
  font-size: 14px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__actions .button {
  min-height: 52px;
  padding: 13px 20px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
  max-width: 690px;
}

.stat {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.vk-live {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.vk-live__intro,
.vk-live-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(21, 52, 122, .06);
}

.vk-live__intro {
  padding: 22px;
}

.vk-live__intro p {
  margin-bottom: 18px;
}

.vk-live__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vk-live-card {
  min-height: 190px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 36, 88, .08), rgba(14, 36, 88, .88)),
    url("../images/velodostup_biker_watermark.png") 52% 52% / 145% auto no-repeat,
    var(--navy);
  transition: transform .16s ease, box-shadow .16s ease;
}

.vk-live-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(31, 169, 221, .04), rgba(14, 36, 88, .86)),
    url("../images/vk-card-sup.svg") center 45% / 150% auto no-repeat,
    var(--sky);
}

.vk-live-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(18, 168, 107, .06), rgba(14, 36, 88, .88)),
    url("../images/vk-card-repair.svg") center 50% / 150% auto no-repeat,
    var(--emerald);
}

.vk-live-card:hover,
.vk-live-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(21, 52, 122, .18);
  outline: none;
}

.vk-live-card strong {
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.vk-live-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.hero-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.hero-panel__head p {
  margin: 6px 0 0;
}

.quick-grid {
  display: grid;
  gap: 10px;
}

.quick-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
  text-decoration: none;
}

.quick-card strong {
  display: block;
  color: var(--ink);
}

.quick-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.quick-card:hover {
  border-color: var(--sky);
  background: var(--sky-soft);
}

.section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.section--tight {
  padding-top: 28px;
}

.section--band {
  width: 100%;
  background: rgba(238, 245, 250, .78);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--band > .section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 620px;
  margin: 10px 0 0;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-showcase {
  padding-top: 38px;
}

.service-showcase__grid {
  display: grid;
  grid-template-columns: 1.08fr .96fr .96fr;
  gap: 16px;
}

.service-feature {
  min-height: 310px;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(17, 24, 39, .14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, .08), rgba(17, 24, 39, .72)),
    linear-gradient(90deg, rgba(11, 95, 255, .34), rgba(11, 95, 255, 0) 50%);
}

.service-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: -1;
}

.service-feature--repair::after {
  background-image: url("../images/site_cards/02_remont_block.png");
  background-position: center 54%;
}

.service-feature--rent::after {
  background-image: url("../images/site_cards/03_prokat_block.png");
  background-position: center 54%;
}

.service-feature--parts::after {
  background-image: url("../images/site_cards/04_magazin_block.png");
  background-position: center 54%;
}

.service-feature:hover,
.service-feature:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(11, 95, 255, .2);
  outline: none;
}

.service-feature > * {
  position: relative;
  z-index: 1;
}

.service-feature span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.service-feature strong {
  max-width: 420px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.service-feature small {
  width: fit-content;
  color: #fff;
  font-weight: 900;
  opacity: .86;
}

.process-timeline {
  counter-reset: none;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-timeline li {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(21, 52, 122, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-timeline span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--sky);
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
}

.process-timeline strong {
  color: var(--navy-2);
  line-height: 1.22;
}

.reason-grid,
.repair-service-grid,
.proof-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.repair-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.product-card,
.branch-card,
.doc-card,
.reason-card,
.repair-service-card,
.proof-card,
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 8px 24px rgba(21, 52, 122, .06);
}

.reason-card,
.proof-card,
.review-card,
.branch-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.reason-card:hover,
.proof-card:hover,
.review-card:hover,
.branch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 95, 255, .32);
  box-shadow: 0 18px 48px rgba(11, 95, 255, .12);
}

.doc-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.proof-card--link,
.review-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.doc-link:hover,
.doc-link:focus-visible,
.proof-card--link:hover,
.proof-card--link:focus-visible,
.review-card--link:hover,
.review-card--link:focus-visible {
  border-color: var(--sky);
  box-shadow: 0 12px 28px rgba(31, 169, 221, .14);
  transform: translateY(-1px);
  outline: none;
}

.service-card p,
.product-card p,
.branch-card p,
.doc-card p,
.reason-card p,
.proof-card p,
.review-card p {
  margin-bottom: 0;
}

.reason-card {
  display: grid;
  gap: 8px;
}

.reason-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  background: var(--sky-soft);
  color: var(--sky);
}

.reason-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-card:nth-child(3n) .reason-icon {
  background: rgba(191, 232, 95, .24);
  color: var(--emerald);
}

.reason-card:nth-child(4n) .reason-icon {
  background: rgba(21, 52, 122, .08);
  color: var(--navy);
}

.reason-card strong,
.repair-service-card strong,
.proof-card strong,
.review-card strong {
  color: var(--navy);
}

.repair-service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  gap: 18px;
}

.repair-service-card span,
.proof-card span {
  color: var(--sky);
  font-family: "Unbounded", sans-serif;
  font-weight: 750;
}

.repair-price-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 260px;
  gap: 10px;
  margin-bottom: 14px;
}

.repair-price-search {
  position: relative;
}

.repair-price-search input {
  width: 100%;
  padding-right: 42px;
}

.repair-price-search__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--band);
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.repair-price-search__clear:hover {
  background: var(--sky-soft);
  color: var(--sky);
}

.repair-price-table-wrap {
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(21, 52, 122, .06);
}

.repair-price-table {
  width: 100%;
  border-collapse: collapse;
}

.repair-price-table th,
.repair-price-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.repair-price-table th {
  color: var(--navy);
  background: var(--band);
  font-size: 13px;
}

.repair-price-table td strong {
  display: block;
  color: var(--navy);
}

.repair-price-table__desc {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.repair-price-table tr:last-child td {
  border-bottom: 0;
}

.repair-price-empty td {
  color: var(--muted);
  text-align: center;
}

.consultation-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.consultation-card h2,
.consultation-card p,
.consultation-card label {
  color: #fff;
}

.consultation-card p {
  opacity: .82;
}

.consultation-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.consultation-form .field {
  grid-column: auto;
}

.consultation-form .status {
  grid-column: 1 / -1;
}

.proof-card {
  display: grid;
  gap: 8px;
}

.proof-card span {
  font-size: 26px;
}

.review-grid {
  margin-top: 14px;
}

.rating-pill {
  min-width: 88px;
  min-height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--sky);
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  box-shadow: 0 18px 42px rgba(11, 95, 255, .22);
}

.review-card p {
  color: var(--ink);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 28px rgba(21, 52, 122, .06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy-2);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--sky);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 34px;
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 95, 255, .96), rgba(17, 24, 39, .92)),
    url("../images/velodostup-site-repair.jpg") right center / auto 145% no-repeat;
  box-shadow: 0 28px 80px rgba(11, 95, 255, .24);
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta .eyebrow {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.final-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.final-cta .button:not(.button--primary) {
  background: rgba(255, 255, 255, .96);
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--sky-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}

.app-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-panel__bar {
  background: var(--band);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.app-panel__body {
  padding: 18px;
}

.booking-flow {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(420px, 1.14fr);
  gap: 18px;
  align-items: start;
}

.booking-bike-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.booking-bike-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(234, 242, 255, .95), rgba(255, 255, 255, .8)),
    url("../images/velodostup_biker_watermark.png") center / 76% auto no-repeat;
  border-bottom: 1px solid var(--line);
}

.booking-bike-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.booking-bike-card__body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.booking-bike-card__badge {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--navy);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
}

.booking-bike-card h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 22px;
  line-height: 1.16;
}

.booking-bike-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking-bike-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
}

.booking-bike-card__meta div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--band);
  padding: 10px;
}

.booking-bike-card__meta dt {
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-bike-card__meta dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.booking-form-card {
  min-width: 0;
}

.booking-checkout {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--band);
}

.booking-form-actions {
  margin-top: 0;
}

.booking-form-actions .button--primary {
  min-width: 190px;
}

.booking-checkout .form-consent {
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.field {
  grid-column: span 6;
  display: grid;
  gap: 6px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field--third {
  grid-column: span 4;
}

label {
  font-size: 13px;
  font-weight: 850;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 104px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(31, 169, 221, .14);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.status {
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--band);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.status--ok {
  background: rgba(18, 168, 107, .1);
  border-color: rgba(18, 168, 107, .28);
  color: #08764a;
}

.status--error {
  background: rgba(217, 54, 54, .1);
  border-color: rgba(217, 54, 54, .28);
  color: var(--red);
}

.status--warn {
  background: rgba(229, 138, 31, .1);
  border-color: rgba(229, 138, 31, .28);
  color: #9a5700;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-consent input {
  width: 17px;
  min-width: 17px;
  height: 17px;
  min-height: 17px;
  margin-top: 2px;
}

.form-consent a {
  color: var(--navy);
  font-weight: 850;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 10px;
  margin-bottom: 16px;
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.category-tile {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f3fbff 100%);
  color: var(--navy);
  border-radius: var(--radius);
  min-height: 92px;
  padding: 12px;
  display: grid;
  align-content: space-between;
  justify-items: start;
  gap: 10px;
  font-weight: 850;
  text-align: left;
  box-shadow: 0 12px 26px rgba(16, 33, 61, .06);
}

.category-tile span {
  overflow-wrap: anywhere;
}

.category-tile svg {
  width: 30px;
  height: 30px;
  color: var(--sky);
  stroke-width: 2;
}

.category-tile.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.category-tile.is-active svg {
  color: var(--lime);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card__image {
  height: 190px;
  background: linear-gradient(180deg, #f7fcff 0%, var(--band) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}

.product-card__body {
  padding: 14px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.product-card__title {
  font-weight: 850;
  line-height: 1.25;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.price {
  font-family: "Unbounded", sans-serif;
  color: var(--navy);
  font-weight: 750;
}

.stock {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.cart-drawer.is-open {
  display: block;
}

.cart-drawer__shade {
  position: absolute;
  inset: 0;
  background: rgba(16, 33, 61, .34);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  background: var(--paper);
  box-shadow: -16px 0 40px rgba(16, 33, 61, .18);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.cart-list {
  display: grid;
  gap: 10px;
  margin: 12px 0;
  overflow: auto;
}

.cart-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.cart-row__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.branches-grid,
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.branch-card--full {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
}

.branch-card__photo {
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(21, 52, 122, .78), rgba(31, 169, 221, .45)),
    url("../images/velodostup_biker_watermark.png") center / cover no-repeat;
  position: relative;
}

.branch-card__photo::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .28);
  backdrop-filter: blur(4px);
}

.branch-card__photo--chmz {
  background-position: 35% 52%;
}

.branch-card__photo--northwest {
  background-position: 55% 42%;
}

.branch-card__photo--univer {
  background-position: 70% 46%;
}

.branch-card__content {
  padding: 18px;
}

.branch-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.branch-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.branch-card__actions .button {
  min-height: 38px;
  padding: 8px 10px;
}

.branch-details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.branch-details div {
  display: grid;
  gap: 3px;
}

.branch-details dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.branch-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.branch-details a {
  color: var(--navy);
}

.branch-map {
  width: 100%;
  height: auto;
  border: 0;
  border-top: 1px solid var(--line);
  background: var(--band);
  color: #fff;
  text-decoration: none;
  display: grid;
  grid-template-rows: 220px auto;
  position: relative;
  overflow: hidden;
}

.branch-map__image,
.branch-map__frame {
  width: 100%;
  display: block;
}

.branch-map__image {
  height: 220px;
  object-fit: cover;
  filter: saturate(.95) contrast(.98);
}

.branch-map__frame {
  height: 220px;
  border: 0;
  pointer-events: none;
}

.branch-map__overlay {
  position: static;
  display: grid;
  gap: 4px;
  padding: 12px 14px 14px;
  border-radius: 0;
  background: rgba(16, 33, 61, .92);
}

.branch-map__pin,
.branch-map__address,
.branch-map__cta {
  position: relative;
  z-index: 1;
}

.branch-map__pin {
  font-weight: 900;
  font-size: 16px;
}

.branch-map__address {
  color: rgba(255, 255, 255, .86);
  font-weight: 750;
}

.branch-map__cta {
  border-radius: 999px;
  width: fit-content;
  padding: 6px 9px;
  background: rgba(255, 255, 255, .16);
  font-weight: 850;
  font-size: 13px;
}

.branch-map:hover,
.branch-map:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .28);
  outline: none;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--sky);
  box-shadow: 0 22px 56px rgba(21, 52, 122, .16);
  outline: none;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--sky-soft);
}

.article-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--navy);
  font-weight: 850;
  font-size: 13px;
}

.article-card h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.18;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.article-layout > img {
  width: 100%;
  position: sticky;
  top: 104px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--sky-soft);
}

.article-content {
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.article-content h1 {
  margin: 14px 0 18px;
  color: var(--navy-2);
  font-family: "Unbounded", "Manrope", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .98;
}

.article-content h2 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: clamp(20px, 2vw, 28px);
}

.article-content p,
.article-content li {
  color: var(--ink);
  line-height: 1.72;
}

.article-content ul {
  padding-left: 22px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sky);
  font-weight: 850;
  text-decoration: none;
}

.article-back:hover,
.article-back:focus-visible {
  color: var(--navy);
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.legal-page {
  display: none;
}

.route-only {
  display: none;
}

body.is-shop-route main > :not(.shop-route-visible),
body.is-rent-route main > :not(.rent-route-visible),
body.is-repair-route main > :not(.repair-route-visible),
body.is-articles-route main > :not(.articles-route-visible),
body.is-article-detail-route main > :not(.article-page) {
  display: none;
}

body.is-shop-route #shop,
body.is-rent-route #rent,
body.is-repair-route #repairPrice,
body.is-repair-route #repair,
body.is-repair-route #consultation,
body.is-articles-route #articles,
body.is-article-detail-route .article-page.is-active {
  padding-top: 48px;
}

body.is-repair-route #repairPrice {
  padding-top: 28px;
}

body.is-shop-route .shop-route-visible,
body.is-rent-route .rent-route-visible,
body.is-repair-route .repair-route-visible,
body.is-articles-route .articles-route-visible,
body.is-article-detail-route .article-page.is-active {
  display: block;
}

body.is-legal-route main > :not(.legal-page) {
  display: none;
}

body.is-legal-route .legal-page.is-active {
  display: block;
}

.legal-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 42px);
}

.legal-card h1 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 52px);
}

.legal-card h2 {
  margin-top: 28px;
  font-size: clamp(20px, 2vw, 28px);
}

.legal-card p,
.legal-card li {
  max-width: 940px;
}

.legal-updated {
  color: var(--soft);
  font-weight: 800;
}

.legal-table {
  display: grid;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-table div {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.legal-table div:nth-child(odd) {
  background: #f8fbfe;
}

.legal-table div:last-child {
  border-bottom: 0;
}

.legal-table dt {
  color: var(--muted);
  font-weight: 850;
}

.legal-table dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-table--compact div {
  grid-template-columns: minmax(160px, 230px) 1fr;
}

.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 980px;
  margin: 0 auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(16, 33, 61, .22);
  padding: 14px;
  backdrop-filter: blur(14px);
}

.cookie-notice.is-visible {
  display: flex;
}

.cookie-notice p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.cookie-notice div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-notice a {
  color: var(--navy);
  font-weight: 850;
}

.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 40px auto 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(150px, .62fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 40px 44px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2860 100%);
  color: rgba(255,255,255,0.86);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,169,221,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 18px;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.footer-brand,
.footer-col,
.footer-meta {
  position: relative;
  z-index: 2;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.footer-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
  letter-spacing: 0;
}

.footer-brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.54);
  font-size: 12px;
  font-weight: 800;
}

.footer-brand p,
.footer-legal-card p {
  max-width: 460px;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contacts a,
.footer-nav a,
.footer-legal-links a,
.footer-meta a {
  color: #fff;
  text-decoration: none;
}

.footer-contacts a {
  font-weight: 800;
}

.footer-col-title {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.5);
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-nav a {
  padding: 6px 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 750;
  transition: color .15s, padding .15s;
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-legal-card {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.14);
}

.footer-requisites {
  display: grid;
  gap: 8px;
  margin: 0;
}

.footer-requisites div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.footer-requisites dt {
  color: rgba(255,255,255,0.44);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-requisites dd {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-legal-links a {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 12px;
  font-weight: 850;
}

.footer-legal-links a:hover {
  background: rgba(31,169,221,0.28);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 22px;
  color: rgba(255,255,255,0.42);
  font-size: 12px;
}

.empty {
  padding: 30px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .65);
}

.mobile-action-bar {
  display: none;
}

.loading {
  position: relative;
}

.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(31, 169, 221, .25);
  border-top-color: var(--sky);
  border-radius: 999px;
  animation: spin .72s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::before {
    inset: 36% -18vw 18px 8vw;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__visual img {
    min-height: 420px;
  }

  .hero__visual--banner {
    min-height: 0;
  }

  .hero__visual--banner img {
    min-height: 0;
  }

  .vk-live {
    grid-template-columns: 1fr;
  }

  .service-showcase__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-feature--repair {
    grid-column: 1 / -1;
  }

  .process-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .product-grid,
  .reason-grid,
  .proof-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .repair-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-layout > img {
    position: static;
  }

  .category-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-flow {
    grid-template-columns: 1fr;
  }

  .booking-bike-card {
    display: grid;
    grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
  }

  .booking-bike-card__media {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  .topbar__inner {
    position: relative;
    width: 100%;
    padding: 0 12px;
    min-height: 68px;
    gap: 8px;
    box-sizing: border-box;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    max-width: 136px;
  }

  .topbar__actions {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    gap: 6px;
    flex-shrink: 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .mobile-menu {
    display: inline-flex;
  }

  .topbar__actions .button--primary {
    display: none;
  }

  .topbar-account-button {
    display: none;
  }

  .hero,
  .section {
    width: min(calc(100% - 24px), 1240px);
  }

  .hero {
    padding-top: 34px;
    min-height: auto;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__visual img {
    min-height: 360px;
  }

  .hero__visual--banner {
    min-height: 0;
    aspect-ratio: 1280 / 511;
  }

  .hero__visual--banner img {
    min-height: 0;
  }

  .hero__stats,
  .branches-grid,
  .docs-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head > * {
    min-width: 0;
    max-width: 100%;
  }

  .section-head h2,
  .section-head p,
  .section-head .status {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-head .status {
    width: 100%;
    margin-top: 12px;
    white-space: normal;
  }

  .form-grid,
  .catalog-toolbar,
  .repair-price-toolbar,
  .consultation-card,
  .consultation-form,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }

  .field,
  .field--third,
  .field--wide {
    grid-column: auto;
  }

  .consultation-form .status {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 26px;
    line-height: 1.12;
    max-width: 100%;
  }

  .hero {
    padding-top: 22px;
    gap: 18px;
    overflow: hidden;
  }

  .hero__content {
    width: 100%;
    max-width: calc(100vw - 24px);
    overflow: hidden;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 11px;
  }

  .hero__video {
    display: none;
  }

  .hero__visual {
    min-height: 300px;
    border-radius: 28px;
  }

  .hero__visual img {
    min-height: 300px;
  }

  .hero__visual--banner {
    min-height: 0;
    border-radius: 22px;
  }

  .hero__visual--banner img {
    min-height: 0;
  }

  .hero__lead {
    font-size: 15px;
    max-width: 27ch;
    margin-bottom: 0;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 12px;
  }

  .hero-benefits span {
    padding: 7px 9px;
    font-size: 13px;
  }

  .hero__actions {
    margin-top: 12px;
    gap: 8px;
  }

  .hero__actions .button {
    flex: 1 1 100%;
    min-height: 40px;
    padding: 8px 11px;
  }

  .service-grid,
  .product-grid,
  .reason-grid,
  .repair-service-grid,
  .articles-grid,
  .proof-grid,
  .review-grid,
  .service-showcase__grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .service-feature {
    min-height: 230px;
    border-radius: 26px;
  }

  .process-timeline li {
    min-height: 112px;
  }

  .final-cta {
    padding: 22px;
    border-radius: 26px;
    background:
      linear-gradient(135deg, rgba(11, 95, 255, .97), rgba(17, 24, 39, .94)),
      url("../images/velodostup-site-repair.jpg") right bottom / auto 125% no-repeat;
  }

  .article-content {
    padding: 18px;
  }

  .article-content h1 {
    font-size: 30px;
  }

  .section-head h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .category-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    padding: 14px;
  }

  .app-panel__bar {
    display: block;
  }

  .app-panel__bar .price {
    display: block;
    margin-top: 6px;
  }

  .booking-bike-card {
    display: block;
  }

  .booking-bike-card__media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-bike-card__meta {
    grid-template-columns: 1fr;
  }

  .booking-form-actions .button,
  .booking-form-actions .badge {
    flex: 1 1 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 28px 22px;
  }

  .footer-legal-card {
    padding-left: 0;
    border-left: 0;
  }

  .footer-requisites div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .vk-live__grid {
    grid-template-columns: 1fr;
  }

  .legal-table div,
  .legal-table--compact div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    width: auto;
    box-sizing: border-box;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 7px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 34px rgba(16, 33, 61, .22);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    gap: 2px;
    min-height: 46px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 850;
    font-size: 16px;
  }

  .mobile-action-bar span {
    font-size: 11px;
  }

  .cookie-notice {
    bottom: 82px;
    display: none;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice.is-visible {
    display: flex;
  }

  .cookie-notice div {
    justify-content: space-between;
    flex-wrap: wrap;
    flex-shrink: 1;
  }

  .cookie-notice div > * {
    flex: 1 1 120px;
    text-align: center;
  }

  .cookie-notice .button {
    min-width: 0;
  }
}

@media (max-width: 1050px) {
  .hero__visual--cards {
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-service-card {
    min-height: 240px;
  }
}

@media (max-width: 820px) {
  .hero__visual--cards {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-service-card {
    min-height: 210px;
  }
}

@media (max-width: 520px) {
  .hero-service-card {
    min-height: 190px;
    padding: 16px;
    border-radius: 20px;
  }

  .hero-service-card strong {
    font-size: 23px;
  }
}
