*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Golos Text", sans-serif;
  background: #ffffff;
  color: #3b4955;
  min-width: 1440px;
  overflow-x: hidden;
}
#figma-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0081d0;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  z-index: 9999;
  font-family: "Golos Text", sans-serif;
}
#figma-loader input {
  flex: 1;
  max-width: 420px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-family: inherit;
}
#figma-loader button {
  background: #fff;
  color: #0081d0;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  font-family: inherit;
}
#figma-loader button:hover {
  background: #e6f4ff;
}
#figma-loader .close-btn {
  margin-left: auto;
  background: transparent;
  color: #fff;
  font-size: 18px;
  padding: 0 6px;
  font-weight: 400;
}
#figma-loader .close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
#loader-status {
  font-size: 12px;
  opacity: 0.85;
}
body.loader-visible {
  padding-top: 44px;
}
.header {
  display: flex;
  align-items: center;
  gap: 52px;
  padding: 0 60px;
  height: 90px;
  width: 100%;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  color: #3b4955;
}
.logo-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.logo-tagline {
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
}
.btn-catalog {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0081d0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  padding: 0 20px;
  height: 52px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.btn-catalog img {
  width: 20px;
  height: 20px;
}
.btn-catalog:hover {
  background: #3b4955;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 364px;
  flex-shrink: 0;
}
.nav-menu a {
  font-size: 16px;
  font-weight: 500;
  color: #3b4955;
  text-decoration: none;
  white-space: nowrap;
}
.nav-menu a:hover {
  color: #0081d0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.header-phone img {
  width: 20px;
  height: 20px;
}
.header-phone span {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-actions img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.search-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.search-popup.open {
  transform: translateY(0);
}
.search-popup-inner {
  background: #fff;
  padding: 24px 60px;
  box-shadow: 0 8px 32px rgba(59, 73, 85, 0.15);
}
.search-popup-form {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
  background: #f4f7f9;
  border-radius: 40px;
  padding: 0 24px;
  height: 56px;
  border: 1.5px solid #d0dce5;
  transition: border-color 0.2s;
}
.search-popup-form:focus-within {
  border-color: #0081d0;
}
.search-popup-icon {
  width: 22px;
  height: 22px;
  opacity: 0.5;
  flex-shrink: 0;
}
.search-popup-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-family: "Golos Text", sans-serif;
  color: #3b4955;
}
.search-popup-input::placeholder {
  color: #a0b0bc;
}
.search-popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.search-popup-close svg {
  width: 22px;
  height: 22px;
  stroke: #8a9aaa;
  stroke-width: 2;
  stroke-linecap: round;
}
.search-popup-close:hover svg {
  stroke: #3b4955;
}
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(59, 73, 85, 0.35);
  z-index: 1999;
}
.search-overlay.open {
  display: block;
}
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #3d4a5c;
}
.lang-chevron {
  display: block;
  width: 10px;
  height: 10px;
  color: #1976d2;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.lang-options {
  display: none;
  position: absolute;
  top: calc(100%+6px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 60px;
  z-index: 200;
  overflow: hidden;
}
.lang-options a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #3d4a5c;
  text-decoration: none;
  white-space: nowrap;
}
.lang-options a:hover {
  background: #f4f6f8;
  color: #1976d2;
}
.lang-dropdown:hover .lang-options,
.lang-dropdown.open .lang-options {
  display: block;
}
.lang-dropdown:hover .lang-chevron,
.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}
.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 40px;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 40px;
}
.hero {
  display: flex;
  height: 518px;
  column-gap: 8px;
}
.hero-left {
  width: 717px;
  flex-shrink: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 129, 208, 0.1),
    rgba(148, 213, 254, 0.1)
  );
  border-radius: 6px;
  padding: 95px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  color: #3b4955;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 11px;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b4955;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  width: 163px;
  height: 51px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: #0081d0;
}
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #3b4955;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  width: 202px;
  height: 51px;
  border-radius: 40px;
  border: 1.5px solid #3b4955;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: #3b4955;
  color: #fff;
}
.hero-right {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #e8eff4;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #3b4955;
  margin-bottom: 40px;
}
.services-section {
  padding: 70px 0 0;
}
.services-title {
  font-size: 40px;
  font-weight: 700;
  color: #3b4955;
  margin-bottom: 40px;
  padding-left: 62px;
}
.services-wrapper {
  position: relative;
}
.services-track {
  display: flex;
  gap: 15px;
  padding: 0 62px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.services-track::-webkit-scrollbar {
  display: none;
}
.service-col {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 308px;
}
.service-col.alt {
  flex-direction: column-reverse;
}
.service-img {
  width: 308px;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  background: #c8d8e0;
}
.service-col:not(.alt) .service-img {
  border-radius: 30px 6px 0 0;
}
.service-col.alt .service-img {
  border-radius: 0 0 30px 6px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card {
  background: #3b4955;
  width: 308px;
  height: 299px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}
.service-col:not(.alt) .service-card {
  border-radius: 0 0 6px 6px;
}
.service-col.alt .service-card {
  border-radius: 6px 6px 0 0;
}
.service-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  width: 246px;
}
.service-card-desc {
  font-size: 14px;
  font-weight: 500;
  color: #e9f1f5;
  line-height: 1.4;
  width: 246px;
}
.service-card-desc.regular {
  font-weight: 400;
}
.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0081d0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 129, 208, 0.35);
  transition: background 0.2s;
}
.services-arrow-right {
  right: 80px;
}
.services-arrow-left {
  left: 80px;
}
.services-arrow[hidden] {
  display: none;
}
.services-arrow:hover {
  background: #3b4955;
}
.services-arrow svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
@media (min-width: 1921px) {
  .service-col {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
  .service-img {
    width: 100%;
    height: auto;
    aspect-ratio: 308 / 260;
  }
  .service-card {
    width: 100%;
    height: auto;
    aspect-ratio: 308 / 299;
  }
  .service-card-title,
  .service-card-desc {
    width: auto;
  }
}
.advantages-section {
  padding: 70px 62px 0;
}
.advantages-grid {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantage-card {
  background: linear-gradient(
    to bottom,
    rgba(0, 129, 208, 0.1),
    rgba(148, 213, 254, 0.1)
  );
  border-radius: 30px;
  width: calc((100% / 6) - 32px);
  height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}
.advantage-card.even {
  margin-top: 40px;
}
.advantage-icon {
  width: 87px;
  height: 87px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.advantage-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.advantage-label {
  font-size: 20px;
  font-weight: 500;
  color: #3b4955;
  line-height: 1.3;
}
.partners-section {
  padding: 70px 60px 0;
}
.partners-banner {
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(0, 129, 208, 0.1),
    rgba(148, 213, 254, 0.1)
  );
  border-radius: 30px 6px 6px 6px;
  height: 342px;
  margin-top: 70px;
  display: flex;
  align-items: center;
}
.partners-banner:before {
  content: "";
  border-radius: 30px 6px 6px 6px;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: url("/img/b_bg.svg");
  background-size: 100%;
}
.partners-worker {
  position: absolute;
  left: calc(8.33%+6px);
  bottom: 0;
  width: 313px;
  height: 391px;
}
.partners-worker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.partners-text {
  margin-left: calc(8.33%+120px+313px);
  max-width: 560px;
}
.partners-text p {
  font-size: 36px;
  line-height: 1.2;
  color: #3b4955;
}
.partners-text strong {
  font-weight: 700;
}
.about-section {
  padding: 60px 60px 0;
}
.about-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #3b4955;
  max-width: 100%;
}
.about-text p + p {
  margin-top: 10px;
}
.about-text strong {
  font-weight: 500;
}
.map-section {
  padding: 60px 60px 0;
}
.map-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 40px;
  background: none;
}
.footer {
  background: #3b4955;
  margin-top: 60px;
  padding: 60px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr auto 260px;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  width: 46px;
  height: 42px;
  object-fit: contain;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.footer-logo-tagline {
  font-size: 10px;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 400;
  color: #b3d9f1;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  gap: 32px 40px;
  flex-wrap: wrap;
}
.footer-link-col {
  display: flex;
  flex-direction: column;
  min-width: 130px;
}
.footer-cat-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  margin-top: 16px;
}
.footer-cat-title:first-child {
  margin-top: 0;
}
.footer-link-col a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  line-height: 1.8;
}

.footer-cat-title a{
  font-size: 20px;
  font-weight: 600;
}

.footer-link-col a:hover {
  color: #b3d9f1;
}
.footer-contacts .footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}
.footer-contacts .footer-office-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-contacts p {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}
.footer-contacts .footer-email-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 6px;
}
.btn-contact-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0081d0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  width: 202px;
  height: 51px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s;
}
.btn-contact-white:hover {
  background: #005fa3;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}
.footer-bottom p {
  font-size: 10px;
  font-weight: 400;
  color: #dadada;
}
img[src=""] {
  background: #c8d6df;
  display: block;
}
.header-mobile-actions {
  display: none;
}
.mobile-menu {
  display: none;
}
.mobile-overlay {
  display: none;
}
@media (max-width: 768px) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }
  .header {
    padding: 0 16px;
    height: 60px;
    justify-content: space-between;
    gap: 0;
    position: relative;
    z-index: 1001;
    background: #fff;
  }
  .btn-catalog-desktop {
    display: none;
  }
  .header-right {
    display: none;
  }
  .logo {
    gap: 8px;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .logo-name {
    font-size: 13px;
  }
  .logo-tagline {
    font-size: 9px;
    white-space: normal;
    max-width: 120px;
    line-height: 1.3;
  }
  .header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
  }
  .header-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #3b4955;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
    transform-origin: center;
  }
  .header-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .header-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .btn-catalog-mobile {
    display: inline-flex;
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
    gap: 6px;
    border-radius: 40px;
    background: #0081d0;
    color: #fff;
    font-weight: 600;
    font-family: "Golos Text", sans-serif;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
  }
  .btn-catalog-mobile img {
    width: 15px;
    height: 15px;
  }
  .btn-catalog-mobile:hover {
    background: #3b4955;
  }
  .header-search-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
  }
  .header-search-btn img {
    width: 20px;
    height: 20px;
  }
  .search-popup-inner {
    padding: 16px;
  }
  .search-popup-form {
    height: 48px;
    padding: 0 16px;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #e3f5fc;
    z-index: 1000;
    padding: 0 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .mobile-menu.open {
    max-height: 420px;
    padding: 20px 20px 28px;
  }
  .mobile-menu-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 40px;
    padding: 0 16px;
    height: 44px;
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(59, 73, 85, 0.08);
  }
  .mobile-menu-search img {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    flex-shrink: 0;
  }
  .mobile-menu-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: "Golos Text", sans-serif;
    color: #3b4955;
    background: transparent;
  }
  .mobile-menu-search input::placeholder {
    color: #a0b0bc;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }
  .mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #3b4955;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(59, 73, 85, 0.08);
    transition: color 0.15s;
  }
  .mobile-nav-links a:last-child {
    border-bottom: none;
  }
  .mobile-nav-links a:hover,
  .mobile-nav-links a:active {
    color: #0081d0;
  }
  .mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #3b4955;
    margin-bottom: 14px;
    margin-top: 4px;
  }
  .mobile-menu-phone img {
    width: 18px;
    height: 18px;
  }
  .mobile-menu-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #8a9aaa;
  }
  .mobile-menu-lang .active {
    color: #3b4955;
    font-weight: 700;
  }
  .mobile-menu-lang .sep {
    color: #c0cdd6;
  }
  .mobile-menu-lang span {
    cursor: pointer;
  }
  .mobile-menu-lang span:not(.sep):not(.active):hover {
    color: #0081d0;
  }
  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(59, 73, 85, 0.35);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
  .hero {
    height: auto;
    flex-direction: row;
    gap: 0;
  }
  .hero-left {
    width: auto;
    flex: 1;
    padding: 24px 16px 28px;
    border-radius: 0;
    justify-content: flex-start;
  }
  .hero-content {
    gap: 20px;
  }
  .hero-heading {
    font-size: 22px;
    line-height: 1.35;
  }
  .hero-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .btn-primary {
    width: 130px;
    height: 42px;
    font-size: 13px;
  }
  .btn-outline {
    width: 160px;
    height: 42px;
    font-size: 13px;
  }
  .hero-right {
    width: 40%;
    flex-shrink: 0;
    border-radius: 0;
    height: auto;
    align-self: stretch;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .services-section {
    padding: 40px 0 0;
  }
  .services-title {
    font-size: 24px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
  .services-track {
    padding: 0 16px 20px;
    gap: 10px;
  }
  .service-col {
    width: 240px;
  }
  .service-img {
    width: 240px;
    height: 190px;
  }
  .service-card {
    width: 240px;
    height: 230px;
    padding: 20px;
  }
  .service-card-title {
    font-size: 17px;
    width: auto;
  }
  .service-card-desc {
    font-size: 13px;
    width: auto;
  }
  .services-arrow {
    width: 48px;
    height: 48px;
  }
  .services-arrow-right {
    right: 10px;
  }
  .services-arrow-left {
    left: 10px;
  }
  .services-arrow svg {
    width: 20px;
    height: 20px;
  }
  .advantages-section {
    padding: 40px 16px 0;
  }
  .advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0;
  }
  .advantage-card {
    width: 100% !important;
    height: auto;
    min-height: 160px;
    padding: 18px;
    border-radius: 20px;
  }
  .advantage-card.even {
    margin-top: 0;
  }
  .advantage-icon {
    width: 60px;
    height: 60px;
  }
  .advantage-icon img {
    width: 30px;
    height: 30px;
  }
  .advantage-label {
    font-size: 14px;
  }
  .partners-section {
    padding: 40px 16px 0;
  }
  .partners-banner {
    height: auto;
    min-height: 160px;
    border-radius: 16px;
    margin-top: 32px;
    overflow: hidden;
  }
  .partners-worker {
    position: absolute;
    left: 16px;
    bottom: 0;
    width: 110px;
    height: 138px;
  }
  .partners-text {
    margin-left: calc(110px+32px);
    padding: 20px 16px;
    max-width: 100%;
  }
  .partners-text p {
    font-size: 16px;
  }
  .about-section {
    padding: 40px 16px 0;
  }
  .about-text {
    font-size: 13px;
  }
  .map-section {
    padding: 40px 16px 0;
  }
  .footer {
    padding: 36px 16px 28px;
    margin-top: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-link-col {
    min-width: 110px;
  }
  .footer-contacts .btn-contact-white {
    width: 100%;
  }
}
