/* Body */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #F1F5F9;
  color: #1F2121;
}

/* Заголовки */
h1, h2,
.hero-title,
.services-title,
.problems-section-title,
.offers-section-title,
.cta-title,
.callback-form-title,
.cta-subtitle {
  font-family: 'Montserrat', sans-serif;
}

/* Контейнер для всего сайта */
.site-container {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Универсальные стили для всех маркированных списков */
ul:not(.dropdown-menu):not(.offer-features-list):not(.problem-card-list) {
  list-style: none;
  padding-left: 0;
}

ul:not(.dropdown-menu):not(.offer-features-list):not(.problem-card-list) li {
  position: relative;
  padding-left: 20px;
}

ul:not(.dropdown-menu):not(.offer-features-list):not(.problem-card-list) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #4DD540;
  border-radius: 50%;
}

/* Шапка сайта */
.header {
  background-color: transparent;
  padding: 23px 0;
}


.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

/* Левая часть навигации */
.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Ссылка "Главная" */
.nav-link-home {
  position: absolute;
  top: -9px;
  padding-left: 20px;
  font-size: 16px;
  color: #1F2121;
  opacity: .52;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nav-link-home:hover {
  color: #4DD540;
}


/* Правая часть навигации */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

/* Логотип */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}


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

/* Кнопки навигации */
.nav-btn {
  background-color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 20px;
  font-size: 20px;
  color: #1F2121;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Кнопки без dropdown - с прозрачным border */
@media (min-width: 992px) {
  .nav-btn {
    border: 2px solid transparent;
  }

  .nav-btn:not(.dropdown-toggle):hover {
    border-color: #4DD540;
    color: #4DD540;
  }
}


.nav-btn:focus {
  box-shadow: none;
  outline: none;
}

/* Зеленая кнопка */
.btn-primary-custom {
  background-color: #4DD540;
  color: #fff;
  border: 2px solid #4DD540;
  border-radius: 22px;
  padding: 10px 32px;
  font-size: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.6s ease;
  white-space: nowrap;
}

.header .btn-primary-custom {
  padding: 13px 32px;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: #4DD540;
  border-color: #4DD540;
}

/* Тени для кнопок в шапке на ПК */
@media (min-width: 992px) {
  .nav-btn,
  .btn-primary-custom {
    filter: drop-shadow(0px 0px 9.2px rgba(0, 0, 0, 0.08));
  }
}

/* Dropdown меню */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu-custom {
  width: auto !important;
  background-color: rgb(255, 255, 255, 60%);
  border: none;
  border-radius: 0 0 20px 20px;
  padding: 10px 0;
  margin-top: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  top: -15px !important;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  display: block !important;
}

.dropdown.show .dropdown-menu-custom,
.dropdown-menu-custom.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-custom {
  white-space: wrap;
  color: #1F2121;
  padding: 10px 20px;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.dropdown-item-custom:hover,
.dropdown-item-custom:active {
  background-color: transparent;
  color: #4DD540;
}

.dropdown-divider-custom {
  background-color: #FFF;
  border-top: 1px solid #FFF;
  margin: 5px 0;
  height: 1px;
}

/* Мобильное меню */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #1F2121;
  cursor: pointer;
  padding: 5px;
  z-index: 1051;
  position: relative;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle-icon {
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.show {
  display: block;
  transform: translateX(0);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #F1F5F9;
  padding: 10px 5px 20px;
  overflow-y: auto;
}


/* Стили для элементов мобильного меню */
.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 20px;
  padding-left: 50px;
  background-color: #FFF;
  border-radius: 20px;
  text-decoration: none;
  color: #1F2121;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mobile-menu-item:hover {
  background-color: #E2E8F0;
  color: #1F2121;
}

.mobile-menu-icon {
  flex-shrink: 0;
  height: auto;
}

.mobile-menu-item span {
  flex: 0 0 auto;
}

.mobile-menu-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  transition: transform 0.3s ease;
}

.mobile-menu-dropdown.show .mobile-menu-chevron {
  transform: rotate(180deg);
}

.mobile-menu-dropdown.show .mobile-menu-icon {
  opacity: 0;
}

.mobile-menu-dropdown-toggle {
  justify-content: flex-start;
  gap: 8px;
}

.mobile-menu-dropdown {
  margin-bottom: 5px;
  background-color: #fff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.mobile-menu-dropdown .mobile-menu-item {
  padding: 15px 20px;
  padding-left: 50px;
}

.mobile-menu-dropdown-toggle {
  width: 100%;
  text-align: left;
  background-color: transparent !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}

.mobile-menu-dropdown .mobile-menu-item:hover {
  background-color: transparent !important;
}

.mobile-menu-dropdown-menu {
  margin-top: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  padding-bottom: 0;
  position: static !important;
  transform: none !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  display: block;
  list-style: none;
}

.mobile-menu-dropdown-menu li::before {
  display: none;
}

.mobile-menu-dropdown.show .mobile-menu-dropdown-menu {
  max-height: 500px;
  padding-bottom: 8px;
}

.mobile-menu-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 30px !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  color: #1F2121;
  font-size: 14px;
  text-decoration: none;
}

.mobile-menu-dropdown-item:hover {
  background-color: rgba(241, 245, 249, 0.5) !important;
  color: #1F2121;
}

.mobile-menu-dropdown-divider {
  margin: 8px 0;
  border: none;
  border-top: 1px solid #E2E8F0;
  opacity: 1;
}

.mobile-menu-dropdown-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: 5px;
  padding: 9px 20px;
  font-size: 16px;
  border-radius: 18px;
}



/* Скрываем мобильную кнопку на десктопе */
@media (min-width: 992px) {
  .btn-mobile-header {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Overlay для мобильного меню */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: transparent;
  z-index: 1040;
}

.mobile-menu-overlay.show {
  display: block;
}

/* Первый блок (Hero Section) */
.hero-section {
  padding: 60px 0;
}

.hero-section .row {
  align-items: center;
}

.hero-row {
  position: relative;
  min-height: 400px;
}

.hero-card {
  border-radius: 20px;
  padding: 40px;
}

.hero-card-left {
  margin-top: 100px;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0px 0px 9.2px rgba(0, 0, 0, 0.08);
}

.hero-content-wrapper {
  max-width: 45%;
  z-index: 1;
  position: relative;
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  color: #1F2121;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 18px;
  color: #1F2121;
  line-height: 1.6;
  margin: 0;
}

body.presentation-page .hero-section {
  padding: 35px 0;
  padding-bottom: 65px;
}

@media (min-width: 992px) {
  .hero-image-col {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    z-index: 2;
  }
}

.hero-card-right {
  padding: 0;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}


/* Блок Наши услуги */
.services-section {
  padding: 60px 0;
  padding-bottom: 0;
  background-color: #F1F5F9;
}

.services-title {
  font-size: 32px;
  font-weight: bold;
  color: #1F2121;
  padding-left: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.service-card {
  background-color: #FFF;
  border-radius: 20px;
  height: 521px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 9.2px rgba(0, 0, 0, 0.08);
}

.service-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
}

/* Уникальные классы для позиционирования изображений услуг */
.service-img-1 {
  /* Позиционирование для картинки 1 - настройте top, left, transform по необходимости */
  position: absolute;
  top: -14px;
  left: 0;
  transform: translateX(0);
  max-width: 385px;
}

.service-img-2 {
  /* Позиционирование для картинки 2 - настройте top, left, transform по необходимости */
  position: absolute;
}

.service-img-3 {
  /* Позиционирование для картинки 3 - настройте top, left, transform по необходимости */
  position: absolute;
  top: 45px;
}

.service-img-4 {
  /* Позиционирование для картинки 4 - настройте top, left, transform по необходимости */
  position: absolute;
}

.service-img-5 {
  /* Позиционирование для картинки 5 - настройте top, left, transform по необходимости */
  position: absolute;
  top: 37px;
  left: 19px;
  transform: translateX(0);
}

.service-img-6 {
  /* Позиционирование для картинки 6 - настройте top, left, transform по необходимости */
  position: absolute;
  right: 0;
  left: auto;
  transform: translateX(0);
  width: 115%;
}

.service-img-6-icon {
  position: absolute;
  bottom: 54px;
  left: 0;
}

.service-card-title {
  font-size: 26px;
  font-weight: 400;
  color: #1F2121;
  padding: 25px;
  margin: 0;
  margin-top: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.services-more-btn-wrapper {
  display: block;
  text-align: left;
  margin-top: 60px;
  position: relative;
}

.services-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #4DD540;
  color: #FFF;
  border: 2px solid #4DD540;
  padding: 14px 40px;
  border-radius: 22px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.6s ease;
  position: relative;
  z-index: 2;
}

.services-more-btn * {
  transition: opacity .3s ease;
}

.services-more-btn:hover {
  background-color: #4DD540 !important;
  color: #FFF !important;
}

.services-more-btn-expand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 0;
  transition: width .3s ease;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  display: block;
  border-radius: 20px;
}

.services-more-btn-wrapper:hover .services-more-btn * {
  opacity: 0;
}
.services-more-btn-wrapper:hover .services-more-btn-expand {
  width: 100%;
}

.services-more-btn:hover {
  background-color: transparent;
  color: #4DD540;
  border-color: #4DD540;
}



/* CTA блок */
.cta-section {
  padding: 60px 0;
  background-color: #F1F5F9;
}

.cta-card {
  background-color: #FFF;
  border-radius: 50px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0px 0px 9.2px rgba(0, 0, 0, 0.08);
}

.cta-title {
  font-size: 32px;
  font-weight: bold;
  color: #1F2121;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-weight: 500;
  font-size: 24px;
  color: #4DD540;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #4DD540;
  color: #FFF;
  border: 2px solid #4DD540;
  padding: 14px 38px 14px 40px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.6s ease;
}

.cta-button:hover {
  background-color: transparent;
  color: #4DD540;
  border-color: #4DD540;
}

/* Блок callback (страница заявки) */

body.callback {
  position: relative;
}

body.callback .footer-logo-icon {
  display: none;
}

.callback-section {
  padding: 60px 0;
  padding-top: 130px;
}

.callback-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
}

.callback-logo {
  flex: 1;
}

.callback-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

.callback-phone-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #4DD540;
  color: #FFF;
  border: 2px solid #4DD540;
  padding: 15px 52px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.6s ease;
  position: relative;
}

.callback-phone-button::before {
  content: '+7 (927) 791 00 03';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  white-space: nowrap;
  transition: font-size 0.3s ease, color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.callback-phone-button:hover {
  background-color: transparent;
  border-color: #4DD540;
  color: #4DD540;
}

.callback-phone-button:hover::before {
  font-size: 22px;
  color: #4DD540;
}

.callback-phone-button span {
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: medium;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.callback-phone-hint {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  font-size: 16px;
  color: #4DD540;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}

.callback-phone-button:hover .callback-phone-hint {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.callback-form-card {
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 0px 9.2px rgba(0, 0, 0, 0.08);
  max-width: 620px;
}

.callback-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1F2121;
  margin-bottom: 30px;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #A7A9A9;
  border-radius: 20px;
  font-size: 16px;
  color: #1F2121;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.callback-input::placeholder,
.callback-input {
  font-size: 20px;
}

.callback-input:hover {
  border-color: #4DD540;
}

.callback-input:focus {
  outline: none;
  border-color: #A7A9A9;
}

.callback-input::placeholder {
  color: #999;
}

.callback-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #4DD540;
  color: #FFF;
  border: 2px solid #4DD540;
  padding: 14px 32px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.6s ease;
  margin-top: 10px;
  text-decoration: none;
  width: auto;
  align-self: flex-start;
}

.callback-submit-button:hover {
  background-color: transparent;
  color: #4DD540;
  border-color: #4DD540;
}

.callback-bg-decoration {
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  max-width: 750px;
  z-index: 5;
  pointer-events: auto;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 1800px) {
  .callback-bg-decoration {
    max-width: none;
  }
}

@media (min-width: 1024px) and (max-width: 1580px) {
  .callback-bg-decoration {
    max-width: 500px;
  }
}

.callback-bg-decoration svg {
  width: auto;
  height: auto;
  display: block;
  transition: fill 0.6s ease;
}

.callback-path-white {
  fill: white;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.callback-path-gradient {
  fill: url(#callbackGradient);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.callback-bg-decoration:hover .callback-path-white {
  opacity: 0;
}

.callback-bg-decoration:hover .callback-path-gradient {
  opacity: 1;
}

.callback-bg-decoration img {
  width: auto;
  height: auto;
  display: block;
}


.callback-section {
  position: relative;
  z-index: 2;
}

body.callback {
  position: relative;
  z-index: 0;
}

/* Подвал (Footer) */
.footer {
  padding: 0px 0 80px;
  background-color: #F1F5F9;
}

/* Прозрачный фон подвала для страницы presentation */
body.presentation-page .footer {
  background-color: transparent;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  color: #1F2121;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #4DD540;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contacts-title {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: #1F2121;
}

.footer-contact-item {
  color: #1F2121;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: #4DD540;
}

.footer-social {
  max-width: 135px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-social-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F2121;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-social-icon svg path {
  transition: fill 0.3s ease;
}

.footer-social-vk:hover svg path {
  fill: #3AADFF;
}

.footer-social-telegram:hover svg path {
  fill: #3AADFF;
}

.footer-social-whatsapp:hover svg path {
  fill: #4DD540;
}

.footer-social-instagram:hover svg path {
  fill: url(#instagramGradient);
}

.footer-social-dzen {
  position: relative;
}

.footer-social-dzen .dzen-icon-default {
  display: block;
  transition: opacity 0.3s ease;
}

.footer-social-dzen .dzen-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-dzen:hover .dzen-icon-default {
  opacity: 0;
}

.footer-social-dzen:hover .dzen-icon-hover {
  opacity: 1;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-icon {
  width: 109px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

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



/* Блок "Знакомо?" с карточками проблем */
.problems-section {
  padding: 60px 0;
  padding-top: 100px;
}

.problems-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1F2121;
  margin-bottom: 40px;
  padding-left: 40px;
}

.problem-card {
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 0px 9.2px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}

.problem-card-pb25 {
  padding-bottom: 15px;
}

.problem-card-with-image {
  background-color: #FFF;
  background-size: 45%;
  background-repeat: no-repeat;
  background-position: bottom right;
  min-height: 337px;
}

.problem-card-gradient {
  background: linear-gradient(143.18deg, #4DD540 16.85%, #198E0E 80.52%);
  background-color: #4DD540;
  padding-bottom: 10px;
}

.problem-card-title {
  font-size: 24px;
  font-weight: 900;
  color: #4DD540;
  margin-bottom: 20px;
}

.problem-card-title-white {
  color: #FFF;
}

.problem-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-card-list li {
  font-size: 16px;
  color: #1F2121;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  margin-left: -20px;
}

/* Единый padding-left 40px для ПК версии */
@media (min-width: 992px) {
  .offer-card-title_pl40 {
    padding-left: 40px !important;
  }
  
  /* Размеры шрифтов для ПК версии */
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .services-title {
    font-size: 40px;
  }
  
  .problem-card-list li {
    font-size: 20px;
  }
  
  .callback-phone-button {
    font-size: 20px;
  }
}

.problem-card-list li:before {
  content: '';
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #4DD540;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.problem-card-list-item-multiline:before {
  top: 11px !important;
  transform: none !important;
}

.problem-card-list-item-with-chart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.problem-card-list-item-with-chart span {
  flex: 1;
}

.problem-card-list-item-with-chart:before {
  content: '';
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #4DD540;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.problem-card-list-item-with-chart-white:before {
  background-color: #FFF;
}

.problem-card-list-white li {
  color: #FFF;
}

.problem-card-list-white li:before {
  background-color: #FFF;
}

.problem-card-chart-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card-chart-wrapper svg {
  width: 145px;
  height: 145px;
}

.problem-card-chart-wrapper text {
  font-family: 'Roboto', sans-serif;
}

.problem-card-with-emotion {
  display: flex;
  align-items: center;
  padding: 6px 40px 0 56px;
  /* background: linear-gradient(188.45deg, #4DD540 38.01%, #198E0E 100.14%); */
  background: linear-gradient(181.83deg, #4DD540 29.25%, #198E0E 90.9%);
}

.problem-card-emotion-content {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.problem-card-emotion-image {
  flex-shrink: 0;
}

.problem-card-emotion-image img {
  width: auto;
  height: auto;
  max-width: 150px;
  display: block;
}

.problem-card-emotion-text {
  margin-top: -10px;
  flex: 1;
}

.problem-card-text-white {
  color: #FFF;
  font-size: 20px;
  margin: 0;
}


/* Блок "Что мы предлагаем" */
.offers-section {
  padding: 60px 0;
  padding-top: 30px;
  padding-bottom: 0;
  background-color: #F1F5F9;
}

.offers-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1F2121;
  margin-bottom: 40px;
  padding-left: 40px;
}

.offer-card {
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 0px 9.2px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.offer-card-left-1 {
  padding-bottom: 0;
}

.offer-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #4DD540;
  margin-bottom: 15px;
}

.offer-card-title-white {
  color: #FFF;
}

.offer-card-subtitle {
  font-size: 20px;
  color: #1F2121;
  margin-bottom: 20px;
}

.offer-card-phone {
  margin: 20px 0;
  text-align: center;
}

.offer-card-phone img {
  max-width: 100%;
  height: auto;
  margin-left: -30px;
}

.offer-card-search-bar {
  background-image: url('img/bg_button_1.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  font-weight: 500;
  font-size: 26px;
  margin-top: 20px;
  margin-bottom: 20px;
  min-height: 50px;
}

.offer-tech-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 30px;
}

.offer-tech-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.offer-tech-text-item {
  font-size: 20px;
  color: #1F2121;
  flex: 1;
}

.offer-tech-image-item {
  width: 180px;

  flex-shrink: 0;
  text-align: center;
}

.offer-tech-image-item img {
  height: auto;
}

.offer-card-savings {
  background-image: url('img/bg_1.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 28px 0;
}

.offer-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-features-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  padding-top: 0;
  box-shadow: 0px 0px 9.2px rgba(0, 0, 0, 0.08);
  border-radius: 20px 20px 0px 0px;
  background-color: #FFF;
  margin-bottom: 0px;
}

.offer-features-list li span {
  position: relative;
}

.offer-features-list li span:before {
  content: '';
  position: absolute;
  left: -20px;
  width: 7px;
  height: 7px;
  background-color: #4DD540;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.offer-features-list li:not(:first-child) {
  margin-top: -5px;
}

.offer-features-list li:last-child {
  border-radius: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.offer-features-list li span {
  font-size: 20px;
  color: #1F2121;
  flex: 1;
}

.info-icon-cont {
  width: 60px;
  height: 60px;
  margin-left: 15px;
  position: relative;
}

.info-icon-cont img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}

.info-icon-cont.info-icon-cont_1 img {
  margin-left: -10px;
}
.info-icon-cont.info-icon-cont_2 img {
  margin-left: -5px;
}
.info-icon-cont.info-icon-cont_3 img {
  margin-left: 0px;
}
.info-icon-cont.info-icon-cont_4 img {
  margin-left: -5px;
}
.info-icon-cont.info-icon-cont_5 img {
  margin-left: 0px;
  margin-top: 2px;
}

.offer-card-update {
  padding: 30px;
  padding-bottom: 155px;
  background-image: url('img/bg_2.png');
  background-size: 63%;
  background-position-x: calc(100% - 20px);
  background-position-y: bottom;
  background-repeat: no-repeat;
}

.offer-card-options {
  padding-top: 40px;
  padding-bottom: 56px;
  margin-bottom: 68px;
  background-image: url('img/options.png');
  background-size: auto;
  background-position-x: calc(100% - 20px);
  background-position-y: center;
  background-repeat: no-repeat;
}

.offer-card-options .offer-card-title {
  max-width: 380px;
}

.offer-big-logo {
  text-align: center;
}

.offer-big-logo img {
  max-width: 100%;
  height: auto;
  margin-left: 70px;
}

.offer-start-button-wrapper {
  border-radius: 20px;
  text-align: center;
  margin-top: 20px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
}

.offer-start-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background-color: #4DD540;
  color: #FFF;
  border: 2px solid #4DD540;
  padding: 15px 30px;
  padding-top: 16px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.6s ease;
  position: relative;
  z-index: 2;
}

.offer-start-button * {
  transition: opacity 0.3s ease;
}

.offer-start-button-expand {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 0;
  transition: width 0.3s ease;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  display: block;
  border-radius: 20px;
}

.offer-start-button-wrapper:hover .offer-start-button * {
  opacity: 0;
}

.offer-start-button-wrapper:hover .offer-start-button-expand {
  width: 100%;
}




/* Дополнительные стили */
.no_list_marker li:before {
  display: none;
}

@media (min-width: 576px) and (max-width: 1024px) {
  .service-card {
    overflow: hidden;
  }
}

@media (max-width: 992px) {
  /* Контейнер для всего сайта */
  .site-container {
    padding: 0 12px;
  }

  .main_page .site-container {
    padding: 0 12px;
  }

  .main_page .row {
    margin-right: -12px;
    margin-left: -12px;
  }

  /* Шапка */
  .header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo-icon {
    width: 78px;
    height: auto;
  }

  /* Мобильное меню */
  .mobile-menu-content {
    top: 100px;
    height: calc(100vh - 100px);
  }


  /* Навигация */
  .nav-left,
  .nav-right {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo {
    order: 1;
    justify-self: start;
  }

  .btn-mobile-header {
    order: 2;
    display: inline-flex !important;
    justify-self: center;
    margin: 0;
    font-size: 16px;
    padding: 14px 20px;
    gap: 8px;
  }

  .header .btn-primary-custom.btn-mobile-header {
    padding: 7px 16px;
    font-size: 14px;
  }

  .mobile-menu-toggle {
    order: 3;
    justify-self: end;
  }
  
  .header-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  /* Скрываем бургер когда меню открыто */
  body.menu-open .mobile-menu-toggle-burger {
    display: none;
  }
  
  body.menu-open .mobile-menu-toggle-close {
    display: block !important;
  }

  /* Hero Section */
  .hero-section {
    padding: 40px 0;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .hero-card-left {
    margin-top: 0;
  }

  .hero-row {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  /* Изменяем порядок: изображение первым */
  .hero-image-col {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 0;
    margin-bottom: 14px;
    order: -1;
  }

  .col-lg-12 {
    order: 1;
  }

  .hero-card {
    padding: 30px;
  }

  .hero-card-left {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    margin-right: 10px;
    width: auto;
    padding-right: 25px;
  }

  .hero-content-wrapper {
    max-width: 100%;
  }

  /* Стили для карточки с изображением */
  .hero-card-right {
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
  }

  .hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-title {
    font-size: 19px;
    margin-bottom: 17px;
  }

  .hero-subtitle {
    font-size: 13px;
    font-weight: 500;
  }

  /* Блок услуг */
  .services-section {
    padding: 0;
    padding-top: 10px;
  }

  .service-card {
    height: 398px;
    position: relative;
    left: -22px;
    margin-right: -12px;
    margin-left: -12px;
  }

  .service-card.service-card-6 {
    left: auto;
    right: -22px;
  }

  .services-title {
    font-size: 32px;
    margin-bottom: 30px;
    padding-left: 30px;
  }
  
  .service-card-title {
    font-size: 18px;
    padding: 15px;
    margin-left: 10px;
  }

  .service-card.service-card-6 .service-card-title {
    margin-left: 0px;
    margin-right: 10px;
  }

  .service-card img {
    max-width: 70vw;
  }

  img.service-img-1 {
    max-width: 105vw;
    top: -10px;
  }
  .service-card.service-card-1 {
    height: 146vw;
    max-height: 580px;
  }
  .service-card.service-card h3 {
    margin-bottom: 10px;
  }

  img.service-img-2 {
    max-width: 95vw;
  }
  .service-card.service-card-2 {
    height: 120vw;
    max-height: 580px;
  }

  img.service-img-3 {
    max-width: 80vw;
  }
  .service-card.service-card-3 {
    height: 122vw;
    max-height: 580px;
  }

  img.service-img-4 {
    max-width: 80vw;
  }
  .service-card.service-card-4 {
    height: 122vw;
    max-height: 580px;
  }

  img.service-img-5 {
    max-width: 78vw;
  }
  .service-card.service-card-5 {
    height: 128vw;
    max-height: 580px;
  }

  img.service-img-6 {
    max-width: 107vw;
    right: auto;
    left: -43px;
  }
  .service-card.service-card-6 {
    height: 128vw;
    max-height: 580px;
  }

  .service-card.service-card-6  h3 {
    margin-bottom: 0;
  }


  /* Все карточки кроме последней - прижать влево, убрать скругление слева */
  .services-section .col-md-4:not(:last-child) .service-card {
    margin-right: auto;
    margin-right: 12px;
    margin-left: -12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  /* Последняя карточка - прижать вправо, убрать скругление справа */
  .services-section .col-md-4:last-child .service-card {
    margin-left: auto;
    margin-right: -12px;
    margin-left: 12px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .services-more-btn-wrapper {
    margin-top: 12px;
    margin-left: 18px;
    text-align: left;
  }

  .services-more-btn {
    padding: 10px 18px;
    border-radius: 18px;
    font-size: 15px;
  }

  /* CTA блок */
  .cta-section {
    padding: 40px 0;
    padding-top: 15px;
    padding-bottom: 21px;
  }

  .cta-card {
    padding: 30px;
  }

  .cta-title {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .cta-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-button {
    font-size: 14px;
    padding: 7px 16px;
    border-radius: 16px;
  }

  /* Callback */
  .callback-bg-decoration {
    display: none;
  }

  .callback-section {
    padding: 40px 0;
    padding-bottom: 20px;
  }

  .callback-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .callback-logo {
    width: 100%;
  }

  .callback-phone-button {
    width: auto;
    font-size: 16px;
    line-height: 100%;
    padding: 15px 35px;
    margin: 0 auto;
  }

  /* Отключаем hover-анимации на мобильных */
  .callback-phone-button,
  .callback-phone-button::before,
  .callback-phone-button span,
  .callback-phone-hint {
    transition: none !important;
  }

  .callback-phone-button:hover {
    background-color: #4DD540;
    border-color: #4DD540;
    color: #FFF;
  }

  .callback-phone-button:hover::before {
    font-size: 20px;
    color: #FFF;
  }

  .callback-phone-button:hover .callback-phone-hint {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
  }

  .callback-form-card {
    max-width: 100%;
    padding: 30px 20px;
  }

  .callback-form-title {
    padding-left: 20px;
    margin-bottom: 17px;
    font-size: 20px;
  }

  .callback-input::placeholder, .callback-input {
    font-size: 16px;
  }

  .callback-submit-button {
    padding: 10px 28px;
  }

  /* Footer */
  .footer {
    padding: 10px 0 30px;
    padding-left: 30px;
    position: relative;
  }

  .footer .row {
    position: relative;
  }

  /* Логотип абсолютно позиционирован справа */
  .footer .col-lg-5 {
    position: absolute;
    left: 55%;
    right: auto;
    top: 0;
    width: auto;
  }

  .footer-logo-wrapper {
    justify-content: flex-end;
    margin-top: 0px;
  }

  .footer-social {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
  }

  .footer .col-lg-3.col-md-6.order-md-2.order-lg-2.order-3 {
    margin-top: 15px !important;
  }

  .footer-logo {
    width: 99px;
    height: auto;
  }

  /* Скрываем анимации expand для мобильной версии */
  .services-more-btn-expand {
    display: none !important;
  }

  .services-more-btn-wrapper:hover .services-more-btn * {
    opacity: 1 !important;
  }

  .services-more-btn-wrapper:hover .services-more-btn-expand {
    width: 0 !important;
  }

  .offer-start-button-expand {
    display: none !important;
  }

  .offer-start-button-wrapper:hover .offer-start-button * {
    opacity: 1 !important;
  }

  .offer-start-button-wrapper:hover .offer-start-button-expand {
    width: 0 !important;
  }

  /* Блок проблем */
  .problems-section {
    padding: 40px 0;
    padding-top: 25px;
    padding-bottom: 0;
  }

  .problem-card {
    padding: 30px;
  }

  .problem-card-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .problem-card-list-item-with-chart {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .problem-card-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .problem-card-chart-wrapper svg {
    width: 120px;
    height: 120px;
  }

  .problem-card-chart-wrapper text {
    font-size: 14px;
  }

  .problem-card-chart-wrapper text:first-of-type {
    font-size: 18px;
  }

  .problem-card-with-emotion {
    padding: 0 30px;
  }

  .problem-card-emotion-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .problem-card-emotion-image img {
    max-width: 120px;
  }

  .problem-card-text-white {
    font-size: 14px;
  }

  .problems-section-title {
    font-size: 28px;
    margin-bottom: 25px;
    padding-left: 32px;
  }

  /* Блок "Что мы предлагаем" */
  .offers-section {
    padding: 40px 0;
    padding-top: 25px;
    padding-bottom: 10px;
  }

  .offers-section-title {
    font-size: 28px;
    margin-bottom: 20px;
    padding-left: 0;
    text-align: center;
  }

  .offer-card {
    padding: 30px;
  }

  .offer-card-left-1 {
    padding-bottom: 0;
  }

  .offer-card-title {
    font-size: 20px;
  }

  .offer-card-subtitle {
    font-size: 14px;
  }

  .offer-tech-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .offer-tech-image-item {
    width: 100%;
  }

  .offer-features-list li span {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 30px;
    padding-left: 50px;
  }
  
  .offer-features-list li span:before {
    left: 30px;
  }

  .offer-features-list li img {
    margin-left: 0;
  }

  .offer-start-button {
    font-size: 16px;
    padding: 12px 24px;
    padding-left: 80px;
  }

  .offer-start-button-wrapper {
    position: relative;
    left: -30px;
  }

  .offers-section + .cta-section .cta-title {
    max-width: 230px;
    margin-right: auto;
    margin-left: auto;
  }

  .callback-submit-button {
    margin-top: -5px;
  }

  body.presentation-page .presentation-hero-section .row {
    row-gap: 5px !important;
  }

  body.presentation-page .presentation-hero-section .site-container {
    padding-left: 5px;
    padding-right: 5px;
  }

  body.presentation-page .presentation-hero-section .site-container img {
    border-radius: 20px;
  }

  body.presentation-page .presentation-hero-section .site-container .text-end {
    margin-top: 5px;
  }

  body.presentation-page .hero-section {
    padding: 35px 0;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  body.callback .footer-logo-icon {
    display: flex;
  }
}



section.d-none {
  display: none !important;
}