:root {
  --color-primary: #0f172a;
  --color-primary-soft: #172554;
  --color-accent: #0369a1;
  --color-accent-strong: #0284c7;
  --color-action: #16a34a;
  --color-warning: #facc15;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-2: #eef5fb;
  --color-text: #020617;
  --color-muted: #526174;
  --color-border: #dbe5ef;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --container: 1180px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a,
select,
input {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid rgba(3, 105, 161, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: saturate(1.2) blur(14px);
}

.topbar {
  color: #d8e8f7;
  background: var(--color-primary);
  font-size: 13px;
}

.topbar__inner,
.topbar__contacts,
.nav__inner,
.brand,
.nav__menu,
.hero__actions,
.section__head,
.segmented,
.contact-actions,
.footer__inner {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 36px;
  justify-content: space-between;
  gap: 16px;
}

.topbar__contacts {
  gap: 18px;
  white-space: nowrap;
}

.topbar a:hover,
.footer a:hover {
  text-decoration: underline;
}

.nav {
  background: #fff;
}

.nav__inner {
  min-height: 72px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: max-content;
  gap: 10px;
}

.brand img {
  width: 76px;
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--color-muted);
  font-size: 12px;
}

.nav__menu {
  flex: 1;
  justify-content: center;
  gap: 4px;
}

.nav__menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #334155;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}

.nav__menu a:hover {
  color: var(--color-accent);
  background: #eef7ff;
}

.nav__cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav__cta,
.button--primary {
  color: #fff;
  background: var(--color-accent);
  box-shadow: 0 10px 24px rgba(3, 105, 161, 0.22);
}

.button--secondary {
  color: var(--color-primary);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.nav__cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button--primary:hover {
  background: var(--color-accent-strong);
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-primary);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100dvh - var(--header-height) + 92px));
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(15, 23, 42, 0.62), rgba(3, 105, 161, 0.2)), url("../images/gbi%20vyazma.jpg");
  background-position: center;
  background-size: cover;
}

.hero__backdrop {
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 430px);
  gap: 40px;
  align-items: center;
  min-height: inherit;
  padding: 72px 0 96px;
}

.hero__copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0271bc;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bde7ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: 46px;
  line-height: 1.08;
}

h3 {
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.2;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #e2eef8;
  font-size: 21px;
  overflow-wrap: break-word;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
}

.quick-order {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.quick-order__title strong,
.quick-order__title span,
label span {
  display: block;
}

.quick-order__title strong {
  font-size: 22px;
}

.quick-order__title span,
label span,
.form-status {
  color: var(--color-muted);
  font-size: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-primary);
  padding: 0 12px;
}

input:focus,
select:focus {
  border-color: var(--color-accent);
}

.form-status {
  min-height: 22px;
  margin: 0;
}

.section {
  padding: 76px 0;
}

.section--muted,
.stats-band {
  background: var(--color-surface-2);
}

.section__head {
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section__head > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--color-muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-border);
  transform: translateY(-44px);
  margin-bottom: -44px;
  box-shadow: var(--shadow-sm);
}

.stats div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
  background: #fff;
}

.stats strong {
  color: var(--color-accent);
  font-size: 34px;
  line-height: 1;
}

.stats span {
  color: var(--color-muted);
  font-weight: 600;
}

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

.product-card,
.legacy-card,
.steps article,
.contact-card,
.delivery__note,
.content-panel,
.accordion details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #e2e8f0;
}

.product-card div {
  padding: 18px;
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-card p {
  min-height: 100px;
  color: var(--color-muted);
}

.product-card a,
.price-row a {
  color: var(--color-accent);
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: #e0f2fe;
  color: #075985;
  font-size: 13px;
  font-weight: 800;
}

.segmented {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.segmented button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font-weight: 800;
}

.segmented button.is-active {
  color: #fff;
  background: var(--color-primary);
}

.price-source {
  max-width: 520px;
}

.price-category-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.price-category-link {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.price-category-link:hover {
  border-color: rgba(3, 105, 161, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.price-category-link strong {
  color: var(--color-primary);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.price-category-link span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.price-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 14px;
  margin-bottom: 16px;
}

.price-search,
.price-category {
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-summary {
  margin-bottom: 14px;
  color: var(--color-muted);
  font-weight: 700;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

#price-rows {
  display: contents;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(240px, 1.35fr) minmax(130px, 0.55fr) minmax(90px, 0.35fr);
  gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  border-top: 1px solid var(--color-border);
}

.price-row > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.price-row:first-child {
  border-top: 0;
}

.price-row--head {
  min-height: 52px;
  color: #fff;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.price-row strong {
  color: var(--color-primary);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.price-row > span:nth-child(2),
.price-row small {
  color: var(--color-muted);
}

.price-row small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.price-row.is-hidden {
  display: none;
}

.price-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.price-more {
  border-color: var(--color-border);
  color: var(--color-primary);
}

.price-more[hidden] {
  display: none;
}

.zhbi-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.zhbi-category-card {
  display: grid;
  gap: 16px;
  align-content: space-between;
  min-height: 280px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.zhbi-category-card h3 {
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.zhbi-category-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.zhbi-category-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 14px;
}

.zhbi-category-card li {
  overflow-wrap: anywhere;
}

.category-page {
  background: var(--color-bg);
}

.category-hero {
  padding: 58px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #075985);
}

.category-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 32px;
  align-items: end;
}

.category-hero h1 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: 52px;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.category-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #dbeafe;
  font-size: 18px;
}

.category-hero__panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.category-hero__panel strong {
  font-size: 28px;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}

.category-table-wrap {
  min-width: 0;
}

.category-side {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 14px;
}

.category-side__card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.product-hero .category-hero__panel strong {
  color: #fff;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 18px 0 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-border);
}

.product-specs div {
  padding: 16px;
  background: #fff;
}

.product-specs dt {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 4px 0 0;
  color: var(--color-primary);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.related-products a {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-primary);
  font-weight: 800;
}

.related-products span {
  color: var(--color-accent);
  font-size: 14px;
}

.category-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-weight: 800;
}

.legacy-catalog {
  padding-top: 0;
}

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

.legacy-card {
  padding: 20px;
}

.legacy-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.legacy-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
}

.legacy-card li {
  position: relative;
  padding-left: 18px;
}

.legacy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.delivery__grid,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.delivery p,
.faq p {
  color: var(--color-muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-action);
  box-shadow: inset 0 0 0 5px #dcfce7;
}

.delivery__visual {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.delivery__visual img {
  width: min(100%, 520px);
  filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.2));
}

.delivery__note {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px;
}

.delivery__note strong {
  color: var(--color-primary);
  font-size: 20px;
}

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

.source-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.75fr);
  gap: 40px;
  align-items: start;
}

.content-panel {
  padding: 28px;
}

.content-panel p {
  color: var(--color-muted);
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.content-panel h3 {
  margin: 26px 0 10px;
}

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

.steps article {
  padding: 22px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #075985;
  background: #e0f2fe;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 8px;
}

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

.faq__grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  padding: 0 18px;
}

.accordion summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--color-primary);
  font-weight: 800;
}

.accordion p {
  margin-bottom: 18px;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 34px;
}

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

.contact-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-border);
}

.contact-list div {
  padding: 18px;
  background: #fff;
}

.contact-list dt {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  color: var(--color-primary);
  font-weight: 800;
}

.footer {
  padding: 28px 0;
  color: #d8e8f7;
  background: var(--color-primary);
}

.footer__inner {
  justify-content: space-between;
  gap: 16px;
}

.footer__inner span:nth-child(2) {
  max-width: 620px;
  color: #b8c7d9;
  font-size: 13px;
}

.footer__inner span:nth-child(3) {
  color: #d8e8f7;
  font-size: 13px;
}

@media (max-width: 1040px) {
  .nav__menu,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 1px);
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .site-header:has(.nav__menu.is-open) .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header:has(.nav__menu.is-open) .nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header:has(.nav__menu.is-open) .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__content,
  .delivery__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 680px;
    font-size: 56px;
    line-height: 1.04;
  }

  h2 {
    font-size: 40px;
  }

  .quick-order {
    max-width: 560px;
  }

  .product-grid,
  .legacy-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-category-links,
  .zhbi-category-grid,
  .category-hero__content,
  .category-layout {
    grid-template-columns: 1fr;
  }

  .category-side {
    position: static;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    display: none;
  }

  .nav__inner {
    min-height: 70px;
  }

  .brand img {
    width: 62px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    gap: 24px;
    padding: 48px 0 72px;
  }

  h1 {
    max-width: 340px;
    font-size: 40px;
    line-height: 1.08;
  }

  .hero__lead {
    max-width: 340px;
    font-size: 18px;
  }

  .hero__copy,
  .quick-order {
    width: 100%;
    min-width: 0;
  }

  .hero__actions .button,
  .quick-order .button,
  .contact-actions .button {
    width: 100%;
  }

  .quick-order {
    padding: 18px;
  }

  .section {
    padding: 52px 0;
  }

  .stats {
    transform: none;
    margin-bottom: 0;
  }

  .section__head {
    display: grid;
    gap: 18px;
  }

  .segmented {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .price-tools {
    grid-template-columns: 1fr;
  }

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

  .zhbi-category-grid,
  .product-specs,
  .related-products {
    grid-template-columns: 1fr;
  }

  .category-hero {
    padding: 38px 0;
  }

  .category-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .product-grid,
  .legacy-grid,
  .steps,
  .stats,
  .contact-card,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .source-content__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .content-panel {
    padding: 20px;
  }

  .product-card p {
    min-height: 0;
  }

  .price-table {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .price-row--head {
    display: none;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
  }

  .price-row a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .delivery__grid,
  .faq__grid {
    gap: 28px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .footer__inner {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    max-width: 320px;
    font-size: 34px;
  }

  .hero__lead {
    max-width: 320px;
  }

  h2 {
    font-size: 30px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .stats div,
  .steps article {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
