.crt-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.crt-skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  color: #322e4a;
  z-index: 100000;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.crt-site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
}

body.admin-bar .crt-site-header {
  top: 32px;
}

.crt-nav-bar {
  background: #fff;
  border-bottom: 1px solid rgba(50, 46, 74, 0.08);
}

.crt-nav-bar__inner {
  width: 100%;
  max-width: var(--crt-container, 1360px);
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px 32px;
  box-sizing: border-box;
}

.crt-nav-bar__logo {
  justify-self: start;
  flex: 0 0 auto;
  max-width: min(260px, 28vw);
}

.crt-nav-bar__logo img,
.crt-nav-bar__logo .custom-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
}

.crt-nav-bar__desktop {
  justify-self: stretch;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.crt-nav-bar__menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow: hidden;
}

.crt-nav-bar__menu a {
  color: #3d4d61;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.crt-nav-bar__menu a:hover,
.crt-nav-bar__menu a:focus-visible,
.crt-nav-bar__menu a[aria-expanded="true"] {
  color: var(--crt-primary, #f70c13);
}

.crt-nav-bar__menu .menu-item-services > a {
  cursor: pointer;
}

.crt-nav-bar__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  flex-shrink: 0;
  min-width: max-content;
}

.crt-nav-bar__social {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-self: center;
}

.crt-nav-bar__social li {
  display: flex;
  flex: 0 0 auto;
}

.crt-nav-bar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transition: opacity 0.2s ease;
}

.crt-nav-bar__social-link:hover {
  background: transparent;
  opacity: 0.72;
}

.crt-nav-bar__social-link img {
  display: block;
  width: 28px;
  height: 28px;
}

.crt-nav-bar__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 168px;
}

.crt-nav-bar__phone {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: #1a1f29;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  text-align: right;
}

.crt-nav-bar__phone-icon {
  display: none;
}

.crt-nav-bar__cta {
  width: 100%;
  min-width: 168px;
  white-space: nowrap;
  text-align: center;
}

.crt-btn--header {
  background: #ed2933;
  color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: none;
}

.crt-btn--header:hover {
  background: #d8242e;
  color: #fff;
  border: none;
}

.crt-nav-drawer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.crt-nav-drawer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(71, 85, 103, 0.08);
}

.crt-nav-drawer__social-link img {
  display: block;
  width: 22px;
  height: 22px;
}

.crt-nav-bar__burger {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.crt-nav-bar__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #322e4a;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.crt-nav-bar__burger[aria-expanded="true"] .crt-nav-bar__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.crt-nav-bar__burger[aria-expanded="true"] .crt-nav-bar__burger-line:nth-child(2) {
  opacity: 0;
}

.crt-nav-bar__burger[aria-expanded="true"] .crt-nav-bar__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.crt-btn--sm {
  padding: 6px 16px;
  font-size: 15px;
  line-height: 1.2;
}

.crt-nav-bar__cta.crt-btn.crt-btn--header.crt-btn--sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 10px;
  border: none;
  line-height: 1.2;
  font-size: 15px;
}

@media (min-width: 980px) and (max-width: 1280px) {
  .crt-nav-bar__inner {
    gap: 12px 24px;
  }

  .crt-nav-bar__menu {
    gap: 4px 15px;
  }
}

.crt-nav-drawer[hidden] {
  display: none !important;
}

.crt-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100010;
}

.crt-nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(50, 46, 74, 0.45);
}

.crt-nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: #fff;
  box-shadow: -8px 0 32px rgba(50, 46, 74, 0.16);
  display: flex;
  flex-direction: column;
  padding: 16px 20px 24px;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.crt-nav-drawer.is-open .crt-nav-drawer__panel {
  transform: translateX(0);
}

.crt-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.crt-nav-drawer__title {
  font-weight: 600;
  color: #322e4a;
  font-size: 18px;
}

.crt-nav-drawer__close {
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #322e4a;
  padding: 0 4px;
}

.crt-nav-drawer__menu,
.crt-nav-drawer__menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.crt-nav-drawer__menu > li {
  border-bottom: 1px solid rgba(50, 46, 74, 0.08);
}

.crt-nav-drawer__menu a {
  display: block;
  padding: 14px 0;
  color: #322e4a;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.crt-nav-drawer__menu a:hover {
  color: var(--crt-primary, #f70c13);
}

.crt-nav-drawer__menu .menu-item-has-children {
  position: relative;
}

.crt-nav-drawer__menu .menu-item-has-children > a {
  padding-right: 44px;
}

.crt-nav-drawer__toggle {
  position: absolute;
  top: 8px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.crt-nav-drawer__toggle span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-right: 2px solid #322e4a;
  border-bottom: 2px solid #322e4a;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.crt-nav-drawer__menu .is-expanded > .crt-nav-drawer__toggle span {
  transform: rotate(225deg);
  margin-top: 4px;
}

.crt-nav-drawer__menu .sub-menu {
  display: none;
  padding: 0 0 12px 12px;
}

.crt-nav-drawer__menu .is-expanded > .sub-menu {
  display: block;
}

.crt-nav-drawer__menu .sub-menu a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 400;
  color: #475567;
}

.crt-nav-drawer__footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crt-nav-drawer__phone {
  color: #322e4a;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}

html.crt-nav-open,
body.crt-nav-open {
  overflow: hidden;
}

.crt-native-footer {
  background: #383e45;
  color: #fff;
  padding: 40px 20px 80px;
}

.crt-native-footer__inner {
  max-width: var(--crt-container, 1360px);
  margin: 0 auto;
}

.crt-native-footer__row {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(160px, 300px) minmax(120px, 1fr) minmax(160px, 1.05fr) minmax(180px, 0.95fr);
  gap: 20px 24px;
  align-items: start;
}

.crt-native-footer__row--head {
  align-items: end;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.crt-native-footer__row--body {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.crt-native-footer__col-brand {
  min-width: 0;
}

.crt-native-footer__col-gap {
  min-height: 0;
}

.crt-native-footer__heading {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.crt-native-footer__tagline {
  max-width: 17rem;
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.crt-native-footer__catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 100%;
  max-width: 306px;
  min-height: 55px;
  padding: 14px 24px;
  border-radius: 10px;
  background: #fff;
  color: #b10000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.crt-native-footer__catalog:hover {
  color: #b10000;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.crt-native-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 24px 32px;
  align-items: end;
  padding-top: 8px;
}

.crt-native-footer__legal {
  min-width: 0;
}

.crt-native-footer__privacy {
  margin: 0 0 12px;
}

.crt-native-footer__privacy a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.crt-native-footer__privacy a:hover {
  color: var(--crt-primary, #f70c13);
}

.crt-native-footer__copyright,
.crt-native-footer__disclaimer {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.crt-native-footer__copyright {
  text-align: right;
}

.crt-native-footer__company {
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.crt-native-footer__info p {
  margin: 0 0 10px;
}

.crt-native-footer__email {
  margin: 0;
}

.crt-btn--footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: #322e4a;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.crt-btn--footer:hover {
  background: #f3f4f6;
  color: #322e4a;
}

.crt-native-footer__phone-row {
  margin-bottom: 18px;
}

.crt-native-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.crt-native-footer__phone:hover {
  color: var(--crt-primary, #f70c13);
}

.crt-native-footer__phone-icon {
  flex: 0 0 auto;
}

.crt-native-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.crt-native-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease;
}

.crt-native-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.24);
}

.crt-native-footer__social-link img {
  display: block;
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.crt-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99998;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid rgba(50, 46, 74, 0.12);
  box-shadow: 0 -8px 24px rgba(50, 46, 74, 0.08);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.crt-mobile-bar__phone {
  color: #322e4a;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}

.crt-native-footer a {
  color: inherit;
  text-decoration: none;
}

.crt-native-footer a.crt-native-footer__catalog {
  color: #b10000;
}

.crt-native-footer a.crt-native-footer__catalog:hover {
  color: #b10000;
}

.crt-native-footer__contacts a:not(.crt-native-footer__phone) {
  color: #fff;
}

.crt-native-footer a:hover {
  color: var(--crt-primary, #f70c13);
}

.crt-native-footer a.crt-native-footer__catalog:hover,
.crt-native-footer__contacts a:not(.crt-native-footer__phone):hover {
  color: inherit;
}

.crt-native-footer a.crt-native-footer__catalog:hover {
  color: #b10000;
}

.crt-native-footer__contacts a:not(.crt-native-footer__phone):hover {
  color: #fff;
}

.crt-native-footer__logo img,
.crt-native-footer__logo .custom-logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0;
}

.crt-native-footer h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.crt-native-footer p {
  margin: 0 0 8px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.crt-native-footer__email a {
  color: #fff;
}

.crt-native-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.crt-native-footer__links li {
  margin-bottom: 10px;
}

.crt-native-footer__links li:last-child {
  margin-bottom: 0;
}

.crt-native-footer__legal {
  font-size: 13px;
}

.crt-modal[hidden] {
  display: none !important;
}

.crt-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.crt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.crt-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 28px 24px 24px;
  z-index: 2;
  pointer-events: auto;
}

.crt-modal__dialog input,
.crt-modal__dialog select,
.crt-modal__dialog textarea,
.crt-modal__dialog button,
.crt-modal__dialog label,
.crt-modal__dialog .t-checkbox__control {
  pointer-events: auto;
}

.crt-modal__dialog .t-checkbox__control {
  cursor: pointer;
}

.crt-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #322e4a;
}

.crt-modal__title {
  margin: 0 0 8px;
  font-size: 22px;
  color: #322e4a;
}

.crt-modal__subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.4;
  color: #475567;
}

body.crt-modal-open {
  overflow: hidden;
}

.crt-modal .crt-cf7-wrap {
  margin: 0;
}

.crt-modal .crt-cf7-t702 .dv_css-form__inputsbox_vertical-form.dv_css-form__inputsbox_inrow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 979px) {
  .crt-nav-bar__inner {
    display: flex;
    max-width: none;
    padding: 10px 16px 10px 12px;
  }

  .crt-nav-bar__logo {
    margin-right: auto;
  }

  .crt-nav-bar__desktop {
    display: none;
  }

  .crt-nav-bar__social,
  .crt-nav-bar__contact {
    display: none;
  }

  .crt-nav-bar__burger {
    display: flex;
  }

  .crt-native-footer__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .crt-native-footer__row--head .crt-native-footer__col-gap,
  .crt-native-footer__row--body .crt-native-footer__col-gap {
    display: none;
  }

  .crt-native-footer__catalog {
    max-width: none;
  }

  .crt-native-footer__bottom {
    grid-template-columns: 1fr;
  }

  .crt-native-footer__copyright {
    text-align: left;
  }
}

@media (max-width: 782px) {
  body.admin-bar .crt-site-header {
    top: 46px;
  }
}

@media (max-width: 960px) {
  .crt-mobile-bar {
    display: flex;
  }

  body.home {
    padding-bottom: 72px;
  }
}
