:root {
  --cyan: #00a0e3;
  --magenta: #e5097f;
  --yellow: #ffed00;
  --violet: #7c3cff;
  --green: #33d17a;
  --orange: #ff7a18;
  --blue: #2374ff;
  --ink: #111113;
  --muted: #5f6470;
  --paper: #fffdf4;
  --white: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 160, 227, 0.34), transparent 26%),
    radial-gradient(circle at 78% 8%, rgba(229, 9, 127, 0.3), transparent 28%),
    radial-gradient(circle at 50% 88%, rgba(255, 237, 0, 0.42), transparent 32%),
    linear-gradient(135deg, #fff7fb, #ecfbff 42%, #fffde4);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: -30vmax;
  z-index: -3;
  content: "";
  background: conic-gradient(from 90deg, #00a0e3, #e5097f, #ffed00, #33d17a, #7c3cff, #00a0e3);
  filter: blur(70px) saturate(1.2);
  opacity: 0.16;
}

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

a:hover {
  color: var(--magenta);
}

.paint-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.paint-blob {
  position: absolute;
  width: 28vw;
  height: 28vw;
  min-width: 230px;
  min-height: 230px;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.42;
}

.paint-blob--cyan {
  left: -7vw;
  top: 20vh;
  background: var(--cyan);
}

.paint-blob--magenta {
  right: -8vw;
  top: 8vh;
  background: var(--magenta);
}

.paint-blob--yellow {
  left: 28vw;
  bottom: -10vw;
  background: var(--yellow);
}

.paint-blob--green {
  right: 16vw;
  bottom: 18vh;
  background: var(--green);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  padding: 0 12px;
  pointer-events: none;
}

.navbar {
  max-width: 1320px;
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(35, 21, 69, 0.15);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}

.navbar::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 160, 227, 0.12), rgba(229, 9, 127, 0.1), rgba(255, 237, 0, 0.16));
  border-radius: inherit;
  opacity: 0.84;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(17, 17, 19, 0.08);
}

.navbar-brand img,
.footer-logo img {
  display: block;
  width: min(199px, 42vw);
  height: auto;
}

.header-contacts {
  flex-direction: column;
  gap: 2px;
  margin-left: 22px;
  color: #2d3138;
  font-size: 0.84rem;
  font-weight: 560;
  line-height: 1.18;
  white-space: nowrap;
}

.navbar-toggler {
  width: 48px;
  height: 48px;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17, 17, 19, 0.12);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 160, 227, 0.45);
}

.navbar-nav {
  gap: 5px;
  align-items: center;
}

.nav-link {
  position: relative;
  overflow: hidden;
  color: #262b32;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0;
  padding: 0.64rem 0.72rem !important;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #111113;
  background: #fff;
  box-shadow: 0 9px 20px rgba(17, 17, 19, 0.1);
  transform: translateY(-1px);
}

.nav-link::after {
  position: absolute;
  inset: auto 12px 7px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  font-weight: 600;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 42px;
  padding: 0.58rem 0.78rem;
  color: #065577;
  background: rgba(0, 160, 227, 0.18);
  border: 1px solid rgba(0, 160, 227, 0.34);
  border-radius: 14px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-social a:hover,
.nav-social a:focus-visible {
  color: #043f5a;
  background: rgba(0, 160, 227, 0.27);
  border-color: rgba(0, 160, 227, 0.52);
  transform: translateY(-1px);
}

.nav-social i {
  flex: 0 0 auto;
  font-size: 1.1rem;
}

.hero {
  position: relative;
  padding: 92px 0 20px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  color: #111113;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(17, 17, 19, 0.08);
  font-size: 0.82rem;
  font-weight: 620;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 620;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(1.75rem, 2.75vw, 2.95rem);
  line-height: 1.1;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--green));
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: #2b3038;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 430;
  line-height: 1.62;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: var(--radius);
  font-weight: 620;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn i {
  margin-right: 9px;
}

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

.btn-ink {
  color: #fff;
  background: #111113;
  border-color: #111113;
  box-shadow: 0 16px 32px rgba(17, 17, 19, 0.22);
}

.btn-ink:hover,
.btn-ink:focus,
.btn-ink:active {
  color: #fff;
  background: #111113;
  border-color: #111113;
  box-shadow: 0 20px 38px rgba(17, 17, 19, 0.28);
  filter: saturate(1.08);
}

.btn-color {
  color: #111113;
  background: linear-gradient(90deg, #fff, #fff6ab, #c8f7ff);
  border: 1px solid rgba(17, 17, 19, 0.12);
  box-shadow: 0 16px 32px rgba(229, 9, 127, 0.16);
}

.print-showcase {
  position: relative;
  min-height: 430px;
}

.print-photo {
  position: absolute;
  inset: 22px 42px 38px 16px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 28px;
  box-shadow: 0 30px 68px rgba(35, 21, 69, 0.22);
  transform: rotate(-4deg);
  transition: transform 500ms ease;
}

.print-showcase:hover .print-photo {
  transform: rotate(-1deg) translateY(-6px);
}

.print-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(135deg, rgba(0, 160, 227, 0.08), rgba(229, 9, 127, 0.2), rgba(255, 237, 0, 0.16));
  mix-blend-mode: screen;
}

.print-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.06);
}

.promo-card {
  position: absolute;
  z-index: 3;
  max-width: 300px;
  padding: 18px;
  border: 4px solid #fff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(35, 21, 69, 0.2);
}

.promo-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.promo-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.02rem;
  font-weight: 560;
  line-height: 1.25;
}

.promo-card--hours {
  top: 0;
  left: 0;
  color: #111113;
  background: var(--yellow);
}

.promo-card--service {
  right: 0;
  bottom: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  animation-delay: -2s;
}

.cmyk-wheel {
  position: absolute;
  right: 10px;
  top: 78px;
  z-index: 4;
  display: grid;
  gap: 9px;
}

.cmyk-wheel span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #111113;
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(17, 17, 19, 0.14);
}

.cmyk-wheel span:nth-child(1) {
  color: #fff;
  background: var(--cyan);
}

.cmyk-wheel span:nth-child(2) {
  color: #fff;
  background: var(--magenta);
}

.cmyk-wheel span:nth-child(3) {
  background: var(--yellow);
}

.cmyk-wheel span:nth-child(4) {
  color: #fff;
  background: #111113;
}

.section {
  padding: clamp(44px, 6vw, 78px) 0;
}

.section-head {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-head h2,
.seo-layout h2,
.notice-band h2 {
  font-size: clamp(1.58rem, 2.6vw, 2.85rem);
  line-height: 1.1;
}

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

.service-tile {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  color: #111113;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), var(--tile-soft)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(35, 21, 69, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.service-tile::before {
  position: absolute;
  inset: 0 0 auto;
  width: auto;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--tile-color), rgba(255, 255, 255, 0.22));
  border-radius: 0;
}

.service-tile::after {
  position: absolute;
  inset: auto -44px -46px auto;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, var(--tile-color), transparent 64%);
  border-radius: 50%;
  opacity: 0.1;
}

.service-tile:hover {
  color: #111113;
  box-shadow: 0 26px 60px rgba(35, 21, 69, 0.16);
  filter: saturate(1.04);
  transform: translateY(-6px);
}

.tile-art {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--tile-color);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  font-size: 1.72rem;
  box-shadow: 0 12px 24px rgba(17, 17, 19, 0.08);
}

.tile-media {
  position: absolute;
  top: 58px;
  right: 18px;
  z-index: 0;
  width: min(62%, 210px);
  height: 108px;
  display: block;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(35, 21, 69, 0.14);
  opacity: 0.9;
  transform: rotate(2deg);
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.service-tile:hover .tile-media {
  opacity: 1;
  box-shadow: 0 18px 38px rgba(35, 21, 69, 0.18);
  transform: rotate(0deg) translateY(-2px);
}

.service-tile strong,
.service-tile em {
  position: relative;
  z-index: 1;
  display: block;
}

.service-tile strong {
  margin-top: auto;
  font-size: clamp(1.02rem, 1.25vw, 1.26rem);
  line-height: 1.22;
  font-weight: 560;
}

.service-tile em {
  max-width: 240px;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.96rem;
  font-weight: 400;
  opacity: 0.78;
}

.service-tile--cyan {
  --tile-color: #008dc8;
  --tile-soft: #e3f8ff;
}

.service-tile--magenta {
  --tile-color: #c80770;
  --tile-soft: #fff0f8;
}

.service-tile--yellow {
  --tile-color: #d8bc00;
  --tile-soft: #fff9cf;
}

.service-tile--violet {
  --tile-color: #7040df;
  --tile-soft: #f1ecff;
}

.service-tile--green {
  --tile-color: #159653;
  --tile-soft: #ecfff2;
}

.service-tile--orange {
  --tile-color: #d65d00;
  --tile-soft: #fff2e5;
}

.service-tile--blue {
  --tile-color: #2367d6;
  --tile-soft: #edf4ff;
}

.service-tile--pink {
  --tile-color: #d73393;
  --tile-soft: #fff0fa;
}

.services-hero {
  padding: 74px 0 18px;
}

.services-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.services-hero__copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 20px 0 0;
  color: #303640;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.services-hero__visual {
  position: relative;
  min-height: 390px;
}

.services-hero__visual img {
  position: absolute;
  inset: 30px 20px 16px 24px;
  width: calc(100% - 44px);
  height: calc(100% - 46px);
  object-fit: cover;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(35, 21, 69, 0.18);
  transform: rotate(-2deg);
}

.services-hero__badge {
  position: absolute;
  z-index: 2;
  padding: 11px 15px;
  color: #111113;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(35, 21, 69, 0.18);
  font-size: 0.86rem;
  font-weight: 620;
}

.services-hero__badge--top {
  top: 7px;
  left: 0;
  background: var(--yellow);
}

.services-hero__badge--bottom {
  right: 0;
  bottom: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), var(--violet));
}

.services-catalog {
  padding-top: 54px;
}

.services-catalog__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.services-catalog__head h2 {
  font-size: clamp(1.58rem, 2.6vw, 2.85rem);
  line-height: 1.1;
}

.services-catalog__head > div > p:last-child {
  max-width: 780px;
  margin: 16px 0 0;
  color: #3b414b;
  font-size: 1.02rem;
  line-height: 1.6;
}

.services-catalog__head a {
  color: #a0065a;
  text-decoration: underline;
  text-decoration-color: rgba(229, 9, 127, 0.35);
  text-underline-offset: 3px;
}

.service-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(35, 21, 69, 0.11);
  backdrop-filter: blur(14px);
}

.service-search i {
  color: #6b3bd2;
  font-size: 1.15rem;
}

.service-search input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: #111113;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.service-search:focus-within {
  box-shadow: 0 0 0 3px rgba(0, 160, 227, 0.3), 0 16px 36px rgba(35, 21, 69, 0.13);
}

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

.directory-card {
  --directory-color: var(--cyan);
  position: relative;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 14px;
  color: #111113;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-top: 5px solid var(--directory-color);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(35, 21, 69, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.directory-card[hidden] {
  display: none;
}

.directory-card:hover {
  color: #111113;
  box-shadow: 0 24px 48px rgba(35, 21, 69, 0.17);
  transform: translateY(-5px);
}

.directory-card img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  border-radius: 12px;
}

.directory-card__icon {
  position: absolute;
  top: 104px;
  left: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--directory-color);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(17, 17, 19, 0.14);
}

.directory-card__title {
  max-width: calc(100% - 38px);
  margin-top: 22px;
  font-size: 1.02rem;
  font-weight: 560;
  line-height: 1.3;
}

.directory-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--directory-color);
  font-size: 1.15rem;
}

.directory-card--magenta { --directory-color: var(--magenta); }
.directory-card--yellow { --directory-color: #c5ad00; }
.directory-card--violet { --directory-color: var(--violet); }
.directory-card--green { --directory-color: #159653; }
.directory-card--blue { --directory-color: var(--blue); }
.directory-card--orange { --directory-color: #d65d00; }
.directory-card--pink { --directory-color: #d73393; }

.services-empty {
  margin: 20px 0 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(35, 21, 69, 0.09);
  font-size: 1.05rem;
}

.service-detail {
  --service-accent: var(--cyan);
  --service-soft: rgba(0, 160, 227, 0.14);
}

.service-detail--magenta {
  --service-accent: var(--magenta);
  --service-soft: rgba(229, 9, 127, 0.12);
}

.service-detail--yellow {
  --service-accent: #c4aa00;
  --service-soft: rgba(255, 237, 0, 0.2);
}

.service-detail--violet {
  --service-accent: var(--violet);
  --service-soft: rgba(124, 60, 255, 0.13);
}

.service-detail--green {
  --service-accent: #159653;
  --service-soft: rgba(51, 209, 122, 0.14);
}

.service-detail--blue {
  --service-accent: var(--blue);
  --service-soft: rgba(35, 116, 255, 0.13);
}

.service-detail--orange {
  --service-accent: #d65d00;
  --service-soft: rgba(255, 122, 24, 0.14);
}

.service-detail--pink {
  --service-accent: #d73393;
  --service-soft: rgba(215, 51, 147, 0.13);
}

.service-detail-hero {
  padding: 50px 0 20px;
}

.service-breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #343941;
  font-size: 0.92rem;
  font-weight: 560;
}

.service-breadcrumb:hover {
  color: var(--service-accent);
}

.service-detail-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.service-detail-hero__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--service-accent);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(35, 21, 69, 0.12);
  font-size: 1.5rem;
}

.service-detail-hero__copy > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #353b45;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.service-detail-hero__visual {
  position: relative;
  min-height: 350px;
}

.service-detail-hero__visual::before {
  position: absolute;
  inset: 18px 12px 0 38px;
  content: "";
  background: var(--service-accent);
  border-radius: 26px;
  opacity: 0.18;
  transform: rotate(3deg);
}

.service-detail-hero__visual img {
  position: absolute;
  inset: 0 28px 24px 0;
  width: calc(100% - 28px);
  height: calc(100% - 24px);
  object-fit: cover;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  box-shadow: 0 26px 56px rgba(35, 21, 69, 0.18);
}

.service-detail-hero__tag {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 11px 14px;
  color: #fff;
  background: #111113;
  border: 3px solid #fff;
  border-radius: 13px;
  box-shadow: 0 14px 28px rgba(17, 17, 19, 0.2);
  font-size: 0.82rem;
  font-weight: 620;
}

.service-detail-body {
  padding-top: 52px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.service-article {
  min-width: 0;
}

.service-article h2 {
  max-width: 920px;
  margin: 42px 0 16px;
  padding-left: 16px;
  border-left: 5px solid var(--service-accent);
  font-size: clamp(1.24rem, 1.8vw, 1.72rem);
  font-weight: 600;
  line-height: 1.28;
}

.service-article h2:first-child {
  margin-top: 0;
}

.service-article > p:not(.service-note) {
  max-width: 920px;
  margin: 0 0 18px;
  color: #303640;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.72;
}

.service-price-list {
  display: grid;
  gap: 8px;
  max-width: 920px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-price-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 13px 16px;
  color: #222730;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  box-shadow: 0 9px 22px rgba(35, 21, 69, 0.07);
  line-height: 1.52;
}

.service-price-list__mark {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--service-accent);
  border-radius: 50%;
}

.service-note {
  max-width: 920px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 0 0 22px;
  padding: 15px 17px;
  color: #333842;
  background: var(--service-soft);
  border-left: 4px solid var(--service-accent);
  border-radius: 10px;
  line-height: 1.55;
}

.service-note i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--service-accent);
}

.service-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
}

.service-contact-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-top: 6px solid var(--service-accent);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(35, 21, 69, 0.12);
  backdrop-filter: blur(16px);
}

.service-contact-panel h2 {
  font-size: 1.52rem;
  line-height: 1.2;
}

.service-contact-panel > p:not(.section-kicker) {
  margin: 12px 0 18px;
  color: #4b515b;
  line-height: 1.55;
}

.service-contact-link {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 10px 12px;
  color: #111113;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 19, 0.09);
  border-radius: 11px;
  font-weight: 560;
}

.service-contact-link i {
  color: var(--service-accent);
}

.service-contact-link:hover {
  color: #111113;
  border-color: var(--service-accent);
}

.service-messengers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.service-messengers a {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #065577;
  background: rgba(0, 160, 227, 0.14);
  border: 1px solid rgba(0, 160, 227, 0.28);
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 560;
}

.service-hours {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 237, 0, 0.78);
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(35, 21, 69, 0.1);
}

.service-hours > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: #111113;
  border-radius: 11px;
}

.service-hours strong,
.service-hours span {
  display: block;
}

.service-hours strong {
  margin-bottom: 5px;
  font-weight: 620;
}

.service-hours span {
  font-size: 0.9rem;
}

.related-services {
  padding-top: 24px;
}

.related-services__all {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 560;
}

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

.related-service {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  color: #fff;
  background: #111113;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(35, 21, 69, 0.13);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.related-service::after {
  position: absolute;
  inset: 36% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(17, 17, 19, 0.9));
}

.related-service:hover {
  color: #fff;
  box-shadow: 0 22px 44px rgba(35, 21, 69, 0.2);
  transform: translateY(-4px);
}

.related-service img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  object-fit: cover;
  opacity: 0.86;
}

.related-service span,
.related-service i {
  position: absolute;
  z-index: 2;
  bottom: 15px;
}

.related-service span {
  left: 16px;
  max-width: calc(100% - 54px);
  font-weight: 560;
  line-height: 1.3;
}

.related-service i {
  right: 16px;
}

.inner-hero {
  --inner-accent: var(--cyan);
  padding: 70px 0 26px;
}

.inner-hero--yellow {
  --inner-accent: #c5ad00;
}

.inner-hero--magenta {
  --inner-accent: var(--magenta);
}

.inner-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.inner-hero__copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 20px 0 0;
  color: #343a44;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.68;
}

.inner-hero__visual {
  position: relative;
  min-height: 370px;
}

.inner-hero__visual::before {
  position: absolute;
  inset: 24px 0 8px 30px;
  content: "";
  background: var(--inner-accent);
  border-radius: 26px;
  opacity: 0.18;
  transform: rotate(3deg);
}

.inner-hero__visual img {
  position: absolute;
  inset: 0 24px 24px 0;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  box-shadow: 0 26px 58px rgba(35, 21, 69, 0.18);
}

.inner-hero__visual span {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 11px 15px;
  color: #fff;
  background: #111113;
  border: 3px solid #fff;
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(17, 17, 19, 0.2);
  font-size: 0.84rem;
  font-weight: 620;
}

.info-page {
  padding-top: 54px;
}

.info-intro {
  max-width: 1040px;
  margin-bottom: 48px;
  padding-left: 20px;
  border-left: 6px solid var(--cyan);
}

.info-intro p {
  margin: 0;
  color: #303640;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.72;
}

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

.equipment-item {
  min-height: 142px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-top: 5px solid var(--cyan);
  border-radius: 15px;
  box-shadow: 0 14px 32px rgba(35, 21, 69, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.equipment-item:nth-child(3n + 2) {
  border-top-color: var(--magenta);
}

.equipment-item:nth-child(3n) {
  border-top-color: #d1b700;
}

.equipment-item:hover {
  box-shadow: 0 20px 42px rgba(35, 21, 69, 0.14);
  transform: translateY(-4px);
}

.equipment-item i {
  color: #087ea8;
  font-size: 1.5rem;
}

.equipment-item h3 {
  margin: 16px 0 0;
  font-size: 1rem;
  font-weight: 560;
  line-height: 1.4;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 18px;
  align-items: start;
}

.payment-section {
  padding: clamp(24px, 3.4vw, 38px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-top: 7px solid #d1b700;
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(35, 21, 69, 0.11);
}

.payment-section--business {
  border-top-color: var(--cyan);
}

.payment-section h2,
.delivery-option h2 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.2;
}

.payment-section > p:not(.section-kicker) {
  margin: 16px 0 0;
  color: #3d434c;
  line-height: 1.65;
}

.payment-methods {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.payment-methods div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 19, 0.08);
  border-radius: 11px;
}

.payment-methods i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #111113;
  background: var(--yellow);
  border-radius: 10px;
  font-size: 1.1rem;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  color: #303640;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 19, 0.07);
  border-radius: 11px;
  line-height: 1.58;
}

.info-list li::before {
  position: absolute;
  top: 20px;
  left: 17px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

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

.delivery-option {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-top: 8px solid var(--cyan);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(35, 21, 69, 0.11);
}

.delivery-option--russia {
  border-top-color: var(--magenta);
}

.delivery-option__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: #111113;
  border-radius: 16px;
  font-size: 1.6rem;
  box-shadow: 0 14px 28px rgba(17, 17, 19, 0.18);
}

.delivery-option--russia .info-list li::before {
  background: var(--magenta);
}

.delivery-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 18px 20px;
  color: #303640;
  background: rgba(255, 237, 0, 0.76);
  border-radius: 13px;
  box-shadow: 0 13px 28px rgba(35, 21, 69, 0.09);
}

.delivery-note p {
  margin: 0;
}

.delivery-note a {
  font-weight: 620;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-hero {
  padding: 70px 0 28px;
}

.contact-hero__head {
  max-width: 990px;
  margin-bottom: 28px;
}

.contact-hero__head h1 {
  max-width: 990px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.contact-method {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #111113;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-top: 5px solid var(--cyan);
  border-radius: 15px;
  box-shadow: 0 16px 36px rgba(35, 21, 69, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-method--address,
.contact-method--email {
  grid-column: span 2;
}

.contact-method:hover {
  color: #111113;
  box-shadow: 0 22px 44px rgba(35, 21, 69, 0.16);
  transform: translateY(-4px);
}

.contact-method > i {
  margin-bottom: auto;
  color: var(--cyan);
  font-size: 1.5rem;
}

.contact-method > span {
  margin-top: 18px;
  color: #646a74;
  font-size: 0.78rem;
  font-weight: 560;
  text-transform: uppercase;
}

.contact-method strong {
  margin-top: 5px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-method small {
  margin-top: 6px;
  color: #555b65;
  line-height: 1.4;
}

.contact-method--max {
  border-top-color: var(--violet);
}

.contact-method--max > i {
  color: var(--violet);
}

.contact-method--telegram {
  border-top-color: var(--cyan);
}

.contact-method--email {
  border-top-color: var(--magenta);
}

.contact-method--email > i {
  color: var(--magenta);
}

.contact-details {
  padding-top: 36px;
}

.contact-details__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 18px;
  align-items: stretch;
}

.contact-map {
  min-height: 440px;
  overflow: hidden;
  background: #fff;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(35, 21, 69, 0.12);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 426px;
  border: 0;
}

.contact-side {
  display: grid;
  gap: 12px;
}

.schedule-panel,
.legal-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(35, 21, 69, 0.1);
}

.schedule-panel {
  border-top: 6px solid var(--yellow);
}

.schedule-panel > div {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-top: 1px solid rgba(17, 17, 19, 0.09);
}

.schedule-panel span {
  color: #5e646e;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.schedule-panel strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-panel {
  border-top: 6px solid var(--magenta);
}

.legal-panel strong,
.legal-panel span {
  display: block;
}

.legal-panel strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.legal-panel span {
  margin-top: 3px;
  color: #4a5059;
}

.quick-info {
  padding: 0 0 clamp(48px, 7vw, 88px);
}

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

.quick-card {
  min-height: 126px;
  padding: 20px;
  color: #111113;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--quick-bg)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-top: 6px solid var(--quick-line);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(35, 21, 69, 0.09);
}

.quick-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 560;
  text-transform: uppercase;
  opacity: 0.66;
}

.quick-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 560;
}

.quick-card--cyan {
  --quick-bg: #c8f7ff;
  --quick-line: var(--cyan);
}

.quick-card--pink {
  --quick-bg: #ffd4ee;
  --quick-line: var(--magenta);
}

.quick-card--yellow {
  --quick-bg: #fff49c;
  --quick-line: #dfc600;
}

.quick-card--lime {
  --quick-bg: #d9ffd8;
  --quick-line: var(--green);
}

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

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: 0 22px 52px rgba(35, 21, 69, 0.12);
  backdrop-filter: blur(18px);
}

.seo-layout p {
  margin: 22px 0 0;
  color: #333842;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  font-weight: 400;
  line-height: 1.66;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list p {
  margin: 0;
  padding: 16px 18px;
  background: #fff;
  border-left: 8px solid var(--magenta);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(35, 21, 69, 0.08);
  font-weight: 400;
  line-height: 1.58;
}

.benefit-list p:nth-child(2n) {
  border-left-color: var(--cyan);
}

.benefit-list p:nth-child(3n) {
  border-left-color: var(--yellow);
}

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

.notice-band {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  color: #111113;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 206, 0.84)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 10px solid var(--yellow);
  border-radius: 26px;
  box-shadow: 0 22px 52px rgba(35, 21, 69, 0.12);
}

.notice-band .section-kicker {
  background: #fff;
}

.notice-band p:last-child {
  max-width: 920px;
  margin: 20px 0 0;
  color: #242832;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  font-weight: 430;
  line-height: 1.62;
}

.notice-mark {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: #fff;
  background: #111113;
  border-radius: 28px;
  font-size: 2.5rem;
  box-shadow: 0 18px 34px rgba(17, 17, 19, 0.22);
}

.site-footer {
  color: #111113;
  background:
    linear-gradient(90deg, rgba(0, 160, 227, 0.12), rgba(229, 9, 127, 0.1), rgba(255, 237, 0, 0.18)),
    #fff;
}

.footer-main {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 44px 0 28px;
  border-bottom: 1px solid rgba(17, 17, 19, 0.14);
}

.footer-logo {
  display: inline-flex;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: flex-end;
  font-weight: 560;
}

.footer-bottom {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 34px;
}

.footer-bottom p {
  max-width: 780px;
  margin: 0;
  color: rgba(17, 17, 19, 0.72);
  font-size: 0.92rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar {
    border-radius: 22px;
  }

  .navbar-collapse {
    padding-top: 16px;
  }

  .navbar-nav {
    align-items: stretch;
  }

  .nav-link {
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .print-showcase {
    min-height: 400px;
  }

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

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

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

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

  .contact-methods {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 96px;
  }

  .seo-layout {
    grid-template-columns: 1fr;
  }

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

  .services-hero__visual {
    min-height: 360px;
  }

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

  .service-detail-hero__layout,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  }

  .inner-hero__layout,
  .payment-layout,
  .contact-details__layout {
    grid-template-columns: 1fr;
  }

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

  .contact-method--address,
  .contact-method--email {
    grid-column: span 1;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    top: 8px;
    padding: 0 8px;
  }

  .navbar {
    min-height: 68px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .navbar-brand {
    padding: 8px 10px;
    border-radius: 14px;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero {
    padding-top: 92px;
  }

  h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem);
    line-height: 1.12;
  }

  .section-head h2,
  .seo-layout h2,
  .notice-band h2 {
    font-size: clamp(1.38rem, 5.8vw, 2rem);
    line-height: 1.12;
  }

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

  .print-showcase {
    min-height: 320px;
  }

  .print-photo {
    inset: 40px 0 42px 0;
    transform: rotate(-2deg);
  }

  .promo-card {
    max-width: 265px;
    padding: 14px;
  }

  .cmyk-wheel {
    right: 8px;
    top: 86px;
  }

  .cmyk-wheel span {
    width: 42px;
    height: 42px;
  }

  .section-head {
    display: block;
  }

  .tile-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding-top: 62px;
  }

  .services-hero__visual {
    min-height: 300px;
  }

  .services-hero__visual img {
    inset: 30px 8px 16px;
    width: calc(100% - 16px);
  }

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

  .service-detail-hero {
    padding-top: 42px;
  }

  .service-detail-hero__visual {
    min-height: 290px;
  }

  .service-detail-hero__visual img {
    inset: 0 12px 20px 0;
    width: calc(100% - 12px);
  }

  .service-sidebar {
    grid-template-columns: 1fr;
  }

  .service-article h2 {
    margin-top: 34px;
  }

  .inner-hero,
  .contact-hero {
    padding-top: 50px;
  }

  .inner-hero__visual {
    min-height: 300px;
  }

  .inner-hero__visual img {
    inset: 0 10px 20px 0;
    width: calc(100% - 10px);
  }

  .equipment-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .delivery-option {
    min-height: 0;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: 172px;
  }

  .service-tile {
    min-height: 248px;
  }

  .tile-media {
    width: min(58%, 190px);
    height: 96px;
  }

  .notice-band {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .notice-mark {
    width: 86px;
    height: 86px;
    border-radius: 22px;
    font-size: 2.1rem;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 420px) {
  .navbar-brand img,
  .footer-logo img {
    width: 158px;
  }

  .promo-card--service {
    left: 0;
    right: auto;
  }

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

  .directory-card {
    min-height: 220px;
  }

  .related-services__grid {
    grid-template-columns: 1fr;
  }
}
