@charset "UTF-8";
:root {
  --font-family: "Montserrat","Open Sans", sans-serif;
  --content-width: 1470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --bg: #F3EEEA;
  --btn: #684D44E5;
  --btn-hover: #543c34;
  --text-dark: #2e1f1a;
  --text-mid: #4a3530;
  --text-light: #f5ede9;
  --nav-bg: #a89188;
  --border: rgba(100,60,48,0.18);
  --drawer-bg: #b3a49b;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "MontserratAlternates";
  src: url("../fonts/MontserratAlternates-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "MontserratAlternates";
  src: url("../fonts/MontserratAlternates-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header {
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.logo {
  width: 220px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.1;
}

.logo-sub {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 150%;
  letter-spacing: -3%;
}

.logo-name {
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}

.info-icon-img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  opacity: 0.65;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.info-text {
  font-size: 12.5px;
  color: var(--text-dark);
  line-height: 1.5;
}

.divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.phone-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.phone-link:hover {
  opacity: 0.7;
}

.btn-cta {
  background: var(--nav-bg);
  color: var(--light-color);
  border: none;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 16px;
  white-space: nowrap;
  -webkit-transition: background 0.25s, -webkit-transform 0.15s;
  transition: background 0.25s, -webkit-transform 0.15s;
  transition: background 0.25s, transform 0.15s;
  transition: background 0.25s, transform 0.15s, -webkit-transform 0.15s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn-cta:hover {
  background: var(--btn-hover);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

/* Десктопная навигация (центрирована) — ЭТО ЕДИНОЕ МЕНЮ */
.nav-bar {
  background: var(--nav-bg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav-bar a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 11px 18px;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--light-color);
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-bar a:hover {
  background: rgba(0, 0, 0, 0.08);
}

.nav-separator {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.35);
  margin-inline: 2px;
}

/* Бургер (скрыт на десктопе) */
.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 2px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.burger:hover {
  background: rgba(0, 0, 0, 0.07);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.32s cubic-bezier(0.77, 0, 0.18, 1);
  transition: opacity 0.2s, -webkit-transform 0.32s cubic-bezier(0.77, 0, 0.18, 1);
  transition: transform 0.32s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.2s;
  transition: transform 0.32s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.2s, -webkit-transform 0.32s cubic-bezier(0.77, 0, 0.18, 1);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.phone-inline {
  display: none;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 2px;
}

@media (max-width: 1024px) {
  .header {
    position: relative;
  }
  .info-block,
  .btn-cta:not(.mobile-btn),
  .phone-link {
    display: none;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .phone-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--drawer-bg);
    border-top: 1px solid var(--border);
    -webkit-box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
    z-index: 200;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition: max-height 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  }
  .nav-bar.open {
    max-height: 500px; /* достаточно для всех пунктов */
  }
  .nav-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 0;
  }
  .nav-bar a {
    padding: 16px 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    background: var(--drawer-bg);
    color: var(--text-dark);
    white-space: normal;
    text-align: center;
  }
  .nav-bar a:last-child {
    border-bottom: none;
  }
  .nav-separator {
    display: none;
  }
  .logo {
    width: auto;
    max-width: 170px;
    height: auto;
  }
  .logo-name {
    font-size: 22px;
  }
  .top-bar {
    gap: 12px;
    padding-block: 10px;
  }
}
@media (max-width: 500px) {
  .logo {
    height: 60px;
  }
  .logo-name {
    font-size: 18px;
  }
  .logo-sub {
    font-size: 12px;
  }
  .phone-inline {
    font-size: 14px;
  }
  .nav-bar a {
    padding: 14px 18px;
    font-size: 12px;
  }
}
.quiz-trigger {
  background: var(--btn) !important;
  color: var(--text-light) !important;
  border: none;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quiz-trigger:hover {
  background: var(--btn-hover) !important;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.call-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

#quizModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.2s, opacity 0.2s ease;
  transition: visibility 0.2s, opacity 0.2s ease;
}

#quizModal.active {
  visibility: visible;
  opacity: 1;
}

.modal-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 16px;
  -webkit-box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  -webkit-animation: modalFadeIn 0.25s ease-out;
  animation: modalFadeIn 0.25s ease-out;
  overflow: hidden;
}

@-webkit-keyframes modalFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  background: var(--btn);
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 20;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #6C9978;
  color: white;
}

#quizModal .quiz-widget {
  width: 100%;
  background: rgba(243, 238, 234, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 0;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: thin;
}

#quizModal .quiz-widget::-webkit-scrollbar {
  width: 6px;
}

#quizModal .quiz-widget::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

#quizModal .quiz-widget::-webkit-scrollbar-thumb {
  background: #6C9978;
  border-radius: 10px;
}

#quizModal .quiz-widget::-webkit-scrollbar-thumb:hover {
  background: #558066;
}

#quizModal .quiz-widget .quiz-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(100, 60, 48, 0.2);
}

#quizModal .quiz-widget .quiz-header h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

#quizModal .quiz-widget .progress-area {
  padding: 12px 32px 16px;
}

#quizModal .quiz-widget .progress-bar-bg {
  background: rgba(100, 60, 48, 0.2);
  border-radius: 16px;
  height: 8px;
  width: 100%;
  overflow: hidden;
}

#quizModal .quiz-widget .progress-fill {
  background: var(--btn);
  width: 0%;
  height: 100%;
  border-radius: 16px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

#quizModal .quiz-widget .step-counter {
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 8px;
  font-weight: 500;
}

#quizModal .quiz-widget .quiz-content {
  padding: 28px 32px 32px;
  position: relative;
}

#quizModal .quiz-widget .question-block {
  display: none;
  -webkit-animation: fadeIn 0.25s ease;
  animation: fadeIn 0.25s ease;
}

#quizModal .quiz-widget .question-block.active {
  display: block;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#quizModal .quiz-widget .success-block {
  text-align: center;
  padding: 30px 20px;
  background: rgba(108, 153, 120, 0.15);
  border-radius: 16px;
  margin: 20px 0;
  border: 1px solid var(--btn);
}

#quizModal .quiz-widget .success-block h3 {
  color: var(--btn);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

#quizModal .quiz-widget .success-block p {
  color: var(--text-dark);
  font-size: 1.1rem;
}

#quizModal .quiz-widget .question-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

#quizModal .quiz-widget .options-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

#quizModal .quiz-widget .checkbox-option,
#quizModal .quiz-widget .radio-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 18px;
  border-radius: 20px;
  border: 1px solid rgba(100, 60, 48, 0.2);
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

#quizModal .quiz-widget .checkbox-option:hover,
#quizModal .quiz-widget .radio-option:hover {
  background: rgba(255, 255, 255, 0.95);
}

#quizModal .quiz-widget input[type=checkbox],
#quizModal .quiz-widget input[type=radio] {
  width: 20px;
  height: 20px;
  accent-color: var(--btn);
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#quizModal .quiz-widget label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
  line-height: 1.3;
}

#quizModal .quiz-widget .comment-area textarea,
#quizModal .quiz-widget .form-row input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(100, 60, 48, 0.2);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#quizModal .quiz-widget .comment-area textarea:focus,
#quizModal .quiz-widget .form-row input:focus {
  outline: none;
  border-color: var(--btn);
  -webkit-box-shadow: 0 0 0 3px rgba(108, 153, 120, 0.2);
  box-shadow: 0 0 0 3px rgba(108, 153, 120, 0.2);
}

#quizModal .quiz-widget .age-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(100, 60, 48, 0.2);
}

#quizModal .quiz-widget .age-input input[type=number] {
  font-size: 1.2rem;
  width: 90px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(100, 60, 48, 0.2);
  text-align: center;
  font-weight: 600;
  background: white;
}

#quizModal .quiz-widget .age-slider {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 150px;
}

#quizModal .quiz-widget .age-slider input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(100, 60, 48, 0.2);
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}

#quizModal .quiz-widget .age-slider input[type=range]:focus {
  outline: none;
}

#quizModal .quiz-widget .age-slider input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: rgba(100, 60, 48, 0.2);
  border-radius: 6px;
}

#quizModal .quiz-widget .age-slider input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  background: rgba(100, 60, 48, 0.2);
  border-radius: 6px;
}

#quizModal .quiz-widget .age-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--btn);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -7px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
}

#quizModal .quiz-widget .age-slider input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--btn);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-transition: transform 0.1s;
  transition: transform 0.1s;
}

#quizModal .quiz-widget .age-slider input[type=range]:active::-webkit-slider-thumb {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#quizModal .quiz-widget .age-slider input[type=range]:active::-moz-range-thumb {
  transform: scale(1.1);
}

#quizModal .quiz-widget .age-slider input[type=range]:focus::-webkit-slider-thumb {
  background: var(--btn-hover);
}

#quizModal .quiz-widget .age-slider input[type=range]:focus::-moz-range-thumb {
  background: var(--btn-hover);
}

#quizModal .quiz-widget .form-row {
  margin-bottom: 24px;
}

#quizModal .quiz-widget .form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

#quizModal .quiz-widget .checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 10px;
}

#quizModal .quiz-widget .checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

#quizModal .quiz-widget .checkbox-row label {
  font-weight: normal;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

#quizModal .quiz-widget .checkbox-row a {
  color: var(--btn);
  text-decoration: underline;
}

#quizModal .quiz-widget .error-message {
  color: #d14545 !important;
  font-size: 0.85rem;
  margin-top: 6px;
}

#quizModal .quiz-widget .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

#quizModal .quiz-widget .btn {
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#quizModal .quiz-widget .btn-primary {
  background: var(--btn);
  color: white;
}

#quizModal .quiz-widget .btn-primary:hover {
  background: var(--btn-hover);
}

#quizModal .quiz-widget .btn-secondary {
  background: var(--drawer-bg);
  color: var(--text-dark);
}

#quizModal .quiz-widget .btn-secondary:hover {
  background: #a0857a;
}

.toast-notify {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.9);
  -ms-transform: translateX(-50%) scale(0.9);
  transform: translateX(-50%) scale(0.9);
  background: var(--text-dark);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: 60px;
  font-weight: 500;
  z-index: 2000;
  opacity: 0;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
  pointer-events: none;
}

.toast-notify.show {
  opacity: 1;
  -webkit-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}

@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    margin: 20px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    font-size: 22px;
    width: 30px;
    height: 30px;
  }
  #quizModal .quiz-widget .quiz-header {
    padding: 16px 20px 8px;
  }
  #quizModal .quiz-widget .quiz-header h1 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  #quizModal .quiz-widget .progress-area {
    padding: 4px 20px 8px;
  }
  #quizModal .quiz-widget .step-counter {
    margin-top: 4px;
  }
  #quizModal .quiz-widget .quiz-content {
    padding: 16px 20px 20px;
  }
  #quizModal .quiz-widget .question-text {
    font-size: 18px;
    margin-bottom: 8px;
  }
  #quizModal .quiz-widget .options-group {
    gap: 8px;
    margin-bottom: 16px;
  }
  #quizModal .quiz-widget .checkbox-option,
  #quizModal .quiz-widget .radio-option {
    padding: 8px 12px;
  }
  #quizModal .quiz-widget .age-input {
    padding: 10px 14px;
    gap: 8px;
  }
  #quizModal .quiz-widget .age-input input[type=number] {
    width: 60px;
    font-size: 0.9rem;
  }
  #quizModal .quiz-widget .navigation {
    margin-top: 16px;
    gap: 8px;
  }
  #quizModal .quiz-widget .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  .toast-notify {
    white-space: normal;
    text-align: center;
    max-width: 85%;
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}
@media (max-width: 550px) {
  .modal-container {
    width: 100%;
    border-radius: 28px;
    margin: 16px;
  }
  #quizModal .quiz-widget .options-group {
    gap: 6px;
  }
  #quizModal .quiz-widget .quiz-content {
    padding: 12px 16px 16px;
  }
  #quizModal .quiz-widget .checkbox-option,
  #quizModal .quiz-widget .radio-option {
    padding: 6px 10px;
  }
  #quizModal .quiz-widget .btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}
/* Модальное окно – улучшенное, плавное, без наезда кнопки закрытия */
.modal-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease, opacity 0.3s ease, backdrop-filter 0.3s ease;
  transition: visibility 0.3s ease, opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.modal-form-overlay.active {
  visibility: visible;
  opacity: 1;
  backdrop-filter: blur(10px);
}

.modal-form-container {
  position: relative;
  max-width: 500px;
  width: 100%;
  background: linear-gradient(145deg, var(--drawer-bg), #b8a99f);
  border-radius: 48px;
  -webkit-box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: -webkit-transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.modal-form-overlay.active .modal-form-container {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.modal-form-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--light-color);
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 60% 40% 50% 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 10;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  backdrop-filter: blur(2px);
}

.modal-form-close:hover {
  background: var(--btn);
  color: var(--light-color);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  border-radius: 40% 60% 50% 50%;
}

.modal__form {
  background: rgba(243, 238, 234, 0.92);
  backdrop-filter: blur(8px);
  margin: 20px;
  border-radius: 32px;
  padding: 36px 28px 40px;
  position: relative;
  overflow: hidden;
}

.modal__form::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 20%, rgba(168, 145, 136, 0.2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.modal__form-card {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
}

.modal__form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}

.modal__form-phone {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-family: inherit;
  background: var(--light-color);
  border: 2px solid var(--border);
  border-radius: 60px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: var(--text-dark);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.modal__form-phone:focus {
  outline: none;
  border-color: var(--btn);
  -webkit-box-shadow: 0 0 0 4px rgba(104, 77, 68, 0.2);
  box-shadow: 0 0 0 4px rgba(104, 77, 68, 0.2);
}

.modal__form-btn {
  background: var(--btn);
  border: none;
  border-radius: 60px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--light-color);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.modal__form-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation: shine 3s infinite;
  animation: shine 3s infinite;
}

@-webkit-keyframes shine {
  0%, 100% {
    left: -60%;
  }
  50% {
    left: 140%;
  }
}

@keyframes shine {
  0%, 100% {
    left: -60%;
  }
  50% {
    left: 140%;
  }
}
.modal__form-btn:hover {
  background: var(--btn-hover);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.3);
}

.modal__form-btn:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.modal__form-policy {
  margin-top: 8px;
}

.modal__policy-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.modal__policy-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--btn);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal__policy {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-mid);
}

.modal__policy-link {
  color: var(--btn);
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.modal__policy-link:hover {
  color: var(--btn-hover);
  text-decoration: underline;
}

.form-error {
  background-color: #f44336;
  color: white;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  display: none;
}

@media (max-width: 640px) {
  .modal-form-overlay {
    padding: 16px;
  }
  .modal__form {
    padding: 56px 20px 32px; /* увеличили верхний отступ, чтобы кнопка закрытия не наезжала на поля */
    margin: 16px;
  }
  .modal__form-phone,
  .modal__form-btn {
    padding: 14px 18px;
    font-size: 14px;
  }
  .modal__policy {
    font-size: 11px;
  }
  .modal-form-close {
    top: 12px;
    right: 16px;
  }
}
.hero {
  padding-top: 30px;
}

.hero__container {
  max-width: 1320px;
  border-radius: 16px;
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Градиент: справа налево, начинается с 60% блока */
.hero__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(247, 244, 240, 0)), color-stop(40%, rgba(247, 244, 240, 0)), color-stop(60%, rgba(247, 244, 240, 0.6)), color-stop(80%, rgba(247, 244, 240, 0.85)), to(rgba(247, 244, 240, 0.85)));
  background: linear-gradient(to left, rgba(247, 244, 240, 0) 0%, rgba(247, 244, 240, 0) 40%, rgba(247, 244, 240, 0.6) 60%, rgba(247, 244, 240, 0.85) 80%, rgba(247, 244, 240, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 52px 48px 52px 64px;
  max-width: 787px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.hero__logo {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A6E6A;
}

.hero__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 60px);
  font-family: MontserratAlternates;
  font-weight: 600;
  font-style: SemiBold;
  line-height: 60px;
  letter-spacing: 0%;
  font-weight: 700;
  line-height: 1.2;
  color: #2B2320;
}

.hero__title .accent {
  color: #E7CC9C;
}

.hero__subtitle {
  margin: 0;
  max-width: 655px;
  font-family: Montserrat;
  font-weight: 500;
  color: #000;
  font-size: 25px;
  color: var();
  line-height: 100%;
  letter-spacing: 0%;
}

/* Анимация для элементов hero */
.hero__logo,
.hero__title,
.hero__subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-filter: blur(4px);
  filter: blur(4px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-filter 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-filter 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-filter 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.hero.animated .hero__logo,
.hero.animated .hero__title,
.hero.animated .hero__subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-filter: blur(0);
  filter: blur(0);
}

/* Небольшие задержки для последовательного появления */
.hero.animated .hero__logo {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.hero.animated .hero__title {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.hero.animated .hero__subtitle {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

/* Необязательно: мягкое появление фона контейнера */
.hero__container {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.hero.animated .hero__container {
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 0;
  }
  .hero__container {
    border-radius: 0;
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .hero__container {
    background-position: center right;
    min-height: 520px;
  }
  .hero__container::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(247, 244, 240, 0.6)), color-stop(50%, rgba(247, 244, 240, 0.6)), color-stop(70%, rgba(247, 244, 240, 0.42)), to(rgba(247, 244, 240, 0)));
    background: linear-gradient(to right, rgba(247, 244, 240, 0.6) 0%, rgba(247, 244, 240, 0.6) 50%, rgba(247, 244, 240, 0.42) 70%, rgba(247, 244, 240, 0) 100%);
  }
  .hero__logo {
    display: none;
  }
  .hero__content {
    padding: 0;
  }
}
.banner {
  position: relative;
}

.banner__inner {
  margin: 0 auto;
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 30px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: -webkit-gradient(linear, left top, right top, from(#FFFBF9), to(#FFFBF9));
  background: linear-gradient(90deg, #FFFBF9 0%, #FFFBF9 100%);
  -webkit-box-shadow: 0px -2px 15px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px -2px 15px 0px rgba(0, 0, 0, 0.2509803922);
  width: 90%;
  gap: 20px;
  max-width: 1200px;
  min-height: 180px;
  border-radius: 16px;
  z-index: 10;
}

.banner__text {
  margin: 0;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 20px;
  color: rgba(36, 29, 21, 0.8);
  line-height: 110%;
  letter-spacing: -2%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.banner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.banner__item {
  padding-right: 15px;
}

.banner__item:not(:last-child) {
  border-right: 1px solid rgba(36, 29, 21, 0.8);
}

.banner__btns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner__btn {
  position: relative;
  overflow: hidden;
  background: var(--nav-bg);
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 284px;
  height: 67px;
  padding: 10px 15px;
  border-radius: 20px;
  font-family: MontserratAlternates;
  font-weight: 600;
  font-size: 22px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.banner__btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation: shine 3s ease-in-out infinite;
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% {
    left: -60%;
  }
  50% {
    left: 140%;
  }
}
.banner__btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #7a5a4f 0%, #5e4038 100%);
  -webkit-box-shadow: 0 10px 20px rgba(104, 77, 68, 0.3);
  box-shadow: 0 10px 20px rgba(104, 77, 68, 0.3);
}

.banner__btn:hover::after {
  -webkit-animation: shine 1s ease-in-out infinite;
  animation: shine 1s ease-in-out infinite;
}

@media (max-width: 1300px) {
  .banner__inner {
    top: -80px;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1024px) {
  .banner__inner {
    top: 0px;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
  }
  .banner__btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .banner {
    position: relative;
    padding: 0px 15px;
  }
  .banner__inner {
    top: -50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
    width: 95%;
    min-height: auto;
    margin-bottom: 10px;
  }
  .banner__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .banner__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-right: none !important;
    border-bottom: 1px solid #283D3B;
    padding-bottom: 15px;
    padding-right: 0;
  }
  .banner__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .banner__box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .banner__text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .banner__btns-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .banner__btn {
    width: 100%;
    height: 50px;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .banner__inner {
    padding: 15px 12px;
    gap: 15px;
  }
  .banner__item {
    gap: 10px;
    padding-bottom: 12px;
  }
  .banner__text {
    font-size: 14px;
  }
  .banner__btn {
    height: 48px;
    font-size: 16px;
  }
}
.report__container {
  position: relative;
  padding: 0 15px;
}
.report__bottom {
  padding-top: 130px;
  margin: 0 auto;
  max-width: 1197px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
.report__title {
  margin: 0;
  font-family: MontserratAlternates;
  font-weight: 600;
  font-size: 60px;
  max-width: 597px;
  line-height: 70px;
  letter-spacing: -2%;
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.report__cercle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 102px;
  width: 102px;
  height: 102px;
  border-radius: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.report__bottom-list {
  min-width: 590px;
}
.report__bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 10px;
}
.report__bottom-descr {
  margin: 0;
  font-weight: 400;
  font-size: 22px;
  color: var(--dark-blue);
  line-height: 100%;
  letter-spacing: -2%;
}
.report__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.report__img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
  object-fit: cover;
}
.report__text {
  margin: 0;
  font-family: MontserratAlternates;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #6C9978;
  max-width: 320px;
  margin-bottom: 5px;
}
.report__btn {
  background: var(--nav-bg);
  color: var(--light-color);
  max-width: 100%;
  width: 280px;
  height: 56px;
  padding: 10px 20px;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  font-family: MontserratAlternates;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.report__btn:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}
.report__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.5)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
  pointer-events: none;
}
.report__btn:hover::before {
  left: 100%;
}
.report__right-descr {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 12px;
  margin: 20px auto 0;
  max-width: 320px;
  font-family: MontserratAlternates;
  font-weight: 500;
  font-size: 18px;
  color: var(--dark-blue);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .report__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 800px;
    gap: 40px;
    padding-top: 300px;
  }
  .report__right {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .report__bottom {
    padding-top: 240px;
    max-width: 100%;
    gap: 30px;
  }
  .report__title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 30px;
  }
  .report__bottom-list {
    min-width: auto;
    width: 100%;
  }
  .report__bottom-item {
    gap: 10px;
    margin-bottom: 10px;
  }
  .report__bottom-icon {
    width: 60px !important;
    height: 60px !important;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .report__bottom-descr {
    font-size: 18px;
    max-width: 100%;
    line-height: 130%;
  }
  .report__right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 16px;
  }
  .report__img {
    max-width: 280px;
  }
  .report__text {
    font-size: 16px;
    max-width: 280px;
  }
  .report__btn {
    width: 260px;
    height: 52px;
    font-size: 18px;
  }
  .report__right-descr {
    font-size: 16px;
    max-width: 280px;
  }
}
@media (max-width: 576px) {
  .report__container {
    padding: 0 10px;
  }
  .report__title {
    font-size: 28px;
    line-height: 90%;
  }
  .report__cercle {
    min-width: 60px;
    width: 60px;
    height: 60px;
  }
  .report__bottom-descr {
    font-size: 16px;
  }
  .report__right {
    padding: 12px;
  }
  .report__img {
    max-width: 260px;
    margin-bottom: 16px;
  }
  .report__text {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .report__btn {
    width: 240px;
    height: 48px;
    font-size: 16px;
  }
  .report__right-descr {
    font-size: 15px;
    padding-top: 10px;
  }
}

.about {
  background: -webkit-gradient(linear, left top, right top, from(#8E7C5C), to(#E7CC9C));
  background: linear-gradient(90deg, #8E7C5C 0%, #E7CC9C 100%);
  padding: 80px 0;
}

.about__title {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 40px;
}

.about__title::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../img/open.png") no-repeat center/contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about__subtitle {
  margin: 0;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

.about__inner {
  margin: 0 auto;
  max-width: 1000px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  /* align-items по умолчанию stretch — колонки будут одной высоты */
}

.about__left {
  border: 3px solid #8F9A92;
  background: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* height: 100% убрали, чтобы не мешать растяжению грида */
}

.about__label {
  margin: 0;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: rgba(36, 29, 21, 0.8);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about__heading {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 48px);
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #6C9978;
  margin-bottom: 20px;
}

.about__text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 23px;
  color: #424242;
  line-height: 1.3;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; /* занимает всё доступное пространство, прижимая кнопку вниз */
  margin-bottom: 20px;
}

.about__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid #C5B8B3;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #2B2320;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.about__btn:hover {
  background: rgba(104, 77, 68, 0.8);
  color: #fff;
  border-color: rgba(104, 77, 68, 0.8);
}

.about__right {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6))), -webkit-gradient(linear, left top, right top, from(#8E7C5C), to(#E7CC9C));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), linear-gradient(90deg, #8E7C5C 0%, #E7CC9C 100%);
  border-radius: 16px;
  padding: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.about__right-title {
  margin: 0;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 600;
  font-size: 35px;
  color: rgba(36, 29, 21, 0.8);
  line-height: 1.2;
  margin-bottom: 10px;
}

.about__right-subtitle {
  margin: 0;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: rgba(36, 29, 21, 0.8);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about__photos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.about__photos img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.about__descr {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #424242;
  line-height: 1.2;
  margin-bottom: 10px;
}

.about__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.about__feature-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #684D44;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2px;
}

.about__feature-icon svg {
  width: 13px;
  height: 13px;
}

.about__text-bottom {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #424242;
  line-height: 1.3;
}

/* Адаптивность */
@media (max-width: 900px) {
  .about__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .about {
    padding: 48px 0;
  }
  .about__subtitle {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (max-width: 768px) {
  .about__left,
  .about__right {
    padding: 24px 20px;
  }
  .about__subtitle {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  .about__label {
    font-size: 20px;
  }
  .about__heading {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 16px;
  }
  .about__text {
    font-size: 18px;
  }
  .about__right-title {
    font-size: 28px;
  }
  .about__right-subtitle {
    font-size: 18px;
  }
  .about__photos img {
    height: 140px;
  }
  .about__descr {
    font-size: 18px;
  }
  .about__feature {
    gap: 12px;
    margin-bottom: 12px;
  }
  .about__text-bottom {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .about__left,
  .about__right {
    padding: 20px 16px;
  }
  .about__label {
    font-size: 18px;
  }
  .about__heading {
    font-size: 22px;
  }
  .about__text {
    font-size: 16px;
  }
  .about__right-title {
    font-size: 24px;
  }
  .about__right-subtitle {
    font-size: 16px;
  }
  .about__photos img {
    height: 120px;
  }
  .about__descr {
    font-size: 16px;
  }
  .about__feature {
    gap: 10px;
  }
  .about__text-bottom {
    font-size: 14px;
  }
  .about__btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.problem {
  padding: 20px 0px 40px 0px;
  background: #fff;
  overflow: hidden;
}

.problem__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.problem__tabs-wrapper {
  margin-bottom: 0;
}

.problem__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: 1.5px solid #e2dbd5;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Добавьте эти правила в существующий CSS блока .problem */
.problem__tab {
  position: relative; /* необходимо для корректного позиционирования полоски */
}

.problem__tab.active {
  color: #6C9978;
  font-weight: 600;
}

.problem__tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #6C9978;
  border-radius: 3px 3px 0 0;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.problem__tabs::-webkit-scrollbar {
  display: none;
}

.problem__tab {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #a89690;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  position: relative;
  border-radius: 0;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.problem__tab:hover {
  color: #3d322f;
}

.problem__tab.active {
  color: #6C9978;
  font-weight: 600;
  background: transparent;
}

/* Индикатор свайпа */
.problem__swipe-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 8px;
  z-index: 10;
}

.problem__swipe-hand {
  display: inline-block;
  font-size: 20px;
  -webkit-animation: swipeHorizontal 1.2s ease-in-out infinite;
  animation: swipeHorizontal 1.2s ease-in-out infinite;
  line-height: 1;
}

@-webkit-keyframes swipeHorizontal {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(12px);
    transform: translateX(12px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swipeHorizontal {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(12px);
    transform: translateX(12px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* ===== SWIPER ===== */
.problem-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.problem-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.problem-swiper .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.problem-swiper .swiper-button-prev,
.problem-swiper .swiper-button-next {
  display: none;
}

/* ===== INNER LAYOUT ===== */
.problem__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}

.problem__left,
.problem__right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 280px;
  max-width: 100%;
  padding: 32px 36px;
  background: #fefcf9;
  border-radius: 20px;
  border: 0.5px solid #ede7e1;
}

.problem__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.problem__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  min-height: 100%;
}

/* ===== TYPOGRAPHY ===== */
.problem__label {
  font-size: 12px;
  font-weight: 500;
  color: #a89690;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.problem__heading {
  font-family: "MontserratAlternates", sans-serif;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700;
  line-height: 1;
  color: #6C9978;
  margin: 0 0 4px;
}

.problem__text {
  font-size: 20px;
  line-height: 1.35;
  color: #3d322f;
  margin-bottom: 6px;
}

.problem__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.problem__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: #4a3a35;
  line-height: 1.45;
}

.problem__list li::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("../img/icon-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 3px;
}

/* ===== BUTTON ===== */
.problem__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--nav-bg);
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.problem__btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation: shine 3s ease-in-out infinite;
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% {
    left: -60%;
  }
  50% {
    left: 140%;
  }
}
.problem__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #7a5a4f 0%, #5e4038 100%);
  -webkit-box-shadow: 0 10px 24px rgba(104, 77, 68, 0.28);
  box-shadow: 0 10px 24px rgba(104, 77, 68, 0.28);
}

.problem__btn:hover::after {
  -webkit-animation: shine 1s ease-in-out infinite;
  animation: shine 1s ease-in-out infinite;
}

/* ===== IMAGES & GRID ===== */
.problem__image-grid {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.problem__image-grid:only-child {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.problem__image-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.problem__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.problem__image:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.problem__right > .problem__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.problem__right-title {
  font-size: 12px;
  font-weight: 500;
  color: #a89690;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.problem__right-subtitle {
  font-family: "MontserratAlternates", sans-serif;
  margin: 0;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #5e4b44;
  margin-bottom: 16px;
  line-height: 1.2;
}

.problem__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.problem__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background: rgba(248, 242, 236, 0.6);
  padding: 10px 16px;
  border-radius: 12px;
  border: 0.5px solid #ede7e1;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.problem__feature:hover {
  background: rgb(248, 242, 236);
}

.problem__feature-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.problem__text-bottom {
  font-size: 15px;
  font-weight: 500;
  color: #2b2320;
  line-height: 1.35;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
  .problem__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
  .problem__left,
  .problem__right {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: 100%;
    padding: 24px 28px;
  }
  .problem__heading {
    font-size: 32px;
  }
  .problem__text {
    font-size: 18px;
  }
  .problem__list li {
    font-size: 16px;
  }
  .problem__btn {
    padding: 12px 24px;
    font-size: 16px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .problem__image-grid {
    gap: 12px;
  }
  .problem__right-subtitle {
    font-size: 28px;
  }
  .problem__feature {
    padding: 8px 12px;
  }
  .problem__text-bottom {
    font-size: 14px;
  }
  .problem__right {
    max-width: 100%;
    overflow-x: hidden;
  }
  .problem__right .problem__image,
  .problem__right .problem__image-grid {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .problem {
    padding: 20px 0;
  }
  .problem__container {
    padding: 0 16px;
  }
  .problem__tab {
    padding: 12px 18px;
    font-size: 14px;
  }
  .problem__left,
  .problem__right {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: 100%;
    min-width: 0;
    padding: 20px;
  }
  .problem__heading {
    font-size: 30px;
  }
  .problem__text {
    font-size: 17px;
  }
  .problem__list li {
    font-size: 15px;
  }
  .problem__btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 13px 20px;
    font-size: 17px;
  }
  .problem__image,
  .problem__right > .problem__image {
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .problem__image-grid {
    gap: 12px;
  }
  .problem__right-subtitle {
    font-size: 26px;
  }
  .problem__feature {
    padding: 8px 14px;
    border-radius: 10px;
  }
  .problem__text-bottom {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .problem__heading {
    font-size: 26px;
  }
  .problem__text {
    font-size: 16px;
  }
  .problem__list li {
    font-size: 14px;
  }
  .problem__btn {
    font-size: 16px;
  }
  .problem__image-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .problem__right-subtitle {
    font-size: 22px;
  }
}
/* ─── CARE ─── */
.care {
  background: #8F9A92;
  padding: 52px 0;
}

.care__inner {
  margin: 0 auto;
  max-width: 1000px;
}

.care__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.care__tagline {
  margin: 0;
  max-width: 483px;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.care__title {
  margin: 0;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Планшеты и мобильные устройства */
@media (max-width: 1024px) {
  .care__title {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (max-width: 768px) {
  .care {
    padding: 40px 0;
  }
  .care__inner {
    padding: 0 16px;
  }
  .care__top {
    margin-bottom: 20px;
    gap: 10px;
  }
  .care__icon {
    width: 40px;
    height: 40px;
  }
  .care__tagline {
    font-size: 18px;
  }
  .care__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .care__tagline {
    font-size: 16px;
  }
  .care__title {
    font-size: 28px;
    line-height: 1.2;
  }
  .care__tagline {
    max-width: 100%;
  }
}
.stages {
  padding: 60px 0;
}

.stages__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

/* Каждый этап — не шире 580px */
.stage {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px; /* минимум 300px, растягивается, но не более 580px */
  max-width: 500px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  -webkit-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.2509803922);
}

/* Остальные стили без изменений */
.stage__header {
  padding: 20px;
  background: linear-gradient(88.06deg, #8E7C5C 1.63%, #E7CC9C 189.21%);
  width: 100%;
  min-height: 90px;
}

.stage__num {
  font-family: MontserratAlternates, sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 8vw, 60px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stage__body {
  padding: 20px 24px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.stage__title {
  margin: 0;
  font-family: MontserratAlternates, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(88.06deg, #8E7C5C 1.63%, #E7CC9C 189.21%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.stage__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.stage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(16px, 3vw, 20px);
  color: #4A4140;
  margin-bottom: 20px;
}

.stage__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.stage__text {
  margin: 0;
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(36, 29, 21, 0.8);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .stages {
    padding: 48px 0;
  }
  .stage {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .stage__header {
    min-height: auto;
    padding: 16px 20px;
  }
  .stage__num {
    font-size: clamp(40px, 10vw, 60px);
  }
  .stage__body {
    padding: 20px;
  }
  .stage__title {
    font-size: clamp(26px, 6vw, 36px);
    margin-bottom: 16px;
  }
  .stage__item {
    gap: 12px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .stage__title {
    font-size: 26px;
  }
  .stage__text {
    font-size: 16px;
  }
}
/* Дополнительно: если контейнер достаточно широк, в ряду будет до трёх блоков */
@media (min-width: 1200px) {
  .stages__grid {
    max-width: 1690px; /* ~1780px — чтобы три блока по 580px + отступы */
  }
}
/* Новая гармоничная версия, высота видео не меняется */
.videos {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #FEFAF6 0%, #FCF8F3 100%);
}

.videos__title {
  margin: 0 0 48px;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  color: #3E2E28;
}

.videos__title span {
  color: #6C9978;
  position: relative;
  display: inline-block;
}

.videos__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-card {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.video-card:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.15);
}

.video-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10.8; /* сохранено */
  background: #E9E2DA;
  cursor: pointer;
  overflow: hidden;
}

.video-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.video-card__media:hover .video-card__poster {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.video-card__media:hover .video-card__overlay {
  background: rgba(0, 0, 0, 0.35);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}

.video-card__media:hover .video-card__play {
  -webkit-transform: translate(-50%, -50%) scale(1.08);
  -ms-transform: translate(-50%, -50%) scale(1.08);
  transform: translate(-50%, -50%) scale(1.08);
  background: #FFFFFF;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.video-card__play svg {
  width: 32px;
  height: 32px;
  margin-left: 3px;
}

.video-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-card__media.playing .video-card__poster,
.video-card__media.playing .video-card__overlay,
.video-card__media.playing .video-card__play {
  display: none;
}

.video-card__media.playing .video-card__video {
  display: block;
}

.video-card__body {
  padding: 22px 26px 28px;
}

.video-card__label {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #6C9978;
  letter-spacing: -0.2px;
}

.video-card__desc {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #6C5A52;
}

@media (max-width: 1024px) {
  .videos__grid {
    gap: 24px;
    padding: 0 16px;
  }
  .video-card__body {
    padding: 18px 22px 24px;
  }
  .video-card__label {
    font-size: 18px;
  }
  .video-card__desc {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .videos__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .videos {
    padding: 40px 0 60px;
  }
  .videos__title {
    margin-bottom: 32px;
  }
  .videos__grid {
    gap: 24px;
  }
  .video-card__media {
    aspect-ratio: 16/14; /* сохранено из вашего варианта */
  }
  .video-card__play {
    width: 56px;
    height: 56px;
  }
  .video-card__play svg {
    width: 28px;
    height: 28px;
  }
  .video-card__body {
    padding: 16px 20px 20px;
  }
  .video-card__label {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .videos__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .video-card__label {
    font-size: 15px;
  }
  .video-card__desc {
    font-size: 13px;
  }
}
.doctors {
  padding: 80px 0 80px;
  overflow-x: hidden;
}

.doctors__container {
  max-width: 1200px;
  margin: 0 auto;
}

.doctors__title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 60px);
  font-family: MontserratAlternates;
  font-weight: 600;
  line-height: 90%;
  letter-spacing: -2%;
  text-align: center;
  color: rgba(36, 29, 21, 0.8);
  margin-bottom: 30px;
}

.doctors__slider {
  overflow: hidden;
  padding: 0 20px 50px;
  margin: 0 -20px;
  height: auto;
}

.doctors__slider.swiper,
.doctors__slider .swiper {
  height: auto !important;
}

.doctors__slider .swiper-wrapper {
  height: auto !important;
  padding: 10px 0 20px;
}

.doctors__slider .swiper-slide {
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.doctors__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  height: 100%;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.doctors__card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 16px 48px rgba(3, 87, 115, 0.15);
  box-shadow: 0 16px 48px rgba(3, 87, 115, 0.15);
}

.doctors__card-img {
  width: 100%;
  height: 450px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.doctors__card-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(255, 255, 255, 0.6)));
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
  pointer-events: none;
}

.doctors__card-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.doctors__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}

.doctors__card:hover .doctors__card-img img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .doctors__card-img {
    height: 300px;
  }
}
.doctors__card-body {
  padding: 18px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.doctors__card-title {
  margin: 0;
  font-family: MontserratAlternates;
  font-weight: 700;
  font-size: 26px;
  color: rgba(36, 29, 21, 0.8);
  line-height: 100%;
  margin-bottom: 10px;
}

.doctors__card-size {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  color: rgba(36, 29, 21, 0.6);
  line-height: 100%;
  margin-bottom: 20px;
}

.doctors__card-details {
  margin-top: 8px;
  margin-bottom: 12px;
}

.doctors__card-details p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.doctors__card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.doctors__card-doctors {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 16px;
  border-radius: 8px;
  background: #6C9978;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.doctors__card-doctors:hover {
  background: #5a8666;
}

.doctors__slider .swiper-button-prev,
.doctors__slider .swiper-button-next {
  color: #6C9978;
  background: rgba(255, 255, 255, 0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.doctors__slider .swiper-button-prev::after,
.doctors__slider .swiper-button-next::after {
  font-size: 20px;
}

.doctors__slider .swiper-button-prev:hover,
.doctors__slider .swiper-button-next:hover {
  background: -webkit-gradient(linear, left top, right top, from(#8E7C5C), to(#E7CC9C));
  background: linear-gradient(90deg, #8E7C5C 0%, #E7CC9C 100%);
  color: #fff;
}

.doctors__slider .swiper-pagination-bullet {
  background: #ccc;
  opacity: 0.7;
}

.doctors__slider .swiper-pagination-bullet-active {
  background: -webkit-gradient(linear, left top, right top, from(#8E7C5C), to(#E7CC9C));
  background: linear-gradient(90deg, #8E7C5C 0%, #E7CC9C 100%);
}

@media (max-width: 768px) {
  .doctors {
    padding: 50px 0 20px;
  }
  .doctors__card-img {
    height: 390px;
  }
  .doctors__slider .swiper-button-prev,
  .doctors__slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .doctors__slider .swiper-button-prev::after,
  .doctors__slider .swiper-button-next::after {
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .doctors__card-img {
    height: 338px;
  }
}
@media (max-width: 576px) {
  .doctors__slider .swiper-button-prev,
  .doctors__slider .swiper-button-next {
    display: none;
  }
}
.wn4 {
  padding: 0px 0px 60px 0px;
}

.wn4__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wn4__title {
  margin: 0 0 40px;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.02em;
  color: rgba(36, 29, 21, 0.8);
  text-align: center;
}

.wn4__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.wn4__video-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 340px;
  flex: 0 0 340px;
  background: #2e1f1a;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
}

.wn4__poster-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.wn4__video-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
  display: none;
}

.wn4__video-el.playing {
  display: block;
}

.wn4__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(108, 153, 120, 0.85);
  backdrop-filter: blur(2px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  z-index: 3;
}

.wn4__play-btn:hover {
  background: #558066;
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}

.wn4__play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.wn4__author {
  position: relative;
  z-index: 2;
  padding: 18px 16px 20px;
  text-align: center;
  color: #f5ede9;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(46, 31, 26, 0.6)), to(transparent));
  background: linear-gradient(0deg, rgba(46, 31, 26, 0.6), transparent);
}

.wn4__author-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.wn4__author-name {
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
}

.wn4__content-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 32px 36px 32px 32px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.wn4__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(100, 60, 48, 0.18);
}

.wn4__item:last-child {
  border-bottom: none;
}

.wn4__item-num {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #6C9978;
  color: #fff;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.wn4__item-text {
  font-size: 22px;
  line-height: 1.2;
  color: #4a3530;
}

.wn4__item-text--highlight {
  color: #6C9978;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .wn4__video-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
  }
  .wn4__content-col {
    padding: 28px 28px;
  }
  .wn4__item {
    gap: 14px;
  }
  .wn4__item-text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .wn4 {
    padding: 30px 0;
  }
  .wn4__container {
    padding: 0 16px;
  }
  .wn4__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .wn4__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 20px;
  }
  .wn4__video-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-height: 340px; /* было 260px — увеличение на 30% */
    width: 100%;
    border-radius: 0;
  }
  .wn4__content-col {
    padding: 24px 20px;
  }
  .wn4__item {
    gap: 14px;
    padding: 12px 0;
  }
  .wn4__item-num {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  .wn4__item-text {
    font-size: 18px;
  }
  .wn4__play-btn {
    width: 56px;
    height: 56px;
  }
  .wn4__play-btn svg {
    width: 24px;
    height: 24px;
  }
  .wn4__author {
    padding: 14px 12px;
  }
  .wn4__author-name {
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .wn4__title {
    font-size: 28px;
    line-height: 1.2;
  }
  .wn4__video-col {
    min-height: 290px; /* было 220px — увеличение на 30% */
  }
  .wn4__content-col {
    padding: 20px 16px;
  }
  .wn4__item-text {
    font-size: 16px;
  }
}
/* ===== СЕКЦИЯ ОТЗЫВОВ ===== */
.proof {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--btn), transparent);
}

.proof__title {
  font-family: "MontserratAlternates", sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease 0.2s forwards;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.proof__subtitle {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 48px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease 0.4s forwards;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.proof__graduates {
  margin: 0 auto;
  max-width: 1200px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.proof__graduate {
  max-width: 400px;
  background: var(--light-color);
  border-radius: 24px;
  padding: 25px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.proof__graduate.animated {
  -webkit-animation: fadeInUp 0.8s ease forwards;
  animation: fadeInUp 0.8s ease forwards;
}

.proof__graduate:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--btn-hover);
}

.proof__graduate-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.proof__graduate-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 5px;
}

.proof__graduate-city {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--btn);
  text-align: center;
  margin-bottom: 12px;
}

.proof__graduate-rating {
  text-align: center;
  font-size: 20px;
  letter-spacing: 3px;
  color: #ffc107;
  margin-bottom: 18px;
}

.proof__graduate-quote {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  max-height: 150px;
}

.proof__graduate-quote::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--light-color));
  pointer-events: none;
}

.proof__graduate-quote p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
  position: relative;
  padding-left: 20px;
}

.proof__graduate-quote p::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -5px;
  color: var(--btn);
  font-size: 24px;
  font-family: serif;
  font-weight: bold;
}

.proof__graduate-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(104, 77, 68, 0.08);
  border-radius: 40px;
  padding: 12px 15px;
  margin-top: auto;
}

.proof__graduate-badge-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--btn);
  color: var(--light-color);
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.proof__graduate-badge-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.4;
}

.proof__read-more {
  display: inline-block;
  margin-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--btn);
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.proof__read-more:hover {
  color: var(--btn-hover);
  text-decoration: underline;
}

/* Анимации */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Задержки для элементов */
.proof__graduate:nth-child(1) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.proof__graduate:nth-child(2) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.proof__graduate:nth-child(3) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .proof__graduates {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .proof {
    padding: 40px 0;
  }
  .proof__title {
    font-size: 48px;
    line-height: 56px;
  }
  .proof__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .proof__graduates {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .proof {
    padding: 40px 0;
  }
  .proof__title {
    font-size: 32px;
    line-height: 40px;
  }
  .proof__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .proof__graduates {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }
  .proof__graduate {
    border-radius: 20px;
  }
  .proof__graduate-quote p {
    font-size: 15px;
  }
  .proof__graduate-name {
    font-size: 18px;
  }
  .proof__graduate-badge {
    border-radius: 30px;
  }
}
@media (max-width: 576px) {
  .proof__title {
    font-size: 28px;
    line-height: 1.2;
  }
  .proof__subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .proof__graduate {
    padding: 20px;
  }
  .proof__graduate-name {
    font-size: 16px;
  }
  .proof__graduate-city {
    font-size: 14px;
  }
  .proof__graduate-rating {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .proof__graduate-quote p {
    font-size: 14px;
  }
  .proof__graduate-badge-text {
    font-size: 12px;
  }
  .proof__read-more {
    font-size: 13px;
  }
}
/* ===== БЛОК .comparison (стили унифицированы с .wn4) ===== */
.comparison {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--btn, #684D44), transparent);
}

.comparison__title {
  text-align: center;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.02em;
  color: var(--text-dark, #2e1f1a);
  margin-bottom: 16px;
}

.comparison__title span {
  color: var(--btn, #684D44);
}

.comparison__subtitle {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: var(--text-mid, #4a3530);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comparison__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison__card {
  background: var(--light-color, #fff);
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.comparison__card:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.comparison__slider {
  position: relative;
  width: 100%;
  background: #d9d4cf;
  cursor: ew-resize;
  overflow: hidden;
}

.comparison__images {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
}

.comparison__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.comparison__image--after {
  z-index: 1;
}

.comparison__image--before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.comparison__handle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.comparison__range {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  z-index: 20;
}

.comparison__divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 15;
}

.comparison__divider::before,
.comparison__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 28px;
  height: 28px;
  background: var(--btn, #684D44);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.comparison__divider::before {
  top: 16px;
}

.comparison__divider::after {
  bottom: 16px;
}

.comparison__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 20px 8px;
  background: var(--light-color, #fff);
  border-top: 1px solid var(--border, rgba(100, 60, 48, 0.1));
}

.comparison__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-mid, #4a3530);
  background: rgba(104, 77, 68, 0.08);
  padding: 4px 14px;
  border-radius: 40px;
}

.comparison__label--before {
  color: var(--btn, #684D44);
}

.comparison__label--after {
  color: var(--btn, #684D44);
}

.comparison__description {
  padding: 16px 20px 20px;
  background: var(--light-color, #fff);
  border-top: 1px solid var(--border, rgba(100, 60, 48, 0.1));
}

.comparison__name {
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 600;
  font-size: 20px; /* увеличен, как в .wn4 item-text был 22px, но здесь сделаем 20 для баланса */
  color: var(--text-dark, #2e1f1a);
  margin-bottom: 6px;
}

.comparison__text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px; /* увеличен, чтобы соответствовать общему стилю */
  color: var(--text-mid, #4a3530);
  line-height: 1.4;
  margin: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .comparison__grid {
    gap: 24px;
    padding: 0 20px;
  }
  .comparison__title {
    font-size: 48px;
    line-height: 56px;
  }
  .comparison__name {
    font-size: 18px;
  }
  .comparison__text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .comparison {
    padding: 40px 0;
  }
  .comparison__title {
    font-size: 32px;
    line-height: 40px;
  }
  .comparison__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .comparison__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .comparison__divider::before,
  .comparison__divider::after {
    width: 24px;
    height: 24px;
  }
  .comparison__label {
    font-size: 12px;
    padding: 3px 12px;
  }
  .comparison__name {
    font-size: 16px;
  }
  .comparison__text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .comparison__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  .comparison__title {
    font-size: 28px;
    line-height: 1.2;
  }
  .comparison__subtitle {
    font-size: 14px;
  }
  .comparison__description {
    padding: 14px 16px 16px;
  }
  .comparison__name {
    font-size: 15px;
  }
  .comparison__text {
    font-size: 13px;
  }
}
/* ===== КОНТАКТЫ – КОМПАКТНЫЙ БЛОК ===== */
.contacts {
  position: relative;
  background-image: url("../img/bg-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  color: #fff;
}

.contacts__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.contacts__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

/* Левая колонка: заголовок + фото */
.contacts__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.contacts__title {
  margin: 0;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.contacts__columns {
  display: block;
}

.contacts__image {
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contacts__image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.contacts__image:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

/* Правая колонка: заголовок формы, инфо, форма */
.contacts__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.contacts__form-title {
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

.contacts__desc {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.contacts__details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
}

.contacts__phone {
  display: inline-block;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 4px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.contacts__phone:hover {
  color: #684D44;
}

.contacts__hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.contacts__address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.contacts__form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 20px 24px;
}

.contacts__form-note {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.contacts__form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contacts__form-phone {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #241D15;
}

.contacts__form-phone:focus {
  outline: none;
  border-color: #6C9978;
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(108, 153, 120, 0.2);
  box-shadow: 0 0 0 3px rgba(108, 153, 120, 0.2);
}

.contacts__form-btn {
  background: #6C9978;
  border: none;
  border-radius: 20px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.1s;
  transition: background 0.2s, -webkit-transform 0.1s;
  transition: background 0.2s, transform 0.1s;
  transition: background 0.2s, transform 0.1s, -webkit-transform 0.1s;
  width: 100%;
}

.contacts__form-btn:hover {
  background: #558066;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.contacts__form-policy {
  margin-top: 4px;
}

.contacts__policy-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contacts__policy-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #6C9978;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contacts__policy {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.contacts__policy-link {
  color: #6C9978;
  text-decoration: none;
  font-weight: 500;
}

.contacts__policy-link:hover {
  text-decoration: underline;
  color: #fff;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 900px) {
  .contacts__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contacts__left,
  .contacts__right {
    text-align: center;
  }
  .contacts__image img {
    max-width: 100%;
    height: auto;
  }
  .contacts__desc,
  .contacts__details,
  .contacts__form-note {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .contacts {
    padding: 40px 0;
  }
  .contacts__title {
    font-size: 28px;
  }
  .contacts__form-title {
    font-size: 20px;
  }
  .contacts__desc {
    font-size: 16px;
  }
  .contacts__phone {
    font-size: 20px;
  }
  .contacts__form-phone,
  .contacts__form-btn {
    padding: 10px 14px;
    font-size: 14px;
  }
}
/* Cookie consent banner — изящный, центрированный, в фирменных цветах */
.cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 520px;
  width: calc(100% - 40px);
  background: #fff;
  border-radius: 32px;
  -webkit-box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(104, 77, 68, 0.1);
  box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(104, 77, 68, 0.1);
  padding: 24px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  z-index: 10000;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #2e1f1a;
  text-align: center;
  backdrop-filter: blur(2px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}

.cookie-consent.hide {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(20px);
  -ms-transform: translateX(-50%) translateY(20px);
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
  visibility: hidden;
}

.cookie-consent p {
  margin: 0;
  font-weight: 500;
  color: #3e2e28;
}

.cookie-consent a {
  color: #684D44;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(104, 77, 68, 0.4);
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.cookie-consent a:hover {
  border-bottom-color: #684D44;
}

.cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.cookie-btn {
  border: none;
  background: rgba(104, 77, 68, 0.8980392157);
  color: #fff;
  padding: 10px 28px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  letter-spacing: 0.2px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.cookie-btn:hover {
  background: #543c34;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(104, 77, 68, 0.25);
  box-shadow: 0 6px 12px rgba(104, 77, 68, 0.25);
}

.cookie-btn-decline {
  background: transparent;
  color: #684D44;
  border: 1.5px solid #684D44;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cookie-btn-decline:hover {
  background: #684D44;
  color: #fff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(104, 77, 68, 0.2);
  box-shadow: 0 6px 12px rgba(104, 77, 68, 0.2);
}

/* Адаптивность */
@media (max-width: 560px) {
  .cookie-consent {
    bottom: 20px;
    padding: 20px 20px;
    gap: 16px;
  }
  .cookie-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}
/* ===== Стили футера (исправлены конфликты с шапкой) ===== */
.footer {
  background: var(--bg, #F3EEEA);
  border-top: 1px solid var(--border, rgba(100, 60, 48, 0.18));
  padding: 40px 0 32px;
  margin-top: auto;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border, rgba(100, 60, 48, 0.18));
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer__btn {
  background: var(--btn, #6C9978);
  color: var(--light-color, #fff);
  border: none;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 16px;
  -webkit-transition: background 0.25s, -webkit-transform 0.15s;
  transition: background 0.25s, -webkit-transform 0.15s;
  transition: background 0.25s, transform 0.15s;
  transition: background 0.25s, transform 0.15s, -webkit-transform 0.15s;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer__btn:hover {
  background: var(--btn-hover, #558066);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.footer__nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border, rgba(100, 60, 48, 0.18));
}

.footer__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__nav-inner a {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mid, #4a3530);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding: 6px 12px;
}

.footer__nav-inner a:hover {
  color: var(--btn, #6C9978);
}

.footer__separator {
  width: 1px;
  height: 14px;
  background: var(--border, rgba(100, 60, 48, 0.18));
  display: inline-block;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-mid, #4a3530);
}

.footer__copyright {
  margin: 0;
}

.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.footer__policy a {
  color: var(--text-mid, #4a3530);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer__policy a:hover {
  color: var(--btn, #6C9978);
}

@media (max-width: 1024px) {
  .footer__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer__btn {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: auto;
  }
  .footer .phone-inline {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: block;
  }
  .footer__nav-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .footer__separator {
    display: none;
  }
  .footer__nav-inner a {
    padding: 8px 0;
    width: 100%;
    text-align: center;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer__policy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 32px 0 24px;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer .logo {
    margin: 0 auto;
  }
  .footer__info {
    display: none;
  }
  .footer .phone-inline {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
  }
  .footer__btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
  .footer__nav {
    padding: 20px 0;
  }
  .footer__bottom {
    padding-top: 20px;
  }
}/*# sourceMappingURL=main.css.map */
