:root {
  --red: #dc0006;
  --red-dark: #c90005;
  --text: #2d2c31;
  --muted: #66616a;
  --line: #ececf1;
  --panel: #f0eef8;
  --gold: #dba646;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family:
          "Roboto",
          Arial,
          sans-serif;
}

h1,
h2,
h3 {
  font-family:
          "Roboto Condensed",
          "Arial Narrow",
          Arial,
          sans-serif;
}

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

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

.container {
  width: min(100% - 56px, 1181px);
  margin-inline: auto;
}

body:not(.home) .container {
  width: min(98%, 1800px);
}

.site-header {
  background: var(--white);
}

.site-header.site-header {
  color: var(--text);
}

.site-header.site-header .header-top {
  flex-wrap: nowrap;
  padding: 0;
}

.site-header.site-header .logo {
  margin: 0;
}

.site-header.site-header .header-top a,
.site-header.site-header .top-menu a,
.site-header.site-header .category-menu a {
  color: inherit;
}

.site-header.site-header .call-button {
  color: var(--white);
  padding: 0 24px;
}

.header-top {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 34px;
  justify-content: space-between;
}

.header-nav-slot--top {
  flex: 0 0 454px;
  min-width: 0;
}

.header-nav-slot--top .top-menu {
  width: 100%;
}

.header-nav-slot--category {
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 175px;
  height: auto;
}

.top-menu {
  display: flex;
  align-items: center;
  flex: 0 0 454px;
  gap: 22px;
  color: #36333a;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.top-menu ul,
.category-menu ul {
  display: flex;
  align-items: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-menu li {
  position: relative;
}

.category-menu > ul {
  position: relative;
  justify-content: space-between;
  width: 100%;
}

.top-menu a {
  transition: color 0.2s ease;
}

.top-menu a:hover,
.top-menu .active,
.top-menu .current-menu-item > a {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 20px;
}

.phone {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.call-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--white);
  background: var(--red);
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(220, 0, 6, 0.2);
  transition:
          background-color 0.2s ease,
          transform 0.2s ease;
}

.call-button:hover,
.primary-button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.call-button {
  min-width: 180px;
  min-height: 38px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  text-transform: none;
}

.menu-button {
  position: relative;
  display: none;
  flex: 0 0 auto;
  width: 41px;
  height: 41px;
  border: 0;
  border-radius: 5px;
  background: var(--red);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 3px;
  border-radius: 99px;
  background: var(--white);
  content: "";
}

.menu-button span {
  top: 19px;
}

.menu-button::before {
  top: 12px;
}

.menu-button::after {
  top: 26px;
}

.header-divider {
  height: 1px;
  background: var(--line);
}

.category-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 59px;
  gap: 22px;
  color: #3a3740;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-menu a {
  position: relative;
  padding-right: 16px;
}

.category-menu a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background: url("../assets/images/header/menu-arrow-down-grey.svg") center / contain no-repeat;
  content: "";
  transform: translateY(-50%);
}

.category-menu a:first-child::after {
  background-image: url("../assets/images/header/menu-arrow-down-red.svg");
}

/* Десктоп: полоса основного меню как в старой теме (body.page .header-bottom) */
body:not(.home) .site-header .header-divider {
  display: none;
}

body:not(.home) .site-header .category-menu {
  background: #c8c8c9;
  color: #ffffff;
  border-radius: 4px;
  min-height: 0;
  padding: 6px 0 8px;
}

body:not(.home) .site-header .category-menu > ul > li > a,
body:not(.home) .site-header.site-header .category-menu > ul > li > a {
  color: #ffffff;
}

body:not(.home) .site-header .category-menu > ul > li > a::after,
body:not(.home) .site-header .category-menu > ul > li > a:first-child::after {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.top-menu li {
  position: relative;
}

.top-menu .sub-menu,
.category-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  display: none;
  min-width: 230px;
  margin: 0;
  padding: 12px;
  padding-top: 18px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  list-style: none;
  text-transform: none;
}

.top-menu .sub-menu .sub-menu,
.category-menu .sub-menu .sub-menu {
  top: -12px;
  left: calc(100% - 7px);
}

.top-menu li:hover > .sub-menu,
.top-menu li:focus-within > .sub-menu,
.category-menu li:hover > .sub-menu,
.category-menu li:focus-within > .sub-menu,
.top-menu li.is-submenu-open > .sub-menu,
.category-menu li.is-submenu-open > .sub-menu {
  display: block;
}

.top-menu .sub-menu a,
.category-menu .sub-menu a {
  display: block;
  padding: 9px 10px;
  color: #3a3740;
  font-size: 14px;
  line-height: 1.25;
  white-space: normal;
}

.top-menu .sub-menu a::after,
.category-menu .sub-menu a::after {
  display: none;
}

.mobile-menu-backdrop,
.mobile-nav-drawer {
  display: none;
}

.category-menu > ul > li > .sub-menu {
  top: 14px;
  right: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  min-width: 0;
  padding: 28px 50px;
  padding-top: 40px;
  border-radius: 4px;
  display: none;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  color: #333333;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  text-transform: none;
  white-space: normal;
  box-shadow: 0 13px 10px rgba(0, 0, 0, 0.1);
}

.category-menu > ul > li:hover > .sub-menu,
.category-menu > ul > li:focus-within > .sub-menu,
.category-menu > ul > li.is-submenu-open > .sub-menu {
  display: flex;
}

.category-menu > ul > li > .sub-menu > li {
  min-width: 0;
  flex: 1 1 0;
  padding: 0 32px 26px 0;
  box-sizing: border-box;
}

.category-menu > ul > li > .sub-menu > li.menu-item-has-children > a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
  padding: 0;
  color: #333333;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
}

.category-menu > ul > li > .sub-menu > li:not(.menu-item-has-children):not(.mega-menu-side) {
  flex: 0 0 auto;
  padding-left: 28px;
  padding-right: 0;
  margin-left: auto;
  border-left: 0.5px solid #c8c8c9;
  min-width: 200px;
}

.category-menu > ul > li > .sub-menu > li:not(.menu-item-has-children):not(.mega-menu-side) > a {
  padding: 0 0 8px;
  color: #333333;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
}

.category-menu > ul > li > .sub-menu > li > .sub-menu {
  position: static;
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 58px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.category-menu > ul > li > .sub-menu > li > .sub-menu li + li {
  margin-top: 8px;
}

.category-menu > ul > li > .sub-menu > li > .sub-menu a {
  padding: 0;
  color: #333333;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
}

.category-menu > ul > li > .sub-menu > .mega-menu-side {
  flex: 0 0 auto;
  padding-left: 28px;
  padding-right: 0;
  margin-left: auto;
  border-left: 0.5px solid #c8c8c9;
  align-self: stretch;
  list-style: none;
  min-width: 200px;
}

.category-menu .mega-menu-side-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-menu .mega-menu-side-list li {
  flex: 0 0 calc(50% - 14px);
  min-width: 0;
  margin: 0;
}

.category-menu .mega-menu-side-list li + li {
  margin-top: 0;
}

.category-menu .mega-menu-side-list a {
  display: block;
  padding: 0;
  color: #333333;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
}

.category-menu .sub-menu .img {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 4px;
  background: #efeff4;
  margin: 0 9px 0 0;
}

.category-menu .sub-menu .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-menu .sub-menu .info,
.category-menu .sub-menu .text {
  display: block;
}

.inner-page-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 36px;
  padding-bottom: 24px;
}

.inner-page-heading .title {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.inner-page-heading .breadcrumb,
.inner-page-heading #breadcrumbs {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.inner-page-heading .image img {
  display: block;
  max-width: 180px;
  height: auto;
}

.inner-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 320px;
  align-items: start;
  gap: 28px;
  padding-bottom: 72px;
}

.inner-layout--expert {
  grid-template-columns: 220px minmax(0, 1fr);
}

.inner-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

/* Внутренние страницы: типографика и блоки как в legacy .page-wrapper (section.pages .page .page-wrapper) */
.inner-content .entry-content {
  display: flow-root;
  min-width: 0;
  padding: 72px 60px;
  border-radius: 4px;
  background: #ffffff;
  margin: 0;
  box-shadow: none;
  color: #333333;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
}

.inner-content .entry-content > *:first-child {
  margin-top: 0;
}

.inner-content .entry-content > *:last-child {
  margin-bottom: 0;
}

.inner-content .entry-content p {
  margin: 0 0 8px 0;
  color: #333333;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

.inner-content .entry-content p a {
  color: #d10f00;
}

.inner-content .entry-content li {
  color: #333333;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
}

.inner-content .entry-content h2,
.inner-content .entry-content h3,
.inner-content .entry-content h4 {
  margin: 0;
  color: #333333;
  font-style: normal;
  font-weight: 700;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

.inner-content .entry-content h2 {
  font-size: 28px;
  line-height: 26px;
  margin: 60px 0 24px;
}

.inner-content .entry-content > h2:nth-of-type(1) {
  margin: 0 0 24px;
}

.inner-content .entry-content h3 {
  font-size: 22px;
  line-height: 26px;
  margin: 0 0 12px;
}

.inner-content .entry-content h4 {
  font-size: 20px;
  line-height: 23px;
  margin: 0 0 20px;
}

.inner-content .entry-content h4 + p:last-of-type {
  margin: -15px 0 8px 0;
}

.inner-content .entry-content h2.red {
  color: #d10000;
  font-size: 20px;
  margin: 60px 0 8px;
  line-height: 23px;
}

.inner-content .entry-content a:not(.primary-button):not(.red-but):not(.white-but) {
  color: #d10f00;
}

.inner-content .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.inner-content .entry-content ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.inner-content .entry-content ul li {
  margin: 0 0 8px 40px;
  position: relative;
}

.inner-content .entry-content ul li::after {
  content: " ";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 16px;
  height: 1px;
  background: #d10000;
}

.inner-content .entry-content ul.min li::after,
.inner-content .entry-content .list-icons ul li::after {
  display: none;
}

.inner-content .entry-content ul.min ul li::after {
  display: block;
  background: #333333;
  width: 11px;
  left: -16px;
}

.inner-content .entry-content ul.min li {
  margin: 0 0 16px 40px;
}

.inner-content .entry-content ul.min ul {
  margin: 3px 0;
}

.inner-content .entry-content ul.min ul li {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 3px 16px;
}

.inner-content .entry-content ul.min li p {
  margin: 0 0 16px 0;
}

.inner-content .entry-content .list-icons ul li {
  margin: 0;
  padding: 8px 0;
  display: flex;
}

.inner-content .entry-content .list-icons ul li .text .name {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 4px 0;
}

.inner-content .entry-content .list-icons ul li .text .desc {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
}

.inner-content .entry-content .list-icons ul li .icon i {
  font-size: 24px;
  color: #d10f00;
}

.inner-content .entry-content .list-icons ul li .icon {
  margin: 0 6px 0 0;
}

.inner-content .entry-content .columns ul li {
  margin: 0 0 16px 40px;
}

.inner-content .entry-content .columns {
  margin: 60px 0 0;
}

.inner-content .entry-content h2 + .columns {
  margin: 0;
}

.inner-content .entry-content .columns .name {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
}

.inner-content .entry-content .link-text.red {
  margin: 0 0 16px 0;
  background: #d10000;
  border-radius: 5px;
  padding: 12px 40px;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

.inner-content .entry-content .link-text.red .text {
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 8px 0;
}

.inner-content .entry-content .link-text.red .text p:last-of-type {
  margin: 0;
}

.inner-content .entry-content .link-text.red .link a,
.inner-content .entry-content .link-text.red a {
  color: #ffffff;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

.inner-content .entry-content .warrning {
  padding: 20px 32px;
  background: #efeff4;
  border-radius: 5px;
  margin: 60px 0;
  display: flex;
  align-items: flex-end;
}

.inner-content .entry-content .warrning .left-col {
  width: 100%;
  padding: 0 50px 0 0;
  box-sizing: border-box;
}

.inner-content .entry-content .warrning .left-col .icon {
  color: #d10000;
  font-size: 28px;
  margin: 0 0 12px 0;
}

.inner-content .entry-content .warrning .left-col .icon i {
  color: #d10000;
  font-size: 28px;
}

.inner-content .entry-content .warrning .title {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 26px;
  margin: 32px 0 12px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

.inner-content .entry-content .documents + h2 {
  margin: 60px 0 24px;
}

.inner-content .entry-content .pages-list + p {
  margin: 35px 0 8px 0;
}

.inner-content .entry-content .el-action:last-of-type {
  margin: 0;
}

.inner-content .entry-content .wp-block-media-text {
  margin: 60px 0;
}

.inner-content .entry-content h2 + .wp-block-media-text {
  margin: 0 0 60px 0;
}

.inner-content .entry-content .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
  margin-bottom: auto;
}

.inner-content .entry-content aside.wp-block-group ul {
  margin: 24px 0;
}

.inner-content .entry-content aside.wp-block-group ul li {
  margin: 0 0 8px 40px;
  position: relative;
}

.inner-content .entry-content aside.wp-block-group ul li::after {
  content: " ";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 16px;
  height: 1px;
  background: #d10000;
}

.inner-content .entry-content aside.wp-block-group p {
  margin: 0 0 8px 0;
}

.inner-content .entry-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: visible;
}

.inner-content .entry-content table th {
  background: #d10000;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-align: left;
  border-right: 1px solid #c8c8c9;
}

.inner-content .entry-content table th:nth-of-type(1) {
  border-radius: 5px 0 0 0;
}

.inner-content .entry-content table th:last-of-type {
  border-radius: 0 5px 0 0;
}

.inner-content .entry-content table td {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  border-right: 1px solid #c8c8c9;
  vertical-align: middle;
}

.inner-content .entry-content table td small,
.inner-content .entry-content table td sub {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #d10000;
}

.inner-content .entry-content table tbody tr:nth-child(2n + 2) td {
  background: #efeff4;
}

.inner-content .entry-content table td p {
  margin: 0;
}

.inner-content .entry-content table td i {
  font-weight: 400;
  color: #d10000;
  font-size: 12px;
  line-height: 15px;
}

.inner-content .entry-content table tbody {
  border: 1px solid #c8c8c9;
}

.inner-content .entry-content table th[align="center"],
.inner-content .entry-content table td[align="center"] {
  text-align: center;
  width: 20%;
}

.inner-content .entry-content table th.has-text-align-center {
  text-align: center;
}

.inner-content strong {
  font-weight: 500;
}

.inner-content .entry-content small,
.inner-content .entry-content sub {
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
}

.inner-content .entry-content .pagenation ul li,
.inner-content .entry-content .pagination ul li {
  list-style: none;
  margin: 0;
}

.inner-content .entry-content .pagenation ul li::after,
.inner-content .entry-content .pagination ul li::after {
  display: none;
}

.inner-sidebar {
  position: sticky;
  top: 18px;
  min-width: 0;
}

.inner-menu,
.sidebar-form-card {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(31, 28, 39, 0.07);
}

.inner-menu ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-menu li {
  min-width: 0;
}

.inner-menu ul ul {
  display: none;
  gap: 8px;
  margin-top: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.inner-menu .current-menu-item > ul,
.inner-menu .current-menu-ancestor > ul,
.inner-menu .current-menu-parent > ul,
.inner-menu .current_page_item > ul,
.inner-menu .current_page_ancestor > ul,
.inner-menu .current_page_parent > ul {
  display: grid;
}

.inner-menu .icon,
.inner-menu .img {
  display: none;
}

.inner-menu .text,
.inner-menu .info {
  display: block;
}

.inner-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  padding: 9px 10px;
  color: #3a3740;
  font-size: 14px;
  line-height: 1.25;
}

.inner-menu .menu-item-has-children > a::after {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  opacity: 0.45;
  transform: rotate(45deg);
}

.inner-menu .current-menu-ancestor > a::after,
.inner-menu .current-menu-parent > a::after,
.inner-menu .current_page_ancestor > a::after,
.inner-menu .current_page_parent > a::after,
.inner-menu .current-menu-item > a::after {
  transform: rotate(225deg);
}

.inner-menu ul ul a {
  padding: 7px 10px;
  color: #5b5860;
  font-size: 13px;
}

.inner-menu ul ul ul a {
  font-size: 12px;
}

.inner-menu .current-menu-item > a,
.inner-menu .current_page_item > a,
.inner-menu a:hover {
  background: rgba(220, 0, 6, 0.08);
  color: var(--red);
}

.sidebar-form-card__title {
  margin-bottom: 14px;
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
}

.sidebar-form-card__body p,
.sidebar-form-card__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.wpforms-container input,
.wpforms-container textarea,
.wpforms-container select,
.form_all input,
.form_all textarea,
.sidebar-form-card input,
.sidebar-form-card textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}

.wpforms-container button,
.wpforms-submit,
input[type="submit"],
button[type="submit"] {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 24px;
  color: #fff;
  background: var(--red);
  font-weight: 500;
  cursor: pointer;
}

.help-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  gap: 24px;
  margin-top: 32px;
  padding: 28px;
  border-radius: 18px;
  background: var(--panel);
}

.help-cta__title {
  margin-bottom: 12px;
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
}

.help-cta__text {
  margin-bottom: 20px;
  color: #4c4a51;
  font-size: 16px;
  line-height: 1.45;
}

.help-cta__contacts {
  display: grid;
  gap: 12px;
  align-content: center;
}

.help-cta__contacts a {
  color: #34323a;
  font-weight: 500;
}

.inner-content .help-cta {
  display: flex;
  flex-wrap: wrap;
  margin: 80px 0 0;
  padding: 0;
  gap: 0;
  border-radius: 0;
  background: transparent;
  grid-template-columns: unset;
}

.inner-content .help-cta__content {
  width: 50%;
  padding: 0 18px 0 0;
  box-sizing: border-box;
}

.inner-content .help-cta__title {
  margin: 0 0 24px 0;
  color: #333333;
  font-size: 28px;
  line-height: 26px;
}

.inner-content .help-cta__text {
  margin: 0 0 36px 0;
  color: #333333;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
}

.inner-content .help-cta__contacts {
  width: 50%;
  padding: 23px 24px 23px 36px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  background: #ffffff;
  border-radius: 5px;
}

.inner-content .help-cta__contacts a {
  display: flex;
  align-items: center;
  padding: 5px 0;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.inner-content .help-cta .primary-button {
  display: inline-block;
  min-width: 211px;
  text-align: center;
}

.archive-listing {
  padding-bottom: 72px;
}

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

.post-card a {
  display: grid;
  min-height: 100%;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(31, 28, 39, 0.07);
}

.post-card__image {
  display: block;
  margin: -18px -18px 16px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.post-card__image img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.post-card__label,
.post-card__meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.post-card__title {
  margin: 8px 0 12px;
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
}

.post-card__excerpt {
  color: #4c4a51;
  font-size: 15px;
  line-height: 1.45;
}

.pagination,
.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
}

.page-numbers {
  margin-top: 0;
}

.pagination .page-numbers,
.page-numbers li a,
.page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: #3a3740;
  box-shadow: 0 8px 24px rgba(31, 28, 39, 0.06);
}

.pagination .current,
.page-numbers li span.current {
  color: #fff;
  background: var(--red);
}

.empty-state {
  padding: 34px;
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
}

.av-section,
.stocks,
.newsall,
.page-cats,
.go-pages,
.list-bank,
.blocks-icons,
.blocks-image-text,
.equipments,
.documents,
.gallery,
.partners,
.promo,
.el-action,
.form,
.map,
.destinations:not(.container),
.phone-order,
.avangart {
  margin: 34px 0;
}

.inner-content .entry-content section {
  margin: 24px 0;
}

.inner-content .entry-content .wrapper,
.need-help .wrapper,
.stocks .wrapper,
.newsall .wrapper,
.phone-order .wrapper,
.avangart .wrapper,
.equipments .wrapper,
.documents .wrapper,
.form .wrapper,
.map .wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
}

.red-but,
.white-but {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 24px;
  color: #fff;
  background: var(--red);
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(220, 0, 6, 0.2);
}

.inner-content .entry-content .button a,
.inner-content .entry-content .red-but {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 5px;
  padding: 12px 32px;
  background: #d10000;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  font-family: Roboto, sans-serif;
  box-shadow: none;
}

.white-but {
  color: var(--red);
  background: #fff;
}

.page-cats,
.go-pages,
.news-list,
.stocks-list,
.list-bank,
.blocks-icons,
.equipments-list,
.documents-list,
.partners-list,
.more-article-wrapper,
.pages-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-cat,
.go-page,
.news,
.stock,
.bank,
.block,
.equipment,
.document,
.partner,
.more-article,
.pages-list > *,
.blocks-image-text > * {
  min-width: 0;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 28, 39, 0.07);
}

/* Внутренние страницы: сетки карточек как в legacy (flex + рамки вместо «плиток» новой темы) */
.inner-content .page-cats {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px 60px;
  padding: 0;
  list-style: none;
  grid-template-columns: unset;
  gap: unset;
}

.inner-content .page-cats .page-cat {
  margin: 6px;
  padding: 24px 24px 24px 20px;
  background: #ffffff;
  border: 1px solid #c8c8c9;
  border-radius: 4px;
  width: calc(50% - 12px);
  box-sizing: border-box;
  box-shadow: none;
  display: flex;
  align-items: flex-start;
}

.inner-content .page-cats .page-cat span.title {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  margin: 0 0 24px 0;
  min-height: 48px;
  align-items: center;
  display: flex;
}

.inner-content .page-cats .page-cat .text-body {
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: #777777;
}

.inner-content .go-pages {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px 0;
  padding: 0;
  list-style: none;
  grid-template-columns: unset;
  gap: unset;
}

.inner-content .go-pages .go-page {
  background: #f5f5f9;
  border-radius: 4px;
  margin: 6px;
  width: calc(33.3333% - 12px);
  max-width: 312px;
  box-sizing: border-box;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.inner-content .go-pages .go-page a {
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}

.inner-content .go-pages .go-page a span.title {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  margin: 0 0 4px 0;
}

.inner-content .go-pages .go-page a span.desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
}

.inner-content .blocks-icons {
  margin: 24px -6px 60px -6px;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  grid-template-columns: unset;
  gap: unset;
}

.inner-content .blocks-icons .block {
  width: calc(50% - 12px);
  margin: 6px;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px solid #c8c8c9;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: none;
}

.inner-content .entry-content table + .blocks-icons {
  margin: 24px -6px 16px;
}

.inner-content .entry-content h2 + .blocks-icons {
  margin: 24px -6px 60px;
}

.inner-content .blocks-icons .block .text .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 4px 0;
}

.inner-content .blocks-icons .block .text .desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

.inner-content .blocks-icons .block .icon i {
  color: #d10000;
  font-size: 28px;
}

.inner-content .list-bank {
  margin: 0 -6px;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  grid-template-columns: unset;
  gap: unset;
}

.inner-content .list-bank .bank {
  margin: 6px;
  width: calc(25% - 12px);
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e6e8ea;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: none;
}

.inner-content .news-list,
.inner-content .stocks-list,
.inner-content .equipments-list,
.inner-content .documents-list,
.inner-content .partners-list,
.inner-content .pages-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
  padding: 0;
  list-style: none;
  grid-template-columns: unset;
  gap: unset;
}

.inner-content .news-list .news,
.inner-content .stocks-list .stock,
.inner-content .equipments-list .equipment,
.inner-content .documents-list .document,
.inner-content .partners-list .partner,
.inner-content .pages-list > * {
  margin: 6px;
  width: calc(33.3333% - 12px);
  box-sizing: border-box;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #c8c8c9;
  background: #ffffff;
  box-shadow: none;
}

.inner-content .more-article {
  padding: 60px 0 0;
}

.inner-content .more-article .more-article-wrapper {
  padding: 0 52px;
  box-sizing: border-box;
}

.inner-content .more-article .title {
  font-weight: 700;
  font-size: 28px;
  line-height: 26px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  margin: 0 0 24px 0;
}

.inner-content .more-article .article a {
  display: flex;
  border: 0.5px solid #c8c8c9;
  border-radius: 5px;
  background: #ffffff;
  padding: 20px;
  color: #333333;
  box-shadow: none;
}

.inner-content .blocks-image-text > * {
  padding: 16px 24px;
  border-radius: 5px;
  border: 1px solid #c8c8c9;
  background: #ffffff;
  box-shadow: none;
}

.owl-carousel,
.gallery.owl-carousel,
.partners-list.owl-carousel,
.equipment-list.owl-carousel,
.blocks-image-text.owl-carousel,
.more-article-wrapper.owl-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
  display: contents;
}

.tabs,
.tabs-link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.tabs a,
.tabs-link a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--panel);
  color: #3a3740;
  font-weight: 500;
}

.tabs .current a,
.tabs a.current,
.tabs-link .current a,
.tabs-link a.current {
  color: #fff;
  background: var(--red);
}

.promo,
.el-action,
.form,
.phone-order,
.avangart {
  padding: 28px;
  border-radius: 18px;
  background: var(--panel);
}

.acceptance-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 22px;
  padding: 44px;
  border-radius: 18px;
  background: var(--panel);
}

.acceptance-heading .subtitle,
.acceptance-heading .desc {
  max-width: 720px;
  color: #4c4a51;
  font-size: 18px;
  line-height: 1.45;
}

.acceptance-heading .icon_group ul,
.slide2 .icon_group ul,
.peoples,
.reputation_grid,
.prices,
.check_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.acceptance-heading .icon_group li,
.slide2 .icon_group li,
.people,
.rep,
.price,
.check {
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 28, 39, 0.06);
}

.slide2,
.slide3,
.slide5,
.slide6,
.slide7,
.slide8,
.slide9,
.slide10,
.slide11,
.slide12 {
  width: min(100% - 56px, 1160px);
  margin: 32px auto;
}

.slide2 > .wrapper,
.slide3 > .wrapper,
.slide5 > .wrapper,
.slide6 > .wrapper,
.slide7 > .wrapper,
.slide8 > .wrapper,
.slide9 > .wrapper,
.slide10 > .wrapper,
.slide11 > .wrapper,
.slide12 > .wrapper {
  width: 100%;
  max-width: none;
}

.slide2 .title,
.slide3 .title,
.slide5 .title,
.slide6 > .wrapper > .title,
.slide8 .title,
.slide9 .title,
.slide10 .title,
.slide11 .title,
.slide12 .title {
  margin: 0 0 20px;
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 700;
}

.check_home,
.report,
.prices_main,
.reputation,
.slide6 .tabs,
.slide10 .faq,
.slide11 .content,
.slide12 .content {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(31, 28, 39, 0.07);
}

.check_home_wrap,
.report {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.check_home img,
.report img,
.people img,
.rep img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

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

.price .name,
.people .name,
.rep .name {
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
}

.price .size,
.price .money {
  margin: 16px 0;
  color: var(--red);
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}

.reviews-page,
.error-page,
.fallback-page {
  padding-top: 42px;
  padding-bottom: 72px;
}

.reviews-page__hero,
.error-page {
  text-align: center;
}

.reviews-page__hero {
  max-width: 760px;
  margin: 0 auto 34px;
}

.reviews-page__hero img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.reviews-page__hero h1,
.error-page h1 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.98;
}

.reviews-page__hero p,
.error-page p,
.reviews-page__note {
  color: #4c4a51;
  font-size: 18px;
  line-height: 1.5;
}

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

.reviews-page__card {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 160px;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(31, 28, 39, 0.07);
}

.reviews-page__note {
  margin-top: 28px;
  padding: 24px;
  border-radius: 16px;
  background: var(--panel);
  text-align: center;
}

.error-page {
  min-height: 56vh;
  display: grid;
  align-content: center;
  justify-items: center;
}

.error-page__code {
  color: #d8d7dc;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(96px, 20vw, 220px);
  line-height: 0.8;
  font-weight: 800;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(330px, 1fr);
  gap: 22px;
  padding-bottom: 40px;
}

.hero-card,
.photo-card {
  min-height: 640px;
  border-radius: 15px;
  overflow: hidden;
}

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

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 44px 52px;
  background: var(--panel);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  align-items: start;
  gap: 32px;
}

.hero-text {
  max-width: 485px;
}

h1 {
  margin: 0;
  max-width: 470px;
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 600;

}

.hero-text p {
  margin: 19px 0 37px;
  max-width: 450px;
  color: #3f3c45;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.primary-button {
  min-width: 270px;
  min-height: 72px;
  padding: 0 32px;
  font-family: "Onest", "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.44;
  font-weight: 500;
  letter-spacing: 0.065em;
}

.rating-card {
  position: relative;
  min-height: 245px;
  padding: 30px 16px 20px;
  border-radius: 63px 63px 10px 10px;
  background: var(--white);
  text-align: center;
  filter: drop-shadow(0 10px 24px rgba(54, 46, 91, 0.08));
}

.rating-card::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin-inline: auto;
  width: 0;
  height: 0;
  border-right: 62px solid transparent;
  border-left: 62px solid transparent;
  border-top: 34px solid var(--white);
  content: "";
}

.pin {
  position: relative;
  width: 74px;
  height: 90px;
  margin: 0 auto 3px;
  background: url("../assets/images/block-1/red-location.svg") center / contain no-repeat;
}

.pin span {
  display: none;
}

.rating-card strong {
  position: relative;
  display: block;
  font-size: 30px;
}

.rating-card strong::before,
.rating-card strong::after {
  position: absolute;
  top: -2px;
  width: 41px;
  height: 41px;
  border: 0;
  background: center / contain no-repeat;
  content: "";
}

.rating-card strong::before {
  left: -2px;
  background-image: url("../assets/images/block-1/laurel-wreath-left.svg");
}

.rating-card strong::after {
  right: -2px;
  background-image: url("../assets/images/block-1/laurel-wreath-right.svg");
}

.rating-card small {
  display: block;
  margin-top: 4px;
  color: #8c8790;
  font-size: 16.29px;
  line-height: 1;
  font-weight: 500;
}

.achievements {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 40px;
}

.award {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 25px;
  color: var(--white);
  text-align: center;
  background: url("../assets/images/block-1/bg-gadge-start.svg") center / contain no-repeat;
  min-width: 207px;
  align-content: center;
}

.award strong {
  display: flex;
  margin-top: 6px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  gap: 10px;
}



.award span {
  font-weight: 500;
  font-size: 14.28px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;

}


.award strong span {
  font-size: 35.15px;
}


.photo-card {
  position: relative;
  background:
          linear-gradient(180deg, rgba(230, 231, 245, 0.5) 0%, rgba(255, 255, 255, 0.05) 42%),
          linear-gradient(145deg, #dce5f5 0%, #f8eee5 50%, #f4d8a6 100%);
}

.skyline {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tower {
  position: absolute;
  bottom: 202px;
  display: block;
  border-radius: 7px 7px 0 0;
  background:
          repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.65) 18px 22px),
          repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0 18px, rgba(83, 92, 112, 0.28) 18px 22px),
          linear-gradient(90deg, #8b92a0, #d4c3b8 55%, #7c8597);
  box-shadow: 0 24px 36px rgba(83, 65, 43, 0.18);
}

.tower-left {
  left: 79px;
  width: 150px;
  height: 260px;
  transform: perspective(260px) rotateY(-10deg);
}

.tower-main {
  right: 43px;
  bottom: 190px;
  width: 190px;
  height: 380px;
  transform: perspective(320px) rotateY(-13deg);
}

.tower-right {
  right: -23px;
  bottom: 205px;
  width: 122px;
  height: 355px;
  filter: brightness(0.92);
}

.tree {
  position: absolute;
  bottom: 185px;
  display: block;
  width: 98px;
  height: 105px;
  border-radius: 50% 50% 44% 48%;
  background:
          radial-gradient(circle at 50% 30%, #d9bd61 0 20%, transparent 21%),
          radial-gradient(circle at 28% 50%, #8f9e57 0 31%, transparent 32%),
          radial-gradient(circle at 70% 54%, #6e873c 0 32%, transparent 33%),
          linear-gradient(#a9873d, #745924);
}

.tree-left {
  left: 20px;
  transform: scale(1.08);
}

.tree-center {
  left: 190px;
  bottom: 176px;
  transform: scale(0.82);
}

.tree-right {
  right: 16px;
  bottom: 170px;
  transform: scale(0.9);
}

.water {
  position: absolute;
  left: -12%;
  right: -8%;
  bottom: -2%;
  height: 230px;
  background:
          radial-gradient(ellipse at 58% 17%, rgba(255, 255, 255, 0.65) 0 5%, transparent 43%),
          repeating-linear-gradient(170deg, rgba(255, 255, 255, 0.25) 0 2px, transparent 2px 18px),
          linear-gradient(180deg, #899777 0%, #515f59 38%, #87908d 100%);
  clip-path: ellipse(75% 44% at 54% 60%);
  opacity: 0.9;
}



.directions {
  padding: 46px 0 76px;
}

.directions-header {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
  align-items: start;
  gap: 74px;
  margin-bottom: 58px;
}

.directions h2 {
  margin: 0;
  max-width: 350px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.directions-header p {
  margin: 0;
  max-width: 675px;
  color: #4a4650;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.directions-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: 24px;
}

.directions-tabs {
  display: grid;
  gap: 13px;
}

.directions-tabs a {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 15px 22px;
  border-radius: 8px;
  color: #67616c;
  background: var(--panel);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  transition:
          background-color 0.2s ease,
          color 0.2s ease,
          transform 0.2s ease;
}

.directions-tabs a:hover {
  background: #ece8f3;
  color: #333333;
}

.directions-tabs a:hover .tab-icon {
  background-color: #ddd8e8;
  box-shadow: none;
}

.directions-tabs a.active {
  color: var(--white);
  background: var(--red);
}

.tab-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  margin-right: 23px;
  border-radius: 50%;
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.directions-tabs a.active .tab-icon {
  background-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  filter: brightness(0) invert(1);
}

.tab-icon::before,
.tab-icon::after {
  display: none;
}

.tab-icon-doc {
  background-image: url("../assets/images/block-2/tab-icon-1.svg");
}

.tab-icon-case {
  background-image: url("../assets/images/block-2/tab-icon-2.svg");
}

.tab-icon-tripod {
  background-image: url("../assets/images/block-2/tab-icon-3.svg");
}

.tab-icon-truck {
  background-image: url("../assets/images/block-2/tab-icon-4.svg");
}

.tab-icon-shield {
  background-image: url("../assets/images/block-2/tab-icon-5.svg");
}

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

.service-grid[hidden] {
  display: none;
}

.service-card {
  position: relative;
  min-height: 223px;
  overflow: hidden;
  padding: 28px 30px;
  border-radius: 15px;
  background: var(--panel);
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-title {
  position: relative;
  z-index: 3;
  display: block;
  max-width: 260px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
}

.service-arrow {
  position: absolute;
  z-index: 4;
  left: 30px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white) url("../assets/images/block-2/bubble-arrow-right-up.svg") center / 12px 12px no-repeat;
  box-shadow: 0 8px 20px rgba(59, 55, 70, 0.07);
}

.service-arrow::before {
  display: none;
}

.service-arrow::after {
  display: none;
}

.service-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-acceptance {
  background:
          linear-gradient(90deg, rgba(239, 239, 244, 0.92) 0 18%, rgba(239, 239, 244, 0.46) 46%, rgba(239, 239, 244, 0.12)),
          linear-gradient(180deg, #edf1ef, #d8d6cf);
}

.service-acceptance::after,
.service-area::after,
.service-thermal::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  content: "";
}

.worker-visual::before {
  position: absolute;
  right: 74px;
  bottom: 47px;
  width: 58px;
  height: 122px;
  border-radius: 28px 28px 12px 12px;
  background:
          radial-gradient(circle at 52% 10%, #ddb7a2 0 10px, transparent 11px),
          linear-gradient(120deg, transparent 0 26%, #232328 27% 41%, transparent 42%),
          linear-gradient(72deg, transparent 0 51%, #747474 52% 66%, transparent 67%),
          linear-gradient(154deg, transparent 0 32%, #2b2d31 33% 57%, transparent 58%);
  content: "";
  transform: rotate(29deg);
}

.worker-visual::after {
  position: absolute;
  right: 154px;
  bottom: 38px;
  width: 44px;
  height: 45px;
  border-radius: 8px;
  background:
          radial-gradient(circle at 50% 38%, #57575a 0 7px, transparent 8px),
          linear-gradient(#d1c8b2, #a99574);
  box-shadow:
          24px 14px 0 -15px #59585d,
          -32px -5px 0 -20px #232328;
  content: "";
}

.worker-visual {
  background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0 35%, transparent 36%),
          repeating-linear-gradient(0deg, transparent 0 21px, rgba(255, 255, 255, 0.52) 22px 24px),
          linear-gradient(90deg, #e9e9e7, #d1d3cf);
}

.service-area {
  background:
          linear-gradient(105deg, rgba(244, 246, 244, 0.93) 0 24%, rgba(244, 246, 244, 0.58) 54%, rgba(244, 246, 244, 0.06)),
          #e3e5df;
}

.clipboard-visual::before {
  position: absolute;
  right: 39px;
  bottom: 30px;
  width: 172px;
  height: 132px;
  border-radius: 8px;
  background:
          repeating-linear-gradient(12deg, transparent 0 15px, rgba(75, 76, 75, 0.12) 16px 18px),
          linear-gradient(135deg, #f7f5ec, #cbc9bb);
  box-shadow:
          0 0 0 9px #4a4845,
          10px 18px 25px rgba(39, 38, 35, 0.22);
  content: "";
  transform: rotate(-26deg);
}

.clipboard-visual::after {
  position: absolute;
  right: 4px;
  bottom: 20px;
  width: 58px;
  height: 84px;
  border-radius: 7px;
  background:
          linear-gradient(90deg, transparent 44%, #333332 45% 54%, transparent 55%),
          repeating-linear-gradient(0deg, #728277 0 10px, #2f3637 11px 18px);
  box-shadow: -108px 28px 0 -32px #c8a98f;
  content: "";
  transform: rotate(-20deg);
}

.service-thermal {
  background:
          linear-gradient(90deg, rgba(238, 239, 243, 0.93) 0 23%, rgba(238, 239, 243, 0.5) 48%, rgba(238, 239, 243, 0.03)),
          linear-gradient(180deg, #e6e8ed, #c8c9cd);
}

.thermal-visual::before {
  position: absolute;
  right: 68px;
  bottom: 17px;
  width: 72px;
  height: 84px;
  border-radius: 10px;
  background:
          radial-gradient(circle at 62% 45%, #f4c440 0 12px, transparent 13px),
          linear-gradient(90deg, #f27121, #f5ca3d 48%, #62307f 49% 100%);
  box-shadow:
          0 0 0 10px #2e2f38,
          0 22px 0 -7px #252730,
          20px 42px 0 -22px #dfbea6;
  content: "";
}

.thermal-visual::after {
  position: absolute;
  left: 45%;
  top: 42px;
  width: 104px;
  height: 156px;
  border: 9px solid rgba(255, 255, 255, 0.52);
  border-bottom: 0;
  content: "";
}

.service-other {
  color: #303039;
  background: var(--panel);
}

.suitcase-visual::before {
  position: absolute;
  right: 31px;
  bottom: 34px;
  width: 141px;
  height: 141px;
  background: url("../assets/images/block-2/arrow-for-other-services.svg") center / contain no-repeat;
  content: "";
}

.suitcase-visual::after {
  display: none;
}

.service-other::before {
  display: none;
}

.service-choice {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(320px, 1fr);
  gap: 24px;
  padding: 8px 0 74px;
}

.service-choice-placeholder,
.service-choice-card {
  min-height: 520px;
  border-radius: 14px;
  overflow: hidden;
}

.service-choice-placeholder {
  background: var(--panel);
}

.choice-calculator {
  display: none;
}

.service-choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 36px 42px;
  background:
          linear-gradient(112deg, rgba(224, 244, 255, 0.92) 0 50%, rgba(221, 241, 252, 0.68) 51% 100%),
          linear-gradient(180deg, #eaf8ff, #d8eefa);
  isolation: isolate;
}

.service-choice-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}


.service-choice-content {
  max-width: 310px;
  position: relative;
  z-index: 1;
}

.service-choice-content h2 {
  margin: 0;
  color: #303238;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-choice-content p {
  margin: 27px 0 0;
  color: #303238;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.service-choice-content a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.choice-callback {
  width: min(100%, 354px);
  margin-left: auto;
  padding: 27px 26px 29px;
  border-radius: 17px;
  background: rgba(246, 244, 253, 0.92);
  box-shadow: 0 20px 38px rgba(62, 81, 95, 0.14);
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.choice-phone-field {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 64px;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--white);
}

.choice-phone-field span {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background:
          radial-gradient(circle at 70% 74%, #c9c9cf 0 3px, transparent 4px),
          linear-gradient(45deg, transparent 0 35%, #c9c9cf 36% 64%, transparent 65%);
  transform: rotate(-20deg);
}

.choice-phone-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: #303238;
  background: transparent;
  font: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.choice-phone-field input::placeholder {
  color: #c5c4ca;
}

.choice-callback button {
  width: 100%;
  min-height: 67px;
  margin-top: 14px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: #303030;
  font-size: 14px;
  line-height: 1.44;
  font-weight: 500;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
          background-color 0.2s ease,
          transform 0.2s ease;
}

.choice-callback button:hover {
  background: #1f1f1f;
  transform: translateY(-1px);
}

.choice-callback p {
  position: relative;
  margin: 21px 0 0;
  padding-left: 31px;
  color: #a0a0aa;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
}

.choice-callback p::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red) url("../assets/images/block-2-1/check-marck.svg") center / 13px 9px no-repeat;
  content: "";
}

.choice-callback p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.offers {
  padding: 24px 0 82px;
}

.offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.offers h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.slider-button {
  position: relative;
  width: 47px;
  height: 47px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  transition:
          background-color 0.2s ease,
          opacity 0.2s ease,
          transform 0.2s ease;
}

.slider-button:hover:not(:disabled) {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.slider-button:disabled {
  cursor: default;
  opacity: 0.45;
}

.slider-button::before {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 9px;
  height: 9px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
  transform: rotate(45deg);
}

.slider-button.next::before {
  left: 15px;
  transform: rotate(224deg);
}

[data-slider-prev="offers"]::before,
[data-slider-next="offers"]::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  background: center / 6px 9px no-repeat;
  transform: none;
}

[data-slider-prev="offers"]::before {
  background-image: url("../assets/images/block-3/white-arrow-left.svg");
}

[data-slider-next="offers"]::before {
  background-image: url("../assets/images/block-3/white-arrow-right.svg");
}

[data-slider-prev="partners"]::before,
[data-slider-next="partners"]::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  background: center / 6px 9px no-repeat;
  transform: none;
}

[data-slider-prev="partners"]::before {
  background-image: url("../assets/images/block-6/white-arrow-left.svg");
}

[data-slider-next="partners"]::before {
  background-image: url("../assets/images/block-6/white-arrow-right.svg");
}

.offers-slider {
  --cards-per-view: 4;
  --slider-gap: 13px;
  overflow: hidden;
}

.offers-dots {
  display: none;
}

.offers-track {
  display: flex;
  gap: var(--slider-gap);
  transform: translateX(var(--slider-offset, 0px));
  transition: transform 0.35s ease;
  will-change: transform;
}

.offer-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--slider-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  min-width: 0;
  overflow: hidden;
  border-radius: 8px 8px 15px 15px;
  background: var(--panel);
}

.offer-image {
  position: relative;
  height: 302px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #e7e5e0;
}

.offer-body {
  position: relative;
  min-height: 144px;
  padding: 23px 66px 21px 20px;
}

.offer-body h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
}

.offer-body p {
  margin: 0;
  color: #8a8590;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

.offer-link {
  position: absolute;
  top: 22px;
  right: 17px;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: var(--white) url("../assets/images/block-3/arrow-right-up.svg") center / 12px 12px no-repeat;
}

.offer-link::before {
  display: none;
}

.offer-link::after {
  display: none;
}

.offer-plan {
  background:
          linear-gradient(90deg, rgba(251, 251, 251, 0.92) 0 36%, rgba(255, 255, 255, 0.28)),
          #dedbd6;
}

.offer-plan::before {
  position: absolute;
  right: 18px;
  bottom: 28px;
  width: 118px;
  height: 240px;
  border-radius: 55px 55px 20px 20px;
  background:
          radial-gradient(circle at 49% 10%, #d9b095 0 18px, transparent 19px),
          linear-gradient(96deg, transparent 0 35%, #151419 36% 66%, transparent 67%),
          linear-gradient(160deg, transparent 0 42%, #25252b 43% 69%, transparent 70%);
  content: "";
  transform: rotate(-20deg);
}

.offer-plan::after {
  position: absolute;
  right: 116px;
  bottom: 36px;
  width: 102px;
  height: 142px;
  border-radius: 4px;
  background:
          repeating-linear-gradient(21deg, transparent 0 17px, rgba(66, 101, 147, 0.2) 18px 20px),
          #f2f1ee;
  box-shadow:
          0 0 0 6px #333237,
          34px -8px 0 -26px #d1a587;
  content: "";
  transform: rotate(12deg);
}

.offer-insurance {
  background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05)),
          linear-gradient(145deg, #e8dfd3, #d3d2cd);
}

.offer-insurance::before {
  position: absolute;
  inset: 52px 20px 0;
  background:
          radial-gradient(ellipse at 42% 73%, rgba(255, 255, 255, 0.92) 0 21%, transparent 22%),
          radial-gradient(ellipse at 64% 72%, rgba(238, 234, 224, 0.95) 0 20%, transparent 21%),
          radial-gradient(ellipse at 52% 70%, #9c8a74 0 28%, transparent 29%),
          linear-gradient(180deg, transparent 0 39%, rgba(119, 107, 92, 0.18) 40% 41%, transparent 42%);
  border-radius: 18px;
  content: "";
}

.offer-insurance::after {
  position: absolute;
  left: 48px;
  right: 42px;
  bottom: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(180, 169, 148, 0.3);
  filter: blur(2px);
  content: "";
}

.offer-special {
  background:
          linear-gradient(90deg, rgba(236, 235, 231, 0.75), rgba(236, 235, 231, 0.12)),
          #dadbd5;
}

.offer-special::before {
  position: absolute;
  left: 41px;
  bottom: 12px;
  width: 120px;
  height: 236px;
  border-radius: 58px 58px 10px 10px;
  background:
          radial-gradient(circle at 50% 9%, #d7b69d 0 16px, transparent 17px),
          linear-gradient(112deg, transparent 0 25%, #b7b7b6 26% 58%, transparent 59%),
          linear-gradient(72deg, transparent 0 43%, #2a2c31 44% 59%, transparent 60%);
  content: "";
  transform: rotate(11deg);
}

.offer-special::after {
  position: absolute;
  right: 38px;
  bottom: 23px;
  width: 86px;
  height: 218px;
  border-radius: 44px 44px 12px 12px;
  background:
          radial-gradient(circle at 50% 8%, #d6ae94 0 14px, transparent 15px),
          linear-gradient(95deg, transparent 0 30%, #c5c5c0 31% 62%, transparent 63%),
          linear-gradient(160deg, transparent 0 40%, #303137 41% 62%, transparent 63%);
  box-shadow: -55px 190px 0 -33px #3d7f75;
  content: "";
  transform: rotate(-9deg);
}

.offer-thermal {
  background:
          linear-gradient(90deg, rgba(239, 239, 244, 0.85), rgba(239, 239, 244, 0.25)),
          linear-gradient(180deg, #e2e4e8, #c4c7cc);
}

.offer-thermal::before {
  position: absolute;
  right: 71px;
  bottom: 35px;
  width: 82px;
  height: 94px;
  border-radius: 10px;
  background:
          radial-gradient(circle at 63% 44%, #f4cb38 0 15px, transparent 16px),
          linear-gradient(90deg, #e84c24, #f5cb39 49%, #4a2a7a 50%);
  box-shadow:
          0 0 0 11px #292b32,
          0 25px 0 -8px #252730;
  content: "";
}

.offer-thermal::after {
  position: absolute;
  left: 39px;
  top: 46px;
  width: 142px;
  height: 180px;
  border: 9px solid rgba(255, 255, 255, 0.45);
  border-bottom: 0;
  content: "";
}

.about {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1fr);
  align-items: center;
  gap: 82px;
  padding: 24px 0 86px;
}

.about h2 {
  margin: 0 0 43px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-lead {
  margin: 0 0 35px;
  max-width: 535px;
  color: #36333a;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.about-lead p {
  margin: 0 0 1em;
}

.about-lead p:last-child {
  margin-bottom: 0;
}

.about-features {
  display: grid;
  gap: 32px;
}

.about-feature {
  display: grid;
  grid-template-columns: 57px minmax(0, 1fr);
  align-items: start;
  gap: 23px;
}

.about-feature h3 {
  margin: 0 0 5px;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-feature p {
  margin: 0;
  max-width: 480px;
  color: #3f3c45;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.about-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: var(--panel);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.about-icon::before,
.about-icon::after {
  display: none;
}

.about-icon-cycle {
  background-image: url("../assets/images/block-4/icon-1.svg");
}

.about-icon-shield {
  background-image: url("../assets/images/block-4/icon-2.svg");
}

.about-icon-arrows {
  background-image: url("../assets/images/block-4/icon-3.svg");
}

.about-photo {
  position: relative;
  min-height: 475px;
  overflow: hidden;
  border-radius: 14px;
  background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0 12%, transparent 13%),
          linear-gradient(180deg, #d6d8d7 0 12%, #f2f2ed 13% 58%, #dddcd5 59% 100%);
}

.about-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews {
  padding: 18px 0 92px;
}

.reviews h2 {
  margin: 0 0 42px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
}

.rating-list {
  display: grid;
  gap: 20px;
}

.rating-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 112px;
  padding: 18px 16px 17px 25px;
  border-radius: 6px;
  background: var(--panel);
}

.rating-row strong {
  margin-right: 15px;
  font-size: 44px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.rating-row small {
  display: block;
  margin-bottom: 4px;
  color: #a09ba7;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
}

.stars {
  display: block;
  width: 116px;
  height: 24px;
  background: url("../assets/images/block-5/yellow-star.svg") 0 0 / 23px 24px repeat-x;
}

.rating-logo {
  display: inline-grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.logo-yandex {
  background-image: url("../assets/images/block-5/yandex-icon.svg");
}

.logo-google {
  background-image: url("../assets/images/block-5/google-icon.svg");
}

.logo-map {
  background-image: url("../assets/images/block-5/green-iocn.svg");
}

.logo-map::before {
  display: none;
}

.reviews-slider-shell {
  position: relative;
  min-width: 0;
}

.letters-grid {
  --cards-per-view: 3;
  --slider-gap: 22px;
  overflow: hidden;
}

.letters-track {
  display: flex;
  gap: var(--slider-gap);
  transform: translateX(var(--slider-offset, 0px));
  transition: transform 0.35s ease;
  will-change: transform;
}

.reviews-slider-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.reviews-slider-button:first-child {
  left: -24px;
}

.reviews-slider-button.next {
  right: -24px;
}

.reviews-dots {
  display: none;
}

.letter-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--slider-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  min-width: 0;
  min-height: 374px;
  overflow: hidden;
  border: 1px solid #d8d6dc;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(31, 28, 39, 0.04);
}

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

.letter-brand {
  position: absolute;
  top: 25px;
  left: 50%;
  color: #5b5872;
  font-size: 16px;
  font-weight: 800;
  transform: translateX(-50%);
}

.letter-fjorden .letter-brand::before {
  display: block;
  width: 26px;
  height: 18px;
  margin: 0 auto 2px;
  background:
          linear-gradient(135deg, transparent 0 39%, #df3434 40% 57%, transparent 58%),
          linear-gradient(45deg, transparent 0 39%, #2c70b8 40% 57%, transparent 58%);
  content: "";
}

.letter-lines {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 87px;
  height: 190px;
  background:
          linear-gradient(#323038, #323038) 50% 0 / 78% 1px no-repeat,
          repeating-linear-gradient(180deg, #3d3942 0 2px, transparent 2px 13px);
  opacity: 0.78;
}

.letter-stamp {
  position: absolute;
  left: 45%;
  bottom: 55px;
  width: 58px;
  height: 58px;
  border: 4px solid rgba(77, 157, 213, 0.45);
  border-radius: 50%;
  transform: rotate(-17deg);
}

.letter-stamp::after {
  position: absolute;
  right: -55px;
  bottom: 6px;
  width: 68px;
  height: 2px;
  background: #4d6fa8;
  content: "";
  transform: rotate(-10deg);
}

.letter-heading {
  position: absolute;
  top: 106px;
  left: 50%;
  color: #333039;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.letter-faurecia .letter-brand {
  top: 27px;
  color: #1e55a5;
  font-size: 18px;
  letter-spacing: -0.05em;
}

.letter-faurecia .letter-lines {
  top: 151px;
  height: 99px;
  opacity: 0.6;
}

.letter-sign {
  position: absolute;
  right: 51px;
  bottom: 60px;
  width: 80px;
  height: 19px;
  border-bottom: 3px solid #7384bb;
  border-radius: 50%;
  transform: rotate(-9deg);
}

.letter-ingos {
  padding: 0 24px 28px;
  background:
          repeating-linear-gradient(105deg, transparent 0 15px, rgba(6, 71, 142, 0.08) 16px 25px),
          #fbfaf6;
  text-align: center;
}

.letter-top {
  display: grid;
  place-items: start;
  height: 94px;
  margin: 18px -7px 31px;
  padding: 17px 19px;
  color: var(--white);
  background: #073e91;
  font-size: 15px;
  font-weight: 800;
}

.letter-top::after {
  position: absolute;
  top: 85px;
  right: 46px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  content: "Время для жизни";
}

.letter-ingos strong {
  display: block;
  color: #0a4c9b;
  font-size: 24px;
  line-height: 1.06;
  text-transform: uppercase;
}

.letter-ingos p {
  margin: 22px auto 0;
  max-width: 190px;
  color: #17457d;
  font-size: 12px;
  line-height: 1.32;
  font-weight: 700;
}

.partners {
  padding: 18px 0 86px;
  margin: auto;
}

.partners .slider-button.next::before, .offers-header .slider-button.next::before {
  left: 3px;
  transform: rotate(0deg);
}

.partners-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 66px;
}

.partners h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.partners-slider {
  --cards-per-view: 3;
  --slider-gap: 70px;
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: var(--slider-gap);
  transform: translateX(var(--slider-offset, 0px));
  transition: transform 0.35s ease;
  will-change: transform;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - (var(--slider-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  min-width: 0;
  min-height: 88px;
  color: #38363b;
  filter: grayscale(1);
}


.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.partner-logo strong {
  display: block;
  font-size: clamp(39px, 4.7vw, 61px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-sber {
  justify-content: flex-start;
}

.sber-mark {
  position: relative;
  flex: 0 0 auto;
  width: 67px;
  height: 67px;
  margin-right: 20px;
  border-radius: 50%;
  background:
          repeating-linear-gradient(150deg, transparent 0 8px, #38363b 9px 15px) 14px 8px / 40px 34px no-repeat,
          #38363b;
}

.sber-mark::before {
  position: absolute;
  inset: -8px -3px auto auto;
  width: 62px;
  height: 31px;
  border-top: 7px solid var(--white);
  border-radius: 50%;
  content: "";
  transform: rotate(-24deg);
}

.partner-sber strong {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.07em;
}

.partner-sber strong::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: currentColor;
  content: "";
}

.vtb-mark {
  display: grid;
  flex: 0 0 auto;
  gap: 7px;
  width: 66px;
  margin-right: 16px;
}

.vtb-mark::before,
.vtb-mark::after {
  display: block;
  height: 11px;
  background: #38363b;
  content: "";
  transform: skewX(-21deg);
}

.vtb-mark::after {
  box-shadow: 0 18px 0 #38363b;
}

.partner-vtb strong {
  font-size: clamp(58px, 6.3vw, 84px);
  font-weight: 900;
}

.gazprom-mark {
  position: relative;
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  margin-right: 23px;
  border: 4px solid #38363b;
  border-radius: 50%;
}

.gazprom-mark::before {
  position: absolute;
  inset: 11px;
  border: 5px solid #38363b;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(16deg);
}

.gazprom-mark::after {
  position: absolute;
  inset: 23px 12px;
  border-top: 5px solid #38363b;
  border-bottom: 5px solid #38363b;
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.partner-gazprom strong {
  font-size: clamp(35px, 4.3vw, 56px);
  font-weight: 900;
}

.alfa-mark,
.open-mark {
  position: relative;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  margin-right: 18px;
  border-radius: 16px;
  background: #38363b;
}

.alfa-mark::before {
  position: absolute;
  left: 23px;
  top: 12px;
  width: 18px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  content: "";
}

.open-mark {
  border-radius: 50%;
  background: transparent;
  border: 8px solid #38363b;
}

.open-mark::before {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #38363b;
  content: "";
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 57px;
}

.slider-dot {
  width: 33px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: #9b9b9b;
  cursor: pointer;
  transition:
          background-color 0.2s ease,
          width 0.2s ease;
}

.slider-dot.active {
  width: 90px;
  background: var(--red);
}

.videos {
  padding: 4px 0 90px;
}

.videos-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.videos h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.videos-header a {
  margin-top: 19px;
  color: #36333a;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0;
  white-space: nowrap;
}

.videos-header a::after {
  content: " \2192";
  text-decoration: none;
}

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

.video-card {
  position: relative;
  min-height: 323px;
  overflow: hidden;
  padding: 35px 35px 30px;
  border-radius: 15px;
  color: var(--white);
  background:
          repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 8px, transparent 9px 55px),
          repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 5px, transparent 6px 73px),
          var(--red);
  isolation: isolate;
}

.video-card::before {
  position: absolute;
  inset: -15px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.08);
  font-size: 47px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  content: "#ПРО_АВАНГАРД #ПРО_АВАНГАРД #ПРО_АВАНГАРД #ПРО_АВАНГАРД #ПРО_АВАНГАРД #ПРО_АВАНГАРД";
}

.video-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(192, 0, 6, 0.7) 0 38%, rgba(220, 0, 6, 0.08));
  content: "";
}

.video-card > span {
  position: relative;
  z-index: 2;
}

.video-tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  color: #3b3840;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-title {
  display: block;
  margin-top: 78px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.video-subtitle {
  display: block;
  margin-top: 26px;
  font-size: 17px;
  font-weight: 700;
}

.play-button {
  position: absolute;
  left: 49%;
  top: 50%;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(45, 41, 43, 0.5);
  transform: translate(-50%, -50%);
}

.play-button::before {
  position: absolute;
  left: 33px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 24px solid var(--white);
  content: "";
}

.video-corner {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 38px;
  height: 38px;
  background:
          linear-gradient(var(--red), var(--red)) 100% 0 / 15px 38px no-repeat,
          linear-gradient(var(--red), var(--red)) 0 0 / 38px 15px no-repeat,
          var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 64% 100%, 64% 36%, 0 36%);
}

.video-person {
  position: absolute;
  right: 52px;
  bottom: 0;
  width: 187px;
  height: 312px;
  border-radius: 92px 92px 0 0;
  background:
          radial-gradient(circle at 55% 9%, #d3b39e 0 38px, transparent 39px),
          linear-gradient(112deg, transparent 0 28%, #f4d0b7 29% 38%, transparent 39%),
          linear-gradient(42deg, transparent 0 49%, #1e2024 50% 71%, transparent 72%),
          linear-gradient(122deg, transparent 0 30%, #191a1f 31% 64%, transparent 65%);
  transform: rotate(-7deg);
}

.video-person::before {
  position: absolute;
  right: 105px;
  top: 132px;
  width: 74px;
  height: 67px;
  border-radius: 12px;
  background:
          radial-gradient(circle at 65% 44%, #4d9c8a 0 15px, transparent 16px),
          linear-gradient(135deg, #22242a, #52575b);
  content: "";
}

.video-docs {
  position: absolute;
  right: 38px;
  bottom: 0;
  width: 312px;
  height: 242px;
}

.video-docs::before {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 132px;
  height: 207px;
  border-radius: 6px;
  background:
          repeating-linear-gradient(0deg, transparent 0 18px, rgba(35, 34, 39, 0.12) 19px 21px),
          linear-gradient(#f7f5ef, #d7d2c8);
  box-shadow:
          0 0 0 9px #2d2c31,
          25px 12px 0 -14px #f6f4ee;
  content: "";
  transform: rotate(-9deg);
}

.video-docs::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  height: 147px;
  border-radius: 6px 6px 0 0;
  background:
          repeating-linear-gradient(0deg, #d1d5d5 0 6px, #f5f5f2 7px 14px),
          linear-gradient(#22262b, #22262b) 0 0 / 100% 16px no-repeat;
  box-shadow:
          0 0 0 12px #ffffff,
          0 0 0 18px #2f3035;
  content: "";
}

.video-embed {
  border-radius: 15px;
  overflow: hidden;
  background: #0f0f12;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.video-embed__ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed__ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  color: #d7d7d7;
  background: #333333;
}

.footer-inner {
  padding: 48px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 330px minmax(220px, 1fr) 380px;
  align-items: center;
  gap: 36px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: 212px;
  height: auto;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--red);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 29px 29px;
}

.social-vk {
  background-image: url("../assets/images/footer/soc-vk.svg");
}

.social-tg {
  background-image: url("../assets/images/footer/soc-tg.svg");
  background-size: 27px 27px;
}

.social-max {
  background-image: url("../assets/images/footer/soc-max.svg");
  background-size: 29px 29px;
}

.social-yt {
  background-image: url("../assets/images/footer/soc-yt.svg");
  background-size: 29px 29px;
}

.social-vk-fill {
  background-image: url("../assets/images/footer/soc-vk-fill.svg");
  background-size: 29px 29px;
}

.footer-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  justify-self: end;
  width: min(100%, 380px);
}

.footer-search input {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 0 12px;
  color: #303030;
  background: var(--white);
  font: inherit;
  font-size: 14px;
}

.footer-search button {
  position: relative;
  height: 40px;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--red) url("../assets/images/footer/search-button-iocn.svg") center / 22px 22px no-repeat;
  cursor: pointer;
}

.footer-search button::before {
  display: none;
}

.footer-search button::after {
  display: none;
}

.footer-contacts {
  display: grid;
  grid-template-columns: 330px minmax(260px, 1fr) minmax(300px, 0.98fr);
  grid-template-areas:
"phone address time"
"email address time";
  gap: 18px 58px;
  margin-top: 57px;
}

.footer-contact {
  position: relative;
  margin: 0;
  padding-left: 42px;
  color: #d5d5d5;
  font-size: 18px;
  line-height: 1.37;
  font-weight: 400;
}

.footer-contact::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #5b5b5b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  content: "";
}

.contact-phone {
  grid-area: phone;
}

.contact-phone::before {
  background-image: url("../assets/images/footer/contact-phone.svg");
}

.contact-email {
  grid-area: email;
}

.contact-email::before {
  background-image: url("../assets/images/footer/contact-email.svg");
}

.contact-address {
  grid-area: address;
}

.contact-address::before {
  background-image: url("../assets/images/footer/contact-location.svg");
}

.contact-time {
  grid-area: time;
}

.contact-time::before {
  background-image: url("../assets/images/footer/contact-working-hours.svg");
}

.footer-main-menu {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  min-height: 60px;
  margin-top: 32px;
  border-radius: 8px;
  background: #545454;
}

.footer-main-menu a {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 0 24px;
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.37;
  font-weight: 400;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.08fr 1.02fr 0.9fr 1.05fr 1.02fr 0.98fr;
  gap: 36px;
  margin-top: 35px;
  padding-bottom: 48px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: #f0f0f0;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
}

.footer-column a {
  color: #a8a8a8;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 67px;
  border-top: 1px solid #474747;
  color: #9e9e9e;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}

.footer-bottom a {
  color: #bcbcbc;
  text-decoration: underline;
  text-underline-offset: 0;
}

.form_all {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(31, 28, 39, 0.55);
}

.form_all_main {
  position: relative;
  width: min(100%, 420px);
  padding: 32px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(31, 28, 39, 0.24);
}

.form_all .title {
  margin: 0 34px 22px 0;
  color: #303238;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
}

.form_all .desc {
  margin-top: 14px;
  color: #8a8590;
  font-size: 12px;
  line-height: 1.3;
}

.form_all .close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
}

.form_all .close i {
  position: absolute;
  top: 11px;
  left: 0;
  width: 24px;
  height: 2px;
  background: #303238;
}

.form_all .close i:first-child {
  transform: rotate(45deg);
}

.form_all .close i:last-child {
  transform: rotate(-45deg);
}

.form_all input,
.form_all textarea,
.form_all select {
  width: 100%;
  min-height: 48px;
}

.overflow-hidden {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 44px, 1000px);
  }

  .header-top {
    gap: 22px;
  }

  .top-menu {
    gap: 18px;
  }

  .phone {
    font-size: 18px;
  }

  .call-button {
    min-width: 150px;
  }

  .hero-card,
  .photo-card {
    min-height: 550px;
  }

  .hero-card {
    padding: 42px 36px;
  }

  .achievements {
    gap: 22px;
  }

  .directions-header {
    gap: 42px;
  }

  .directions-layout {
    grid-template-columns: 330px minmax(0, 1fr);
  }

  .service-choice {
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.92fr);
  }

  .service-choice-placeholder,
  .service-choice-card {
    min-height: 500px;
  }

  .service-choice-card {
    padding: 42px 26px 32px;
  }

  .service-title {
    font-size: 22px;
  }

  .offers-slider {
    --cards-per-view: 3;
  }

  .offer-image {
    height: 270px;
  }

  .about {
    gap: 44px;
  }

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

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

  .partners-slider {
    --slider-gap: 40px;
  }

  .video-card {
    min-height: 285px;
  }

  .video-docs {
    right: 8px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-search {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .footer-contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
  "phone email"
  "address time";
    gap: 22px;
  }

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

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

@media (max-width: 1200px) {
  .inner-layout,
  .inner-layout--expert {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .inner-sidebar {
    position: static;
  }

  .inner-sidebar--right {
    order: 3;
  }

  .inner-content .entry-content {
    padding: 40px 20px;
    border-radius: 0;
  }

  .inner-content .page-cats .page-cat,
  .inner-content .go-pages .go-page,
  .inner-content .blocks-icons .block,
  .inner-content .list-bank .bank,
  .inner-content .news-list .news,
  .inner-content .stocks-list .stock,
  .inner-content .equipments-list .equipment,
  .inner-content .documents-list .document,
  .inner-content .partners-list .partner,
  .inner-content .pages-list > * {
    width: 100%;
    max-width: none;
  }

  .inner-content .more-article .more-article-wrapper {
    padding: 0 16px;
  }

  .inner-content .help-cta__content,
  .inner-content .help-cta__contacts {
    width: 100%;
    padding: 0;
  }

  .inner-content .help-cta__contacts {
    margin-top: 20px;
  }

  .help-cta {
    grid-template-columns: 1fr;
  }

  .post-card-grid,
  .page-cats,
  .go-pages,
  .news-list,
  .stocks-list,
  .list-bank,
  .blocks-icons,
  .equipments-list,
  .documents-list,
  .partners-list,
  .more-article-wrapper,
  .pages-list,
  .owl-carousel,
  .gallery.owl-carousel,
  .partners-list.owl-carousel,
  .equipment-list.owl-carousel,
  .blocks-image-text.owl-carousel,
  .more-article-wrapper.owl-carousel {
    grid-template-columns: 1fr;
  }

  .acceptance-heading,
  .check_home,
  .report,
  .prices_main,
  .reputation,
  .slide6 .tabs,
  .slide10 .faq,
  .slide11 .content,
  .slide12 .content {
    padding: 22px;
  }

  .acceptance-heading .icon_group ul,
  .slide2 .icon_group ul,
  .peoples,
  .reputation_grid,
  .prices,
  .check_list,
  .check_home_wrap,
  .report,
  .reviews-page__grid {
    grid-template-columns: 1fr;
  }

  .slide2,
  .slide3,
  .slide5,
  .slide6,
  .slide7,
  .slide8,
  .slide9,
  .slide10,
  .slide11,
  .slide12 {
    width: min(100% - 44px, 1000px);
  }

  .header-top {
    min-height: 84px;
    gap: 24px;
    padding-block: 12px;
  }

  .logo img {
    width: 175px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(31, 28, 39, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
            opacity 0.28s ease,
            visibility 0.28s ease;
  }

  .site-header.is-menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    width: 300px;
    max-width: 100%;
    background: #ffffff;
    box-shadow: -10px 0 36px rgba(31, 28, 39, 0.14);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition:
            transform 0.3s ease,
            visibility 0.3s ease;
  }

  .site-header.is-menu-open .mobile-nav-drawer {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-drawer__header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 16px;
    border-bottom: 1px solid #efeff4;
    background: #ffffff;
  }

  .mobile-nav-drawer__brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    color: #333333;
    text-decoration: none;
  }

  .mobile-nav-drawer__logo {
    display: block;
    flex: 0 0 auto;
    width: 40px;
    height: auto;
  }

  .mobile-nav-drawer__brand-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
    line-height: 1.15;
  }

  .mobile-nav-drawer__name {
    font-weight: 700;
    font-size: 17px;
  }

  .mobile-nav-drawer__tagline {
    font-size: 13px;
    font-weight: 400;
    color: #5b5860;
  }

  .mobile-nav-drawer__close {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: #dddde2;
    cursor: pointer;
  }

  .mobile-nav-drawer__close-icon {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
  }

  .mobile-nav-drawer__close-icon::before,
  .mobile-nav-drawer__close-icon::after {
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: #ffffff;
    content: "";
  }

  .mobile-nav-drawer__close-icon::before {
    transform: translateY(-50%) rotate(45deg);
  }

  .mobile-nav-drawer__close-icon::after {
    transform: translateY(-50%) rotate(-45deg);
  }

  .mobile-nav-drawer__scroll {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .mobile-nav-drawer__inner {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .mobile-nav-drawer__inner .header-nav-slot--top {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .mobile-nav-drawer__footer {
    flex-shrink: 0;
    padding: 20px 16px 24px;
    border-top: 1px solid #efeff4;
    background: #ffffff;
  }

  .mobile-nav-drawer__phone {
    margin-bottom: 10px;
    text-align: center;
  }

  .mobile-nav-drawer__phone a {
    color: #333333;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
  }

  .mobile-nav-drawer__callback {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .mobile-nav-drawer .header-nav-slot--top,
  .mobile-nav-drawer .header-nav-slot--category {
    display: block;
    width: 100%;
  }

  .header-top > .header-nav-slot--top {
    display: none;
  }

  .site-header > .header-divider + .header-nav-slot--category {
    display: none;
  }

  .top-menu,
  .category-menu,
  .header-divider {
    display: none;
  }

  .site-header.is-menu-open .top-menu,
  .site-header.is-menu-open .category-menu {
    display: flex;
  }

  .site-header.is-menu-open .mobile-nav-drawer .top-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    z-index: auto;
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-menu-open .mobile-nav-drawer .category-menu {
    position: static;
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    min-height: 0;
    white-space: normal;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    box-shadow: none;
  }

  .site-header.is-menu-open .top-menu ul,
  .site-header.is-menu-open .category-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .site-header.is-menu-open .category-menu > ul {
    width: 100%;
  }

  .site-header.is-menu-open .category-menu > ul > li {
    width: 100%;
  }

  .site-header.is-menu-open .mobile-nav-drawer .category-menu > ul > li > a {
    position: relative;
    display: flex;
    min-height: 50px;
    box-sizing: border-box;
    align-items: center;
    padding: 11px 44px 11px 20px;
    border: 1px solid #efeff4;
    margin: 0 0 -1px 0;
    border-right: 0;
    border-left: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: none;
    white-space: normal;
  }

  .site-header.is-menu-open .mobile-nav-drawer .category-menu > ul > li > a::after {
    display: none;
  }

  .site-header.is-menu-open .mobile-nav-drawer .category-menu > ul > li.menu-item-has-children > a::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #9a97a0;
    border-bottom: 2px solid #9a97a0;
    background: none;
    transform: translateY(-65%) rotate(-45deg);
    content: "";
  }

  .site-header.is-menu-open .mobile-nav-drawer .category-menu .img {
    display: inline-flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    font-size: 22px;
  }

  .site-header.is-menu-open .mobile-nav-drawer .category-menu .img img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .site-header.is-menu-open .mobile-nav-drawer .top-menu > ul > li > a {
    display: flex;
    min-height: 44px;
    box-sizing: border-box;
    align-items: center;
    padding: 11px 20px;
    border: 1px solid #efeff4;
    margin: 0 0 -1px 0;
    border-right: 0;
    border-left: 0;
    color: #333333;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
  }

  .site-header.is-menu-open .mobile-nav-drawer .top-menu .current-menu-item > a {
    border-color: #d10000;
    background: #d10000;
    color: #ffffff !important;
    font-weight: 500;
  }

  .site-header.is-menu-open .mobile-nav-drawer nav.top-menu > a {
    display: flex;
    min-height: 44px;
    box-sizing: border-box;
    align-items: center;
    padding: 11px 20px;
    border: 1px solid #efeff4;
    margin: 0 0 -1px 0;
    border-right: 0;
    border-left: 0;
    color: #333333;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
  }

  .site-header.is-menu-open .mobile-nav-drawer nav.top-menu > a.active {
    border-color: #d10000;
    background: #d10000;
    color: #ffffff !important;
    font-weight: 500;
  }

  .site-header.is-menu-open .mobile-nav-drawer .top-menu .sub-menu a {
    border: 0;
    margin: 0;
    padding: 8px 0 8px 12px;
    min-height: 0;
    font-size: 14px;
  }

  .site-header.is-menu-open .top-menu .sub-menu,
  .site-header.is-menu-open .category-menu .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0 8px 12px;
    border-radius: 0;
    background: #fafafc;
    box-shadow: none;
  }

  .site-header.is-menu-open .category-menu > ul > li.is-submenu-open > .sub-menu {
    display: block;
    width: 100%;
  }

  .site-header.is-menu-open .category-menu > ul > li > .sub-menu > li {
    max-width: 100%;
    padding: 0;
    margin-left: 0;
    border-left: 0;
    min-width: 0;
  }

  .mobile-submenu-panel {
    display: none;
    flex-direction: column;
    background: #ffffff;
  }

  .mobile-submenu-panel.is-active {
    display: flex;
  }

  .mobile-submenu-panel.is-behind {
    display: none;
  }

  .mobile-submenu-back {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: 0;
    border-bottom: 1px solid #efeff4;
    background: #ffffff;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    text-align: left;
  }

  .mobile-submenu-back__arrow {
    font-size: 20px;
  }

  .mobile-submenu-parent {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid #efeff4;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    pointer-events: none;
  }

  .mobile-submenu-parent .img {
    display: inline-flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
  }

  .mobile-submenu-parent .img img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .mobile-submenu-panel > .menu-item {
    display: block;
  }

  .mobile-submenu-panel > .menu-item > a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 11px 44px 11px 20px;
    border-bottom: 1px solid #efeff4;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
  }

  .mobile-submenu-panel > .menu-item.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #9a97a0;
    border-bottom: 2px solid #9a97a0;
    transform: translateY(-65%) rotate(-45deg);
  }

  .mobile-submenu-panel > .menu-item > .sub-menu {
    display: none;
  }

  .site-header.is-menu-open .category-menu > ul > li > .sub-menu > li + li {
    margin-top: 14px;
  }

  .site-header.is-menu-open .category-menu > ul > li > .sub-menu > li > .sub-menu {
    padding-left: 12px;
  }

  .site-header.is-menu-open .mega-menu-side-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .site-header.is-menu-open .mega-menu-side {
    padding-left: 0;
    border-left: 0;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .phone {
    margin-right: 12px;
    font-size: 18px;
  }

  .call-button {
    min-width: 190px;
    min-height: 41px;
    font-size: 16px;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    position: relative;
    grid-template-columns: minmax(0, 1.66fr) minmax(260px, 0.94fr);
    gap: 0;
    overflow: hidden;
    padding-bottom: 0;
    border-radius: 18px;
    background: var(--panel);
  }

  .hero-card,
  .photo-card {
    min-height: 666px;
    border-radius: 0;
  }

  .hero-card {
    padding: 42px 44px 28px;
    background: transparent;
  }

  .hero-content {
    display: block;
  }

  .hero-text {
    max-width: 360px;
  }

  h1 {
    max-width: 360px;
    font-size: 39px;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero-text p {
    max-width: 345px;
    margin: 28px 0 32px;
    font-size: 20px;
    line-height: 1.18;
  }

  .primary-button {
    width: min(100%, 360px);
    min-height: 76px;
  }

  .rating-card {
    position: absolute;
    top: 16px;
    left: calc(65% - 78px);
    z-index: 5;
    width: 110px;
    min-height: 210px;
    padding: 24px 10px 18px;
  }

  .rating-card::after {
    border-right-width: 55px;
    border-left-width: 55px;
    border-top-width: 31px;
  }

  .pin {
    width: 82px;
    height: 96px;
    margin-bottom: 2px;
  }

  .rating-card strong {
    font-size: 40px;
  }

  .rating-card strong::before,
  .rating-card strong::after {
    top: 0;
    width: 28px;
    height: 28px;
  }

  .rating-card small {
    font-size: 12px;
  }

  .photo-card {
    align-self: stretch;
    border-radius: 0 18px 18px 0;
  }

  .photo-card {
    min-height: 666px;
  }

  .photo-card img {
    object-position: center;
  }

  .achievements {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
    max-width: 340px;
  }

  .award {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    min-width: 0;
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
    color: #8e8b91;
    text-align: left;
    background: none;
  }

  .award strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin: 0;
    color: var(--white);
    background: url("../assets/images/block-1/bg-gadge-start.svg") center / contain no-repeat;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.05em;
    gap: 3px;
  }

  .award strong span {
    font-size: 20px;
  }

  .award > span {
    padding-left: 18px;
    color: #8e8b91;
    font-size: 15px;
    line-height: 1.16;
    text-align: left;
    font-weight: 700;
  }

  .directions {
    padding: 44px 0 64px;
  }

  .directions-header {
    display: none;
  }

  .directions-layout {
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
    gap: 26px;
  }

  .service-choice {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0;
  }

  .service-choice-placeholder {
    min-height: 392px;
    border-radius: 14px;
  }

  .service-choice-card {
    display: grid;
    grid-template-columns: minmax(250px, 0.92fr) minmax(290px, 0.84fr);
    align-items: center;
    min-height: 300px;
    padding: 24px 22px 23px 32px;
    border-radius: 14px;
  }

  .service-choice-content {
    max-width: 315px;
  }

  .service-choice-content h2 {
    font-size: 33px;
    line-height: 1.03;
  }

  .service-choice-content p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.08;
  }

  .choice-callback {
    width: min(100%, 308px);
    margin-left: auto;
    padding: 22px 22px 20px;
    border-radius: 17px;
  }

  .choice-phone-field {
    height: 60px;
    padding-inline: 25px;
  }

  .choice-callback button {
    min-height: 70px;
    font-size: 12px;
  }

  .choice-callback p {
    margin-top: 20px;
    font-size: 11px;
  }

  .directions-tabs {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .directions-tabs a {
    min-height: 74px;
    border-radius: 9px;
    padding: 14px 16px;
    color: #504f54;
    background: var(--panel);
    font-size: 15px;
  }

  .directions-tabs a.active {
    color: #504f54;
    background: var(--panel);
  }

  .directions-tabs a:first-child {
    color: var(--white);
    background: var(--red);
  }

  .tab-icon {
    width: 45px;
    height: 45px;
    margin-right: 20px;
    background-size: 22px 22px;
  }

  .directions-tabs a.active .tab-icon {
    background-color: var(--white);
  }

  .directions-tabs a:first-child .tab-icon {
    background-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }

  .service-grid {
    position: relative;
    display: block;
    padding-bottom: 74px;
  }

  .service-card {
    min-height: 322px;
    border-radius: 15px;
    padding: 35px 44px;
  }

  .service-card:not(:first-child) {
    display: none;
  }

  .service-card img {
    z-index: 1;
  }

  .service-card::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 36%, rgba(255, 255, 255, 0.12) 58%);
  }

  .service-title {
    z-index: 3;
    max-width: 260px;
    font-size: 28px;
    line-height: 1.02;
  }

  .service-arrow {
    left: 45px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    background-size: 16px 16px;
  }

  .service-grid::before,
  .service-grid::after {
    position: absolute;
    bottom: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--red);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 6px 10px;
    content: "";
  }

  .service-grid::before {
    left: calc(50% - 62px);
    background-image: url("../assets/images/block-6/white-arrow-left.svg");
  }

  .service-grid::after {
    left: calc(50% + 10px);
    background-image: url("../assets/images/block-6/white-arrow-right.svg");
  }

  .offers {
    padding: 34px 0 64px;
  }

  .offers-header {
    margin-bottom: 36px;
  }

  .offers h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .offers .slider-controls {
    display: none;
  }

  .offers-slider {
    --cards-per-view: 2.55;
    --slider-gap: 14px;
  }

  .offer-card {
    border-radius: 10px 10px 15px 15px;
  }

  .offer-image {
    height: 320px;
    border-radius: 10px 10px 0 0;
  }

  .offer-body {
    min-height: 155px;
    padding: 21px 64px 22px 20px;
  }

  .offer-body h3 {
    margin-bottom: 15px;
    font-size: 23px;
  }

  .offer-body p {
    font-size: 14px;
    line-height: 1.16;
  }

  .offer-link {
    top: 22px;
    right: 17px;
    width: 49px;
    height: 49px;
  }

  .offers-dots {
    display: flex;
    margin-top: 32px;
  }

  .offers-dots .slider-dot {
    width: 34px;
    height: 5px;
  }

  .offers-dots .slider-dot.active {
    width: 93px;
  }

  .about {
    grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1fr);
    align-items: start;
    gap: 54px;
    padding: 42px 0 64px;
  }

  .about h2 {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1.05;
  }

  .about-lead {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.38;
  }

  .about-features {
    gap: 31px;
  }

  .about-feature {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 17px;
  }

  .about-icon {
    width: 60px;
    height: 60px;
    background-size: 25px 25px;
  }

  .about-feature h3 {
    margin-bottom: 6px;
    font-size: 21px;
  }

  .about-feature p {
    font-size: 16px;
    line-height: 1.3;
  }

  .about-photo {
    min-height: 550px;
    border-radius: 12px;
  }

  .about-photo img {
    object-position: center;
  }

  .reviews {
    padding: 42px 0 68px;
  }

  .reviews h2 {
    margin-bottom: 47px;
    font-size: 36px;
    line-height: 1.05;
  }

  .reviews-layout {
    grid-template-columns: minmax(318px, 0.8fr) minmax(360px, 1fr);
    align-items: center;
    gap: 58px;
  }

  .rating-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rating-row {
    min-height: 118px;
    padding: 22px 29px 20px 25px;
    border-radius: 6px;
  }

  .rating-row strong {
    font-size: 45px;
  }

  .rating-logo {
    width: 49px;
    height: 49px;
  }

  .letters-grid {
    --cards-per-view: 1;
    --slider-gap: 22px;
    width: 280px;
    max-width: 100%;
    margin-inline: auto;
  }

  .letters-grid .letter-card {
    width: auto;
    flex-basis: 100%;
    min-height: 396px;
  }

  .letters-grid .letter-card:not(:first-child) {
    display: block;
  }

  .letters-grid::before,
  .letters-grid::after {
    display: none;
  }

  .reviews-slider-button:first-child {
    left: 0;
  }

  .reviews-slider-button.next {
    right: 0;
  }

  .partners {
    position: relative;
    padding: 36px 0 58px;
  }

  .partners-header {
    display: block;
    margin-bottom: 42px;
  }

  .partners h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .partners-header .slider-controls {
    position: absolute;
    left: 0;
    right: 0;
    top: 116px;
    z-index: 5;
    justify-content: space-between;
    pointer-events: none;
  }

  .partners-header .slider-button {
    width: 48px;
    height: 48px;
    pointer-events: auto;
  }

  .partners-slider {
    --cards-per-view: 2;
    --slider-gap: 54px;
    width: calc(100% - 210px);
    margin-inline: auto;
  }

  .partner-logo {
    min-height: 76px;
  }

  .partner-logo strong {
    font-size: 49px;
  }

  .sber-mark {
    width: 58px;
    height: 58px;
    margin-right: 17px;
  }

  .sber-mark::before {
    width: 54px;
    height: 28px;
  }

  .partner-vtb strong {
    font-size: 72px;
  }

  .vtb-mark {
    width: 58px;
    gap: 6px;
    margin-right: 14px;
  }

  .vtb-mark::before,
  .vtb-mark::after {
    height: 9px;
  }

  .vtb-mark::after {
    box-shadow: 0 16px 0 #38363b;
  }

  .partners .slider-dots {
    gap: 15px;
    margin-top: 36px;
  }

  .partners .slider-dot:nth-child(n + 4) {
    display: none;
  }

  .partners .slider-dot {
    width: 34px;
    height: 5px;
  }

  .partners .slider-dot.active {
    width: 93px;
  }

  .videos {
    padding: 34px 0 64px;
  }

  .videos-header {
    display: block;
    margin-bottom: 32px;
  }

  .videos h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .videos-header a {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
  }

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

  .video-card {
    min-height: 216px;
    padding: 20px 24px 18px;
    border-radius: 14px;
  }

  .video-card::before {
    font-size: 34px;
    line-height: 1.08;
  }

  .video-tag {
    min-height: 20px;
    padding-inline: 7px;
    font-size: 9px;
  }

  .video-title {
    margin-top: 76px;
    font-size: 27px;
    line-height: 0.98;
  }

  .video-subtitle {
    margin-top: 12px;
    font-size: 13px;
  }

  .play-button {
    width: 68px;
    height: 68px;
  }

  .play-button::before {
    left: 28px;
    top: 21px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 19px;
  }

  .video-corner {
    top: 20px;
    right: 18px;
    width: 22px;
    height: 22px;
    background:
            linear-gradient(var(--red), var(--red)) 100% 0 / 9px 22px no-repeat,
            linear-gradient(var(--red), var(--red)) 0 0 / 22px 9px no-repeat,
            var(--white);
  }

  .video-person {
    right: 20px;
    width: 154px;
    height: 230px;
    transform: rotate(-7deg);
  }

  .video-docs {
    right: 4px;
    bottom: -2px;
    transform: scale(0.78);
    transform-origin: right bottom;
  }

  .footer-inner {
    padding-top: 43px;
  }

  .footer-top {
    grid-template-columns: minmax(230px, 1fr) minmax(320px, 380px);
    align-items: start;
    gap: 36px 42px;
  }

  .footer-logo img {
    width: 180px;
  }

  .socials {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 15px;
  }

  .footer-search {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    width: 100%;
  }

  .footer-search input,
  .footer-search button {
    height: 41px;
  }

  .footer-contacts {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
  "phone email"
  "address time";
    gap: 23px 80px;
    margin-top: 50px;
  }

  .footer-contact {
    padding-left: 37px;
    font-size: 18px;
    line-height: 1.42;
    font-weight: 400;
  }

  .footer-main-menu {
    display: none;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 31px;
    padding-bottom: 19px;
    overflow: hidden;
    border-radius: 8px;
    background: #565656;
  }

  .footer-column {
    position: relative;
    display: block;
    min-height: 51px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-column:last-child {
    display: none;
  }

  .footer-column h3 {
    display: flex;
    align-items: center;
    min-height: 51px;
    margin: 0;
    padding: 0 52px 0 20px;
    color: #eeeeee;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    cursor: pointer;
    user-select: none;
  }

  .footer-column h3::after {
    position: absolute;
    right: 17px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    content: "";
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .footer-column.is-open h3::after {
    transform: translateY(-30%) rotate(-135deg);
  }

  .footer-column a {
    display: none;
  }

  .footer-column.is-open {
    padding-bottom: 14px;
  }

  .footer-column.is-open a {
    display: block;
    padding: 6px 52px 6px 20px;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
  }

  .footer-bottom {
    min-height: 83px;
    border-top: 0;
    font-size: 14px;
    font-weight: 400;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 10px, 100%);
  }

  .header-top {
    flex-wrap: nowrap;
    min-height: 80px;
    padding-block: 10px;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
  }

  .phone,
  .call-button {
    display: none;
  }

  .menu-button {
    width: 36px;
    height: 36px;
  }

  .menu-button span,
  .menu-button::before,
  .menu-button::after {
    left: 9px;
    width: 18px;
    height: 3px;
  }

  .menu-button::before {
    top: 10px;
  }

  .menu-button span {
    top: 17px;
  }

  .menu-button::after {
    top: 24px;
  }

  .hero-card {
    order: 2;
    padding: 22px 20px 26px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    padding-bottom: 0;
    border-radius: 15px;
    background: var(--panel);
  }

  .hero-card,
  .photo-card {
    min-height: auto;
    border-radius: 0;
  }

  .hero-card {
    background: transparent;
  }

  .photo-card {
    order: 1;
    min-height: 394px;
    border-radius: 15px;
  }

  .photo-card img {
    object-position: center;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-text {
    max-width: none;
  }

  h1 {
    max-width: 315px;
    font-size: 34px;
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .hero-text p {
    max-width: 305px;
    margin: 17px 0 21px;
    font-size: 18px;
    line-height: 1.16;
  }

  .rating-card {
    position: absolute;
    top: 22px;
    left: 34px;
    z-index: 5;
    width: 108px;
    min-height: 190px;
    padding: 16px 8px 16px;
    border-radius: 54px 54px 8px 8px;
  }

  .rating-card::after {
    border-right-width: 54px;
    border-left-width: 54px;
    border-top-width: 30px;
  }

  .pin {
    width: 74px;
    height: 88px;
    margin-bottom: 0;
  }

  .rating-card strong {
    font-size: 38px;
  }

  .rating-card strong::before,
  .rating-card strong::after {
    top: 0;
    width: 27px;
    height: 27px;
  }

  .rating-card small {
    font-size: 11px;
  }

  .achievements {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none;
    margin-top: 33px;
  }

  .award {
    grid-template-columns: 78px minmax(0, 1fr);
    width: 100%;
    margin-inline: 0;
  }

  .award strong {
    width: 72px;
    height: 72px;
    font-size: 33px;
  }

  .award strong span {
    font-size: 19px;
  }

  .award > span {
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.1;
  }

  .primary-button {
    width: 100%;
    min-height: 76px;
    min-width: 0;
  }

  .directions {
    padding: 14px 0 28px;
  }

  .directions-header {
    display: none;
  }

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

  .directions-tabs,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .directions-tabs {
    display: flex;
    gap: 6px;
    width: calc(100% + 10px);
    margin: 0 -5px 18px 0;
    overflow-x: auto;
    padding-bottom: 9px;
    scrollbar-width: none;
  }

  .directions-tabs::-webkit-scrollbar {
    display: none;
  }

  .directions-tabs a {
    flex: 0 0 131px;
    min-height: 58px;
    padding: 7px 8px;
    border-radius: 7px;
    font-size: 10px;
    line-height: 1.05;
    white-space: normal;
  }

  .tab-icon {
    width: 36px;
    height: 36px;
    margin-right: 7px;
    background-size: 18px 18px;
  }

  .directions-tabs a:first-child {
    color: var(--white);
    background: var(--red);
  }

  .directions-tabs a:first-child .tab-icon {
    background-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }

  .directions-tabs a.active {
    color: #67616c;
    background: var(--panel);
  }

  .directions-tabs a.active .tab-icon {
    background-color: var(--white);
  }

  .service-grid {
    display: grid;
    gap: 9px;
    padding-bottom: 0;
  }

  .service-grid::before,
  .service-grid::after {
    display: none;
  }

  .service-card {
    min-height: 218px;
    padding: 19px 21px;
    border-radius: 10px;
  }

  .service-card:not(:first-child) {
    display: block;
  }

  .service-title {
    font-size: 0;
    line-height: 1.05;
  }

  .service-title::before {
    display: block;
    color: #303039;
    font-size: 17px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.025em;
  }

  .service-acceptance .service-title::before {
    content: "Оценка квартиры\A для банка";
    white-space: pre-line;
  }

  .service-area .service-title::before {
    content: "Оценка для\A юрлиц";
    white-space: pre-line;
  }

  .service-thermal .service-title::before {
    content: "Оценка\A оборудования";
    white-space: pre-line;
  }

  .service-other .service-title::before {
    content: "Другие виды\A оценки";
    white-space: pre-line;
  }

  .service-arrow {
    left: 24px;
    bottom: 21px;
    width: 45px;
    height: 45px;
    background-size: 12px 12px;
  }

  .service-choice {
    gap: 16px;
    padding-bottom: 38px;
  }

  .service-choice-placeholder {
    min-height: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
  }

  .choice-calculator {
    display: block;
  }

  .choice-calculator h2 {
    margin: 0;
    min-height: 58px;
    padding: 18px 14px 0;
    color: var(--white);
    background: var(--red);
    font-size: 19px;
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .choice-calculator-body {
    padding: 15px 11px 14px;
  }

  .choice-calculator-body > p {
    margin: 0 0 9px;
    color: #303238;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
  }

  .choice-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 7px;
  }

  .choice-service-list article {
    position: relative;
    min-height: 72px;
    padding: 8px 28px 8px 9px;
    border-radius: 4px;
    background: var(--white);
  }

  .choice-service-list article::before,
  .choice-service-list article::after {
    position: absolute;
    content: "";
  }

  .choice-service-list article::before {
    right: 8px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d0d0d0;
  }

  .choice-service-list article::after {
    right: 8px;
    bottom: 9px;
    width: 18px;
    height: 18px;
    border: 1px solid #d3d3d3;
  }

  .calc-icon {
    display: block;
    width: 15px;
    height: 15px;
    margin-bottom: 9px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .calc-icon-case,
  .calc-icon-bank,
  .calc-icon-thermal,
  .calc-icon-area,
  .calc-icon-property {
    background-image: url("../assets/images/block-2/tab-icon-2.svg");
  }

  .choice-service-list strong {
    display: block;
    color: #303238;
    font-size: 10px;
    line-height: 1.08;
    font-weight: 900;
  }

  .choice-service-list small {
    display: block;
    margin-top: 5px;
    color: #8a8790;
    font-size: 10px;
    line-height: 1;
    font-style: italic;
    font-weight: 700;
  }

  .choice-calculator button {
    display: block;
    width: 50%;
    min-height: 40px;
    margin: 14px 0 18px auto;
    border: 0;
    border-radius: 4px;
    color: #dedee4;
    background: var(--white);
    font-size: 14px;
    text-align: left;
    padding-left: 16px;
  }

  .choice-calculator-note {
    display: block;
    color: #8f8b94;
    font-size: 9px;
    line-height: 1.18;
    font-style: italic;
  }

  .service-choice-card {
    grid-template-columns: 1fr;
    min-height: 438px;
    padding: 22px 21px 12px;
    border-radius: 10px;
    overflow: hidden;
  }

  .service-choice-card img {
    object-position: center bottom;
  }

  .service-choice-content {
    max-width: 250px;
  }

  .service-choice-content h2 {
    font-size: 29px;
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .service-choice-content p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.08;
  }

  .choice-callback {
    width: 100%;
    margin-left: 0;
    margin-top: 72px;
    padding: 19px 18px 18px;
    border-radius: 12px;
  }

  .choice-phone-field,
  .choice-callback button {
    min-height: 46px;
    height: 46px;
  }

  .choice-phone-field {
    gap: 12px;
    padding-inline: 21px;
  }

  .choice-phone-field input {
    font-size: 12px;
  }

  .choice-callback button {
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .choice-callback p {
    margin-top: 14px;
    padding-left: 22px;
    font-size: 9px;
    line-height: 1.18;
  }

  .choice-callback p::before {
    width: 15px;
    height: 15px;
    background-size: 10px 7px;
  }

  .directions-tabs a {
    min-height: 70px;
  }

  .offers-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .slider-controls {
    gap: 12px;
  }

  .offers {
    padding: 8px 0 44px;
  }

  .offers h2 {
    max-width: 240px;
    font-size: 34px;
    line-height: 1.02;
  }

  .offers-slider {
    --cards-per-view: 1.18;
    --slider-gap: 9px;
    width: calc(100% + 8px);
  }

  .offer-image {
    height: 320px;
    border-radius: 7px 7px 0 0;
  }

  .offer-card {
    border-radius: 7px 7px 12px 12px;
  }

  .offer-body {
    min-height: 154px;
    padding: 16px 45px 17px 16px;
  }

  .offer-body h3 {
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 0.98;
  }

  .offer-body p {
    font-size: 11px;
    line-height: 1.16;
  }

  .offer-link {
    top: 17px;
    right: 13px;
    width: 41px;
    height: 41px;
    background-size: 10px 10px;
  }

  .offers-dots {
    margin-top: 27px;
    gap: 11px;
  }

  .offers-dots .slider-dot {
    width: 34px;
    height: 5px;
  }

  .offers-dots .slider-dot.active {
    width: 87px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 0 45px;
  }

  .about h2 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.04;
  }

  .about-lead {
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
  }

  .about-features {
    gap: 19px;
  }

  .about-feature {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .about-icon {
    width: 42px;
    height: 42px;
    background-size: 18px 18px;
  }

  .about-feature h3 {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.05;
  }

  .about-feature p {
    font-size: 12px;
    line-height: 1.22;
    font-weight: 500;
  }

  .about-photo {
    min-height: 280px;
    border-radius: 8px;
  }

  .office-chair {
    width: 130px;
  }

  .reviews {
    padding: 0 0 45px;
  }

  .reviews h2 {
    max-width: 280px;
    margin-bottom: 22px;
    font-size: 32px;
    line-height: 1.02;
  }

  .reviews-layout,
  .rating-list,
  .letters-grid {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    gap: 20px;
  }

  .rating-row {
    min-height: 82px;
    padding: 14px 21px 13px 18px;
    border-radius: 5px;
  }

  .rating-row strong {
    margin-right: 13px;
    font-size: 38px;
  }

  .rating-row small {
    margin-bottom: 3px;
    font-size: 9px;
  }

  .stars {
    width: 101px;
    height: 21px;
    background-size: 20px 21px;
  }

  .rating-logo {
    width: 42px;
    height: 42px;
  }

  .letters-grid {
    --cards-per-view: 1.22;
    --slider-gap: 10px;
    gap: 10px;
    width: calc(100% + 10px);
    overflow: hidden;
    padding-inline: 0;
  }

  .letters-grid::before,
  .letters-grid::after {
    display: none;
  }

  .letters-grid .letter-card {
    flex-basis: calc((100% - (var(--slider-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
    width: auto;
    min-height: 396px;
  }

  .letters-grid .letter-card:not(:first-child) {
    display: block;
  }

  .reviews-dots {
    display: flex;
    gap: 11px;
    margin-top: 25px;
  }

  .reviews-slider-button {
    display: none;
  }

  .reviews-dots .slider-dot {
    width: 34px;
    height: 5px;
  }

  .reviews-dots .slider-dot.active {
    width: 87px;
  }

  .partners {
    padding: 0 0 38px;
  }

  .partners-header {
    display: block;
    margin-bottom: 18px;
  }

  .partners h2 {
    max-width: 150px;
    font-size: 34px;
    line-height: 1.02;
  }

  .partners-header .slider-controls {
    display: none;
  }

  .partners-slider {
    --cards-per-view: 1.85;
    --slider-gap: 22px;
    width: calc(100% + 10px);
  }

  .partners .slider-dot:nth-child(n + 4) {
    display: inline-block;
  }

  .partner-logo {
    justify-content: flex-start;
    min-height: 44px;
  }

  .partner-logo strong {
    font-size: 25px;
  }

  .sber-mark {
    width: 34px;
    height: 34px;
    margin-right: 8px;
    background:
            repeating-linear-gradient(150deg, transparent 0 4px, #38363b 5px 8px) 7px 4px / 22px 18px no-repeat,
            #38363b;
  }

  .sber-mark::before {
    inset: -4px -2px auto auto;
    width: 32px;
    height: 17px;
    border-top-width: 4px;
  }

  .partner-sber strong::after {
    bottom: -4px;
    height: 2px;
  }

  .partner-vtb strong {
    font-size: 38px;
  }

  .vtb-mark {
    width: 31px;
    gap: 3px;
    margin-right: 8px;
  }

  .vtb-mark::before,
  .vtb-mark::after {
    height: 5px;
  }

  .vtb-mark::after {
    box-shadow: 0 9px 0 #38363b;
  }

  .slider-dots {
    margin-top: 20px;
    gap: 11px;
  }

  .partners .slider-dot {
    width: 34px;
    height: 5px;
  }

  .partners .slider-dot.active {
    width: 87px;
  }

  .videos {
    padding: 0 0 42px;
  }

  .videos-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .videos h2 {
    max-width: 180px;
    font-size: 34px;
    line-height: 1.02;
  }

  .videos-header a {
    margin-top: 0;
    font-size: 12px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .video-card {
    min-height: 132px;
    padding: 13px 15px 12px;
    border-radius: 8px;
  }

  .video-card::before {
    font-size: 29px;
    line-height: 1.02;
  }

  .video-tag {
    min-height: 17px;
    padding-inline: 6px;
    font-size: 7px;
  }

  .video-title {
    margin-top: 39px;
    font-size: 23px;
    line-height: 0.96;
  }

  .video-subtitle {
    margin-top: 7px;
    font-size: 10px;
  }

  .play-button {
    width: 54px;
    height: 54px;
  }

  .play-button::before {
    left: 22px;
    top: 17px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 15px;
  }

  .video-corner {
    top: 13px;
    right: 12px;
    width: 18px;
    height: 18px;
    background:
            linear-gradient(var(--red), var(--red)) 100% 0 / 7px 18px no-repeat,
            linear-gradient(var(--red), var(--red)) 0 0 / 18px 7px no-repeat,
            var(--white);
  }

  .video-person,
  .video-docs {
    transform-origin: right bottom;
  }

  .video-person {
    right: 9px;
    width: 106px;
    height: 157px;
    opacity: 0.95;
    transform: rotate(-7deg);
  }

  .video-person::before {
    right: 62px;
    top: 72px;
    width: 45px;
    height: 40px;
  }

  .video-docs {
    right: -39px;
    bottom: -4px;
    opacity: 0.95;
    transform: scale(0.51);
  }

  .footer-inner {
    width: min(100% - 26px, 100%);
    padding-top: 32px;
  }

  .footer-top,
  .footer-contacts,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 19px;
  }

  .footer-logo {
    justify-self: center;
  }

  .footer-logo img {
    width: 121px;
  }

  .socials {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    gap: 9px;
  }

  .social-link {
    width: 22px;
    height: 22px;
    background-size: 16px 16px;
  }

  .social-tg {
    background-size: 15px 15px;
  }

  .social-max,
  .social-yt,
  .social-vk-fill {
    background-size: 16px 16px;
  }

  .footer-search {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .footer-search input,
  .footer-search button {
    height: 34px;
  }

  .footer-search {
    grid-template-columns: minmax(0, 1fr) 35px;
  }

  .footer-search button {
    background-size: 22px 22px;
  }

  .footer-contacts {
    grid-template-areas:
  "phone"
  "email"
  "address"
  "time";
    gap: 8px;
    margin-top: 18px;
  }

  .footer-contact {
    padding-left: 27px;
    font-size: 12px;
    line-height: 1.32;
  }

  .footer-contact::before {
    top: -1px;
    width: 16px;
    height: 16px;
    background-size: 8px 8px;
  }

  .footer-main-menu a {
    min-height: 52px;
  }

  .footer-columns {
    margin-top: 22px;
    padding-bottom: 0;
    border-radius: 5px;
  }

  .footer-column {
    min-height: 41px;
  }

  .footer-column h3 {
    min-height: 41px;
    padding: 0 36px 0 13px;
    font-size: 10px;
  }

  .footer-column h3::after {
    right: 11px;
    width: 5px;
    height: 5px;
    border-width: 0 1.5px 1.5px 0;
  }

  .footer-column.is-open {
    padding-bottom: 8px;
  }

  .footer-column.is-open a {
    padding: 4px 36px 4px 13px;
    font-size: 10px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-height: 83px;
    padding-block: 18px;
    font-size: 10px;
  }
}

.header-actions .call-button {
  color: white!important;
}