@charset "UTF-8";
/* ===================================
   MAIN SCSS FILE
   Medical Project Styles
   =================================== */
/* ===================================
   BASE STYLES
   =================================== */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a {
  color: black;
}

a, a:link, a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* ===================================
   MANROPE FONT FAMILY
   =================================== */
/* Manrope Thin (200) */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web font/manrope-thin.woff2") format("woff2"), url("../fonts/manrope/web font/manrope-thin.woff") format("woff"), url("../fonts/manrope/web font/manrope-thin.otf") format("truetype");
  font-style: normal;
  font-weight: 200;
  font-display: swap; /* PageSpeed optimization */
}
/* Manrope Light (300) */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web font/manrope-light.woff2") format("woff2"), url("../fonts/manrope/web font/manrope-light.woff") format("woff"), url("../fonts/manrope/web font/manrope-light.otf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
/* Manrope Regular (400) */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web font/manrope-regular.woff2") format("woff2"), url("../fonts/manrope/web font/manrope-regular.woff") format("woff"), url("../fonts/manrope/web font/manrope-regular.otf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
/* Manrope Medium (500) */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web font/manrope-medium.woff2") format("woff2"), url("../fonts/manrope/web font/manrope-medium.woff") format("woff"), url("../fonts/manrope/web font/manrope-medium.otf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
/* Manrope SemiBold (600) */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web font/manrope-semibold.woff2") format("woff2"), url("../fonts/manrope/web font/manrope-semibold.woff") format("woff"), url("../fonts/manrope/web font/manrope-semibold.otf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
/* Manrope Bold (700) */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web font/manrope-bold.woff2") format("woff2"), url("../fonts/manrope/web font/manrope-bold.woff") format("woff"), url("../fonts/manrope/web font/manrope-bold.otf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
/* Manrope ExtraBold (800) */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/web font/manrope-extrabold.woff2") format("woff2"), url("../fonts/manrope/web font/manrope-extrabold.woff") format("woff"), url("../fonts/manrope/web font/manrope-extrabold.otf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
/* ===================================
   MANROPE BEM BLOCKS
   =================================== */
/* Manrope Base Block */
.manrope-block {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Elements */
  /* Weight Modifiers */
  /* Size Modifiers */
}
.manrope-block__title {
  font-weight: 700;
  line-height: 1.2;
}
.manrope-block__subtitle {
  font-weight: 600;
  line-height: 1.3;
}
.manrope-block__text {
  font-weight: 400;
  line-height: 1.6;
}
.manrope-block__caption {
  font-weight: 300;
  line-height: 1.4;
}
.manrope-block--thin {
  font-weight: 200;
}
.manrope-block--light {
  font-weight: 300;
}
.manrope-block--regular {
  font-weight: 400;
}
.manrope-block--medium {
  font-weight: 500;
}
.manrope-block--semibold {
  font-weight: 600;
}
.manrope-block--bold {
  font-weight: 700;
}
.manrope-block--extrabold {
  font-weight: 800;
}
.manrope-block--small {
  font-size: 0.875rem; /* 14px */
}
.manrope-block--normal {
  font-size: 1rem; /* 16px */
}
.manrope-block--large {
  font-size: 1.125rem; /* 18px */
}
.manrope-block--xlarge {
  font-size: 1.25rem; /* 20px */
}
.manrope-block--xxlarge {
  font-size: 1.5rem; /* 24px */
}

/* Utility Classes for Quick Usage */
.font-manrope {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.font-manrope-thin {
  font-family: "Manrope", sans-serif;
  font-weight: 200;
}

.font-manrope-light {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}

.font-manrope-regular {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.font-manrope-medium {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.font-manrope-semibold {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.font-manrope-bold {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.font-manrope-extrabold {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

/* ===================================
   BASE COMPONENTS & UTILITIES
   =================================== */
/* Body */
body {
  margin: 0 auto;
  padding-top: 137px; /* Height of header to prevent content overlap */
}

/* Container */
.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Visually Hidden (for screen readers) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  /* Primary Button */
  /* Secondary Button */
}
.btn:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.btn--primary {
  background-color: #4FB279;
  color: white;
}
.btn--primary:hover {
  background-color: #2B9F5C;
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--secondary {
  background-color: #F7F7F7;
  color: #505050;
}
.btn--secondary:hover {
  background-color: #eeeeee;
}

/* ========================================
   УНИВЕРСАЛЬНЫЕ КОМПОНЕНТЫ
   Universal Components
   ======================================== */
/* ========================================
   КНОПКА С ЭФФЕКТАМИ - Button Component
   ======================================== */
a.btn-effect,
button.btn-effect,
.btn-effect {
  /* Базовые стили с максимальной специфичностью */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  height: 40px;
  min-width: 216px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
  /* Принудительное переопределение возможных конфликтующих стилей */
  background-image: none;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-size: initial;
  /* Основной стиль - зеленая кнопка */
  /* Вторичный стиль - прозрачная кнопка с рамкой */
  /* Белая кнопка для темных фонов */
  /* Размеры кнопок */
  /* Адаптивность */
}
.header-callbackbutton {
  border: none!important;
}
a.btn-effect--primary,
button.btn-effect--primary,
.btn-effect--primary {
  background: #4FB279;
  color: #FFFFFF;
  border: 1px solid #4FB279;
}
a.btn-effect--primary:hover,
button.btn-effect--primary:hover,
.btn-effect--primary:hover {
  background: #45a068;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 178, 121, 0.3);
}
a.btn-effect--primary:active,
button.btn-effect--primary:active,
.btn-effect--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
a.btn-effect--primary:focus-visible,
button.btn-effect--primary:focus-visible,
.btn-effect--primary:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
a.btn-effect--secondary,
button.btn-effect--secondary,
.btn-effect--secondary {
  background: transparent;
  color: #4FB279;
  border: 1px solid #4FB279;
  box-shadow: 0 2px 4px rgba(79, 178, 121, 0.1);
}
a.btn-effect--secondary:hover,
button.btn-effect--secondary:hover,
.btn-effect--secondary:hover {
  background: #4FB279;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 178, 121, 0.3);
}
a.btn-effect--secondary:active,
button.btn-effect--secondary:active,
.btn-effect--secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(79, 178, 121, 0.1);
}
a.btn-effect--secondary:focus-visible,
button.btn-effect--secondary:focus-visible,
.btn-effect--secondary:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
a.btn-effect--white,
button.btn-effect--white,
.btn-effect--white {
  background: #FFFFFF;
  color: #4FB279;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
a.btn-effect--white:hover,
button.btn-effect--white:hover,
.btn-effect--white:hover {
  background: #F5F5F5;
  color: #45a068;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}
a.btn-effect--white:active,
button.btn-effect--white:active,
.btn-effect--white:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
a.btn-effect--white:focus-visible,
button.btn-effect--white:focus-visible,
.btn-effect--white:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
a.btn-effect--small,
button.btn-effect--small,
.btn-effect--small {
  padding: 12px 20px;
  font-size: 11px;
  height: 32px;
  min-width: 160px;
  height: -moz-fit-content;
  height: fit-content;
}
a.btn-effect--medium,
button.btn-effect--medium,
.btn-effect--medium {
  padding: 10px 20px;
  font-size: 14px;
  height: 40px;
  min-width: 216px;
}
a.btn-effect--large,
button.btn-effect--large,
.btn-effect--large {
  padding: 12px 24px;
  font-size: 14px;
  height: 48px;
  min-width: 240px;
}
@media (max-width: 600px) {
  a.btn-effect,
  button.btn-effect,
  .btn-effect {
    padding: 12px 16px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
    min-width: auto;
  }
}

/* Иконка в кнопке */
.btn-effect .btn-effect__icon,
.btn-effect__icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: translateX(0);
  /* Вращающаяся иконка */
  /* Масштабирующаяся иконка */
}
.btn-effect:hover .btn-effect .btn-effect__icon,
.btn-effect:hover .btn-effect__icon {
  transform: translateX(3px);
}
a.btn-effect:hover .btn-effect .btn-effect__icon, button.btn-effect:hover .btn-effect .btn-effect__icon,
a.btn-effect:hover .btn-effect__icon,
button.btn-effect:hover .btn-effect__icon {
  transform: translateX(3px);
}
.btn-effect .btn-effect__icon svg,
.btn-effect__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.btn-effect:hover .btn-effect .btn-effect__icon--rotate,
.btn-effect:hover .btn-effect__icon--rotate {
  transform: rotate(90deg);
}
.btn-effect:hover .btn-effect .btn-effect__icon--scale,
.btn-effect:hover .btn-effect__icon--scale {
  transform: scale(1.1);
}

/* Текст в кнопке */
.btn-effect__text {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Дополнительные специфичные селекторы для гарантии работы */
a.btn-effect.btn-effect--primary:hover,
a.btn-effect.btn-effect--secondary:hover,
button.btn-effect.btn-effect--primary:hover,
button.btn-effect.btn-effect--secondary:hover {
  transform: translateY(-2px);
}

a.btn-effect.btn-effect--primary:active,
a.btn-effect.btn-effect--secondary:active,
button.btn-effect.btn-effect--primary:active,
button.btn-effect.btn-effect--secondary:active {
  transform: translateY(0);
}

/* Высокая контрастность */
@media (prefers-contrast: high) {
  .btn-effect {
    border-width: 3px;
  }
  .btn-effect--secondary {
    border-width: 3px;
  }
}
/* Темная тема */
@media (prefers-color-scheme: dark) {
  .btn-effect--white {
    background: #2a2a2a;
    color: #4FB279;
  }
  .btn-effect--white:hover {
    background: #333333;
  }
}
.wp-block-group {
  font-family: "Manrope", sans-serif !important;
}

.modal-appointment {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  font-family: "Manrope", sans-serif;
}

.modal-appointment .modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal-appointment .modal__content {
  position: relative;
  background: white;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-appointment .modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 20px;
  margin-right: 20px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 20px;
}

.modal-appointment .modal__title {
  margin: 0;
  color: #1F2937;
}

.modal-appointment .modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #000;
  transition: color 0.2s;
}

.modal-appointment .modal__close:hover {
  background: none;
}

.modal-appointment .modal__body {
  padding: 0 20px 20px;
}

.modal-appointment .modal__description {
  margin-bottom: 30px;
  color: #6B7280;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

.modal-appointment .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.modal-appointment .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.modal-appointment .form-group {
  margin-bottom: 12px;
}

.modal-appointment .form-label {
  display: block;
  margin-bottom: 8px;
  color: #1C1C1C;
  font-weight: 400;
}

.modal-appointment .form-input, .modal-appointment .form-textarea, .modal-appointment .form-select {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
  background: white;
  color: #505050;
  placeholder: #505050;
}

.modal-appointment .form-input:focus, .modal-appointment .form-textarea:focus, .modal-appointment .form-select:focus {
  outline: none;
  border-color: #4FB279;
}

.modal-appointment .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.appointment__form .appointment__submit {
  height: 46px !important;
  transition: background-color 0.3s ease, cursor 0.3s ease;
}

.appointment__form .appointment__submit:disabled {
  background-color: #9E9E9E !important;
  cursor: not-allowed !important;
  opacity: 1;
}

.appointment__form .appointment__submit:disabled:hover {
  background-color: #9E9E9E !important;
  transform: none;
}

@media (max-width: 768px) {
  .modal-appointment .form-row {
    flex-direction: column;
    gap: 0;
  }
  .modal-appointment .form-row .form-group {
    margin-bottom: 10px;
  }
  .modal-appointment .form-row {
    margin-bottom: 10px;
  }
}
.modal-appointment .form-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 14px;
}

.modal-appointment .form-checkbox input {
  margin-right: 8px;
  margin-top: 2px;
}

.modal-appointment .form-checkbox__mark {
  width: 15px;
  height: 15px;
  border: 1px solid #343330;
  border-radius: 0;
  margin-right: 0;
  margin-top: 2px;
  flex-shrink: 0;
}

.appointment__form .form-checkbox__mark::after {
  content: "";
  width: 8px;
  height: 6px;
  border: 1px solid #343330;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-bottom: 3px;
}

.appointment__form input[type=checkbox]:checked + .form-checkbox__mark {
  background: none;
  border-color: #343330;
}

.modal-appointment .form-checkbox__text {
  max-width: 300px;
  font-size: 12px;
  line-height: 1.1;
}

.modal-appointment .form-checkbox__text a {
  color: #4FB279;
  text-decoration: underline;
}

.modal-appointment .form-submit {
  width: 100%;
  margin-top: 16px;
}

/* Стили для footer_custom */
.footer_custom {
  /* Manrope классы */
  /* Футер стили */
  /* Адаптивные стили */
  /* Очень маленькие экраны */
}
.footer_custom .manrope-block {
  font-family: "Manrope", sans-serif;
}
.footer_custom .manrope-block--regular {
  font-weight: 400;
}
.footer_custom .manrope-block--medium {
  font-weight: 500;
}
.footer_custom .manrope-block--bold {
  font-weight: 700;
}
.footer_custom .footer {
  background-color: #F7F7F7;
  padding: 60px 0 0;
}
.footer_custom .footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 41px;
}
.footer_custom .footer__navigation {
  width: -moz-fit-content;
  width: fit-content;
  /* Основные стили для навигации */
}
.footer_custom .footer__contacts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer_custom .footer__services {
  /* Стили для секции услуг */
}
.footer_custom .footer__nav-columns {
  display: grid;
  grid-template-columns: repeat(2, 110px);
  -moz-column-gap: 65px;
       column-gap: 65px;
  row-gap: 20px;
  margin-top: 20px;
}
.footer_custom .footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_custom .footer__title {
  font-size: 18px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 20px 0;
}
.footer_custom .footer__link {
  font-size: 14px;
  line-height: 1.43;
  color: #1C1C1C;
  text-decoration: none;
  opacity: 0.75;
  transition: all 0.3s ease;
}
.footer_custom .footer__link:hover {
  opacity: 1;
  color: #4FB279;
}
.footer_custom .footer__link:focus {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  border-radius: 4px;
}
.footer_custom .footer__text {
  font-size: 14px;
  line-height: 1.43;
  color: #1C1C1C;
  margin: 0;
  opacity: 0.75;
}
.footer_custom .footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.footer_custom .footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_custom .footer__address .footer__text,
.footer_custom .footer__schedule .footer__text {
  margin-top: 20px;
}
.footer_custom .footer__divider {
  width: 100%;
  height: 1px;
  background-color: #1C1C1C;
  opacity: 0.1;
  margin-bottom: 41px;
}
.footer_custom .footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding-bottom: 38px;
}
.footer_custom .footer__logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer_custom .footer__logo-image {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer_custom .footer__logo-text {
  font-size: 16px;
  line-height: 1.37;
  color: #505050;
}
.footer_custom .footer__copyright-text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  text-align: center;
  margin: 0;
}
.footer_custom .footer__privacy-link {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer_custom .footer__privacy-link:hover {
  color: #4FB279;
}
.footer_custom .footer__privacy-link:focus {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  border-radius: 4px;
}
.footer_custom .footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer_custom .footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid rgba(80, 80, 80, 0.3);
  padding: 10px;
}
.footer_custom .footer__social-link img {
  -o-object-fit: contain;
     object-fit: contain;
}
.footer_custom .footer__social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.footer_custom .footer__social-link:focus {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.footer_custom .footer__social-link:active {
  transform: translateY(0);
}
.footer_custom .footer__social-icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer_custom .footer__social-mobile {
  display: none;
}
.footer_custom .footer__privacy-mobile {
  display: none;
}
@media (max-width: 1200px) {
  .footer_custom .container {
    padding: 0 40px;
  }
  .footer_custom .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer_custom .footer__contacts-wrapper {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .footer_custom .footer__nav-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer_custom .footer__navigation {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .footer_custom .footer__nav-columns {
    gap: 60px;
  }
  .footer_custom .footer__services {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .footer_custom .footer__info {
    gap: 40px;
  }
  .footer_custom .footer__bottom {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer_custom .footer__copyright {
    order: 4;
    width: 100%;
    text-align: center;
  }
  .footer_custom .footer__copyright-text {
    text-align: center;
  }
  .footer_custom .footer__privacy {
    order: 3;
  }
  .footer_custom .footer__social {
    order: 1;
  }
}
@media (max-width: 768px) {
  .footer_custom .container {
    padding: 0 20px;
  }
  .footer_custom .footer {
    padding: 40px 0 0;
  }
  .footer_custom .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer_custom .footer__navigation {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .footer_custom .footer__nav-columns {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  .footer_custom .footer__nav-column {
    gap: 15px;
  }
  .footer_custom .footer__title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footer_custom .footer__contact-info {
    margin-top: 20px;
    gap: 15px;
  }
  .footer_custom .footer__info {
    order: 2;
    gap: 30px;
  }
  .footer_custom .footer__contacts {
    order: 3;
  }
  .footer_custom .footer__address .footer__text,
  .footer_custom .footer__schedule .footer__text {
    margin-top: 20px;
  }
  .footer_custom .footer__divider {
    margin-bottom: 30px;
  }
  .footer_custom .footer__bottom {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
  .footer_custom .footer__logo {
    margin: 0 auto;
  }
  .footer_custom .footer__copyright {
    order: 2;
  }
  .footer_custom .footer__privacy {
    order: 3;
  }
  .footer_custom .footer__social {
    order: 4;
  }
}
@media (max-width: 580px) {
  .footer_custom .footer__nav-columns {
    gap: 15px;
  }
  .footer_custom .footer__nav-columns {
    grid-template-columns: 1fr;
  }
  .footer_custom .footer__social-mobile {
    display: flex;
  }
  .footer_custom .footer__social-desktop {
    display: none;
  }
  .footer_custom .footer__privacy-mobile {
    display: block;
  }
  .footer_custom .footer__privacy-desktop {
    display: none;
  }
}
@media (max-width: 320px) {
  .footer_custom .footer {
    padding: 30px 0 0;
  }
  .footer_custom .footer__content {
    gap: 25px;
    margin-bottom: 25px;
  }
  .footer_custom .footer__nav-columns {
    gap: 15px;
    margin-top: 15px;
  }
  .footer_custom .footer__nav-column {
    gap: 12px;
  }
  .footer_custom .footer__title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .footer_custom .footer__link,
  .footer_custom .footer__text {
    font-size: 13px;
  }
  .footer_custom .footer__contact-info {
    gap: 12px;
    margin-top: 15px;
  }
  .footer_custom .footer__info {
    gap: 25px;
  }
  .footer_custom .footer__address .footer__text,
  .footer_custom .footer__schedule .footer__text {
    margin-top: 15px;
  }
  .footer_custom .footer__divider {
    margin-bottom: 25px;
  }
  .footer_custom .footer__bottom {
    gap: 15px;
    padding-bottom: 25px;
  }
  .footer_custom .footer__logo {
    gap: 10px;
  }
  .footer_custom .footer__logo-image {
    width: 40px;
    height: 40px;
  }
  .footer_custom .footer__logo-text,
  .footer_custom .footer__copyright-text,
  .footer_custom .footer__privacy-link {
    font-size: 14px;
  }
  .footer_custom .footer__social {
    gap: 15px;
  }
  .footer_custom .footer__social-link,
  .footer_custom .footer__social-icon {
    width: 40px;
    height: 40px;
  }
}

/* ===============================
CALLBACK MODAL STYLES
=============================== */
.callback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-family: "Manrope", sans-serif;
}

.callback-modal.callback-modal--active {
  opacity: 1;
  visibility: visible;
}

.callback-modal.callback-modal--active .callback-modal__content {
  transform: translate(-50%, -50%) scale(1);
}

.callback-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.callback-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 361px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

@media (max-width: 400px) {
  .callback-modal__content {
    width: calc(100% - 30px);
    max-width: 340px;
  }
}
.callback-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #505050;
  transition: color 0.2s ease;
}

.callback-modal__close:hover {
  color: #1C1C1C;
}

.callback-modal__close:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  border-radius: 2px;
}

.callback-modal__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 12px 0;
  padding-right: 30px;
}

.callback-modal__description {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  margin: 0 0 37px 0;
}

.callback-modal__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.callback-modal__field {
  position: relative;
}

.callback-modal__input,
.callback-modal__textarea {
  width: 100%;
  border: 1px solid rgba(84, 85, 86, 0.09);
  border-radius: 5px;
  background: #FFFFFF;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #1C1C1C;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.callback-modal__input::-moz-placeholder, .callback-modal__textarea::-moz-placeholder {
  color: #545556;
  font-weight: 300;
}

.callback-modal__input::placeholder,
.callback-modal__textarea::placeholder {
  color: #545556;
  font-weight: 300;
}

.callback-modal__input:focus,
.callback-modal__textarea:focus {
  outline: none;
  border-color: #4FB279;
}

.callback-modal__input:focus-visible,
.callback-modal__textarea:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}

.callback-modal__input {
  height: 36px;
  padding: 0 10px;
}

.callback-modal__textarea {
  min-height: 86px;
  padding: 11px 10px;
  resize: vertical;
  max-height: 120px;
}

.callback-modal__submit {
  width: 100%;
  height: 40px;
  background: #4FB279;
  border: none;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: 20px;
}

.callback-modal__submit:hover {
  background: #45a06b;
  transform: translateY(-1px);
}

.callback-modal__submit:active {
  transform: translateY(0);
}

.callback-modal__submit:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}

.callback-modal__submit:disabled {
  background: #9E9E9E !important;
  cursor: not-allowed;
  transform: none;
}

.callback-modal__submit:disabled:hover {
  background: #9E9E9E !important;
  transform: none;
}

.callback-modal__submit span {
  display: block;
}

/* Checkbox styles for callback modal */
.callback-modal__checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 8px;
  margin-top: 10px;
}

.callback-modal__checkbox input[type=checkbox] {
  display: none;
}

.callback-modal__checkbox-mark {
  width: 16px;
  height: 16px;
  border: 1px solid #545556;
  border-radius: 2px;
  background: #FFFFFF;
  flex-shrink: 0;
  position: relative;
  margin-top: 1px;
  transition: all 0.2s ease;
}

.callback-modal__checkbox-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 6px;
  height: 10px;
  border: 2px solid #4FB279;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.callback-modal__checkbox input[type=checkbox]:checked + .callback-modal__checkbox-mark {
  background: #FFFFFF;
  border-color: #4FB279;
}

.callback-modal__checkbox input[type=checkbox]:checked + .callback-modal__checkbox-mark::after {
  opacity: 1;
}

.callback-modal__checkbox-text {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.3;
  color: #505050;
  flex: 1;
}

.callback-modal__checkbox-text a {
  color: #4FB279;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.callback-modal__checkbox-text a:hover {
  color: #45a06b;
}

.callback-modal__checkbox:hover .callback-modal__checkbox-mark {
  border-color: #4FB279;
}

/* Prevent body scroll when modal is open */
body.callback-modal-open {
  overflow: hidden;
}

/* ===============================
TELEGRAM MODAL STYLES
=============================== */
.telegram-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  font-family: "Manrope", sans-serif;
}

.telegram-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.telegram-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  width: 460px;
  min-height: 234px;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 520px) {
  .telegram-modal__content {
    width: calc(100% - 40px);
    max-width: 420px;
    padding: 20px;
  }
}
.telegram-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #343330;
  transition: color 0.2s ease;
}

.telegram-modal__close:hover {
  color: #1C1C1C;
}

.telegram-modal__close:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  border-radius: 2px;
}

.telegram-modal__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 16px 0;
  text-align: center;
}

.telegram-modal__description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  margin: 0 0 20px 0;
  text-align: center;
  max-width: 344px;
  margin-left: auto;
  margin-right: auto;
}

.telegram-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 46px;
  background: #4FB279;
  border: none;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
}

.telegram-modal__button:hover {
  background: #45a06b;
  transform: translateY(-1px);
}

.telegram-modal__button:active {
  transform: translateY(0);
}

.telegram-modal__button:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}

/* ===============================
NOTIFICATION STYLES
=============================== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  width: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
}

.notification--show {
  opacity: 1;
  transform: translateX(0);
}

.notification__content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #4FB279;
}

.notification--success .notification__content {
  border-left-color: #00a32a;
  background: #f8fff8;
}

.notification--error .notification__content {
  border-left-color: #d63638;
  background: #fff8f8;
}

.notification--info .notification__content {
  border-left-color: #0073aa;
  background: #f8f9ff;
}

.notification__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.notification__message {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
}

.notification__close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.notification__close:hover {
  background: #f0f0f0;
  color: #333;
}

@media (max-width: 480px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  .notification__content {
    padding: 14px 16px;
  }
  .notification__message {
    font-size: 13px;
  }
}
/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/* ===================================
   REPEAT COMPONENTS
   Header, Footer & Adaptive
   =================================== */
/* ===================================
   HEADER STYLES
   =================================== */
/* CSS Variables for Header Heights */
:root {
  --header-height: 120px;
  --header-scrolled-height: 80px;
}

.header {
  background: white;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  /* Top Section */
  /* Logo Section */
  /* Search Form */
  /* Contacts */
  /* Actions */
  /* Mobile Menu Button */
  /* Mobile Menu Button Lines */
  /* Divider */
  /* Navigation */
  /* Navigation Indicators */
}
.header__wrapper {
  position: relative;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  padding-bottom: 20px;
  transition: all 0.3s ease;
}
.header__logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__logo-icon {
  flex-shrink: 0;
}
.header__logo-svg {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.header__company-name {
  color: #505050;
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
}
.header__search {
  flex: 1;
  max-width: 435px;
  margin: 0 20px;
  transition: all 0.3s ease;
}
.header__contacts {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.header__callback-icon {
  width: 40px;
  height: 40px;
  background: #F7F7F7;
  border: none;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header__callback-icon:hover {
  background: #4FB279;
}
.header__callback-icon:hover svg path {
  fill: #fff;
}
.header__callback-icon:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.header__callback-btn {
  white-space: nowrap;
}
.header__mobile-menu {
  display: flex;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  border-radius: 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  /* Animation properties */
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__mobile-menu:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.header__mobile-menu:hover {
  background-color: rgba(79, 178, 121, 0.1);
}
.header__mobile-menu-line {
  width: 24px;
  height: 2px;
  background: #1C1C1C;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-btn--active .header__mobile-menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn--active .header__mobile-menu-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.mobile-menu-btn--active .header__mobile-menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header__divider {
  height: 1px;
  background: #F5F5F5;
  margin: 0;
}
.header__nav {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav-indicators {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}
.header__nav-indicator {
  position: absolute;
  width: 60px;
  height: 2px;
  background: #4FB279;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__nav-indicator--1 {
  left: 80px;
}
.header__nav-indicator--2 {
  left: 169px;
}
.header__nav-indicator--3 {
  left: 250px;
}
.header__nav-indicator--4 {
  left: 328px;
}
.header__nav-indicator--5 {
  left: 413px;
}
.header__nav-indicator--6 {
  left: 502px;
}
.header__nav-indicator--7 {
  left: 1357px;
}
.header__nav-indicator--8 {
  left: 1456px;
  width: 64px;
}

/* Search Form Component */
.search-form__wrapper {
  position: relative;
  background: #F7F7F7;
  border-radius: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  transition: all 0.3s ease;
}
.search-form__wrapper:focus-within {
  background: #ffffff;
  box-shadow: 0 0 0 2px #4fb279;
}
.search-form__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 14px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 15px;
  color: #505050;
  font-weight: 400;
}
.search-form__input::-moz-placeholder {
  color: #9E9E9E;
  font-weight: 400;
}
.search-form__input::placeholder {
  color: #9E9E9E;
  font-weight: 400;
}
.search-form__input:focus {
  outline: none;
}
.search-form__button {
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.search-form__button:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  border-radius: 2px;
}
.search-form__icon {
  width: 20px;
  height: 20px;
}

/* Contacts Info Component */
.contacts-info__location {
  text-align: center;
  margin-top: auto;
}
.contacts-info__city {
  color: #505050;
  font-size: 16px;
  display: block;
}
.contacts-info__phone {
  text-align: center;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 2px;
}
.contacts-info__schedule {
  color: #505050;
  font-size: 14px;
  display: block;
}
.contacts-info__number {
  color: #505050;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contacts-info__number:hover {
  color: #2B9F5C;
}
.contacts-info__number:focus-visible {
  outline: 2px solid #2B9F5C;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Main Navigation Component */
.main-nav__list {
  display: flex;
  width: 100%;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}
.main-nav__item {
  position: relative;
}
.main-nav__item:nth-last-child(2) {
  margin-left: auto;
}
.main-nav__link {
  color: #505050;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 0;
  display: block;
  font-weight: 700;
}
.main-nav__link:hover {
  opacity: 0.4;
}
.main-nav__link:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  border-radius: 2px;
}
.main-nav__link--active {
  color: #4FB279;
  position: relative;
}
.main-nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 0;
  right: 0;
  height: 2px;
  background: #4FB279;
}

/* Mobile Menu Button Lines */
.mobile-menu-btn {
  /* Active State (Cross) */
}
.mobile-menu-btn__line {
  width: 28px;
  height: 3.2px;
  background: #4FB279;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn--active .mobile-menu-btn__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 7px);
}
.mobile-menu-btn--active .mobile-menu-btn__line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn--active .mobile-menu-btn__line:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height, 120px));
  background: white;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  margin-top: -6px;
  font-family: "Manrope", sans-serif;
  /* Fallback для браузеров без поддержки dvh */
  height: calc(100vh - var(--header-height, 120px));
  /* Используем dvh для корректной работы на мобильных */
  height: calc(100dvh - var(--header-height, 120px));
  /* Submenu Styles */
}
.mobile-nav--open {
  transform: translateX(0);
}
.mobile-nav__content {
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px; /* Дополнительный отступ снизу для iOS */
}
.header--scrolled .mobile-nav {
  top: 75px;
  /* Fallback для браузеров без поддержки dvh */
  height: calc(100vh - var(--header-scrolled-height, 80px));
  /* Используем dvh для корректной работы на мобильных */
  height: calc(100dvh - var(--header-scrolled-height, 80px));
  width: 375px;
}
.header--scrolled .mobile-nav .mobile-nav__content {
  /* Fallback для браузеров без поддержки dvh */
  min-height: calc(100vh - var(--header-scrolled-height, 80px));
  /* Используем dvh для корректной работы на мобильных */
  min-height: calc(100dvh - var(--header-scrolled-height, 80px));
}
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__item {
  position: relative;
  border-bottom: 1px solid #F5F5F5;
}
.mobile-nav__item:first-child {
  border-top: 1px solid #F5F5F5;
}
.mobile-nav__item .mobile-nav__link:hover {
  background-color: #eeeeee;
}
.mobile-nav__item--active .mobile-nav__link {
  color: #1C1C1C;
  line-height: 1;
}
.mobile-nav__item--has-submenu .mobile-nav__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav__item--has-submenu.mobile-nav__item--expanded .mobile-nav__submenu {
  max-height: 500px;
}
.mobile-nav__link {
  display: block;
  padding: 15px 20px;
  color: #1C1C1C;
  font-size: 18px;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.mobile-nav__link:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: -2px;
}
.mobile-nav__link--expandable {
  position: relative;
}
.mobile-nav__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__submenu-item {
  border-bottom: 1px solid #F5F5F5;
}
.mobile-nav__submenu-item:last-child {
  border-bottom: none;
}
.mobile-nav__submenu-link {
  display: flex;
  align-items: center;
  color: #505050;
  text-decoration: none;
  gap: 15px;
  transition: background-color 0.3s ease;
  font-size: 16px !important;
}
.mobile-nav__submenu-link:hover {
  background-color: #eeeeee;
}
.mobile-nav__submenu-link:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: -2px;
}
.mobile-nav__submenu-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__submenu-text, .mobile-nav .mobile-nav__item-services {
  flex: 1;
  font-size: 16px;
  color: #505050;
}

.mobile-nav__item-services {
  flex: 1;
}
.mobile-nav__item-services a {
  padding-left: 27px;
  font-size: 16px;
  color: #505050;
}

/* Header Scrolled State */
.header--scrolled {
  /* Compact header when scrolled */
  /* Hide elements based on screen size when scrolled */
  /* From 1200px+ - don't hide anything */
  /* From 850px to 1199px - hide only contacts */
  /* Below 850px - hide search, contacts, and action buttons */
}
.header--scrolled .header__nav {
  display: none;
}
.header--scrolled .header__logo-section {
  transform: translateX(55px);
}
.header--scrolled .header__mobile-menu {
  position: absolute;
  transform: translateX(0);
  opacity: 1;
}
.header--scrolled .header__top {
  padding-top: 12px;
  padding-bottom: 12px;
}
.header--scrolled .header__divider {
  display: none;
}
@media (min-width: 1200px) {
  .header--scrolled {
    /* Keep everything visible */
  }
}
@media (min-width: 850px) and (max-width: 1199px) {
  .header--scrolled .header__contacts {
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
  }
}
@media (max-width: 849px) {
  .header--scrolled .header__contacts {
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
  }
  .header--scrolled .header__actions .header__callback-btn {
    opacity: 0;
    pointer-events: none;
  }
}

/* Below 1199px - always show mobile menu button */
@media (max-width: 1199px) {
  .header__mobile-menu {
    display: flex !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }
  .header__mobile-nav {
    display: block;
  }
}
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  background-color: #505050;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.search-ajax-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  z-index: 10000;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 25px;
  font-family: "Manrope", sans-serif;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE и Edge */
}

.search-ajax-box::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.search-results--ajax {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-results--ajax .search-result {
  padding: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.search-results--ajax .search-result:last-child {
  border-bottom: none;
}

.search-results--ajax .search-result__type {
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 2px;
}

.search-results--ajax .search-result__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1F2937;
  text-decoration: none;
}

.search-results--ajax .search-result__title:hover {
  color: #4FB279;
}

.search-results--ajax .search-result__excerpt {
  color: #374151;
  font-size: 0.8rem;
  margin-top: 3px;
}

.search-ajax-box .search__empty {
  color: #4FB279;
  font-size: 1rem;
  padding: 16px 24px;
}

/* Mobile Devices Viewport Fixes */
:root {
  --vh: 1vh; /* Будет переопределена JavaScript для мобильных */
}

/* Общие правила для всех мобильных устройств */
@media (max-width: 849px) {
  .mobile-nav {
    /* Используем dvh для современных браузеров */
    height: calc(100dvh - var(--header-height, 120px));
    /* Fallback для старых браузеров */
    height: calc(100vh - var(--header-height, 120px));
    /* Используем custom property для точного контроля */
    height: calc(var(--vh, 1vh) * 100 - var(--header-height, 120px));
  }
  .mobile-nav__content {
    /* Обеспечиваем прокрутку на всех мобильных */
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    position: relative;
    min-height: 100%;
    max-height: 100%;
  }
  
  /* Для прокрученного состояния заголовка */
  .header--scrolled .mobile-nav {
    top: 75px;
    height: calc(100dvh - var(--header-scrolled-height, 80px));
    height: calc(100vh - var(--header-scrolled-height, 80px));
    height: calc(var(--vh, 1vh) * 100 - var(--header-scrolled-height, 80px));
  }
  .header--scrolled .mobile-nav__content {
    min-height: calc(100dvh - var(--header-scrolled-height, 80px));
    min-height: calc(100vh - var(--header-scrolled-height, 80px));
    min-height: calc(var(--vh, 1vh) * 100 - var(--header-scrolled-height, 80px));
    max-height: calc(100dvh - var(--header-scrolled-height, 80px));
    max-height: calc(100vh - var(--header-scrolled-height, 80px));
    max-height: calc(var(--vh, 1vh) * 100 - var(--header-scrolled-height, 80px));
  }
}

@supports (-webkit-touch-callout: none) {
  /* iOS Safari специфичные исправления */
  .mobile-nav {
    /* Дополнительные исправления для iOS */
    height: calc(100vh - var(--header-height, 120px) - env(safe-area-inset-bottom, 0px));
    height: calc(100dvh - var(--header-height, 120px));
    height: calc(var(--vh, 1vh) * 100 - var(--header-height, 120px));
    /* Дополнительная поддержка для landscape ориентации на iOS */
  }
  @media screen and (orientation: landscape) and (max-height: 500px) {
    .mobile-nav {
      height: calc(100vh - var(--header-height, 120px));
      max-height: calc(100vh - var(--header-height, 120px));
    }
  }
  .mobile-nav__content {
    /* Обеспечиваем что контент может быть прокручен на iOS */
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    position: relative;
    /* Фиксированная кнопка внизу */
  }
  .mobile-nav__content .mobilebutton-call {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    background: white;
    padding-top: 15px !important;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px)) !important;
    border-top: 1px solid #f0f0f0;
    z-index: 10;
  }
  .header--scrolled .mobile-nav {
    /* Fallback для браузеров без поддержки dvh */
    height: calc(100vh - var(--header-scrolled-height, 80px) - env(safe-area-inset-bottom, 0px));
    /* Используем dvh для корректной работы на мобильных */
    height: calc(100dvh - var(--header-scrolled-height, 80px));
    /* Используем custom property для iOS */
    height: calc(var(--vh, 1vh) * 100 - var(--header-scrolled-height, 80px));
  }
  @media screen and (orientation: landscape) and (max-height: 500px) {
    .header--scrolled .mobile-nav {
      height: calc(100vh - var(--header-scrolled-height, 80px));
      max-height: calc(100vh - var(--header-scrolled-height, 80px));
    }
  }
}
.header__search.search-form {
  position: relative;
  z-index: 20;
}

.header-callbackbutton svg {
  display: none;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 848px) {
  .header-callbackbutton {
    background: #F7F7F7 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    min-width: 40px !important;
    box-shadow: none !important;
  }
  .header-callbackbutton span {
    display: none;
  }
  .header-callbackbutton svg {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .header-callbackbutton {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}

.mobilebutton-call {
  display: none;
}

@media screen and (max-width: 849px) {
  .header__logo-section {
    transform: translateX(0) !important;
  }
  .header__actions {
    margin-right: 48px;
  }
}
/* ===================================
   HEADER ADAPTIVE STYLES
   =================================== */
/* Body padding adjustments */
body {
  padding-top: 78px; /* Default for 800-1200px */
}

@media (max-width: 1200px) {
  .header__logo-section {
    transform: translateX(55px);
  }
  .header__search {
    margin-left: 55px;
  }
}
/* 375px to 800px - Mobile Layout */
@media (max-width: 799px) {
  body {
    padding-top: 113px; /* 73px header + 40px search */
  }
  .header {
    box-shadow: none;
  }
  .header__wrapper {
    flex-direction: column;
    gap: 0;
  }
  .header__top {
    padding: 12px 0;
    gap: 10px;
    height: 73px;
    box-sizing: border-box;
  }
  .header__logo-section {
    order: 1;
    gap: 12px;
  }
  .header__company-name {
    font-size: 16px;
  }
  .header__search {
    order: 3;
    margin: 0;
    padding: 0 20px;
    background: white;
    height: 40px;
    display: flex;
    align-items: center;
    z-index: 99;
  }
  .header__contacts {
    display: none;
  }
  .header__actions {
    order: 2;
    gap: 10px;
  }
  .header__callback-btn {
    display: none;
  }
  .header__callback-icon {
    display: flex;
  }
  .header__mobile-menu {
    order: 4;
    display: flex !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }
  .header__nav {
    display: none;
  }
  .header__divider {
    display: none;
  }
  .header__mobile-nav {
    display: block;
    top: 79px; /* Below header + search */
    height: calc(100vh - 79px);
  }
  /* Search form in mobile */
  .search-form {
    width: 100%;
  }
  .search-form__wrapper {
    height: 40px;
    background: #f7f7f7;
  }
}
/* 800px to 1200px - Tablet Layout */
@media (min-width: 800px) and (max-width: 1199px) {
  .header__top {
    padding: 17px 0 20px 0;
    gap: 20px;
    height: 78px;
    box-sizing: border-box;
    justify-content: start;
  }
  .header__logo-section {
    gap: 16px;
  }
  .header__company-name {
    font-size: 16px;
  }
  .header__search {
    flex: 1;
    max-width: 351px;
    margin-right: auto;
  }
  .header__contacts {
    display: none;
  }
  .header__actions {
    margin-left: auto;
    gap: 10px;
  }
  .header__callback-btn {
    display: flex;
    white-space: nowrap;
  }
  .header__callback-icon {
    display: flex;
  }
  .header__nav {
    display: none;
  }
  .header__divider {
    display: none;
  }
  .header__mobile-nav {
    display: block;
    top: 78px;
    height: calc(100vh - 78px);
  }
}
/* 1200px+ - Desktop Layout */
@media (min-width: 1200px) {
  .header__top {
    padding: 17px 0 20px 0;
    gap: 20px;
  }
  .header__logo-section {
    order: 1;
    gap: 16px;
  }
  .header__search {
    order: 2;
    flex: 1;
    max-width: 435px;
    margin: 0 20px;
  }
  .header__contacts {
    order: 3;
    display: flex;
  }
  .header__actions {
    order: 4;
    gap: 10px;
  }
  .header__callback-btn {
    display: flex;
  }
  .header__callback-icon {
    display: flex;
  }
  .header__nav {
    display: flex;
  }
  .header__divider {
    display: block;
  }
}
/* Tablet Styles */
@media (max-width: 1024px) {
  .header__top {
    flex-wrap: wrap;
    gap: 15px;
  }
  .header__contacts {
    gap: 15px;
  }
  .header__nav-indicators {
    display: none;
  }
  .main-nav__list {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .contacts-info__phone {
    gap: 1px;
  }
  .contacts-info__schedule {
    font-size: 11px;
  }
  .contacts-info__number {
    font-size: 14px;
  }
}
@media (max-width: 849px) {
  body {
    padding-top: 100px;
  }
}
/* Below 850px - Mobile menu button to the right, logo to the left */
@media (max-width: 849px) {
  .header {
    /* Always show mobile menu button below 850px */
    /* Mobile navigation always available below 850px */
  }
  .header__top {
    padding: 12px 0;
    gap: 10px;
    justify-content: space-between;
  }
  .header__logo-section {
    gap: 12px;
    order: 1; /* Move logo to the left */
  }
  .header__company-name {
    font-size: 14px;
  }
  .header__search {
    border-top: 1px solid #f5f5f5;
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    padding: 0;
    max-width: 100%;
    margin: 0;
  }
  .header__contacts {
    display: none;
  }
  .header__actions {
    gap: 8px;
    order: 2;
    margin-left: auto;
  }
  .header__callback-btn {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__mobile-nav {
    display: block;
  }
  .header__mobile-menu {
    display: flex !important;
    transform: translateX(0) !important;
    right: 0 !important;
    top: 14px !important;
    opacity: 1 !important;
    order: 3;
  }
  .header__mobile-nav {
    display: block;
  }
  .search-form {
    height: -moz-fit-content;
    height: fit-content;
    padding: 16px 8px;
  }
  .search-form::after {
    position: absolute;
    left: -20px;
    top: 0;
    width: 20px;
    height: 100%;
    background: none;
    z-index: 1;
    content: "";
  }
  .search-form::before {
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 100%;
    background: none;
    z-index: 1;
    content: "";
  }
  .header__actions .btn-effect {
    display: none;
  }
  /* Mobile Navigation specific styles */
  .header--scrolled .mobile-nav {
    width: 100%;
  }
  .mobile-nav {
    width: 100vw;
  }
  .mobile-nav__content {
    padding-top: 0;
  }
  .mobile-nav__item:first-child {
    margin-top: 0;
  }
  .mobile-nav__link {
    padding: 15px 20px;
    font-size: 18px;
  }
  .mobile-nav__submenu-link {
    padding: 15px 32px;
  }
  .search-form__wrapper {
    height: 36px;
    padding: 0 8px;
    width: 100%;
  }
  .search-form__input {
    font-size: 14px;
    padding: 6px 10px;
  }
  .search-form__button {
    width: 18px;
    height: 18px;
  }
  .search-form__icon {
    width: 18px;
    height: 18px;
  }
  .main-nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .main-nav__item {
    border-bottom: 1px solid #f5f5f5;
  }
  .main-nav__item:last-child {
    border-bottom: none;
  }
  .main-nav__link {
    padding: 15px 20px;
    font-size: 16px;
  }
  .main-nav__link--active::after {
    display: none;
  }
}
@media (max-width: 480px) {
  body {
    padding-top: 80px;
  }
}
/* Small Mobile Styles */
@media (max-width: 480px) {
  .header__top {
    padding: 10px 0;
  }
  .header__logo-section {
    gap: 8px;
  }
  .header__logo-svg {
    width: 32px;
    height: 32px;
  }
  .header__company-name {
    font-size: 13px;
  }
  .header__callback-icon {
    width: 36px;
    height: 36px;
  }
  .header__mobile-menu {
    width: 40px;
    height: 40px;
    right: 0 !important;
    top: 12px !important;
    opacity: 1 !important;
  }
  .search-form__wrapper {
    height: 32px;
    padding: 0 6px;
  }
  .search-form__input {
    font-size: 13px;
    padding: 4px 8px;
  }
  .search-form__button {
    width: 16px;
    height: 16px;
  }
  .search-form__icon {
    width: 16px;
    height: 16px;
  }
}
.footer {
  background-color: #F7F7F7;
  padding: 60px 0 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 591px 163px 199px;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 41px;
}
@media (max-width: 1200px) {
  .footer__content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer__navigation {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 768px) {
  .footer__services {
    order: 4;
  }
}
.footer__nav-columns {
  display: grid;
  grid-template-columns: repeat(4, 110px);
  gap: 65px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .footer__nav-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__nav-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .footer__nav-columns {
    gap: 15px;
  }
}
.footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__nav-column {
    gap: 15px;
  }
}
.footer__title {
  font-size: 18px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  .footer__title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.footer__link {
  font-size: 14px;
  line-height: 1.43;
  color: #1C1C1C;
  text-decoration: none;
  opacity: 0.75;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__link:hover {
  opacity: 1;
  color: #4FB279;
}
.footer__link:focus {
  outline: none !important;
}
.footer__text {
  font-size: 14px;
  line-height: 1.43;
  color: #1C1C1C;
  margin: 0;
  opacity: 0.75;
}
@media (max-width: 768px) {
  .footer__contacts {
    order: 3;
  }
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .footer__contact-info {
    margin-top: 20px;
    gap: 15px;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1200px) {
  .footer__info {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer__info {
    order: 2;
    gap: 30px;
  }
}
.footer__address .footer__text, .footer__schedule .footer__text {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .footer__address .footer__text, .footer__schedule .footer__text {
    margin-top: 20px;
  }
}
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: #1C1C1C;
  opacity: 0.1;
  margin-bottom: 41px;
}
@media (max-width: 768px) {
  .footer__divider {
    margin-bottom: 30px;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 38px;
}
@media (max-width: 1024px) {
  .footer__bottom {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-bottom: 30px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer__logo-image {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__logo-text {
  font-size: 16px;
  line-height: 1.37;
  color: #505050;
}
@media (max-width: 1024px) {
  .footer__copyright {
    order: 4;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__copyright {
    order: 2;
  }
}
.footer__copyright-text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  text-align: center;
  margin: 0;
}
@media (max-width: 1024px) {
  .footer__copyright-text {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .footer__privacy {
    order: 3;
  }
}
@media (max-width: 768px) {
  .footer__privacy {
    order: 3;
  }
}
.footer__privacy-link {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__privacy-link:hover {
  color: #4FB279;
}
.footer__privacy-link:focus {
  outline: none !important;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 59px;
}
@media (max-width: 1024px) {
  .footer__social {
    order: 1;
  }
}
@media (max-width: 768px) {
  .footer__social {
    order: 4;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .footer__social {
    gap: 20px;
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
  padding: 10px;
  border: 2px solid rgba(80, 80, 80, 0.3137254902);
  border-radius: 50%;
}
.footer__social-link img {
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.footer__social-link:focus {
  outline: none !important;
}
.footer__social-link:active {
  transform: translateY(0);
}
.footer__social-icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 320px) {
  .footer {
    padding: 30px 0 0;
  }
  .footer__content {
    gap: 25px;
    margin-bottom: 25px;
  }
  .footer__nav-columns {
    gap: 15px;
    margin-top: 15px;
  }
  .footer__nav-column {
    gap: 12px;
  }
  .footer__title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .footer__link, .footer__text {
    font-size: 13px;
  }
  .footer__contact-info {
    gap: 12px;
    margin-top: 15px;
  }
  .footer__info {
    gap: 25px;
  }
  .footer__address .footer__text, .footer__schedule .footer__text {
    margin-top: 15px;
  }
  .footer__divider {
    margin-bottom: 25px;
  }
  .footer__bottom {
    gap: 15px;
    padding-bottom: 25px;
  }
  .footer__logo {
    gap: 10px;
  }
  .footer__logo-image {
    width: 40px;
    height: 40px;
  }
  .footer__logo-text, .footer__copyright-text, .footer__privacy-link {
    font-size: 14px;
  }
  .footer__social {
    gap: 15px;
  }
  .footer__social-link, .footer__social-icon {
    width: 40px;
    height: 40px;
  }
}
/* ===================================
   BREADCRUMBS - Хлебные крошки
   Объединенные стили для всего проекта
   =================================== */
.breadcrumbs {
  padding: 30px 0 20px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 30px 0 15px;
  }
}
@media (max-width: 480px) {
  .breadcrumbs {
    padding: 30px 0 0;
  }
}

.breadcrumbs__nav {
  width: 100%;
}

.breadcrumbs__list {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .breadcrumbs__list {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .breadcrumbs__list {
    gap: 6px;
  }
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 480px) {
  .breadcrumbs__item {
    gap: 6px;
  }
}

.breadcrumbs__icon {
  width: 14px;
  height: 14px;
  color: #4fb279;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .breadcrumbs__icon {
    width: 12px;
    height: 12px;
  }
}

.breadcrumbs__arrow {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .breadcrumbs__arrow {
    width: 6px;
    height: 6px;
  }
}

.breadcrumbs__link {
  color: #9e9e9e;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs__link:hover {
  color: #4fb279;
}
.breadcrumbs__link:focus-visible {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
  border-radius: 4px;
}
@media (max-width: 480px) {
  .breadcrumbs__link {
    font-size: 12px;
  }
}

.breadcrumbs__current {
  color: #505050;
  font-size: 14px;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .breadcrumbs__current {
    font-size: 12px;
  }
}

.breadcrumbs__item--current .breadcrumbs__current {
  color: #505050;
}

/* ===================================
   PAGE STYLES
   =================================== */
/* Home Page */
/* ===================================
   HOME PAGE HERO SECTION
   =================================== */
.hero {
  background: white;
  padding: 60px 0;
  margin-top: 60px;
  /* Left Content Block */
  /* Переопределение для новых btn-effect кнопок */
  /* Right Info Block */
  /* Swiper Styles */
  /* Pagination Dots */
}
.hero__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  min-height: 460px;
}
.hero__content {
  max-width: 710px;
  width: 100%;
  background: #F7F7F7;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 20px 0;
  max-width: 550px;
}
.hero__description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0 0 40px 0;
  max-width: 530px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__btn {
  /* Старые стили hero кнопок - оставляем для совместимости */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
.hero__btn--primary {
  background: #4FB279;
  color: #FFFFFF;
  min-width: 216px;
  height: 40px;
}
.hero__btn--primary:hover {
  background: #45a068;
  transform: translateY(-1px);
}
.hero__btn--primary:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.hero__btn--secondary {
  background: transparent;
  color: #4FB279;
  border: 1px solid #4FB279;
  padding: 9px 29px;
  height: 40px;
}
.hero__btn--secondary:hover {
  background: #4FB279;
  color: #FFFFFF;
}
.hero__btn--secondary:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.hero .btn-effect {
  /* Убираем старые стили hero кнопок */
}
.hero .btn-effect.hero__btn--primary, .hero .btn-effect.hero__btn--secondary {
  padding: 10px 20px !important;
  min-width: 216px !important;
  height: 40px !important;
}
.hero__btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hero__btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.hero__info {
  max-width: 710px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(#3FCA7A 0%, #4FB279 100%);
  border-radius: 24px;
  overflow: hidden;
}
.hero__swiper {
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 20px;
}
.hero__swiper .swiper-wrapper {
  height: 100%;
  gap: 20px;
}
.hero__swiper .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100% !important;
}
.hero__info-image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 16px;
  left: 318px;
  width: 604px;
  height: 490px;
  z-index: 1;
}
.hero__info-content {
  position: relative;
  width: 100%;
  z-index: 2;
  margin-top: auto;
  background: none !important;
}
.hero__info-subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2.14;
  color: #F8F8F8;
  margin-top: 10px;
  mix-blend-mode: difference;
}
.hero__info-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: #F8F8F8;
  margin: 0 0 20px 0;
  max-width: 400px;
}
.hero__info-note {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #F8F8F8;
  margin-top: 18px 0;
}
.hero__pagination {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 20px;
  top: 30%;
  z-index: 3;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F5F5F5;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero__dot--active {
  background: #fff;
  opacity: 1;
}
.hero__dot:hover {
  opacity: 0.8;
}
.hero__info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 30px;
  background: transparent;
  color: #F5F5F5;
  border: 1px solid #FFFFFF;
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 184px;
  height: 40px;
  margin-top: 20px;
}
.hero__info-btn:hover {
  background: #F5F5F5;
  color: #4FB279;
}
.hero__info-btn:focus-visible {
  background: #F5F5F5;
  color: #4FB279;
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero {
    margin-top: 0;
    padding: 20px 0;
  }
  .hero__wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .hero__content {
    flex: none;
    max-width: none;
  }
  .hero__info {
    max-height: 371px;
    max-width: 100%;
  }
  .hero__swiper .swiper-slide {
    width: 100% !important;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .hero__info-image {
    position: relative;
    max-width: 524px;
    max-height: 424px;
    left: auto;
    right: -90px;
  }
  .hero__info-content {
    margin-top: 0;
    position: static;
  }
  .hero__info-title {
    font-size: 36px;
  }
}
@media (max-width: 850px) {
  .hero {
    padding: 30px 0;
  }
  .hero__content {
    padding: 30px 20px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__info-title {
    font-size: 32px;
  }
  .hero__pagination {
    top: 20px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__btn {
    width: 100%;
    justify-content: center;
  }
  .hero__swiper {
    padding-top: 86px;
  }
  .hero__swiper .swiper-slide {
    flex-direction: column;
  }
  .hero__info-title {
    max-width: 350px;
  }
  .hero__info-content {
    width: 100%;
  }
  .hero__info-image {
    top: -66px;
    position: absolute;
    right: -180px;
    max-width: 333px;
    max-height: 270px;
  }
}
@media (max-width: 480px) {
  .hero__container {
    padding: 0 15px;
  }
  .hero__title {
    font-size: 16px;
    text-align: center;
  }
  .hero__description {
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
  }
  .hero__info-title {
    font-size: 28px;
  }
  .hero__content {
    padding: 20px 15px;
  }
}
/* ========================================
   Секция Услуги - Services Section
   ======================================== */
.services {
  padding: 80px 0 100px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .services {
    padding: 60px 0 80px;
  }
}
@media (max-width: 600px) {
  .services {
    padding: 40px 0 30px;
  }
}

.services__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .services__wrapper {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .services__wrapper {
    gap: 30px;
  }
}

/* Заголовок секции */
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
@media (max-width: 768px) {
  .services__header {
    max-width: 100%;
  }
}

.services__subtitle {
  color: #505050;
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.services__subtitle::before {
  content: "+";
  font-size: 16px;
  width: 10px;
  height: 10px;
  font-weight: 700;
  color: #4FB279;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .services__subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.services__title {
  color: #1C1C1C;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  max-width: 580px;
}
@media (max-width: 768px) {
  .services__title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .services__title {
    font-size: 20px;
  }
}

/* Сетка услуг */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(257px, 1fr));
  gap: 13px;
}
@media (max-width: 1199px) {
  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  }
}
@media (max-width: 850px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* Карточка услуги */
.services__card {
  background: #F7F7F7;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.services__card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.services__card:hover .services__card-image img {
  transform: scale(1.05);
}
.services__card:hover .services__card-decoration {
  transform: scale(1.1);
  opacity: 0.2;
}
.services__card:focus-within {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .services__card {
    height: auto;
    min-height: 300px;
  }
}

/* Изображение карточки */
.services__card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  padding: 10px 13px 20px 13px;
  z-index: 0;
}
.services__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

/* Декоративный элемент */
.services__card-decoration {
  position: absolute;
  top: -75px;
  right: -40px;
  width: 222px;
  height: 222px;
  border: 31px solid #4FB279;
  border-radius: 50%;
  opacity: 0.15;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 600px) {
  .services__card-decoration {
    border-width: 25px;
    top: -60px;
    right: -30px;
  }
}

/* Контент карточки */
.services__card-content {
  padding: 0 13px 20px 13px;
  background: linear-gradient(transparent, #F7F7F7 20%);
}
@media (max-width: 600px) {
  .services__card-content {
    position: relative;
    background: #F7F7F7;
    padding: 16px;
  }
}

.services__card-title {
  color: #1C1C1C;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 12px 0;
}
@media (max-width: 600px) {
  .services__card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.services__card-description {
  color: #505050;
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  height: auto;
}
@media (max-width: 600px) {
  .services__card-description {
    font-size: 13px;
  }
}

/* Действия секции */
.services__actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .services__actions {
    justify-content: center;
    display: none;
  }
}

.services__actions-adaptiv {
  display: none;
}
@media (max-width: 768px) {
  .services__actions-adaptiv {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .services__actions-adaptiv a {
    width: 100%;
    text-align: center;
  }
  .services__actions-adaptiv a span {
    margin: 0 auto;
  }
}

.services__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  background: #4FB279;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 12px;
  border: 2px solid #4FB279;
  transition: all 0.3s ease;
}
.services__btn:hover {
  background: #F5F5F5;
  color: #4FB279;
  transition: all 0.3s ease;
}
.services__btn:focus-visible {
  background: #F5F5F5;
  color: #4FB279;
  outline-offset: 2px;
}
.services__btn:active {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .services__btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.services__btn-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.services__btn:hover .services__btn-icon {
  transform: rotate(90deg);
}

/* Высокая контрастность */
@media (prefers-contrast: high) {
  .services__card {
    border: 2px solid #1C1C1C;
  }
  .services__subtitle {
    color: #333333;
  }
  .services__card-description {
    color: #333333;
  }
  .services__btn {
    border-width: 3px;
  }
}
/* ========================================
   Баннер УНКП - Banner Section
   ======================================== */
.banner {
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .banner {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .banner {
    padding: 30px 0;
  }
}

.banner__wrapper {
  background: #F7F7F7;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 460px;
}
@media (max-width: 800px) {
  .banner__wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* Контент баннера */
.banner__content {
  padding: 56px 60px;
  position: relative;
  z-index: 2;
  max-width: 600px;
}
@media (max-width: 768px) {
  .banner__content {
    padding: 40px 30px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .banner__content {
    padding: 20px;
  }
}

.banner__title {
  color: #1C1C1C;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 12px 0;
}
@media (max-width: 768px) {
  .banner__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .banner__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.banner__description {
  color: #505050;
  font-size: 16px;
  line-height: 1.36;
  margin: 0 0 40px 0;
  max-width: 501px;
}
@media (max-width: 768px) {
  .banner__description {
    margin-bottom: 30px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .banner__description {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

/* Преимущества */
.banner__benefits {
  margin-bottom: 47px;
}
@media (max-width: 768px) {
  .banner__benefits {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .banner__benefits {
    margin-bottom: 20px;
  }
}

.banner__benefits-title {
  color: #1C1C1C;
  font-size: 16px;
  line-height: 1.36;
  margin: 0 0 16px 0;
}
@media (max-width: 600px) {
  .banner__benefits-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

.banner__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banner__benefits-item {
  color: #000000;
  font-size: 14px;
  line-height: 1.36;
  position: relative;
  padding-left: 15px;
}
.banner__benefits-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #4FB279;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .banner__benefits-item {
    font-size: 11px;
  }
}

/* Действия баннера */
.banner__actions {
  display: flex;
  justify-content: flex-start;
}

.banner__btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #4FB279 !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 30px;
  font-size: 12px;
  transition: all 0.3s ease !important;
  border: none !important;
  height: 40px;
  min-width: 216px;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(0) !important;
}
.banner__btn:hover {
  background: #45a068 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(79, 178, 121, 0.3) !important;
}
.banner__btn:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.banner__btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}
@media (max-width: 600px) {
  .banner__btn {
    padding: 12px 16px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
    min-width: auto;
  }
}

.banner__btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease !important;
  flex-shrink: 0;
  transform: translateX(0) !important;
}
.banner__btn:hover .banner__btn-icon {
  transform: translateX(3px) !important;
}
.banner__btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Изображение баннера */
.banner__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  width: 572px;
}
@media (max-width: 1200px) {
  .banner__image {
    min-height: 300px;
    width: 354px;
    height: 492px;
  }
}
@media (max-width: 800px) {
  .banner__image {
    width: 100%;
    min-height: 216px;
    max-height: 216px;
  }
}
.banner__image img {
  width: 572px;
  height: 572px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  bottom: -100px;
  right: 80px;
  z-index: 1;
  max-width: none;
}
@media (max-width: 1599px) {
  .banner__image img {
    width: 492px;
    height: 492px;
    bottom: -60px;
    right: 108px;
  }
}
@media (max-width: 1200px) {
  .banner__image img {
    bottom: -20px;
    right: -130px;
  }
}
@media (max-width: 800px) {
  .banner__image img {
    width: 334px;
    height: 334px;
    bottom: -60%;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Декоративный элемент */
.banner__image-decoration {
  position: absolute;
  bottom: -60%;
  right: -20%;
  transform: translate(-50%, -50%);
  width: 471px;
  height: 471px;
  border: 30px solid #4FB279;
  border-radius: 50%;
  z-index: 0;
}
@media (max-width: 1599px) {
  .banner__image-decoration {
    width: 405px;
    height: 405px;
    border-width: 25px;
    bottom: -45%;
    right: 0;
  }
}
@media (max-width: 1200px) {
  .banner__image-decoration {
    bottom: -30%;
    right: -60%;
  }
}
@media (max-width: 800px) {
  .banner__image-decoration {
    width: 275px;
    height: 275px;
    border-width: 30px;
    bottom: -30%;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Accessibility улучшения */
@media (prefers-reduced-motion: reduce) {
  .banner__btn,
  .banner__btn-icon {
    transition: none;
  }
  .banner__btn:hover {
    transform: none;
  }
  .banner__btn:hover .banner__btn-icon {
    transform: none;
  }
}
/* Высокая контрастность */
@media (prefers-contrast: high) {
  .banner__wrapper {
    border: 2px solid #1C1C1C;
  }
  .banner__description {
    color: #333333;
  }
  .banner__benefits-item {
    color: #333333;
  }
  .banner__btn {
    border-width: 3px;
  }
}
/* ===== FAQ SECTION ===== */
.faq {
  padding: 80px 0;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .faq {
    padding: 40px 0;
  }
}

.faq__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .faq__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .faq__wrapper {
    gap: 30px;
  }
}

/* ===== FAQ HEADER ===== */
.faq__header {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .faq__header {
    position: static;
    text-align: start;
  }
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #505050;
}
@media (max-width: 1024px) {
  .faq__badge {
    justify-content: center;
  }
}

.faq__badge-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
  flex-shrink: 0;
}

.faq__badge-text {
  font-size: 16px;
  line-height: 1.2;
}

.faq__title {
  font-size: 24px;
  line-height: 1.2;
  color: #1C1C1C;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 20px;
  }
}

.faq__description {
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  max-width: 309px;
}
@media (max-width: 1024px) {
  .faq__description {
    max-width: none;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .faq__description {
    font-size: 13px;
  }
}

/* ===== FAQ ACCORDION ===== */
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 38px;
}
@media (max-width: 1200px) {
  .faq__accordion {
    margin-top: 0;
  }
}

.faq__item {
  background-color: #F7F7F7;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq__item:hover {
  background-color: #F0F0F0;
  transform: translateY(-1px);
}
.faq__item.is-active {
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(79, 178, 121, 0.1);
  transform: translateY(-2px);
}
.faq__item.is-active .faq__question-arrow {
  transform: rotate(90deg);
}
.faq__item.is-active .faq__question-icon {
  color: #4FB279;
}

/* ===== FAQ QUESTION ===== */
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .faq__question {
    padding: 12px;
    gap: 12px;
  }
}
.faq__question:hover .faq__question-arrow {
  color: #4FB279;
}
.faq__question:focus {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.faq__question:focus:not(:focus-visible) {
  outline: none;
}
.faq__question:focus-visible {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}

.faq__question-icon {
  width: 34px;
  height: 34px;
  color: #4FB279;
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #4FB279;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .faq__question-icon {
    width: 28px;
    height: 28px;
  }
}

.faq__question-icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .faq__question-icon-inner {
    width: 20px;
    height: 20px;
  }
}

.faq__question-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.2;
  color: #1C1C1C;
}
@media (max-width: 768px) {
  .faq__question-text {
    font-size: 12px;
  }
}

.faq__question-arrow {
  width: 24px;
  height: 24px;
  color: #4FB279;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 768px) {
  .faq__question-arrow {
    width: 20px;
    height: 20px;
  }
}

/* ===== FAQ ANSWER ===== */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: max-height; /* Оптимизация для плавной анимации */
}
.faq__answer.is-open {
  max-height: 1000px; /* Увеличиваем максимальную высоту для надежности */
  transition: max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq__answer-content {
  padding: 0 24px 24px 20px;
}
@media (max-width: 768px) {
  .faq__answer-content {
    padding: 0 16px 16px 12px;
  }
}
@media (max-width: 480px) {
  .faq__answer-content {
    padding: 0 16px 16px 12px;
  }
}
.faq__answer-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #505050;
  margin: 0;
}
@media (max-width: 768px) {
  .faq__answer-content p {
    font-size: 13px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .faq__item {
    border: 2px solid #000000;
  }
  .faq__item.is-active {
    border-color: #4FB279;
  }
  .faq__question:focus {
    outline: 3px solid #000000;
  }
}
.blog {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .blog {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .blog {
    padding: 40px 0;
  }
}

.blog__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 33px;
  position: relative;
}
@media (max-width: 1024px) {
  .blog__wrapper {
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .blog__wrapper {
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .blog__header {
    max-width: 100%;
  }
}

.blog__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .blog__badge {
    margin-bottom: 16px;
  }
}

.blog__badge-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
  flex-shrink: 0;
}

.blog__badge-text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}

.blog__title {
  font-size: 24px;
  line-height: 1.2;
  color: #1C1C1C;
}
@media (max-width: 768px) {
  .blog__title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .blog__title {
    font-size: 18px;
  }
}

.blog__description {
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0;
}
@media (max-width: 768px) {
  .blog__description {
    font-size: 13px;
  }
}

.blog__navigation {
  display: flex;
  gap: 8px;
  align-self: flex-start;
}

.blog__nav-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 24px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog__nav-btn:hover:not(:disabled):not(.blog__nav-btn--disabled) {
  background-color: #E0E0E0;
  color: #1C1C1C;
}
.blog__nav-btn:disabled, .blog__nav-btn.blog__nav-btn--disabled {
  cursor: not-allowed;
  opacity: 0.4;
  background-color: #F0F0F0;
  color: #CCCCCC;
  pointer-events: none;
}
.blog__nav-btn--prev {
  background-color: #D9D9D9;
  color: #04233A;
}
.blog__nav-btn--prev:hover:not(:disabled):not(.blog__nav-btn--disabled) {
  background-color: #4FB279;
  color: #ffffff;
}
.blog__nav-btn--next {
  background-color: #D9D9D9;
  color: #04233A;
}
.blog__nav-btn--next:hover:not(:disabled):not(.blog__nav-btn--disabled) {
  background-color: #4FB279;
  color: #ffffff;
}
.blog__nav-btn svg {
  width: 24px;
  height: 24px;
}

.blog__header-end {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .blog__actions {
    display: block;
    align-self: flex-end;
  }
}
@media (max-width: 850px) {
  .blog__actions {
    align-self: center;
    margin-top: 20px;
    display: none;
  }
}

.blog__actions--mobile {
  display: none;
}
@media (max-width: 848px) {
  .blog__actions--mobile {
    display: block;
    margin-top: 20px;
  }
  .blog__actions--mobile.btn-effect, .blog__actions--mobile button.btn-effect, .blog__actions--mobile .btn-effect {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.blog__all-btn {
  min-width: auto !important;
}

.blog__slider-container {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .blog__slider-container {
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
  }
}

.blog__slider .swiper-wrapper {
  height: 400px;
  display: flex;
  gap: 0;
  align-items: stretch;
  will-change: transform;
}
.blog__slider .swiper-slide {
  width: 350px;
  height: auto;
  flex-shrink: 0;
  will-change: transform;
  display: flex;
}
@media screen and (max-width: 1599px) {
  .blog__slider .swiper-slide {
    width: 375px;
  }
}
@media screen and (max-width: 800px) {
  .blog__slider .swiper-slide {
    width: 335px;
  }
}

.blog__card {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #F7F7F7;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .blog__card {
    padding: 18px 16px;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .blog__card {
    padding: 16px;
    gap: 30px;
  }
}
@media (hover: hover) {
  .blog__card:hover {
    transform: translateY(-4px);
    scale: 0.98;
    box-shadow: 0 12px 30px rgba(79, 178, 121, 0.15);
  }
  .blog__card:hover .blog__card-title {
    color: #4FB279;
  }
  .blog__card:hover .blog__read-more {
    transform: scale(1.05);
    background-color: #3a8a5f;
  }
}
@media (hover: none) {
  .blog__card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
    background-color: #FFFFFF;
  }
}

.blog__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.blog__card-image {
  width: 110px;
  height: 60px;
  border-radius: 10px;
  background-color: #D9D9D9;
  flex-shrink: 0;
  overflow: hidden;
}
.blog__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog__card-date {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 10px 20px;
  flex-shrink: 0;
}
.blog__card-date time {
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
}
@media (max-width: 768px) {
  .blog__card-date time {
    font-size: 13px;
  }
}

.blog__card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: space-between;
}

.blog__card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog__card-title {
  font-size: 18px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0;
}
@media (max-width: 768px) {
  .blog__card-title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .blog__card-title {
    font-size: 15px;
  }
}

.blog__card-description {
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  margin: 0;
  max-height: 100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .blog__card-description {
    font-size: 13px;
    line-height: 1.3;
  }
}

.blog__read-more {
  background-color: #4FB279;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 12px;
  line-height: 1.366;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: auto;
}
.blog__read-more:hover {
  background-color: #3a8a5f;
  transform: scale(1.05);
  color: #ffffff;
  text-decoration: none;
}
.blog__read-more:focus {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  color: #ffffff;
  text-decoration: none;
}
.blog__read-more:active {
  transform: scale(0.95);
}
.blog__read-more:visited {
  color: #ffffff;
  text-decoration: none;
}

.blog__card:focus-within {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  scale: 0.98;
}

.reviews {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .reviews {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .reviews {
    padding: 40px 0;
  }
}

.reviews__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 33px;
  position: relative;
}
@media (max-width: 1024px) {
  .reviews__wrapper {
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .reviews__wrapper {
    margin-bottom: 30px;
  }
}

.reviews__header {
  max-width: 450px;
}
@media (max-width: 1024px) {
  .reviews__header {
    max-width: 100%;
  }
}

.reviews__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .reviews__badge {
    margin-bottom: 16px;
  }
}

.reviews__badge-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
  flex-shrink: 0;
}

.reviews__badge-text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}

.reviews__title {
  font-size: 24px;
  line-height: 1.2;
  color: #1C1C1C;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .reviews__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .reviews__title {
    font-size: 18px;
  }
}

.reviews__description {
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0;
}
@media (max-width: 768px) {
  .reviews__description {
    font-size: 13px;
  }
}

.reviews__navigation {
  display: flex;
  gap: 8px;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .reviews__navigation {
    display: none;
  }
}

.reviews__nav-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 24px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews__nav-btn:hover:not(:disabled):not(.reviews__nav-btn--disabled) {
  background-color: #E0E0E0;
  color: #1C1C1C;
}
.reviews__nav-btn:disabled, .reviews__nav-btn.reviews__nav-btn--disabled {
  cursor: not-allowed;
  opacity: 0.4;
  background-color: #F0F0F0;
  color: #CCCCCC;
  pointer-events: none;
}
.reviews__nav-btn--prev {
  background-color: #D9D9D9;
  color: #04233A;
}
.reviews__nav-btn--prev:hover:not(:disabled):not(.reviews__nav-btn--disabled) {
  background-color: #4FB279;
  color: #ffffff;
}
.reviews__nav-btn--next {
  background-color: #D9D9D9;
  color: #04233A;
}
.reviews__nav-btn--next:hover:not(:disabled):not(.reviews__nav-btn--disabled) {
  background-color: #4FB279;
  color: #ffffff;
}
.reviews__nav-btn svg {
  width: 24px;
  height: 24px;
}

.reviews__header-end {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .reviews__actions {
    display: block;
    align-self: flex-end;
  }
}
@media (max-width: 850px) {
  .reviews__actions {
    align-self: center;
    margin-top: 20px;
    display: none;
  }
}

.reviews__actions--mobile {
  display: none;
}
@media (max-width: 848px) {
  .reviews__actions--mobile {
    display: block;
    margin-top: 20px;
  }
  .reviews__actions--mobile.btn-effect, .reviews__actions--mobile button.btn-effect, .reviews__actions--mobile .btn-effect {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.reviews__all-btn {
  min-width: auto !important;
}

.reviews__slider-container {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}
@media (max-width: 768px) {
  .reviews__slider-container {
    overflow: visible;
  }
}

.reviews__slider {
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .reviews__slider {
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
  }
}
@media (max-width: 768px) {
  .reviews__slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
  }
  .reviews__slider .reviews__slide:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 768px) {
  .reviews__slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .reviews__slider {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .reviews__slides {
    display: contents;
  }
}

.reviews__slide {
  width: 350px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .reviews__slide {
    width: auto;
  }
}

.reviews__card {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .reviews__card {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .reviews__card {
    height: auto;
    min-height: 300px;
  }
}
@media (hover: hover) {
  .reviews__card:hover {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
}
@media (hover: none) {
  .reviews__card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

.reviews__card--video {
  background: linear-gradient(135deg, #4FB279 0%, #3a8a5f 100%);
}

.reviews__video-preview {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 12px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .reviews__video-preview {
    position: static;
    height: 400px;
  }
}

.reviews__video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.reviews__play-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #4FB279;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.reviews__play-btn:hover {
  background-color: #3a8a5f;
  transform: scale(1.05);
}
.reviews__play-btn:hover .reviews__play-icon {
  transform: translateX(2px) scale(1.2);
}
.reviews__play-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.reviews__play-icon {
  transition: all 0.3s ease;
  width: 18px;
  height: 18px;
}

.reviews__card--text {
  background-color: #F7F7F7;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .reviews__card--text {
    padding: 16px;
    gap: 16px;
  }
}

.reviews__card-icon {
  width: 49px;
  height: 49px;
  position: relative;
  flex-shrink: 0;
  color: #4FB279;
}
.reviews__card-icon svg {
  width: 100%;
  height: 100%;
}

.reviews__card-icon-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
}

.reviews__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews__card-author {
  font-size: 16px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0;
}
@media (max-width: 768px) {
  .reviews__card-author {
    font-size: 15px;
  }
}

.reviews__card-text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews__card--expanded .reviews__card-text-container {
  gap: 30px;
}
@media (max-width: 768px) {
  .reviews__card--expanded .reviews__card-text-container {
    gap: 20px;
  }
}

.reviews__card-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews__card-text {
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  margin: 0;
  flex: 1;
}
@media (max-width: 768px) {
  .reviews__card-text {
    font-size: 13px;
    line-height: 1.3;
  }
}
.reviews__card--expanded .reviews__card-text {
  height: 171px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .reviews__card--expanded .reviews__card-text {
    height: auto;
    -webkit-line-clamp: 8;
  }
}
.reviews__card:not(.reviews__card--expanded) .reviews__card-text {
  height: 85px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .reviews__card:not(.reviews__card--expanded) .reviews__card-text {
    height: auto;
    -webkit-line-clamp: 4;
  }
}

.reviews__read-more {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  line-height: 1.2;
  color: #1C1C1C;
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.3s ease;
}
.reviews__read-more:hover {
  color: #4FB279;
}
.reviews__read-more:focus {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}

.reviews__card-date {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: #ffffff;
  border-radius: 50px;
  margin-top: auto;
}
.reviews__card-date time {
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
}
@media (max-width: 768px) {
  .reviews__card-date time {
    font-size: 13px;
  }
}

@media (min-width: 1025px) {
  .reviews__slider .swiper-wrapper {
    height: 450px;
    display: flex;
    gap: 0;
    align-items: stretch;
    will-change: transform;
  }
  .reviews__slider .swiper-slide {
    width: 345px;
    height: auto;
    flex-shrink: 0;
    will-change: transform;
  }
}
.reviews__card:focus-within {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  scale: 0.98;
}

.reviews__video-thumbnail[src=""], .reviews__video-thumbnail:not([src]) {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}
.reviews__video-thumbnail[src=""]::after, .reviews__video-thumbnail:not([src])::after {
  content: "Загрузка...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 14px;
}

.rewies-page .rewies-page_header {
  display: flex !important;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .rewies-page .rewies-page_header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  .rewies-page .rewies-page_header .services__actions {
    display: block;
    width: 100%;
  }
  .rewies-page .rewies-page_header .services__actions .services__btn {
    display: block;
    text-align: center;
    width: 100%;
  }
}
.rewies-page .rewies-page_header .services__actions {
  margin-top: 0;
  margin-bottom: auto;
}

.contacts {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contacts {
    margin-bottom: 40px;
  }
}
.contacts__content {
  background-color: #F7F7F7;
  padding: 20px;
  border-radius: 24px;
  position: relative;
}
.contacts__header {
  grid-column-start: 1;
  grid-column-end: 3;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .contacts__header {
    grid-column-end: 4;
  }
}
@media screen and (max-width: 650px) {
  .contacts__header {
    grid-column-end: 2;
    margin-bottom: 18px;
  }
}
.contacts__badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .contacts__badge {
    left: 20px;
    top: 0;
    gap: 15px;
  }
}
.contacts__badge-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
  flex-shrink: 0;
}
.contacts__badge-text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}
.contacts__main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 90px;
  min-height: 400px;
}
@media screen and (max-width: 1200px) {
  .contacts__main {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }
}
.contacts__info {
  width: 100%;
  max-width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
@media screen and (max-width: 1200px) {
  .contacts__info {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .contacts__info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contacts__section:last-child {
  margin-bottom: 0;
}
.contacts__section-title {
  font-size: 18px;
  line-height: 1.2;
  color: #1C1C1C;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .contacts__section-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.contacts__section-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts__section-content a {
  width: -moz-fit-content;
  width: fit-content;
}
.contacts__text {
  font-size: 14px;
  line-height: 1.43;
  color: #1C1C1C;
  margin: 0;
}
.contacts__link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.contacts__link:hover {
  color: #4FB279;
}
.contacts__link:focus {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
  border-radius: 4px;
}
.contacts__cta {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media (max-width: 1200px) {
  .contacts__cta {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
  }
}
@media (max-width: 849px) {
  .contacts__cta.btn-effect, .contacts__cta button.btn-effect, .contacts__cta .btn-effect {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 650px) {
  .contacts__cta {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 6;
  }
  .contacts__cta.btn-effect, .contacts__cta button.btn-effect, .contacts__cta .btn-effect {
    width: 100%;
  }
}
.contacts__appointment-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #4FB279;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 30px;
  font-size: 12px;
  line-height: 1.37;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.contacts__appointment-btn:hover {
  background-color: #45A56A;
  transform: translateY(-1px);
}
.contacts__appointment-btn:focus {
  outline: 2px solid #4FB279;
  outline-offset: 2px;
}
.contacts__appointment-btn:active {
  transform: translateY(0);
}
.contacts__appointment-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .contacts__appointment-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}
.contacts__map {
  position: relative;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .contacts__map {
    width: 100%;
    height: 285px;
    min-height: 285px;
  }
}
.contacts__map-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.contacts__map-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@media (max-width: 480px) {
  .contacts {
    padding: 30px 0;
  }
  .contacts__content {
    padding: 16px;
    border-radius: 16px;
  }
  .contacts__badge {
    left: 16px;
    gap: 10px;
  }
  .contacts__badge-text {
    font-size: 14px;
  }
  .contacts__section-title {
    font-size: 15px;
  }
  .contacts__text {
    font-size: 13px;
  }
  .contacts__map {
    height: 180px;
    border-radius: 16px;
  }
  .contacts__map-container {
    border-radius: 16px;
  }
  .contacts__appointment-btn {
    font-size: 11px;
    padding: 10px 16px;
  }
}
.unkp-cta {
  padding: 60px 0;
  background: #ffffff;
}

.unkp-cta__card {
  background: #F7F7F7;
  border-radius: 24px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 316px;
}

.unkp-cta__content {
  text-align: center;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.unkp-cta__title {
  max-width: 951px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #1C1C1C;
  text-align: center;
}

.unkp-cta__description {
  max-width: 480px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin-top: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.unkp-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.unkp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  white-space: nowrap;
}

.unkp-cta__btn--primary {
  background: #4FB279;
  color: #FFFFFF;
}

.unkp-cta__btn--primary:hover {
  background: #45a36b;
  transform: translateY(-2px);
}

.unkp-cta__btn--secondary {
  background: transparent;
  color: #4FB279;
  border: 1px solid #4FB279;
}

.unkp-cta__btn--secondary:hover {
  background: #4FB279;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.unkp-cta__btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.unkp-cta__visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.unkp-cta__heart-bg {
  position: absolute;
  top: 108px;
  left: 39px;
  width: 201px;
  height: 201px;
  width: 150px;
  height: 150px;
  rotate: -20deg;
}

.unkp-cta__heart-main {
  position: absolute;
  top: 54px;
  right: -180px;
  width: 461px;
  height: 374px;
  background-image: url("/assets/image/unkp/heart-main.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .unkp-cta__card {
    padding: 50px 0;
  }
  .unkp-cta__heart-main {
    top: auto;
    bottom: -50px;
    right: -80px;
    width: 262px;
    height: 213px;
  }
  .unkp-cta__heart-bg {
    top: 108px;
    left: -39px;
    width: 201px;
    height: 201px;
  }
  .unkp-cta__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .unkp-cta {
    padding: 40px 0;
  }
  .unkp-cta__card {
    padding: 40px 20px;
    text-align: center;
  }
  .unkp-cta__content {
    max-width: 100%;
  }
  .unkp-cta__title {
    font-size: 28px;
  }
  .unkp-cta__description {
    font-size: 13px;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .unkp-cta__buttons {
    flex-direction: column;
    gap: 15px;
  }
  .unkp-cta__btn {
    width: 100%;
    max-width: 100%;
  }
  .unkp-cta__heart-bg {
    top: -20px;
    left: -30px;
    width: 75px;
    height: 75px;
    rotate: 45deg;
  }
  .unkp-cta__heart-main {
    display: none;
  }
}
@media (max-width: 480px) {
  .unkp-cta__buttons {
    width: 100%;
    gap: 12px;
  }
  .unkp-cta__title {
    font-size: 20px;
  }
  .unkp-cta__description {
    font-size: 12px;
  }
  .unkp-cta__card {
    padding: 30px 15px;
  }
}
/* Hero блок УНКП */
.unkp-hero {
  padding-bottom: 60px;
  background: #ffffff;
}

.unkp-hero__card {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.unkp-hero__content {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.unkp-hero__title {
  max-width: 951px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #1C1C1C;
  text-align: center;
  margin: 0 0 12px 0;
}

.unkp-hero__description {
  max-width: 600px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0 0 20px 0;
  text-align: center;
}

.unkp-hero__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.unkp-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  white-space: nowrap;
}

.unkp-hero__btn--primary {
  background: #4FB279;
  color: #FFFFFF;
}

.unkp-hero__btn--primary:hover {
  background: #45a36b;
  transform: translateY(-2px);
}

.unkp-hero__btn--secondary {
  background: transparent;
  color: #4FB279;
  border: 1px solid #4FB279;
}

.unkp-hero__btn--secondary a {
  color: #4FB279;
}

.unkp-hero__btn--secondary:hover {
  background: #4FB279;
  transform: translateY(-2px);
}

.unkp-hero__btn--secondary:hover a {
  color: #FFFFFF;
}

.unkp-hero__btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.unkp-hero__visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.unkp-hero__heart-bg {
  position: absolute;
  top: 71px;
  left: 79px;
  width: 121px;
  height: 121px;
  rotate: -20deg;
}

.unkp-hero__heart-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 145px;
  height: 145px;
  rotate: 25deg;
}

/* Дополнительные блоки под Hero */
.unkp-hero__additional {
  display: grid;
  grid-template-columns: 200px 1fr 413px;
  gap: 12px;
  justify-content: center;
}

.unkp-hero__video-block {
  background: #4FB279;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  height: 220px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.unkp-hero__video-blur {
  position: absolute;
  top: 104px;
  left: -115px;
  width: 178px;
  height: 178px;
  background: #fff;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}

.unkp-hero__video-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 12px 0;
}

.unkp-hero__video-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #F5F5F5;
  max-width: 135px;
}

.unkp-hero__video-buttons {
  display: flex;
  gap: 8px;
  margin-top: auto;
  align-items: center;
}

.unkp-hero__video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  background: #FFFFFF;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: 12px;
  color: #4FB279;
  transition: all 0.3s ease;
}

.unkp-hero__video-btn a {
  color: #4FB279;
}

.unkp-hero__video-block:hover .unkp-hero__video-btn {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 178, 121, 0.3);
}
.unkp-hero__video-block:hover .unkp-hero__play-btn {
  transform: scale(1.1);
}

.unkp-hero__play-btn {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.unkp-hero__articles-block {
  background: #FAFAFA;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  height: 220px;
  display: flex;
  flex-direction: column;
}

.unkp-hero__articles-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 181px;
  height: 181px;
}

.unkp-hero__articles-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.unkp-hero__articles-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 12px 0;
}

.unkp-hero__articles-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  max-width: 270px;
}

.unkp-hero__articles-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #4FB279;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #4FB279;
  transition: all 0.3s ease;
  margin-top: auto;
}

.unkp-hero__articles-btn span {
  color: #4FB279;
}

.unkp-hero__articles-block:hover span {
  color: #FFFFFF;
}
.unkp-hero__articles-block:hover .unkp-hero__articles-btn {
  background: #4FB279;
  transform: translateY(-2px);
}

.unkp-hero__image-block {
  background: #D9D9D9;
  border-radius: 20px;
  height: 220px;
}

.unkp-hero__image-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

/* Адаптивность для Hero блока */
@media (max-width: 1200px) {
  .unkp-hero {
    padding: 50px 0;
  }
  .unkp-hero__card {
    padding: 50px 0;
  }
  .unkp-hero__heart-main {
    top: auto;
    bottom: -50px;
    right: -80px;
    width: 262px;
    height: 213px;
  }
  .unkp-hero__heart-bg {
    top: 108px;
    left: -39px;
    width: 121px;
    height: 121px;
  }
  .unkp-hero__title {
    font-size: 28px;
  }
  .unkp-hero__additional {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 20px auto 0;
  }
  .unkp-hero__image-block {
    grid-column: 1/-1;
    height: 300px;
  }
  .unkp-hero__video-block {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .unkp-hero__image-block {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .unkp-hero {
    padding: 40px 0;
  }
  .unkp-hero__card {
    text-align: center;
  }
  .unkp-hero__content {
    max-width: 100%;
  }
  .unkp-hero__title {
    font-size: 24px;
  }
  .unkp-hero__description {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .unkp-hero__buttons {
    flex-direction: column;
    gap: 15px;
  }
  .unkp-hero__btn {
    width: 100%;
    max-width: 100%;
  }
  .unkp-hero__heart-bg {
    top: 20px;
    left: -25px;
    width: 75px;
    height: 75px;
    rotate: 45deg;
  }
  .unkp-hero__heart-main {
    top: 0;
    bottom: auto;
    right: -10px;
    width: 76px;
    height: 76px;
  }
  .unkp-hero__additional {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 0;
  }
  .unkp-hero__image-block {
    height: 250px;
  }
  .unkp-hero__video-block,
  .unkp-hero__articles-block {
    height: auto;
    min-height: 180px;
    padding: 15px;
  }
  .unkp-hero__video-btn {
    padding: 7px 20px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .unkp-hero__video-text,
  .unkp-hero__articles-text {
    margin-bottom: 12px;
    max-width: 100%;
    font-size: 10px;
  }
  .unkp-hero__video-buttons {
    gap: 6px;
  }
  .unkp-hero__play-btn {
    width: 30px;
    height: 30px;
  }
  .unkp-hero__articles-btn {
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    padding: 7px 20px;
  }
  .unkp-hero__articles-icon {
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    rotate: -90deg;
  }
  .unkp-hero__image-block {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    height: 250px;
  }
  .unkp-hero__video-block,
  .unkp-hero__articles-block {
    padding: 12px;
    min-height: 140px;
  }
}
@media (max-width: 480px) {
  .unkp-hero__buttons {
    width: 100%;
    gap: 12px;
  }
  .unkp-hero__title {
    font-size: 20px;
  }
  .unkp-hero__description {
    font-size: 12px;
  }
  .unkp-hero__video-title,
  .unkp-hero__articles-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .unkp-hero__image-block {
    height: 220px;
  }
}
/* Блок "Что важно знать" */
.important-info {
  padding: 60px 0;
  background: #ffffff;
}

.important-info__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.important-info__title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  margin: 0;
}

.important-info__plus-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
}

.important-info__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  align-items: flex-start;
}

.important-info__block {
  border-radius: 20px;
  padding: 20px 20px 60px 20px;
  position: relative;
  overflow: hidden;
  min-height: 244px;
}

.important-info__block--contraindications {
  background: #F5F5F5;
}

.important-info__block--examinations {
  background: #4FB279;
}

.important-info__block-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 20px 0;
}

.important-info__block--examinations .important-info__block-title {
  color: #ffffff;
}

.important-info__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}

.important-info__badge--red {
  background: rgba(212, 57, 57, 0.16);
  color: #FF4E4E;
}

.important-info__badge--green {
  background: rgba(218, 234, 225, 0.4);
  color: #F7F7F7;
}

.important-info__badge-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.important-info__badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.important-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.important-info__item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.important-info__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF4E4E;
  flex-shrink: 0;
  margin-top: 5px;
}

.important-info__block--examinations .important-info__dot {
  background: #ffffff;
}

.important-info__text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0;
}

.important-info__block--examinations .important-info__text {
  color: #ffffff;
}

.important-info__close-icon {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 78px;
  height: 78px;
  z-index: 1;
}

.important-info__heart-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 141px;
  height: 141px;
  z-index: 1;
}

/* Адаптивность для блока "Что важно знать" */
@media (max-width: 1200px) {
  .important-info {
    padding: 50px 0;
  }
  .important-info__blocks {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .important-info__block {
    padding: 20px 20px 50px 20px;
  }
  .important-info__heart-icon {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .important-info {
    padding: 40px 0;
  }
  .important-info__header {
    margin-bottom: 30px;
  }
  .important-info__title {
    font-size: 14px;
  }
  .important-info__block {
    padding: 20px 20px 40px 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .important-info__block-title {
    font-size: 18px;
    margin-bottom: 15px;
    order: 2;
  }
  .important-info__badge {
    margin-bottom: 15px;
  }
  .important-info__list {
    gap: 10px;
    order: 3;
  }
  .important-info__text {
    font-size: 11px;
  }
  .important-info__close-icon {
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
  }
  .important-info__heart-icon {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .important-info {
    padding: 30px 0;
  }
  .important-info__header {
    margin-bottom: 25px;
  }
  .important-info__title {
    font-size: 13px;
  }
  .important-info__block {
    padding: 15px 15px 35px 15px;
  }
  .important-info__block-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .important-info__badge {
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .important-info__badge-text {
    font-size: 9px;
  }
  .important-info__list {
    gap: 8px;
  }
  .important-info__text {
    font-size: 10px;
  }
  .important-info__close-icon {
    top: -8px;
    right: -8px;
    width: 50px;
    height: 50px;
  }
  .important-info__heart-icon {
    width: 80px;
    height: 80px;
  }
}
/* Блок "Курс УНКП" */
.course-info {
  padding: 60px 0;
  background: #ffffff;
}

.course-info__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.course-info__images {
  position: relative;
  background: #F5F5F5;
  border-radius: 20px;
  height: 538px;
  overflow: hidden;
}

.course-info__images--mobile {
  display: none;
}

.course-info__images-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.course-info__image {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
}

.course-info__image--1 {
  top: 10px;
  left: 44px;
  width: 262px;
  height: 348px;
}

.course-info__image--2 {
  top: 140px;
  right: 45px;
  width: 262px;
  height: 348px;
}

.course-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.course-info__content {
  padding: 49px 0;
}

.course-info__header {
  margin-bottom: 12px;
}

.course-info__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 19px;
}

.course-info__badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}

.course-info__plus-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
}

.course-info__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0;
}

.course-info__description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0 0 20px 0;
}

.course-info__benefits {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.course-info__benefit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-info__benefit-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #4FB279;
}

.course-info__benefit-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  max-width: 441px;
}

.course-info__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: #4FB279;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  width: -moz-fit-content;
  width: fit-content;
}

.course-info__btn:hover {
  background: #45a36b;
  transform: translateY(-2px);
}

.course-info__btn-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  color: #ffffff;
  white-space: nowrap;
}

.course-info__btn-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

/* Адаптивность для блока "Курс УНКП" */
@media (max-width: 1200px) {
  .course-info {
    padding: 50px 0;
  }
  .course-info__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  .course-info__images {
    width: 305px;
    height: 313px;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: none;
    padding: 0;
    z-index: -1;
  }
  .course-info__image--1 {
    top: 0;
    left: 0;
    width: 171px;
    height: 227px;
  }
  .course-info__image--2 {
    top: auto;
    bottom: 0;
    right: 0;
    width: 171px;
    height: 227px;
  }
  .course-info__content {
    padding: 0;
    order: 1;
    max-width: 60%;
  }
  .course-info__title {
    font-size: 22px;
    max-width: 100%;
  }
  .course-info__description {
    max-width: 100%;
  }
  .course-info__benefit-text {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .course-info {
    padding: 40px 0;
  }
  .course-info__wrapper {
    gap: 30px;
  }
  .course-info__images {
    height: 320px;
    padding: 15px;
  }
  .course-info__images--mobile {
    display: block;
    position: static;
    top: 0;
    right: 0;
    transform: none;
    z-index: 1;
    margin: 0 auto;
    padding: 0;
  }
  .course-info__images--desktop {
    display: none;
  }
  .course-info__image--1 {
    top: 15px;
    left: 20px;
    width: 150px;
    height: 200px;
  }
  .course-info__content {
    max-width: 100%;
  }
  .course-info__image--2 {
    top: 80px;
    right: 20px;
    width: 150px;
    height: 200px;
  }
  .course-info__badge {
    margin-bottom: 15px;
  }
  .course-info__badge-text {
    font-size: 14px;
  }
  .course-info__title {
    font-size: 20px;
  }
  .course-info__description {
    font-size: 13px;
  }
  .course-info__benefits {
    gap: 20px;
    margin-bottom: 30px;
  }
  .course-info__benefit {
    gap: 15px;
  }
  .course-info__benefit-icon {
    width: 28px;
    height: 28px;
  }
  .course-info__benefit-text {
    font-size: 13px;
  }
  .course-info__btn {
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .course-info {
    padding: 30px 0;
  }
  .course-info__wrapper {
    gap: 25px;
  }
  .course-info__badge {
    margin-bottom: 12px;
  }
  .course-info__badge-text {
    font-size: 13px;
  }
  .course-info__title {
    font-size: 18px;
  }
  .course-info__description {
    font-size: 12px;
  }
  .course-info__benefits {
    gap: 15px;
    margin-bottom: 25px;
  }
  .course-info__benefit {
    gap: 12px;
  }
  .course-info__benefit-icon {
    width: 24px;
    height: 24px;
  }
  .course-info__benefit-text {
    font-size: 12px;
  }
  .course-info__btn {
    padding: 10px 20px;
    min-height: 36px;
  }
  .course-info__btn-text {
    font-size: 11px;
  }
}
/* Блок "Процесс" */
.process-info {
  padding: 60px 0;
  background: #ffffff;
}

.process-info__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
}

.process-info__content {
  max-width: 441px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
  align-self: flex-start;
}

.process-info__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-info__badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.process-info__badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}

.process-info__plus-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
}

.process-info__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 12px 0;
  max-width: 404px;
}

.process-info__description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0;
}

.process-info__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 39px;
}

.process-info__step {
  display: flex;
  align-items: center;
  gap: 24px;
}

.process-info__step-icon {
  width: 70px;
  height: 70px;
  background: #F5F5F5;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4FB279;
  position: relative;
}

.process-info__step-icon::before {
  content: "";
  width: 2px;
  height: 26px;
  background: #F5F5F5;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.process-info__step:last-child .process-info__step-icon::before {
  display: none;
}

.process-info__step-content {
  flex: 1;
}

.process-info__step-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.366;
  color: #1C1C1C;
  margin: 0 0 8px 0;
}

.process-info__step-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0;
}

/* Адаптивность для блока "Процесс" */
@media (max-width: 1200px) {
  .process-info {
    padding: 50px 0;
  }
  .process-info__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-info__content {
    display: grid;
    grid-template-columns: 1fr 178px;
    gap: 20px;
    position: static;
    top: auto;
    align-self: auto;
    max-width: 100%;
  }
  .process-info__cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .unkp-cta__btn {
    width: 178px;
    min-width: 178px !important;
  }
  .process-info__header {
    margin-bottom: 0;
  }
  .process-info__description {
    max-width: 400px;
  }
  .process-info__badge {
    margin-bottom: 25px;
  }
  .process-info__title {
    font-size: 28px;
    margin-bottom: 0;
  }
  .process-info__steps {
    gap: 20px;
  }
  .process-info__step-icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
  .process-info__step-content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .process-info {
    padding: 40px 0;
  }
  .process-info__wrapper {
    gap: 30px;
  }
  .process-info__badge {
    margin-bottom: 20px;
  }
  .process-info__badge-text {
    font-size: 14px;
  }
  .process-info__content {
    grid-template-columns: 1fr;
    position: static;
    top: auto;
    align-self: auto;
  }
  .process-info__title {
    font-size: 24px;
  }
  .process-info__description {
    font-size: 13px;
    max-width: 100%;
  }
  .process-info__steps {
    gap: 18px;
  }
  .process-info__step {
    gap: 18px;
  }
  .process-info__step-icon {
    width: 55px;
    height: 55px;
    border-radius: 27px;
  }
  .process-info__step-title {
    font-size: 18px;
  }
  .process-info__step-text {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .process-info {
    padding: 30px 0;
  }
  .process-info__wrapper {
    gap: 0;
  }
  .process-info__badge {
    margin-bottom: 15px;
  }
  .process-info__badge-text {
    font-size: 13px;
  }
  .process-info__title {
    font-size: 20px;
  }
  .process-info__description {
    font-size: 12px;
  }
  .process-info__steps {
    gap: 15px;
  }
  .process-info__step {
    gap: 15px;
  }
  .process-info__step-icon {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
  .process-info__step-title {
    font-size: 16px;
  }
  .process-info__step-text {
    font-size: 12px;
  }
}
/* Блок "Когда назначают" */
.indications-info {
  padding: 60px 0;
  background: #ffffff;
}

.indications-info__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.indications-info__badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}

.indications-info__plus-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
}

.indications-info__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  align-items: flex-start;
}

.indications-info__image {
  background: #D9D9D9;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  max-height: 502px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indications-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.indications-info__content {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.indications-info__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 20px 0;
  margin-top: 12px;
}

.indications-info__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(79, 178, 121, 0.16);
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 16px;
}

.indications-info__badge .indications-info__badge-text {
  font-size: 10px;
  line-height: 1.2;
  color: #4FB279;
  white-space: nowrap;
}

.indications-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.indications-info__item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.indications-info__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4FB279;
  flex-shrink: 0;
  margin-top: 6px;
}

.indications-info__text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #505050;
  margin: 0;
}

/* Адаптивность для блока "Когда назначают" */
@media (max-width: 1200px) {
  .indications-info {
    padding: 50px 0;
  }
  .indications-info__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    background: #F5F5F5;
    border-radius: 10px;
  }
  .indications-info__image {
    height: 350px;
  }
  .indications-info__content {
    height: auto;
    padding: 30px 20px;
  }
  .indications-info__title {
    padding-top: 0;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .indications-info {
    padding: 40px 0;
  }
  .indications-info__header {
    margin-bottom: 30px;
  }
  .indications-info__badge-text {
    font-size: 14px;
  }
  .indications-info__wrapper {
    gap: 25px;
  }
  .indications-info__image {
    height: 280px;
  }
  .indications-info__content {
    padding: 25px 15px;
    padding-top: 0;
  }
  .indications-info__title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .indications-info__badge {
    margin-bottom: 12px;
  }
  .indications-info__list {
    gap: 10px;
  }
  .indications-info__text {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .indications-info {
    padding: 30px 0;
  }
  .indications-info__header {
    margin-bottom: 25px;
  }
  .indications-info__badge-text {
    font-size: 13px;
  }
  .indications-info__wrapper {
    gap: 20px;
  }
  .indications-info__image {
    height: 250px;
  }
  .indications-info__content {
    padding: 20px 12px;
    padding-top: 0;
  }
  .indications-info__title {
    font-size: 15px;
    margin-bottom: 12px;
    text-align: center;
  }
  .indications-info__badge {
    margin-bottom: 10px;
    padding: 5px 12px;
    margin-left: auto;
    margin-right: auto;
  }
  .indications-info__badge .indications-info__badge-text {
    font-size: 9px;
  }
  .indications-info__list {
    gap: 8px;
  }
  .indications-info__text {
    font-size: 12px;
  }
}
/* Блок "Преимущества" */
.advantages-info {
  padding: 60px 0;
  background: #ffffff;
}

.advantages-info__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.advantages-info__plus-icon {
  width: 14px;
  height: 14px;
  color: #4FB279;
}

.advantages-info__badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}

.advantages-info__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 40px 0;
}

.advantages-info__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  align-items: flex-start;
}

.advantages-info__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advantages-info__item {
  background: #F5F5F5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.advantages-info__question {
  width: 100%;
  padding: 8px 20px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.3s ease;
}

.advantages-info__question:hover {
  background: rgba(79, 178, 121, 0.1);
}

.advantages-info__item--active .advantages-info__question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.advantages-info__question-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #1C1C1C;
  flex: 1;
}

.advantages-info__question-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.advantages-info__item--active .advantages-info__question-arrow path {
  fill: #4FB279;
}

.advantages-info__content {
  display: flex;
  flex-direction: column;
}

.advantages-info__content-bg {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 20px;
  height: 616px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.advantages-info__content-image {
  background: #D9D9D9;
  border-radius: 10px;
  height: 394px;
  overflow: hidden;
  margin-bottom: 20px;
}

.advantages-info__content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantages-info__content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 30px;
}

.advantages-info__content-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #1C1C1C;
}

.advantages-info__content-description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.366;
  color: #505050;
  margin: 0 0 20px 0;
}

.advantages-info__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: #4FB279;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 220px;
  min-height: 40px;
}

.advantages-info__cta-btn:hover {
  background: #45a36b;
  transform: translateY(-2px);
}

.advantages-info__cta-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  color: #ffffff;
  text-align: center;
}

.advantages-info__cta-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

/* Стили для ответов аккордеона */
.advantages-info__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: none;
}

.advantages-info__answer-content {
  padding: 12px 20px 20px 20px;
}

.advantages-info__answer-content p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #505050;
  margin: 0;
}

/* Адаптивность для блока "Преимущества" */
@media (max-width: 1200px) {
  .advantages-info {
    padding: 50px 0;
  }
  .advantages-info__header {
    margin-bottom: 20px;
  }
  .advantages-info__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .advantages-info__content {
    display: none;
  }
  .advantages-info__accordion {
    order: 1;
  }
  .advantages-info__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  /* Показываем ответы аккордеона на мобильных */
  .advantages-info__answer {
    display: block;
  }
  .advantages-info__item--active .advantages-info__answer {
    max-height: 200px;
  }
  .advantages-info__answer-content {
    padding: 8px 20px 16px 20px;
  }
}
@media (max-width: 768px) {
  .advantages-info {
    padding: 40px 0;
  }
  .advantages-info__badge-text {
    font-size: 14px;
  }
  .advantages-info__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .advantages-info__question {
    padding: 8px 15px;
  }
  .advantages-info__question-text {
    font-size: 13px;
  }
  .advantages-info__question-arrow {
    width: 20px;
    height: 20px;
  }
  .advantages-info__answer-content {
    padding: 6px 15px 12px 15px;
  }
  .advantages-info__answer-content p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .advantages-info {
    padding: 30px 0;
  }
  .advantages-info__header {
    margin-bottom: 25px;
  }
  .advantages-info__badge-text {
    font-size: 13px;
  }
  .advantages-info__title {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .advantages-info__question {
    padding: 8px 12px;
  }
  .advantages-info__question-text {
    font-size: 12px;
  }
  .advantages-info__question-arrow {
    width: 18px;
    height: 18px;
  }
  .advantages-info__answer-content {
    padding: 4px 12px 10px 12px;
  }
  .advantages-info__answer-content p {
    font-size: 12px;
  }
}
/* ===== Блок "Зачем нужно" ===== */
.why-unkp {
  padding: 80px 0;
  background: #ffffff;
}

.why-unkp__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.why-unkp__badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}

.why-unkp__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 40px 0;
  max-width: 350px;
}

.why-unkp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.why-unkp__card {
  background: #F7F7F7;
  border-radius: 20px;
  padding: 20px 16px 20px 16px;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-unkp__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(79, 178, 121, 0.15);
}

.why-unkp__card-icon {
  position: absolute;
  top: 20px;
  left: 16px;
  width: 33px;
  height: 33px;
  background: #4FB279;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-unkp__card-content {
  margin-top: 58px;
}

.why-unkp__card-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #1C1C1C;
  margin: 0 0 15px 0;
}

.why-unkp__card-description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  margin: 0;
}

/* Декоративные элементы */
.why-unkp__card::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -150px;
  width: 222px;
  height: 222px;
  border: 11px solid #4FB279;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .why-unkp {
    padding: 60px 0;
  }
  .why-unkp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .why-unkp__title {
    font-size: 22px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .why-unkp {
    padding: 40px 0;
  }
  .why-unkp__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .why-unkp__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .why-unkp__card {
    padding: 15px 12px 33px 12px;
    height: auto;
    min-height: 150px;
  }
  .why-unkp__card-content {
    margin-top: 48px;
  }
  .why-unkp__card-title {
    font-size: 14px;
  }
  .why-unkp__card-description {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .why-unkp {
    padding: 30px 0;
  }
  .why-unkp__header {
    margin-bottom: 12px;
  }
  .why-unkp__badge-text {
    font-size: 14px;
  }
  .why-unkp__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .why-unkp__card {
    padding: 12px 10px 50px 10px;
  }
}
/* Blog Page */
.page-literature .literature-search {
  grid-row-start: 1 !important;
  grid-row-end: 2 !important;
}
@media screen and (max-width: 1101px) {
  .page-literature .literature-search {
    grid-row-start: 2 !important;
    grid-row-end: 3 !important;
  }
}
@media screen and (max-width: 768px) {
  .page-literature .literature-search {
    margin-bottom: 20px !important;
  }
}
.page-literature .blog-sort {
  max-width: 155px;
}

.blog-page .videos-page__header-content {
  max-width: none;
}
.blog-page .videos-page__header {
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 1101px) {
  .blog-page .videos-page__header {
    grid-template-rows: 1fr;
    gap: 20px;
  }
}
.blog-page .videos-page__filters {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 769px) {
  .blog-page .videos-page__filters {
    display: block;
    gap: unset;
    flex-wrap: unset;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .videos-page__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
    margin-bottom: 0;
    overflow: hidden;
  }
}
.blog-page .videos-page__filters .videos-page__filters-slider {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .blog-page .videos-page__filters .videos-page__filters-slider {
    display: flex;
    gap: 12px;
    padding: 15px 0;
  }
  .blog-page .videos-page__filters .videos-page__filters-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: inherit;
    transform: none !important;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .blog-page .videos-page__filters .videos-page__filters-slider .swiper-slide {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .videos-page__filters .videos-page__filters-slider {
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .blog-page .videos-page__filters .videos-page__filters-slider .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }
  .blog-page .videos-page__filters .videos-page__filters-slider .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 769px) {
  .blog-page .videos-page__filters .videos-page__filter-slide {
    width: auto;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .videos-page__filters .videos-page__filter-slide {
    display: flex;
    align-items: center;
    padding: 0 4px 0 0;
  }
  .blog-page .videos-page__filters .videos-page__filter-slide:first-child {
    padding-left: 0;
  }
  .blog-page .videos-page__filters .videos-page__filter-slide:last-child {
    padding-right: 16px;
  }
}
.blog-page .literature-search {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  display: flex;
  align-items: center;
  padding: 0;
  gap: 30px;
}
@media screen and (max-width: 1101px) {
  .blog-page .literature-search {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 4;
    margin-bottom: 20px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .literature-search {
    margin-bottom: 0;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .videos-page__header-content {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .blog-sort__selected, .blog-page .blog-sort__icon {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .blog-sort__button {
    padding: 0;
  }
}
.blog-page .blog-sort__icon-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .blog-page .blog-sort__icon-mobile {
    display: block;
    width: 32px;
    height: 32px;
  }
}
.blog-page .literature-search__form {
  max-width: 290px;
}
@media screen and (max-width: 1101px) {
  .blog-page .literature-search__form {
    max-width: 75%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .blog-page .literature-search__form {
    max-width: 90%;
    grid-row-start: 2;
    grid-row-end: 3;
    margin-bottom: 0;
  }
}
.blog-page .videos-page__title {
  margin: 0;
}

.blog-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 13px;
}
@media screen and (max-width: 1400px) {
  .blog-page__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1200px) {
  .blog-page__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .blog-page__grid {
    grid-template-columns: 1fr;
  }
}

.videos-page__content {
  padding-top: 20px;
  padding-bottom: 100px;
}

.blog-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .blog-sort {
    width: 32px;
  }
}
.blog-sort__label {
  color: #04233A;
  font-size: 15px;
  line-height: 1.87;
}
.blog-sort__dropdown {
  position: relative;
  margin-left: auto;
}
.blog-sort__button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-sort__button[aria-expanded=true] {
  border-color: #4FB279;
  border-radius: 8px 8px 0 0;
}
.blog-sort__button[aria-expanded=true] .blog-sort__icon {
  transform: rotate(180deg);
}
.blog-sort__selected {
  color: #04233A;
  font-size: 15px;
  line-height: 1.87;
}
.blog-sort__icon {
  transition: transform 0.3s ease;
}
.blog-sort__list {
  position: absolute;
  width: 160px;
  top: 100%;
  right: 0;
  background: #FFFFFF;
  border-top: none;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
  overflow: hidden;
}
.blog-sort__list--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.blog-sort__item[aria-selected=true] .blog-sort__option {
  background-color: #F8F9FA;
  color: #04233A;
}
.blog-sort__option {
  width: 200px;
  padding: 8px 12px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #04233A;
  font-size: 15px;
  line-height: 1.87;
  transition: all 0.3s ease;
}
.blog-sort__option:hover {
  background-color: #4FB279;
  color: #FFFFFF;
}

/* UZI Page */
/* ===================================
   УЗИ СТРАНИЦА - UZI PAGE STYLES
   =================================== */
/* ===================================
   PAGE HEADER - Заголовок + Поиск
   =================================== */
.page-header {
  background-color: #ffffff;
}
.page-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 25px;
}
.page-header__title {
  font-size: 24px;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0;
  flex: 1;
}
.page-header__search {
  max-width: 435px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1024px) and (min-width: 891px) {
  .page-header__wrapper {
    gap: 30px;
  }
  .page-header__search {
    max-width: 300px;
  }
}
@media (max-width: 890px) {
  .page-header {
    padding: 0px 0 20px 0;
  }
  .page-header__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .page-header__title {
    font-size: 24px;
  }
  .page-header__search {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .page-header .page-header__search {
    display: none;
  }
}

/* ===================================
   SERVICES SEARCH - Поиск услуг
   =================================== */
.services-search {
  max-width: 435px;
  width: 100%;
}
.services-search__form {
  width: 100%;
  max-width: 435px;
}
.services-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 100px;
  padding: 10px 14px;
  gap: 14px;
  height: 40px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.services-search__wrapper:focus-within {
  background: #ffffff;
  box-shadow: 0 0 0 2px #4fb279;
}
@media (max-width: 480px) {
  .services-search__wrapper {
    padding: 8px 12px;
    gap: 12px;
    height: 36px;
  }
}
.services-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.services-search__button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.services-search__button:hover {
  opacity: 0.7;
}
.services-search__button:focus-visible {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
  border-radius: 4px;
}
.services-search__button img {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .services-search__button img {
    width: 18px;
    height: 18px;
  }
}
.services-search__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #1c1c1c;
  font-size: 15px;
  line-height: 1.19;
}
.services-search__input::-moz-placeholder {
  color: #9e9e9e;
}
.services-search__input::placeholder {
  color: #9e9e9e;
}
.services-search__input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}
.services-search__input::-ms-clear {
  display: none;
}
@media (max-width: 480px) {
  .services-search__input {
    font-size: 14px;
  }
}
.services-search__clear {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.services-search__wrapper:focus-within .services-search__clear {
  opacity: 1;
}
.services-search__clear:hover {
  opacity: 0.7;
}
.services-search__clear:focus-visible {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
  border-radius: 4px;
}
.services-search__clear svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .services-search__clear svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 890px) {
  .services-search {
    max-width: 335px;
  }
}

/* ===================================
   SERVICES LIST - Список услуг
   =================================== */
.services-list {
  margin-top: 40px;
  padding: 0 0 80px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .services-list {
    padding: 0 0 60px;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .services-list {
    padding: 0 0 40px;
  }
}

.services-list__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 480px) {
  .services-list__grid {
    gap: 10px;
  }
}

/* ===================================
   SERVICE CARD - Карточка услуги
   =================================== */
.service-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 178, 121, 0.15);
}
.service-card:focus-within {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .service-card {
    padding: 16px;
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .service-card {
    padding: 14px;
    border-radius: 14px;
  }
}

.service-card__content {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 10px 20px;
  align-items: center;
}
.service-card__content .service-card__title {
  grid-column: 1;
  order: 1;
}
.service-card__content .service-card__description {
  grid-column: 2;
  order: 2;
}
.service-card__content .service-card__price {
  grid-column: 3;
  order: 3;
}
.service-card__content .service-card__btn {
  margin: auto 0;
  grid-column: 4;
  order: 4;
}
@media (max-width: 1024px) {
  .service-card__content {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 16px;
    align-items: start;
  }
  .service-card__content .service-card__title {
    grid-column: 1;
    grid-row: 1;
    order: 1;
  }
  .service-card__content .service-card__price {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    order: 2;
  }
  .service-card__content .service-card__description {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    order: 3;
  }
  .service-card__content .service-card__btn {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    order: 4;
  }
}
@media (max-width: 768px) {
  .service-card__content {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 12px;
    align-items: start;
  }
  .service-card__content .service-card__title {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    order: 1;
  }
  .service-card__content .service-card__price {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    order: 2;
  }
  .service-card__content .service-card__description {
    grid-column: 1/-1;
    grid-row: 2;
    order: 3;
  }
  .service-card__content .service-card__btn {
    margin-top: 8px;
    grid-column: 1/-1;
    grid-row: 3;
    justify-self: stretch;
    width: 125px;
    order: 4;
  }
}

.service-card__title {
  color: #1c1c1c;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .service-card__title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .service-card__title {
    font-size: 14px !important;
  }
}

.service-card__price {
  color: #1c1c1c;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  text-align: right;
}
@media (max-width: 1024px) {
  .service-card__price {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .service-card__price {
    font-size: 16px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .service-card__price {
    font-size: 14px !important;
  }
}

.service-card__description {
  color: #505050;
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .service-card__description {
    font-size: 13px;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .service-card__description {
    font-size: 12px !important;
    line-height: 1.3;
  }
}

.service-card__btn {
  min-width: auto !important;
  height: 42px !important;
  padding: 10px 30px !important;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .service-card__btn {
    height: 38px !important;
    padding: 8px 24px !important;
    font-size: 11px !important;
  }
}
@media (max-width: 480px) {
  .service-card__btn {
    height: 36px !important;
    padding: 8px 20px !important;
    font-size: 11px !important;
  }
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 799px) {
  body {
    padding-top: 113px;
  }
  .uzi-template .page-header__wrapper {
    margin-bottom: 0;
  }
  .uzi-template .page-header__search {
    width: 100% !important;
  }
}
@media (min-width: 800px) and (max-width: 1199px) {
  body {
    padding-top: 78px;
  }
}
@media (min-width: 1200px) {
  body {
    padding-top: 137px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }
  .service-card:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(79, 178, 121, 0.1);
  }
}
.hero-service {
  max-height: 300px;
  margin-top: 40px;
}
@media (max-width: 800px) {
  .hero-service {
    max-height: 100%;
  }
}
.hero-service__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1200px) {
  .hero-service__content {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border-radius: 24px;
  }
}
@media (max-width: 800px) {
  .hero-service__content {
    padding: 20px;
    flex-wrap: wrap;
    gap: 40px;
    align-items: start;
  }
}
.hero-service__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #1c1c1c;
}
@media (max-width: 800px) {
  .hero-service__title {
    font-size: 24px;
  }
}
.hero-service__price {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #1c1c1c;
}
.hero-service__description {
  margin-top: 14px;
  margin-bottom: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #505050;
  max-width: 440px;
}
@media (max-width: 800px) {
  .hero-service__description {
    margin-top: 16px;
  }
}
.hero-service__btn-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 800px) {
  .hero-service__btn-wrapper {
    margin-top: 20px;
    flex-direction: column-reverse;
    align-items: start;
    gap: 12px;
  }
}
@media (max-width: 800px) {
  .hero-service__btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 600px) {
  .hero-service__btn {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
.hero-service__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f7f7;
  max-height: 300px;
}
@media (max-width: 1200px) {
  .hero-service__image {
    margin: 10px 10px 10px auto;
    max-width: 296px;
    width: 296px;
    height: 284px;
  }
}
@media (max-width: 800px) {
  .hero-service__image {
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 180px;
  }
}
.hero-service__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .hero-service__img {
    border-radius: 24px;
  }
}
@media (max-width: 800px) {
  .hero-service__img {
    height: 180px;
  }
}
.hero-service__info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: #F7F7F7;
  border-radius: 24px;
}
@media (max-width: 1200px) {
  .hero-service__info {
    width: auto;
    padding-right: 0;
  }
}
@media (max-width: 800px) {
  .hero-service__info {
    padding: 0;
    gap: 0;
    justify-content: start;
    height: auto;
  }
}

.service-info {
  margin: 80px 0;
  background: #ffffff;
}
@media (max-width: 800px) {
  .service-info {
    margin-top: 60px;
  }
}
.service-info__header {
  margin-bottom: 60px;
}
.service-info__title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  margin-bottom: 8px;
}
.service-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .service-info__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.info-card {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
.info-card__header {
  background: #eeeeee;
  border-radius: 10px;
  padding: 12px 0;
  margin: -20px -20px 20px -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
}
.info-card__icon {
  width: 24px;
  height: 24px;
  background: #4fb279;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card__icon svg {
  width: 12px;
  height: 12px;
  color: #ffffff;
}
.info-card__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
}
.info-card__text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #505050;
}

.service-results {
  padding-bottom: 80px;
  background: #ffffff;
}
.service-results__header {
  margin-bottom: 60px;
}
.service-results__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1c1c1c;
}

.results-example {
  border-radius: 10px;
  max-width: 100%;
  margin: 0 auto;
}
.results-example__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #1c1c1c;
  text-align: center;
  margin-bottom: 40px;
}
.results-example__section {
  margin-bottom: 30px;
}
.results-example__section:last-of-type {
  margin-bottom: 40px;
}
.results-example__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #1c1c1c;
  margin-bottom: 15px;
}
.results-example__subtitle--warning {
  color: #1c1c1c;
}
.results-example__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.results-example__list li {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #1c1c1c;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}
.results-example__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 6px;
  background: #4fb279;
  border-radius: 50%;
}
.results-example__list--warning li::before {
  background: #ff4e4e;
}
.results-example__quote {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #505050;
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border-left: 4px solid #4fb279;
}
.results-example a.results-example__btn {
  background: #4FB279;
  color: #FFFFFF;
}
.results-example a.results-example__btn:hover {
  background-color: #2B9F5C;
  transform: translateY(-1px);
}
.results-example__btn {
  display: flex !important;
  min-width: auto !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
}
.results-example__btn svg {
  width: 16px;
  height: 16px;
}

.related-services {
  padding: 80px 0;
  background: #ffffff;
}
.related-services__header {
  margin-bottom: 60px;
}
.related-services__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1c1c1c;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #1c1c1c;
}
.service-card__description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  flex-grow: 1;
}
.service-card__price {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #1c1c1c;
}
.service-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

.appointment {
  padding: 80px 0;
  background: #f7f7f7;
}
.appointment__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.appointment__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .appointment__title {
    font-size: 24px;
  }
}
.appointment__description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #505050;
  margin-bottom: 40px;
}
.appointment__form {
  text-align: left;
}
.appointment__submit {
  width: 100%;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-label {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #1c1c1c;
  background: #ffffff;
  transition: border-color 0.3s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4fb279;
}
.form-input::-moz-placeholder, .form-select::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #9e9e9e;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #9e9e9e;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox input[type=checkbox] {
  display: none;
}
.form-checkbox__mark {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.form-checkbox__mark::after {
  content: "";
  width: 10px;
  height: 7px;
  border: 2px solid #ffffff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.form-checkbox__text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #505050;
}
.form-checkbox__text a {
  color: #4fb279;
  text-decoration: underline;
}
.form-checkbox__text a:hover {
  text-decoration: none;
}
input[type=checkbox]:checked + .form-checkbox__mark {
  background: #4fb279;
  border-color: #4fb279;
}
input[type=checkbox]:checked + .form-checkbox__mark::after {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid #f0f0f0;
}
.modal__title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
}
.modal__close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #505050;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  width: 40px;
  height: 40px;
}
.modal__close:hover {
  background: #f7f7f7;
}
.modal__body {
  padding: 32px;
}
.modal__description {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #505050;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.service-info__header,
.service-results__header,
.services-list__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.service-info__icon,
.service-results__icon,
.services-list__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.service-info__title,
.service-results__title,
.services-list__title {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #505050;
  margin: 0;
}

.service-results__subtitle,
.services-list__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 32px 0;
}

.results-example__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
.results-example__box {
  width: 100%;
  background: #f7f7f7;
  border-radius: 10px;
  position: relative;
}
.results-example__box-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.results-example__box-title {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 14px 0;
  line-height: 1.366;
}
.results-example__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.results-example__list--normal .results-example__list-item::before {
  background: #4fb279;
}
.results-example__list--deviation .results-example__list-item::before {
  background: #ff4e4e;
}
.results-example__list-item {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.366;
  margin-bottom: 12px;
  padding-left: 15px;
  position: relative;
}
.results-example__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.results-example__list-item:last-child {
  margin-bottom: 0;
}
.results-example__conclusion {
  text-align: center;
  margin-bottom: 40px;
}
.results-example__conclusion-title {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 16px 0;
  line-height: 1.366;
}
.results-example__conclusion-text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #505050;
  line-height: 1.366;
  margin: 0;
  max-width: 601px;
  margin-left: auto;
  margin-right: auto;
}
.results-example__btn {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .modal__content {
    width: 95%;
    max-height: 90vh;
  }
  .modal__header {
    padding: 20px 24px;
  }
  .modal__title {
    font-size: 20px;
  }
  .modal__body {
    padding: 24px;
  }
  .results-example__boxes {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .results-example__box {
    height: auto;
    min-height: 140px;
  }
  .results-example__box-content {
    padding: 16px;
  }
  .results-example__box-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .results-example__list-item {
    font-size: 11px;
    margin-bottom: 8px;
    padding-left: 12px;
  }
  .results-example__list-item::before {
    width: 5px;
    height: 5px;
    top: 5px;
  }
  .results-example__conclusion {
    margin-bottom: 32px;
  }
  .results-example__conclusion-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .results-example__conclusion-text {
    font-size: 12px;
    padding: 0 16px;
  }
}
.results-example__box--right ul li::before {
  background: #ff4e4e;
}

/* Literature Page */
.literature-search {
  padding: 20px 0 40px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .literature-search {
    padding: 0 0 30px;
  }
}
@media (max-width: 480px) {
  .literature-search {
    padding: 0 0 25px;
  }
}
@media (max-width: 768px) {
  .literature-search {
    display: none;
  }
}
.literature-search__form {
  width: 100%;
  max-width: 435px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .literature-search__form {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .literature-search__form {
    max-width: 100%;
  }
}
.literature-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 100px;
  padding: 10px 14px;
  gap: 14px;
  height: 40px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.literature-search__wrapper:focus-within {
  background: #ffffff;
  box-shadow: 0 0 0 2px #4fb279;
}
@media (max-width: 480px) {
  .literature-search__wrapper {
    padding: 8px 12px;
    gap: 12px;
    height: 36px;
  }
}
.literature-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.literature-search__button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.literature-search__button:hover {
  opacity: 0.7;
}
.literature-search__button:focus-visible {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
  border-radius: 4px;
}
.literature-search__button img {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .literature-search__button img {
    width: 18px;
    height: 18px;
  }
}
.literature-search__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #1c1c1c;
  font-size: 15px;
  line-height: 1.19;
}
.literature-search__input::-moz-placeholder {
  color: #9e9e9e;
}
.literature-search__input::placeholder {
  color: #9e9e9e;
}
.literature-search__input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}
.literature-search__input::-ms-clear {
  display: none;
}
@media (max-width: 480px) {
  .literature-search__input {
    font-size: 14px;
  }
}
.literature-search__clear {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.literature-search__clear:hover {
  opacity: 0.7;
}
.literature-search__clear:focus-visible {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
  border-radius: 4px;
}
.literature-search__clear svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .literature-search__clear svg {
    width: 18px;
    height: 18px;
  }
}

.page-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 46px;
}
@media (max-width: 1024px) {
  .page-header__wrapper {
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .page-header__wrapper {
    gap: 20px;
    padding: 24px 0 0;
    justify-content: flex-start;
  }
}

.page-title__heading {
  font-size: 40px;
  line-height: 1.2;
  color: #333333;
  margin: 0;
}
@media (max-width: 1024px) {
  .page-title__heading {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .page-title__heading {
    font-size: 28px;
  }
}

.literature {
  padding: 0 0 80px;
}
.literature__wrapper {
  width: 100%;
}
.literature__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .literature {
    padding: 0 0 60px;
  }
  .literature__list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .literature {
    padding: 0 0 40px;
  }
}

.literature-card {
  background: #f7f7f7;
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.literature-card:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.literature-card__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: 70px;
}
.literature-card__link:focus {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
  border-radius: 20px;
}
.literature-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.literature-card__icon svg {
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}
.literature-card__title {
  font-size: 15px;
  line-height: 1.4;
  color: #1c1c1c;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}
.literature-card:hover .literature-card__title {
  color: #4fb279;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .literature-card__link {
    padding: 18px;
    gap: 14px;
    min-height: 65px;
  }
  .literature-card__icon {
    width: 32px;
    height: 32px;
  }
  .literature-card__icon svg {
    width: 22px;
    height: 22px;
  }
  .literature-card__title {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .literature-card {
    border-radius: 16px;
  }
  .literature-card__link {
    flex-direction: row-reverse;
    align-items: start;
    position: relative;
    gap: 0;
    min-height: 60px;
  }
  .literature-card__link:focus {
    border-radius: 16px;
  }
  .literature-card__icon {
    width: 24px;
    height: 24px;
  }
  .literature-card__icon svg {
    width: 20px;
    height: 20px;
  }
  .literature-card__title {
    font-size: 14px;
    line-height: 1.4;
    padding-right: 8px;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: no-preference) {
  .literature-card:hover {
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .literature-card:hover {
    transform: none;
  }
  .literature-search__input,
  .literature-card {
    transition: none;
  }
}
/* Contacts Page */
/* ===================================
   CONTACTS PAGE STYLES
   =================================== */
@media (max-width: 768px) {
  .page-header {
    padding: 32px 0 32px 0;
  }
}
.page-header__wrapper {
  width: 100%;
}
.page-header__title {
  font-size: 24px;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0 0 32px 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-header__title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .page-header__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.contacts {
  width: 100%;
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .contacts {
    padding: 0 0 40px;
  }
}
.contacts__content {
  background-color: #f7f7f7;
  padding: 40px;
  border-radius: 24px;
  position: relative;
}
@media (max-width: 768px) {
  .contacts__content {
    padding: 24px;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .contacts__content {
    padding: 20px;
    border-radius: 16px;
  }
}
.contacts__main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  min-height: 400px;
}
@media (max-width: 1200px) {
  .contacts__main {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .contacts__main {
    gap: 32px;
  }
}
.contacts__info {
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .contacts__info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contacts__header {
    margin-bottom: 24px;
  }
}
.contacts__badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contacts__badge-icon {
  width: 14px;
  height: 14px;
  color: #4fb279;
  flex-shrink: 0;
}
.contacts__badge-text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  font-weight: 400;
}
@media (max-width: 768px) {
  .contacts__badge-text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .contacts__section {
    margin-bottom: 24px;
  }
}
.contacts__section:last-of-type {
  margin-bottom: 40px;
}
.contacts__section-title {
  font-size: 20px;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 16px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .contacts__section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .contacts__section-title {
    font-size: 16px;
  }
}
.contacts__section-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts__text {
  font-size: 16px;
  line-height: 1.43;
  color: #1c1c1c;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .contacts__text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .contacts__text {
    font-size: 14px;
  }
}
.contacts__link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.contacts__link:hover {
  color: #4fb279;
}
.contacts__link:focus {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
  border-radius: 4px;
}
.contacts__appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #4fb279;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 12px;
  line-height: 1.37;
  font-weight: 400;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: auto;
  min-height: 40px;
}
.contacts__appointment-btn:hover {
  background-color: #45a56a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 178, 121, 0.3);
}
.contacts__appointment-btn:focus {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
}
.contacts__appointment-btn:active {
  transform: translateY(0);
}
.contacts__appointment-btn svg {
  width: 11px;
  height: 12px;
  flex-shrink: 0;
}
.contacts__appointment-btn span {
  font-weight: 400;
}
@media (max-width: 768px) {
  .contacts__appointment-btn {
    padding: 12px 20px;
    font-size: 13px;
    min-height: 44px;
  }
}
@media (max-width: 480px) {
  .contacts__appointment-btn {
    padding: 10px 16px;
    font-size: 12px;
    min-height: 40px;
  }
}
.contacts__map {
  margin: auto 0;
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 910px;
}
@media (max-width: 1200px) {
  .contacts__map {
    max-width: 100%;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .contacts__map {
    height: 300px;
    min-height: 300px;
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .contacts__map {
    height: 284px;
    min-height: 284px;
  }
}
.contacts__map-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}
.contacts #yandex-map {
  height: 400px !important;
}
@media (min-width: 1400px) {
  .contacts #yandex-map {
    height: 400px !important;
  }
}
@media (max-width: 1200px) {
  .contacts #yandex-map {
    height: 400px !important;
  }
}
@media (max-width: 768px) {
  .contacts #yandex-map {
    height: 300px !important;
  }
}
@media (max-width: 480px) {
  .contacts #yandex-map {
    height: 284px !important;
  }
}
.contacts__map-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@media (hover: hover) {
  .contacts__link:hover {
    text-decoration: underline;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contacts__section {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}
.contacts__section:nth-child(1) {
  animation-delay: 0.1s;
}
.contacts__section:nth-child(2) {
  animation-delay: 0.2s;
}
.contacts__section:nth-child(3) {
  animation-delay: 0.3s;
}
.contacts__section:nth-child(4) {
  animation-delay: 0.4s;
}

.contacts__cta {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* Vacancies Page */
/* ===================================
   VACANCIES PAGE STYLES
   Стили для страницы вакансий
   =================================== */
/* ===================================
   PAGE HEADER
   =================================== */
@media screen and (max-width: 768px) {
  .page-header--vacancies {
    padding: 0 !important;
  }
}
.page-header--vacancies .page-header__wrapper {
  gap: 0;
}
@media screen and (max-width: 768px) {
  .page-header--vacancies .page-header__wrapper {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 32px;
    -moz-column-gap: 14px;
         column-gap: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-header--vacancies .page-header__wrapper .page-header__search {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .page-header--vacancies .page-header__wrapper .blog-sort {
    margin-top: 20px;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}

.page-header {
  background-color: #ffffff;
}
.page-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.page-header__title {
  font-size: 24px;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0;
  flex: 1;
}
.page-header__search {
  max-width: 435px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1024px) and (min-width: 891px) {
  .page-header__wrapper {
    gap: 30px;
  }
  .page-header__search {
    max-width: 300px;
  }
}
@media (max-width: 890px) {
  .page-header {
    padding: 0px 0 20px 0;
  }
  .page-header__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
  }
  .page-header__title {
    font-size: 24px;
  }
  .page-header__search {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .page-header .page-header__search {
    display: block;
    width: 70%;
  }
}

/* ===================================
   VACANCIES SECTION
   =================================== */
.vacancies {
  padding: 40px 0 120px 0;
  background-color: #ffffff;
}
.vacancies__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.vacancies__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .vacancies__list {
    gap: 20px;
  }
}
.vacancies__actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 1024px) and (min-width: 891px) {
  .vacancies {
    padding: 32px 0 100px 0;
  }
  .vacancies__wrapper {
    gap: 32px;
  }
  .vacancies__actions {
    margin-top: 32px;
  }
}
@media (max-width: 890px) {
  .vacancies {
    padding: 0px 0 80px 0;
  }
  .vacancies__wrapper {
    gap: 32px;
  }
  .vacancies__actions {
    margin-top: 32px;
  }
}

/* ===================================
   SEARCH VACANCIES
   =================================== */
.search-vacancies {
  max-width: 290px;
  width: 100%;
}
.search-vacancies__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f7f7f7;
  border-radius: 100px;
  padding: 8px 10px;
  height: 40px;
  transition: all 0.3s ease;
}
.search-vacancies__wrapper:focus-within {
  background: #ffffff;
  box-shadow: 0 0 0 2px #4fb279;
}
.search-vacancies__button {
  position: absolute;
  left: 10px;
  background: none;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.search-vacancies__button img {
  width: 20px;
  height: 20px;
}
.search-vacancies__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 0 0 38px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.19;
  color: #04233a;
}
.search-vacancies__input::-moz-placeholder {
  color: #9e9e9e;
}
.search-vacancies__input::placeholder {
  color: #9e9e9e;
}
.search-vacancies__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 890px) {
  .search-vacancies {
    max-width: 335px;
  }
}

/* ===================================
   VACANCY CARD
   =================================== */
.vacancy-card {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 10px 20px;
  height: 60px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.vacancy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.vacancy-card__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20px;
}
.vacancy-card__title {
  font-size: 18px;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0;
  flex-shrink: 0;
  min-width: 200px;
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vacancy-card__requirements {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 20px;
}
@media (max-width: 1400px) and (min-width: 1131px) {
  .vacancy-card__requirements {
    gap: 32px;
    margin-right: 16px;
  }
}
@media (max-width: 1130px) and (min-width: 1025px) {
  .vacancy-card__title {
    max-width: 300px;
  }
  .vacancy-card__requirements {
    gap: 24px;
    margin-right: 12px;
  }
  .vacancy-card__requirement:nth-child(3) {
    display: none;
  }
}
.vacancy-card__requirement {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.vacancy-card__dot {
  width: 8px;
  height: 8px;
  background-color: #4fb279;
  border-radius: 50%;
  flex-shrink: 0;
}
.vacancy-card__text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  margin: 0;
}
.vacancy-card__text.manrope-block--bold {
  font-weight: 700;
}
.vacancy-card__text.manrope-block--regular {
  font-weight: 400;
}
.vacancy-card__arrow {
  background: none;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.vacancy-card__arrow:hover {
  transform: translateX(2px);
}
.vacancy-card__arrow img {
  width: 18px;
  height: 18px;
}
@media (max-width: 1024px) and (min-width: 891px) {
  .vacancy-card__title {
    max-width: 250px;
  }
  .vacancy-card__requirements {
    gap: 16px;
    margin-right: 8px;
  }
  .vacancy-card__requirement:nth-child(3) {
    display: none;
  }
}
@media (max-width: 890px) {
  .vacancy-card {
    padding: 10px 12px;
    height: auto;
    min-height: auto;
  }
  .vacancy-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    width: 100%;
    height: auto;
  }
  .vacancy-card__title {
    font-size: 14px;
    font-weight: 700;
    min-width: auto;
    width: calc(100% - 30px);
    padding-right: 10px;
  }
  .vacancy-card__requirements {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .vacancy-card__requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .vacancy-card__text {
    font-size: 12px;
  }
  .vacancy-card__arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 24px;
    height: 24px;
  }
  .vacancy-card__arrow img {
    width: 18px;
    height: 18px;
  }
  .vacancy-card__arrow:hover {
    transform: translateX(0);
  }
}

/* ===================================
   ANIMATION EFFECTS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===================================
   VACANCY DETAIL PAGE STYLES
   Стили для страницы отдельной вакансии
   =================================== */
/* ===================================
   VACANCY DETAIL SECTION
   =================================== */
.vacancy-detail {
  padding: 40px 0 120px 0;
  background-color: #ffffff;
}
.vacancy-detail__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.vacancy-detail__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vacancy-detail__title {
  font-size: 32px;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0;
}
.vacancy-detail__tags {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.vacancy-detail__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.vacancy-detail__contact {
  display: flex;
  margin-top: 20px;
}
@media (max-width: 1024px) and (min-width: 891px) {
  .vacancy-detail {
    padding: 32px 0 100px 0;
  }
  .vacancy-detail__wrapper {
    gap: 32px;
  }
  .vacancy-detail__header {
    gap: 20px;
  }
  .vacancy-detail__title {
    font-size: 28px;
  }
  .vacancy-detail__tags {
    gap: 16px;
  }
  .vacancy-detail__content {
    gap: 28px;
  }
  .vacancy-detail__contact {
    margin-top: 16px;
  }
}
@media (max-width: 890px) {
  .vacancy-detail {
    padding: 32px 0 80px 0;
  }
  .vacancy-detail__wrapper {
    gap: 32px;
  }
  .vacancy-detail__header {
    gap: 20px;
  }
  .vacancy-detail__title {
    font-size: 24px;
  }
  .vacancy-detail__tags {
    gap: 0;
  }
  .vacancy-detail__content {
    gap: 24px;
  }
  .vacancy-detail__contact {
    margin-top: 16px;
  }
}
.vacancy-detail__contact-text {
  font-size: 18px;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0;
  text-align: center;
}
.vacancy-detail__contact-email {
  color: #4fb279;
  text-decoration: none;
  transition: color 0.2s ease;
}
.vacancy-detail__contact-email:hover {
  color: #3a8f5e;
}
.vacancy-detail__contact-email:focus {
  outline: 2px solid #4fb279;
  outline-offset: 2px;
}
@media (max-width: 1024px) and (min-width: 891px) {
  .vacancy-detail__contact-text {
    font-size: 16px;
  }
}
@media (max-width: 890px) {
  .vacancy-detail__contact-text {
    font-size: 14px;
  }
}

/* ===================================
   VACANCY TAG COMPONENT
   =================================== */
.vacancy-tag {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vacancy-tag__dot {
  width: 8px;
  height: 8px;
  background-color: #4fb279;
  border-radius: 50%;
  flex-shrink: 0;
}
.vacancy-tag__text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  margin: 0;
}
.vacancy-tag__text.manrope-block--medium {
  font-weight: 700;
}
.vacancy-tag__text.manrope-block--regular {
  font-weight: 400;
}
@media (max-width: 1024px) and (min-width: 891px) {
  .vacancy-tag__dot {
    width: 6px;
    height: 6px;
  }
  .vacancy-tag__text {
    font-size: 14px;
  }
}
@media (max-width: 890px) {
  .vacancy-tag {
    gap: 0;
  }
  .vacancy-tag__dot {
    width: 6px;
    height: 6px;
  }
  .vacancy-tag__text {
    font-size: 12px;
  }
}

/* ===================================
   VACANCY SECTION COMPONENT
   =================================== */
.vacancy-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vacancy-section__title {
  font-size: 20px;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0;
}
.vacancy-section__content {
  display: flex;
  flex-direction: column;
}
.vacancy-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.vacancy-section__item {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.4;
  color: #505050;
  margin: 0;
}
.vacancy-section__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background-color: #1c1c1c;
  border-radius: 50%;
}
@media (max-width: 1024px) and (min-width: 891px) {
  .vacancy-section {
    gap: 16px;
  }
  .vacancy-section__title {
    font-size: 18px;
  }
  .vacancy-section__item {
    font-size: 15px;
    padding-left: 14px;
  }
  .vacancy-section__item::before {
    top: 7px;
    width: 3px;
    height: 3px;
  }
}
@media (max-width: 890px) {
  .vacancy-section {
    gap: 16px;
  }
  .vacancy-section__title {
    font-size: 16px;
  }
  .vacancy-section__item {
    font-size: 14px;
    padding-left: 12px;
    line-height: 1.3;
  }
  .vacancy-section__item::before {
    top: 6px;
    width: 3px;
    height: 3px;
  }
}

/* ===================================
   ANIMATION EFFECTS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vacancy-detail {
  animation: fadeInUp 0.6s ease-out;
}

.vacancy-section {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.vacancy-section:nth-child(2) {
  animation-delay: 0.2s;
}
.vacancy-section:nth-child(3) {
  animation-delay: 0.3s;
}
.vacancy-section:nth-child(4) {
  animation-delay: 0.4s;
}

/* ===================================
   HOVER EFFECTS
   =================================== */
.vacancy-section__item {
  transition: color 0.2s ease;
}
.vacancy-section__item:hover {
  color: #1c1c1c;
}

/* Doctor Page */
.doctor-profile {
  padding: 60px 0 80px;
  background-color: #ffffff;
}
.doctor-profile__wrapper {
  display: grid;
  grid-template-columns: 280px 1fr 362px;
  gap: 30px;
  align-items: start;
}
.doctor-profile__photo {
  width: 280px;
  height: 285px;
  border-radius: 20px;
  overflow: hidden;
}
.doctor-profile__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.doctor-profile__info {
  padding-top: 0;
}
.doctor-profile__name {
  font-size: 24px;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 12px;
}
.doctor-profile__position {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  margin-bottom: 40px;
}
.doctor-profile__details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 56px;
}
.doctor-profile__certificates-btn {
  align-self: flex-start;
}
.doctor-profile__contact {
  width: 362px;
  height: 174px;
  background-color: #f7f7f7;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.doctor-profile__contact::before {
  content: "";
  position: absolute;
  top: -78px;
  right: -80px;
  width: 198px;
  height: 198px;
  border: 20px solid #4fb279;
  border-radius: 100%;
  opacity: 0.15;
}

.doctor-detail {
  max-width: 100%;
}
.doctor-detail__text {
  font-size: 16px;
  line-height: 1.2;
  color: #505050;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  max-width: 550px;
  display: inline-block;
}
.doctor-detail__value {
  font-weight: 400;
}

.certificates-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #4fb279;
  transition: opacity 0.3s ease;
}
.certificates-btn:hover {
  opacity: 0.8;
}
.certificates-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.certificates-btn__text {
  font-size: 18px;
  line-height: 1.2;
  text-decoration: underline;
}

.contact-card {
  background-color: #f7f7f7;
  border-radius: 20px;
  width: 362px;
  height: 174px;
  position: relative;
  overflow: hidden;
}
.contact-card__wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-card__header {
  margin-bottom: auto;
}
.contact-card__title {
  font-size: 14px;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 8px;
}
.contact-card__service-name {
  font-size: 12px;
  line-height: 1.37;
  color: #505050;
  margin: 0;
}
.contact-card__price-wrapper {
  position: absolute;
  top: -78px;
  right: -80px;
  width: 198px;
  height: 198px;
  z-index: 1;
}
.contact-card__price-circle {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0.15;
}
.contact-card__price-content {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 60%;
  left: 31%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  align-items: center;
  text-align: center;
}
.contact-card__price-label {
  font-size: 14px;
  line-height: 1.37;
  color: #505050;
  margin-bottom: 12px;
  align-self: flex-start;
}
.contact-card__price-value {
  font-size: 16px;
  line-height: 1.2;
  color: #1c1c1c;
  white-space: nowrap;
}
.contact-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-card__schedule {
  font-size: 14px;
  line-height: 1.43;
  color: #1c1c1c;
  opacity: 0.75;
}
.contact-card__appointment-btn {
  flex-shrink: 0;
}

.appointment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #4fb279;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 40px;
}
.appointment-btn:hover {
  background-color: #45a06b;
}
.appointment-btn__text {
  font-size: 12px;
  line-height: 1.37;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.education {
  padding-bottom: 100px;
  background-color: #ffffff;
}
.education__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.education-card {
  padding: 19px 17px;
  background-color: #f7f7f7;
  border-radius: 20px;
}
.education-card:first-child {
  padding: 19px 17px 25px;
}
.education-card:last-child {
  padding: 14px 17px 31px;
}
.education-card__title {
  font-size: 24px;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 20px;
}
.education-card__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.education-card__item--with-dot {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.education-card__dot {
  width: 8px;
  height: 8px;
  background-color: #4fb279;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.education-card__text {
  font-size: 14px;
  line-height: 1.2;
  color: #505050;
  margin: 0;
}
.education-card:first-child .education-card__text {
  max-width: 511px;
}
.education-card:last-child .education-card__text {
  max-width: 538px;
}

@media (max-width: 1439px) {
  .doctor-profile__wrapper {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .doctor-profile {
    padding-bottom: 20px;
  }
  .doctor-profile__wrapper {
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 100%;
  }
  .doctor-profile__info {
    max-width: none;
  }
  .doctor-profile__contact {
    grid-column-start: 1;
    grid-column-end: 3;
    max-width: 100%;
    width: 100%;
  }
  .doctor-profile .contact-card__bottom {
    justify-content: start;
    gap: 20px;
  }
  .doctor-detail__text {
    max-width: none;
  }
}
@media (max-width: 900px) {
  .doctor-profile__wrapper {
    max-width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 834px) {
  .doctor-profile {
    padding-bottom: 20px;
  }
  .doctor-profile__wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .doctor-profile__main {
    max-width: 100%;
    display: flex;
    gap: 30px;
  }
  .doctor-profile__photo {
    margin: 0 auto;
    height: 285px;
    flex-shrink: 0;
  }
  .doctor-profile__info {
    max-width: 475px;
    flex: 1;
  }
  .doctor-profile__name {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .doctor-profile__specialty {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .doctor-profile__contact {
    max-width: 100%;
    margin: 0;
  }
  .doctor-detail__text {
    font-size: 16px;
    line-height: 1.2;
    max-width: 475px;
  }
  .contact-card {
    width: 100%;
    max-width: 794px;
    height: 176px;
    margin: 0 auto;
  }
  .contact-card__wrapper {
    padding: 20px;
  }
  .contact-card__price-wrapper {
    right: -96px;
    top: -78px;
  }
  .contact-card__price-circle {
    border-width: 31px;
  }
  .contact-card__price-content {
    left: 30%;
    top: 60%;
  }
  .contact-card__bottom {
    justify-content: space-between;
    align-items: center;
  }
  .contact-card__schedule {
    font-size: 14px;
    line-height: 1.43;
  }
  .education__wrapper {
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .education-card {
    width: 100%;
    max-width: 794px;
    margin: 0 auto;
    padding: 19px 17px;
  }
  .education-card:first-child {
    padding: 19px 17px 25px;
  }
  .education-card:last-child {
    padding: 14px 17px 31px;
  }
  .education-card__content {
    max-width: 554px;
  }
  .education-card__text:first-child {
    max-width: 511px;
  }
  .education-card__text:last-child {
    max-width: 538px;
  }
}
.doctor-detail__text br {
  display: none;
}

@media (max-width: 500px) {
  .doctor-profile__photo {
    width: 100%;
    max-width: 100%;
    -o-object-position: top;
       object-position: top;
  }
  .doctor-profile__info {
    display: grid;
    grid-template-columns: 1fr;
  }
  .doctor-profile__name {
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .doctor-profile__position {
    margin-bottom: 4px;
  }
  .doctor-profile__details {
    margin-top: 20px;
  }
  .doctor-detail__text br {
    display: block;
  }
  .doctor-detail:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .doctor-detail__text:last-child span {
    font-size: 14px;
  }
  .contact-card__bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    gap: 10px !important;
  }
  .education-card__item--with-dot {
    flex-direction: column;
  }
  .education-card__title {
    font-size: 18px;
  }
  .doctor-profile__name {
    font-size: 20px;
  }
  .doctor-profile__details {
    margin-bottom: 30px;
  }
  .certificates-btn {
    margin-bottom: 10px;
  }
}
/* Videos Page */
.videos-page {
  background-color: #ffffff;
  min-height: 100vh;
  padding: 0 0 80px;
  color: #1c1c1c;
}
.videos-page .literature-search {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  display: flex;
  align-items: center;
  padding: 0;
  gap: 14px;
}
@media screen and (max-width: 1101px) {
  .videos-page .literature-search {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 4;
    margin-bottom: 20px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .videos-page .literature-search {
    margin-bottom: 0;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.videos-page .videos-page__filters {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 769px) {
  .videos-page .videos-page__filters {
    display: block;
    gap: unset;
    flex-wrap: unset;
  }
}
@media screen and (max-width: 768px) {
  .videos-page .videos-page__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
    margin-bottom: 0;
    overflow: hidden;
  }
}
.videos-page .videos-page__filters .videos-page__filters-slider {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .videos-page .videos-page__filters .videos-page__filters-slider {
    display: flex;
    gap: 12px;
    padding: 15px 0;
  }
  .videos-page .videos-page__filters .videos-page__filters-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: inherit;
    transform: none !important;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .videos-page .videos-page__filters .videos-page__filters-slider .swiper-slide {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .videos-page .videos-page__filters .videos-page__filters-slider {
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .videos-page .videos-page__filters .videos-page__filters-slider .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }
  .videos-page .videos-page__filters .videos-page__filters-slider .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 769px) {
  .videos-page .videos-page__filters .videos-page__filter-slide {
    width: auto;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .videos-page .videos-page__filters .videos-page__filter-slide {
    display: flex;
    align-items: center;
    padding: 0 4px 0 0;
  }
  .videos-page .videos-page__filters .videos-page__filter-slide:first-child {
    padding-left: 0;
  }
  .videos-page .videos-page__filters .videos-page__filter-slide:last-child {
    padding-right: 16px;
  }
}
.videos-page .literature-search__form {
  max-width: 290px;
}
@media screen and (max-width: 1200px) {
  .videos-page .literature-search__form {
    max-width: 100%;
  }
  .videos-page .videos-page__filters {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .videos-page .blog-sort {
    width: 32px;
  }
}
.videos-page .literature-search {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .videos-page .literature-search {
    padding: 0;
  }
}
.videos-page .literature-search .literature-search__wrapper {
  flex: 1;
}
.videos-page .swiper {
  margin: 0;
}
.videos-page .swiper-slide {
  padding: 15px 0;
  width: -moz-fit-content;
  width: fit-content;
}
.videos-page__content {
  max-width: 1440px;
  margin: 0 auto;
}
.videos-page__header {
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 1101px) {
  .videos-page__header {
    grid-template-rows: 1fr;
    gap: 20px;
  }
}
.videos-page__header-content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.videos-page__title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0 0 12px 0;
}
@media (max-width: 834px) {
  .videos-page__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .videos-page__title {
    font-size: 32px;
  }
}
.videos-page__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #9e9e9e;
  margin: 0;
}
@media (max-width: 768px) {
  .videos-page__subtitle {
    font-size: 16px;
  }
}
.videos-page__filters {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .videos-page__filters {
    gap: 4px;
  }
}
.videos-page__filter {
  padding: 12px 24px;
  border: 1px solid #9e9e9e;
  border-radius: 30px;
  background: transparent;
  color: #9e9e9e;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
}
.videos-page__filter:hover {
  background: rgba(79, 178, 121, 0.1);
  border-color: #4fb279;
  color: #4fb279;
}
.videos-page__filter--active {
  background: #4fb279;
  border-color: #4fb279;
  color: #ffffff;
}
.videos-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 834px) {
  .videos-page__grid {
    gap: 20px;
  }
}
@media (max-width: 724px) {
  .videos-page__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.videos-page__video-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.videos-page__video-preview {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}
.videos-page__video-preview:hover .videos-page__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 768px) {
  .videos-page__video-preview {
    height: 200px;
  }
}
.videos-page__video-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videos-page__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4fb279;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videos-page__play-btn svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}
.videos-page__play-btn:hover {
  background: #45a06b;
}
.videos-page__video-title {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.366;
  color: #1c1c1c;
  margin: 0;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.video-modal__content {
  position: relative;
  width: 95%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.video-modal__video {
  width: 100%;
  height: auto;
  max-height: 80vh;
}

.blog-page .videos-page__header {
  row-gap: 30px;
  margin-bottom: 40px;
}

.videos-page__header--documents, .videos-page__header--literature {
  margin-bottom: 30px !important;
  grid-template-rows: 1fr !important;
}/*# sourceMappingURL=style.css.map */