@charset "UTF-8";
:root {
  --font-family: "Manrope","Open Sans", sans-serif;
  --content-width: 1370px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --color-bg: #9CA74233;
  --color-dark-green: #3E4222;
  --color-medium-green: #4a6b2f;
  --color-light-green: #6b8c42;
  --color-yellow-green: #B4D544;
  --color-yellow: #FEE643CC;
  --color-yellow-btn: #d4e040;
  --color-text: #2a2a2a;
  --color-text-muted: #3E4222;
  --color-card-bg: #ede8dc;
  --color-white: #fff;
  --color-nav-bg: #5a6b3a;
  --radius: 16px;
  --radius-sm: 10px;
  --border: rgba(0, 0, 0, 0.1);
  --nav-bg: #5a6b3a;
  --btn-hover: #4a5a2e;
  --drawer-bg: #ffffff;
  --btn: #3E4222;
  --text-dark: #2a2a2a;
  --text-mid: #5a6b3a;
}

/* 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: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  src: url("../fonts/Comfortaa-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  src: url("../fonts/comfortaa-cyrillic-ext-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  src: url("../fonts/Comfortaa-Bold.woff2") format("woff2");
  font-weight: 700;
  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; /* stylelint-disable-line declaration-no-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;
}

/* ===== УВЕДОМЛЕНИЯ СВЕРХУ ===== */
.top-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-100px);
  -ms-transform: translateX(-50%) translateY(-100px);
  transform: translateX(-50%) translateY(-100px);
  z-index: 100000;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  max-width: 90vw;
  backdrop-filter: blur(8px);
}

.top-toast.show {
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.top-toast.success {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  border-left: 4px solid #81C784;
}

.top-toast.error {
  background: linear-gradient(135deg, #f44336, #c62828);
  border-left: 4px solid #ef9a9a;
}

.top-toast.warning {
  background: linear-gradient(135deg, #ff9800, #e65100);
  border-left: 4px solid #ffcc80;
}

@media (max-width: 576px) {
  .top-toast {
    padding: 12px 20px;
    font-size: 12px;
    min-width: auto;
    white-space: normal;
    top: 10px;
  }
}
/* ===== ПЛАВАЮЩАЯ КНОПКА ===== */
.floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-button__main {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-yellow-green) 0%, var(--color-light-green) 100%);
  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-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.floating-button__main:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 6px 20px rgba(107, 140, 66, 0.4);
  box-shadow: 0 6px 20px rgba(107, 140, 66, 0.4);
}

.floating-button__main .material-icons {
  color: var(--text-dark);
  font-size: 28px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.floating-button.open .floating-button__main .material-icons {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Меню */
.floating-button__menu {
  position: absolute;
  bottom: 70px;
  right: 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: 12px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.floating-button.open .floating-button__menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.floating-button__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--light-color);
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-button__item:hover {
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
  background: var(--color-yellow-green);
}

.floating-button__item img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}

.floating-button__item .material-icons {
  font-size: 28px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .floating-button {
    bottom: 20px;
    right: 20px;
  }
  .floating-button__main {
    width: 48px;
    height: 48px;
  }
  .floating-button__main .material-icons {
    font-size: 24px;
  }
  .floating-button__item span:not(.material-icons) {
    display: none;
  }
  .floating-button__item {
    padding: 14px;
    border-radius: 50%;
  }
  .floating-button__item img {
    width: 28px;
    height: 28px;
  }
  .floating-button__item .material-icons {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .floating-button {
    bottom: 15px;
    right: 15px;
  }
  .floating-button__main {
    width: 44px;
    height: 44px;
  }
  .floating-button__main .material-icons {
    font-size: 22px;
  }
  .floating-button__item {
    padding: 12px;
  }
  .floating-button__item img {
    width: 24px;
    height: 24px;
  }
  .floating-button__item .material-icons {
    font-size: 24px;
  }
}
.header {
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
  background: #FDFBF5;
}

.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: 170px;
  height: 60px;
  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;
}

.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-family: "Comfortaa", sans-serif;
  font-size: 12.5px;
  color: var(--text-dark);
  line-height: 1.5;
}

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

.phone-link {
  font-family: "Comfortaa", sans-serif;
  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;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.social-link {
  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: 40px;
  height: 40px;
}

.nav-bar {
  background: #FDFBF5;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.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: 0;
}

.nav-bar a {
  font-family: "Comfortaa", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2a2a2a;
  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.05);
  color: #3E4222;
}

.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: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px;
  -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: 25px;
  height: 2px;
  background: var(--btn);
  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,
  .phone-link {
    display: none;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .phone-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* СОЦСЕТИ НЕ СКРЫВАЕМ НА МОБИЛЬНЫХ */
  .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .social-link {
    width: 32px;
    height: 32px;
  }
  .social-link img {
    width: 24px;
    height: 24px;
  }
  .nav-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    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: #ffffff;
    color: #2a2a2a;
    white-space: normal;
    text-align: center;
  }
  .nav-bar a:last-child {
    border-bottom: none;
  }
  .logo {
    width: auto;
    max-width: 120px;
    height: auto;
  }
  .top-bar {
    gap: 12px;
    padding-block: 5px;
  }
}
@media (max-width: 500px) {
  .logo {
    max-width: 80px;
    margin-left: -5px;
  }
  .phone-inline {
    font-size: 14px;
  }
  /* СОЦСЕТИ НА МАЛЕНЬКИХ ЭКРАНАХ */
  .social-icons {
    gap: 4px;
  }
  .social-link {
    width: 35px;
    height: 35px;
  }
  .social-link img {
    width: 28px;
    height: 28px;
  }
  .nav-bar a {
    padding: 14px 18px;
    font-size: 16px;
  }
}
/* ===== МОДАЛЬНОЕ ОКНО ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  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;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Блокировка скролла страницы */
body.no-scroll {
  overflow: hidden;
}

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

.modal__content {
  position: relative;
  max-width: 480px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 40px 30px 32px;
  background-image: url("../img/Rectangle.png");
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-align: center;
}

.modal.active .modal__content {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #5E6634;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
  width: 28px;
  height: 28px;
  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;
}

.modal__close:hover {
  background: #FEE643;
  color: #3a5220;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal__title {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #3E4222;
  margin-bottom: 8px;
  padding-right: 20px;
}

.modal__subtitle {
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  color: #3E4222;
  margin-bottom: 24px;
  line-height: 1.4;
}

.modal__form {
  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;
}

.modal__car-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.modal__car-fields .modal__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.modal__input {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 12px 20px;
  width: 100%;
  font-family: Manrope;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #3E4222;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left;
}

.modal__input::-webkit-input-placeholder {
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  color: #3E4222;
  text-transform: uppercase;
  text-align: left;
}

.modal__input::-moz-placeholder {
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  color: #3E4222;
  text-transform: uppercase;
  text-align: left;
}

.modal__input:-ms-input-placeholder {
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  color: #3E4222;
  text-transform: uppercase;
  text-align: left;
}

.modal__input::-ms-input-placeholder {
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  color: #3E4222;
  text-transform: uppercase;
  text-align: left;
}

.modal__input::placeholder {
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  color: #3E4222;
  text-transform: uppercase;
  text-align: left;
}

.modal__input:focus {
  border-color: #d4e040;
  background: #fff;
  outline: none;
}

/* Стили для невалидных полей */
.modal__input.error {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.05);
}

.modal__agree {
  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;
  gap: 8px;
  margin-top: 4px;
}

.modal__agree span {
  font-family: Manrope;
  font-weight: 400;
  font-size: 11px;
  color: rgba(62, 66, 34, 0.8980392157);
  line-height: 1.3;
}

.modal__policy-link {
  color: #5E6634;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal__policy-link:hover {
  color: #d4e040;
  text-decoration: none;
}

.modal__checkbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #d4e040;
}

.modal__submit {
  border: none;
  padding: 12px;
  width: 100%;
  font-family: Manrope;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1%;
  text-align: center;
  text-transform: uppercase;
  color: #3E4222;
  background: #d4e040;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 25px;
  margin-top: 6px;
}

.modal__submit:hover {
  background: #FEE643;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ===== УВЕДОМЛЕНИЯ ===== */
.custom-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-100px);
  -ms-transform: translateX(-50%) translateY(-100px);
  transform: translateX(-50%) translateY(-100px);
  z-index: 100000;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: "Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
  min-width: 260px;
  max-width: 90vw;
}

.custom-toast.show {
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.custom-toast--success {
  background: #B4D544;
  color: #2a2a2a;
  border-left: 4px solid #5a6b3a;
}

.custom-toast--error {
  background: #f44336;
  color: #fff;
  border-left: 4px solid #b71c1c;
}

.custom-toast--warning {
  background: #ff9800;
  color: #fff;
  border-left: 4px solid #e65100;
}

/* ===== АДАПТАЦИЯ ===== */
@media (max-width: 576px) {
  .modal__content {
    padding: 35px 20px 25px;
  }
  .modal__title {
    font-size: 20px;
    padding-right: 15px;
  }
  .modal__subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .modal__form {
    gap: 12px;
  }
  .modal__car-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .modal__input {
    padding: 10px 16px;
    font-size: 14px;
  }
  .modal__input::-webkit-input-placeholder {
    font-size: 12px;
  }
  .modal__input::-moz-placeholder {
    font-size: 12px;
  }
  .modal__input:-ms-input-placeholder {
    font-size: 12px;
  }
  .modal__input::-ms-input-placeholder {
    font-size: 12px;
  }
  .modal__input::placeholder {
    font-size: 12px;
  }
  .modal__agree span {
    font-size: 10px;
  }
  .modal__submit {
    padding: 10px;
    font-size: 15px;
  }
  .modal__close {
    top: 12px;
    right: 16px;
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

.hero-container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 auto;
  padding: 0 var(--container-offset);
  min-height: 540px;
  max-width: var(--container-width);
}

.hero__left {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  -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;
  padding: 60px 40px 60px 60px;
}

.hero__right {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px;
}

.hero__title {
  margin: 0;
  max-width: 700px;
  margin-bottom: 10px;
  font-family: "Comfortaa", sans-serif;
  font-family: Comfortaa;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -5%;
  color: var(--light-color);
}

.hero__sub {
  margin: 0;
  max-width: 700px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -3%;
  color: var(--light-color);
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 12px;
}

.hero__btn {
  position: relative;
  z-index: 4;
  display: inline-block;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: Manrope;
  font-weight: 600;
  font-size: 22px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero__btn:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.hero__btn--dark {
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--color-yellow-btn);
}

.hero__form-card {
  position: relative;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 30px 40px;
  width: 100%;
  max-width: 520px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-image: url("../img/opacity.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__form-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.hero__form-promo-text {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 35px;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: var(--color-dark-green);
}

.hero__form-promo-amount {
  border-radius: 8px;
  padding: 8px 12px;
  font-family: Manrope;
  font-weight: 800;
  font-size: 30px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-dark-green);
  background: var(--color-yellow);
  display: inline-block;
  -webkit-animation: promoPulse 1.2s ease-in-out infinite;
  animation: promoPulse 1.2s ease-in-out infinite;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.hero__form-promo-amount:hover {
  -webkit-animation: promoPulseFast 0.6s ease-in-out infinite;
  animation: promoPulseFast 0.6s ease-in-out infinite;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

@-webkit-keyframes promoPulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

@keyframes promoPulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}
@-webkit-keyframes promoPulseFast {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes promoPulseFast {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hero__form-promo-desc {
  margin-top: 8px;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: rgba(36, 29, 21, 0.8);
  line-height: 25px;
  letter-spacing: 0%;
}

.hero__form-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 14px;
  gap: 6px;
}

.hero__form-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Manrope;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: var(--color-dark-green);
  gap: 8px;
}

.hero__form-feature::before {
  content: url("../img/check.png");
}

.hero__form-check {
  font-weight: 900;
  color: var(--color-yellow-green);
}

.hero__form-divider {
  margin: 16px 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero__form-fields {
  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;
}

.hero__form-input {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
}

.hero__form-input:focus {
  border-color: var(--color-medium-green);
  background: #fff;
}

.hero__form-input::-webkit-input-placeholder {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark-green);
  line-height: 121%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
}

.hero__form-input::-moz-placeholder {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark-green);
  line-height: 121%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
}

.hero__form-input:-ms-input-placeholder {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark-green);
  line-height: 121%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
}

.hero__form-input::-ms-input-placeholder {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark-green);
  line-height: 121%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
}

.hero__form-input::placeholder {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark-green);
  line-height: 121%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
}

.hero__form-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
  border-radius: 6px;
  padding: 8px 10px;
  margin: 4px 0;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.hero__form-agree:hover {
  background: rgba(0, 0, 0, 0.35);
}

.hero__form-agree span {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-dark-green);
}

.hero__form-checkbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--color-yellow-green);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.hero__form-checkbox:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.hero__form-policy-link {
  color: var(--color-yellow-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.hero__form-policy-link:hover {
  color: var(--color-yellow);
  text-decoration: none;
}

.hero__form-submit {
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px;
  width: 100%;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 121%;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--light-color);
  background: var(--color-yellow-btn);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: 6px;
}

.hero__form-submit:hover {
  background: var(--color-yellow-green);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

@media (width <= 1024px) {
  .hero {
    padding-top: 70px;
  }
  .hero-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: auto;
  }
  .hero__left {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    padding: 40px 30px;
    text-align: center;
  }
  .hero__title {
    max-width: 100%;
    font-size: 48px;
    line-height: 56px;
  }
  .hero__sub {
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
  }
  .hero__actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__right {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: auto;
    padding: 20px;
  }
  .hero__form-card {
    max-width: 500px;
  }
  .hero__form-promo-text {
    font-size: 28px;
    line-height: 32px;
  }
  .hero__form-promo-amount {
    font-size: 26px;
    padding: 12px 16px;
  }
  .hero__form-feature {
    font-size: 18px;
  }
  .hero__form-input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .hero__form-input::-moz-placeholder {
    font-size: 16px;
  }
  .hero__form-input:-ms-input-placeholder {
    font-size: 16px;
  }
  .hero__form-input::-ms-input-placeholder {
    font-size: 16px;
  }
  .hero__form-input::placeholder {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  .hero {
    padding-top: 60px;
  }
  .hero__left {
    padding: 30px 20px;
    text-align: left;
  }
  .hero__title {
    margin: 0 auto;
    text-align: center;
    max-width: 600px;
    font-size: 32px;
    line-height: 40px;
  }
  .hero__sub {
    max-width: 500px;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero__btn {
    display: none;
  }
  .hero__right {
    padding: 15px 0;
  }
  .hero__form-card {
    padding: 25px 20px;
    width: 100%;
    max-width: 100%;
  }
  .hero__form-promo {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
  .hero__form-promo-text {
    font-size: 24px;
    line-height: 30px;
  }
  .hero__form-promo-amount {
    font-size: 22px;
    padding: 10px 14px;
  }
  .hero__form-promo-desc {
    font-size: 16px;
    text-align: left;
  }
  .hero__form-feature {
    font-size: 16px;
  }
  .hero__form-input {
    padding: 12px 16px;
    font-size: 16px;
  }
  .hero__form-input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::-moz-placeholder {
    font-size: 14px;
  }
  .hero__form-input:-ms-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::-ms-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::placeholder {
    font-size: 14px;
  }
  .hero__form-agree span {
    font-size: 12px;
  }
  .hero__form-submit {
    font-size: 16px;
    padding: 14px;
  }
}
@media (width <= 576px) {
  .hero {
    padding-top: 55px;
  }
  .hero__left {
    padding: 20px 15px;
  }
  .hero__title {
    text-align: center;
    font-size: 38px;
    line-height: 36px;
  }
  .hero__sub {
    text-align: center;
    font-size: 26px;
    line-height: 26px;
  }
  .hero__form-card {
    padding: 20px 15px;
  }
  .hero__form-promo-text {
    font-size: 22px;
    line-height: 28px;
  }
  .hero__form-promo-amount {
    font-size: 20px;
    padding: 8px 12px;
  }
  .hero__form-promo-desc {
    font-size: 16px;
  }
  .hero__form-input {
    padding: 10px 14px;
    font-size: 16px;
  }
  .hero__form-input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::-moz-placeholder {
    font-size: 14px;
  }
  .hero__form-input:-ms-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::-ms-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::placeholder {
    font-size: 14px;
  }
  .hero__form-submit {
    font-size: 16px;
    padding: 12px;
  }
}
@media (width <= 480px) {
  .hero {
    padding-top: 50px;
  }
  .hero__left {
    padding: 15px 12px;
  }
  .hero__title {
    font-size: 30px;
    line-height: 36px;
  }
  .hero__sub {
    font-size: 20px;
    line-height: 26px;
  }
  .hero__form-card {
    padding: 18px 12px;
  }
  .hero__form-promo-text {
    font-size: 20px;
    line-height: 26px;
  }
  .hero__form-promo-amount {
    font-size: 18px;
    padding: 6px 10px;
  }
  .hero__form-promo-desc {
    font-size: 16px;
  }
  .hero__form-input {
    height: 44px;
    font-size: 16px;
    padding: 8px 12px;
  }
  .hero__form-input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::-moz-placeholder {
    font-size: 14px;
  }
  .hero__form-input:-ms-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::-ms-input-placeholder {
    font-size: 14px;
  }
  .hero__form-input::placeholder {
    font-size: 14px;
  }
  .hero__form-submit {
    font-size: 16px;
    padding: 10px;
  }
  .hero__form-agree span {
    font-size: 12px;
  }
}
@media (width <= 375px) {
  .hero {
    padding-top: 50px;
  }
  .hero__title {
    font-size: 30px;
    line-height: 36px;
  }
  .hero__sub {
    font-size: 20px;
    line-height: 26px;
  }
  .hero__form-promo-text {
    font-size: 18px;
    line-height: 24px;
  }
  .hero__form-promo-amount {
    font-size: 16px;
    padding: 5px 8px;
  }
  .hero__form-input {
    font-size: 16px;
  }
  .hero__form-submit {
    font-size: 16px;
  }
}
/* ===== БЕГУЩАЯ СТРОКА ===== */
.marquee-section {
  background: var(--light-color, #fff);
  border-top: 1px solid rgba(62, 66, 34, 0.1);
  border-bottom: 1px solid rgba(62, 66, 34, 0.1);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-wrapper {
  margin: 0 auto;
  overflow: hidden;
}

.marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__content {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-animation: scroll 45s linear infinite;
  animation: scroll 45s linear infinite;
}

.marquee:hover .marquee__content {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.marquee__item {
  font-family: var(--font-family, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark-green, #3E4222);
  letter-spacing: 0.3px;
}

.marquee__divider {
  font-size: 18px;
  color: var(--color-yellow-green, #B4D544);
  font-weight: bold;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* ===== АДАПТАЦИЯ ===== */
@media (max-width: 768px) {
  .marquee-section {
    padding: 8px 0;
  }
  .marquee__item {
    font-size: 13px;
  }
  .marquee__divider {
    font-size: 14px;
  }
  .marquee__content {
    gap: 20px;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
  }
}
@media (max-width: 480px) {
  .marquee__item {
    font-size: 11px;
  }
  .marquee__content {
    gap: 15px;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
  }
}
/* ===== STATS ===== */
.stats {
  padding: 40px 20px;
  background: #FDFBF5;
}

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

.stats__card {
  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;
  border-radius: var(--radius);
  padding: 24px;
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  gap: 16px;
}

.stats__card-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.stats__card-icon .material-icons {
  font-size: 48px;
}

.stats__card--green .stats__card-icon .material-icons {
  color: #2d4a1e;
}

.stats__card--beige .stats__card-icon .material-icons {
  color: #8b6b4f;
}

.stats__card--light .stats__card-icon .material-icons {
  color: #a0896b;
}

.stats__card--green {
  background: rgba(175, 189, 94, 0.6);
}

.stats__card--beige {
  background: rgba(179, 151, 132, 0.6);
}

.stats__card--light {
  background: rgba(213, 204, 176, 0.6);
  background-size: 35%;
  background-repeat: no-repeat;
}

.stats__card-title {
  margin: 0;
  margin-bottom: 7px;
  max-width: 330px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 25px;
  letter-spacing: 0;
  color: var(--color-dark-green);
}

.stats__card-text {
  margin: 0;
  max-width: 357px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0;
  color: var(--color-text-muted);
}

/* ===== АДАПТАЦИЯ STATS ===== */
/* Планшеты (768px - 1024px) */
@media (width <= 1024px) {
  .stats {
    padding: 40px 20px;
  }
  .stats__inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stats__card {
    padding: 20px;
    background-size: 30%;
  }
  .stats__card--light {
    background-size: 25%;
  }
  .stats__card-title {
    max-width: 200px;
    font-size: 22px;
    line-height: 28px;
  }
  .stats__card-icon .material-icons {
    font-size: 40px;
  }
}
/* Мобильные устройства (576px - 768px) */
@media (width <= 768px) {
  .stats {
    padding: 30px 16px;
  }
  .stats__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stats__card {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 24px;
    background-size: 80px;
  }
  .stats__card--light {
    background-size: 70px;
  }
  .stats__card-title {
    max-width: none;
    font-size: 24px;
    line-height: 30px;
  }
  .stats__card-text {
    max-width: none;
    font-size: 16px;
    line-height: 22px;
  }
  .stats__card-icon .material-icons {
    font-size: 36px;
  }
}
/* Маленькие телефоны (320px - 576px) */
@media (width <= 576px) {
  .stats {
    padding: 24px 12px;
  }
  .stats__inner {
    gap: 12px;
  }
  .stats__card {
    -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;
    padding: 18px;
    background-position: bottom right;
    background-size: 60px;
  }
  .stats__card--light {
    background-size: 50px;
  }
  .stats__card-title {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 26px;
  }
  .stats__card-text {
    font-size: 16px;
    line-height: 22px;
  }
  .stats__card-icon .material-icons {
    font-size: 40px;
  }
}
/* Очень маленькие телефоны (до 375px) */
@media (width <= 375px) {
  .stats {
    padding: 20px 12px;
  }
  .stats__card {
    padding: 16px;
    background-size: 50px;
  }
  .stats__card--light {
    background-size: 45px;
  }
  .stats__card-title {
    font-size: 18px;
    line-height: 24px;
  }
  .stats__card-text {
    font-size: 16px;
    line-height: 22px;
  }
  .stats__card-icon .material-icons {
    font-size: 36px;
  }
}
.qwiz {
  padding: 20px 0;
  background: #FDFBF5;
}

.quiz-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.sidebar {
  border-radius: 10px;
  width: 290px;
  min-width: 270px;
  background-color: var(--color-bg);
  border-right: 1px solid #e0e0e0;
  padding: 36px 24px 32px;
  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;
  text-align: center;
  gap: 10px;
}

.sidebar__avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #B4D544;
  margin-bottom: 6px;
}

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

.sidebar__name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
}

.sidebar__role {
  font-size: 0.8rem;
  color: #666666;
  margin-top: -4px;
}

.sidebar__desc {
  font-size: 0.82rem;
  color: #555555;
  line-height: 1.55;
  margin-top: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.sidebar__benefits {
  list-style: none;
  width: 100%;
  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;
  margin-top: 4px;
}

.sidebar__benefit {
  background: #2a2a2a;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}

.benefit-icon {
  font-size: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 1px;
  color: #ffffff;
}

.quiz-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 36px 48px 48px;
  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;
  min-width: 0;
}

.quiz-header__subtitle {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  color: #B4D544;
  margin-bottom: 8px;
  font-weight: 600;
}

.quiz-header__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
}

.quiz-header__title span {
  font-style: italic;
  line-height: 90%;
  font-size: 26px;
  color: #555555;
}

.quiz-header__title strong {
  text-transform: uppercase;
  color: #B4D544;
}

.progress-bar {
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4px;
}

.progress-bar__fill {
  height: 100%;
  background: #B4D544;
  border-radius: 20px;
  width: 14%;
  -webkit-transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps-container {
  position: relative;
}

.step {
  -webkit-animation: fadeSlide 0.35s ease both;
  animation: fadeSlide 0.35s ease both;
}

.step.hidden {
  display: none;
}

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

@keyframes fadeSlide {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.step-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.step-number {
  background: #f0f0f0;
  color: #B4D544;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.options-grid--cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.options-grid--gift {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.card-option {
  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;
  border: 2px solid #333333;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  background: #ffffff;
  position: relative;
}

.card-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.card-option img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.card-option span {
  width: 100%;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: #333333;
  line-height: 1.3;
}

.card-option::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #B4D544;
  border-radius: 50%;
  font-size: 0.85rem;
  color: transparent;
  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;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  z-index: 2;
}

.card-option:hover {
  border-color: #B4D544;
  -webkit-box-shadow: 0 0 0 3px rgba(180, 213, 68, 0.2);
  box-shadow: 0 0 0 3px rgba(180, 213, 68, 0.2);
}

.card-option.selected {
  border-color: #B4D544;
}

.card-option.selected::after {
  background: #B4D544;
  border-color: #B4D544;
  color: #1a1a1a;
}

.options-grid--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.options-grid--single {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.list-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333333;
  background: #ffffff;
  -webkit-transition: border-color 0.2s, background 0.2s, color 0.2s;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  position: relative;
}

.list-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.list-option__check {
  width: 22px;
  height: 22px;
  border: 2px solid #B4D544;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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;
  position: relative;
}

.list-option__check::after {
  content: "✓";
  font-size: 0.75rem;
  color: transparent;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.list-option:hover {
  border-color: #B4D544;
  background: rgba(180, 213, 68, 0.05);
}

.list-option.selected {
  border-color: #B4D544;
  background: rgba(180, 213, 68, 0.05);
  color: #1a1a1a;
}

.list-option.selected .list-option__check {
  background: #B4D544;
  border-color: #B4D544;
}

.list-option.selected .list-option__check::after {
  color: #1a1a1a;
}

.step-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.step-nav--right {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  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;
  letter-spacing: 0.01em;
}

.btn:active {
  -webkit-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

.btn--next {
  background: #B4D544;
  color: #1a1a1a;
}

.btn--next:hover {
  background: #9ec03a;
}

.btn--back {
  background: #999999;
  color: #ffffff;
  opacity: 0.85;
}

.btn--back:hover {
  background: #777777;
  opacity: 1;
}

.contact-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.contact-step__left {
  -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;
  gap: 14px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 28px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
}

.contact-step__right {
  display: none;
}

.contact-step__tag {
  margin: 0;
  display: inline-block;
  background: #B4D544;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: #1a1a1a;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.contact-step__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 0;
}

.contact-step__sub {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0;
}

.messenger-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 4px;
  margin-bottom: 0;
}

.messenger-btn {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 6px;
}

.messenger-btn span {
  display: none;
}

.messenger-btn img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
  background: #f0f2f4;
  padding: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #e0e4e8;
}

.messenger-btn:hover img {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 12px rgba(180, 213, 68, 0.4);
  box-shadow: 0 4px 12px rgba(180, 213, 68, 0.4);
  border-color: #B4D544;
}

.contact-fields {
  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;
}

.contact-input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #ffffff;
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.contact-input:focus {
  border-color: #B4D544;
}

.phone-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.phone-wrap:focus-within {
  border-color: #B4D544;
}

.phone-prefix {
  padding: 12px 12px;
  background: #f5f5f5;
  font-weight: 700;
  font-size: 0.9rem;
  border-right: 1.5px solid #e0e0e0;
  color: #1a1a1a;
}

.contact-input--phone {
  border: none;
  border-radius: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contact-input--phone:focus {
  border: none;
}

.checkbox-wrapper {
  margin: 8px 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #555555;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #cccccc;
  border-radius: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.checkbox-input:checked + .checkbox-label::before {
  background: #B4D544;
  border-color: #B4D544;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a' width='14px' height='14px'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%231a1a1a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.checkbox-label:hover::before {
  border-color: #B4D544;
}

.checkbox-policy {
  color: #B4D544;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.checkbox-policy:hover {
  opacity: 0.8;
}

.btn--submit {
  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;
  max-width: 300px;
  width: 100%;
  background: #B4D544;
  color: #1a1a1a;
  border: none;
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 8px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  cursor: pointer;
}

.btn--submit:hover {
  background: #9ec03a;
}

.contact-step__legal {
  font-size: 0.72rem;
  color: #666666;
  line-height: 1.5;
}

.contact-step__legal a {
  color: #666666;
  text-decoration: underline;
}

/* Стили для динамических полей 2 шага */
.quiz-input-group {
  margin-bottom: 16px;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.quiz-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
}

.quiz-label .required {
  color: #ff4444;
}

.quiz-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.quiz-input:focus {
  border-color: #B4D544;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(180, 213, 68, 0.2);
  box-shadow: 0 0 0 3px rgba(180, 213, 68, 0.2);
}

.success-screen {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 56px;
  gap: 24px;
}

.success-icon {
  width: 36px;
  height: 36px;
  background: #B4D544;
  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;
  margin-bottom: 8px;
  -webkit-animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.success-icon::before {
  content: "✓";
  font-size: 24px;
  font-weight: normal;
  color: #1a1a1a;
  line-height: 1;
}

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

@keyframes popIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.success-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.success-text {
  margin: 0;
  max-width: 440px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.btn--restart {
  margin-top: 16px;
  background: #B4D544;
  color: #1a1a1a;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn--restart:active {
  -webkit-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

.messenger-btn--active img,
.messenger-btn--active svg {
  outline: 3px solid #B4D544;
  outline-offset: 2px;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.messenger-btn--active img {
  border-radius: 10px;
}

.success-countdown {
  font-size: 0.9rem;
  color: #666666;
  padding-top: 12px;
}

.success-countdown span {
  font-weight: 800;
  color: #B4D544;
}

.success-manager {
  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: 12px;
  margin: 8px 0;
}

.success-manager-avatar {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 3px solid #B4D544;
  background: #f0f2f4;
}

.success-manager-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.success-manager:empty {
  display: none;
}

@media (max-width: 960px) {
  .quiz-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sidebar {
    display: none;
  }
  .quiz-main {
    padding: 24px 20px;
  }
  .options-grid--cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .quiz-header__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .qwiz {
    padding-top: 20px;
  }
}
@media (max-width: 640px) {
  .quiz-header__title {
    font-size: 1.2rem;
  }
  .quiz-header__title span {
    font-size: 18px;
  }
  .quiz-header__subtitle {
    font-size: 14px;
  }
  .options-grid--list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .options-grid--cards {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .options-grid--gift {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .step-title {
    font-size: 1.1rem;
  }
  .quiz-main {
    padding: 16px 0;
  }
  .card-option img {
    width: 100%;
    height: 120px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
  }
  .card-option::after {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  .contact-step__left {
    padding: 20px 16px;
  }
  .contact-step__title {
    font-size: 1.2rem;
  }
  .messenger-btns {
    gap: 10px;
  }
  .messenger-btn img {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  .checkbox-label {
    font-size: 0.75rem;
  }
  .quiz-input-group {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
/* ===== БЛОК 3. ПРОБЛЕМА И РЕШЕНИЕ ===== */
.problem-solution {
  padding: 40px 0;
  background: #FDFBF5;
}

.problem-solution__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
}

.problem-solution__left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.problem-solution__header {
  text-align: left;
  margin-bottom: 32px;
}

.problem-solution__badge {
  display: inline-block;
  background: var(--color-yellow);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.problem-solution__title {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.problem-solution__title span {
  color: #B4D544;
}

.problem-solution__subtitle {
  font-size: 20px;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

.problem-solution__subtitle strong {
  color: #B4D544;
  font-weight: 700;
}

/* ТАБЛИЦА */
.problem-solution__table {
  background: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e8e8e8;
}

.table-row:last-child {
  border-bottom: none;
}

.table-header {
  background: #f0f0f0;
}

.table-header .table-cell {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 24px;
  background: #f0f0f0;
}

.table-cell {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 14px 24px;
  font-size: 16px;
  line-height: 1.5;
}

.table-cell--problem {
  color: #666666;
  background: #f8f8f8;
  border-right: 1px solid #e8e8e8;
}

.table-cell--solution {
  color: #1a1a1a;
  font-weight: 500;
  background: #ffffff;
}

.problem-solution__action {
  text-align: left;
}

.btn--primary {
  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: #B4D544;
  color: #1a1a1a;
  border: none;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn--primary:hover {
  background: #9ec03a;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(180, 213, 68, 0.3);
  box-shadow: 0 6px 20px rgba(180, 213, 68, 0.3);
}

.problem-solution__right {
  width: 380px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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;
  position: relative;
}

.problem-engine-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  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-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 213, 68, 0.25) 0%, rgba(180, 213, 68, 0.08) 40%, transparent 70%);
  -webkit-animation: pulse 3s ease-in-out infinite;
  animation: pulse 3s ease-in-out infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
}
.problem-ring {
  position: absolute;
  border-radius: 50%;
  -webkit-animation: spin linear infinite;
  animation: spin linear infinite;
}

.problem-ring--1 {
  width: 380px;
  height: 380px;
  border: 2px solid rgba(180, 213, 68, 0.4);
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}

.problem-ring--2 {
  width: 300px;
  height: 300px;
  border: 1.5px solid rgba(180, 213, 68, 0.35);
  -webkit-animation-duration: 14s;
  animation-duration: 14s;
  animation-direction: reverse;
}

.problem-ring--3 {
  width: 220px;
  height: 220px;
  border: 1.5px solid rgba(180, 213, 68, 0.3);
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
}

.problem-ring--4 {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(180, 213, 68, 0.25);
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
  animation-direction: reverse;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* ===== РАЗНОЦВЕТНЫЕ ТОЧКИ НА КОЛЬЦАХ ===== */
/* Кольцо 1 - зелёные точки */
.problem-ring--1::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #5E6634;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 10px #5E6634;
  box-shadow: 0 0 10px #5E6634;
  -webkit-animation: pulseDot1 2s ease-in-out infinite;
  animation: pulseDot1 2s ease-in-out infinite;
}

.problem-ring--1::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(94, 102, 52, 0.6);
  border-radius: 50%;
  bottom: -2.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 6px rgba(94, 102, 52, 0.6);
  box-shadow: 0 0 6px rgba(94, 102, 52, 0.6);
  -webkit-animation: pulseDot1 2s ease-in-out infinite 0.5s;
  animation: pulseDot1 2s ease-in-out infinite 0.5s;
}

@-webkit-keyframes pulseDot1 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.5);
    transform: translateX(-50%) scale(1.5);
    opacity: 1;
  }
}

@keyframes pulseDot1 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.5);
    transform: translateX(-50%) scale(1.5);
    opacity: 1;
  }
}
/* Кольцо 2 - жёлто-зелёные точки */
.problem-ring--2::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #B4D544;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 12px #B4D544;
  box-shadow: 0 0 12px #B4D544;
  -webkit-animation: pulseDot2 2.5s ease-in-out infinite;
  animation: pulseDot2 2.5s ease-in-out infinite;
}

.problem-ring--2::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(180, 213, 68, 0.6);
  border-radius: 50%;
  bottom: -2.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 6px rgba(180, 213, 68, 0.6);
  box-shadow: 0 0 6px rgba(180, 213, 68, 0.6);
  -webkit-animation: pulseDot2 2.5s ease-in-out infinite 0.7s;
  animation: pulseDot2 2.5s ease-in-out infinite 0.7s;
}

@-webkit-keyframes pulseDot2 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(0.8);
    transform: translateX(-50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.6);
    transform: translateX(-50%) scale(1.6);
    opacity: 1;
  }
}

@keyframes pulseDot2 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(0.8);
    transform: translateX(-50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.6);
    transform: translateX(-50%) scale(1.6);
    opacity: 1;
  }
}
/* Кольцо 3 - жёлтые точки */
.problem-ring--3::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FEE643;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 12px #FEE643;
  box-shadow: 0 0 12px #FEE643;
  -webkit-animation: pulseDot3 1.8s ease-in-out infinite;
  animation: pulseDot3 1.8s ease-in-out infinite;
}

.problem-ring--3::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(254, 230, 67, 0.6);
  border-radius: 50%;
  bottom: -2.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 6px rgba(254, 230, 67, 0.6);
  box-shadow: 0 0 6px rgba(254, 230, 67, 0.6);
  -webkit-animation: pulseDot3 1.8s ease-in-out infinite 0.4s;
  animation: pulseDot3 1.8s ease-in-out infinite 0.4s;
}

@-webkit-keyframes pulseDot3 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.8);
    transform: translateX(-50%) scale(1.8);
    opacity: 1;
  }
}

@keyframes pulseDot3 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.8);
    transform: translateX(-50%) scale(1.8);
    opacity: 1;
  }
}
/* Кольцо 4 - коричнево-бежевые точки */
.problem-ring--4::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #B39784;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 8px #B39784;
  box-shadow: 0 0 8px #B39784;
  -webkit-animation: pulseDot4 3s ease-in-out infinite;
  animation: pulseDot4 3s ease-in-out infinite;
}

.problem-ring--4::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(179, 151, 132, 0.6);
  border-radius: 50%;
  bottom: -2.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 6px rgba(179, 151, 132, 0.6);
  box-shadow: 0 0 6px rgba(179, 151, 132, 0.6);
  -webkit-animation: pulseDot4 3s ease-in-out infinite 1s;
  animation: pulseDot4 3s ease-in-out infinite 1s;
}

@-webkit-keyframes pulseDot4 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(0.9);
    transform: translateX(-50%) scale(0.9);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.4);
    transform: translateX(-50%) scale(1.4);
    opacity: 1;
  }
}

@keyframes pulseDot4 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(0.9);
    transform: translateX(-50%) scale(0.9);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.4);
    transform: translateX(-50%) scale(1.4);
    opacity: 1;
  }
}
.problem-engine-img {
  width: 280px;
  height: 280px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 2;
  -webkit-animation: enginePop 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  animation: enginePop 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

.problem-engine-img:hover {
  -webkit-transform: scale(1.05) rotate(-2deg);
  -ms-transform: scale(1.05) rotate(-2deg);
  transform: scale(1.05) rotate(-2deg);
}

@-webkit-keyframes enginePop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.05) rotate(-18deg);
    transform: scale(0.05) rotate(-18deg);
    -webkit-filter: blur(12px);
    filter: blur(12px);
  }
  65% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes enginePop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.05) rotate(-18deg);
    transform: scale(0.05) rotate(-18deg);
    -webkit-filter: blur(12px);
    filter: blur(12px);
  }
  65% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
/* Текст на кольцах */
.ring-text {
  position: absolute;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 5;
}

/* Текст на кольце 1 */
.ring-text--1 {
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #5E6634;
  border: 1px solid #5E6634;
  -webkit-animation: textPulse1 2s ease-in-out infinite;
  animation: textPulse1 2s ease-in-out infinite;
}

/* Текст на кольце 2 */
.ring-text--2 {
  bottom: -15px;
  right: -20px;
  color: #B4D544;
  border: 1px solid #B4D544;
  -webkit-animation: textPulse2 2.5s ease-in-out infinite;
  animation: textPulse2 2.5s ease-in-out infinite;
}

/* Текст на кольце 3 */
.ring-text--3 {
  top: 40%;
  left: -30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FEE643;
  border: 1px solid #FEE643;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  -webkit-animation: textPulse3 1.8s ease-in-out infinite;
  animation: textPulse3 1.8s ease-in-out infinite;
}

@-webkit-keyframes textPulse1 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.1);
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes textPulse1 {
  0%, 100% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.1);
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
}
@-webkit-keyframes textPulse2 {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes textPulse2 {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
}
@-webkit-keyframes textPulse3 {
  0%, 100% {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }
}
@keyframes textPulse3 {
  0%, 100% {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }
}
/* Адаптация для мобильных */
@media (max-width: 576px) {
  .ring-text {
    font-size: 10px;
    padding: 2px 8px;
  }
  .ring-text--2 {
    right: -10px;
    bottom: -10px;
  }
  .ring-text--3 {
    left: -20px;
  }
}
/* ===== АДАПТАЦИЯ ===== */
@media (max-width: 1024px) {
  .problem-solution__wrapper {
    padding: 0 20px;
  }
  .problem-solution__title {
    font-size: 48px;
  }
  .problem-solution__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .problem-solution__wrapper {
    -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;
  }
  .problem-solution__right {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 24px;
  }
  .problem-engine-wrap {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
  .problem-engine-img {
    width: 230px;
    height: 230px;
  }
  .problem-ring--1 {
    width: 310px;
    height: 310px;
  }
  .problem-ring--2 {
    width: 250px;
    height: 250px;
  }
  .problem-ring--3 {
    width: 190px;
    height: 190px;
  }
  .problem-ring--4 {
    width: 130px;
    height: 130px;
  }
  .problem-solution__header {
    text-align: center;
  }
  .problem-solution__action {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .problem-solution {
    padding: 40px 0;
  }
  .problem-solution__title {
    font-size: 36px;
  }
  .problem-solution__subtitle {
    font-size: 16px;
  }
  .problem-solution__badge {
    font-size: 12px;
  }
  .table-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table-header {
    display: none;
  }
  .table-cell {
    padding: 14px 20px;
    font-size: 16px;
  }
  .table-cell--problem {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    background: #f0f0f0;
    font-weight: 600;
    color: #1a1a1a;
  }
  .table-cell--solution {
    background: #ffffff;
  }
  .btn--primary {
    padding: 14px 28px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .problem-solution {
    padding: 30px 0;
  }
  .problem-solution__wrapper {
    padding: 0 16px;
  }
  .problem-solution__title {
    font-size: 28px;
  }
  .problem-solution__subtitle {
    font-size: 16px;
  }
  .problem-solution__badge {
    font-size: 11px;
    padding: 4px 10px;
  }
  .table-cell {
    padding: 12px 16px;
    font-size: 16px;
  }
  .btn--primary {
    padding: 12px 24px;
    font-size: 16px;
    width: 100%;
  }
  .problem-engine-wrap {
    width: 240px;
    height: 240px;
  }
  .problem-engine-img {
    width: 190px;
    height: 190px;
  }
  .problem-ring--1 {
    width: 260px;
    height: 260px;
  }
  .problem-ring--2 {
    width: 210px;
    height: 210px;
  }
  .problem-ring--3 {
    width: 160px;
    height: 160px;
  }
  .problem-ring--4 {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 375px) {
  .problem-solution__title {
    font-size: 24px;
  }
  .problem-solution__subtitle {
    font-size: 16px;
  }
  .table-cell {
    padding: 10px 14px;
    font-size: 16px;
  }
  .btn--primary {
    padding: 10px 20px;
    font-size: 16px;
  }
}
/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ОПИСАНИЯ ===== */
.works {
  background: #FDFBF5;
}

.works__card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.works__card-city,
.works__card-days {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  background: #f8f8f8;
  padding: 5px 12px;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works__card:hover .works__card-city,
.works__card:hover .works__card-days {
  background: #f0f5ea;
  color: #2d4a1e;
}

.works__info-icon {
  font-size: 16px;
  color: #B4D544;
}

.works__card-desc {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  color: #888888;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

.works__card:hover .works__card-desc {
  color: #666666;
}

/* ===== ОСТАЛЬНЫЕ СТИЛИ WORKS ===== */
.works {
  position: relative;
  padding: 20px 0;
}

.works__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.works__title {
  margin: 0;
  margin-bottom: 50px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  color: #1a1a1a;
}

.works__title span {
  color: #B4D544;
}

.works-swiper {
  overflow: visible;
  padding: 10px 0 70px;
}

.works-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.works__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
}

.works__card:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.12);
  border-color: #e8e8e8;
}

.works__card-img {
  display: block;
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #e8ece0;
  -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;
}

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

.works__card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 20px 24px;
  background: #ffffff;
}

.works__card-name {
  margin: 0 0 12px 0;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
  color: #1a1a1a;
}

/* Пагинация */
.works-pagination {
  bottom: 0;
  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;
  gap: 12px;
  margin-top: 30px;
  position: relative;
}

.works-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 10px;
  height: 10px;
  background: #d0d5c8;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  border-radius: 50%;
}

.works-pagination .swiper-pagination-bullet:hover {
  background: #B4D544;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.works-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: #B4D544;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* Навигация */
.works-prev,
.works-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works-prev::after,
.works-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.works-prev:hover,
.works-next:hover {
  background: #B4D544;
  border-color: #B4D544;
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-box-shadow: 0 6px 16px rgba(180, 213, 68, 0.25);
  box-shadow: 0 6px 16px rgba(180, 213, 68, 0.25);
}

.works-prev:hover::after,
.works-next:hover::after {
  color: #1a1a1a;
}

.works-prev {
  left: -24px;
}

.works-next {
  right: -24px;
}

/* ===== АДАПТАЦИЯ ===== */
@media (max-width: 1200px) {
  .works-prev {
    left: -16px;
  }
  .works-next {
    right: -16px;
  }
}
@media (max-width: 1024px) {
  .works__title {
    font-size: 48px;
    margin-bottom: 40px;
  }
  .works__card-img {
    height: 220px;
  }
  .works__card-name {
    font-size: 18px;
  }
  .works-prev,
  .works-next {
    width: 42px;
    height: 42px;
  }
  .works-prev {
    left: -12px;
  }
  .works-next {
    right: -12px;
  }
}
@media (max-width: 768px) {
  .works__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .works-swiper {
    padding: 10px 0 60px;
  }
  .works__card-img {
    height: 200px;
  }
  .works__card-footer {
    padding: 16px 16px 20px;
  }
  .works__card-name {
    font-size: 18px;
  }
  .works__card-city,
  .works__card-days {
    font-size: 16px;
    padding: 3px 10px;
  }
  .works__info-icon {
    font-size: 16px;
  }
  .works__card-desc {
    font-size: 16px;
  }
  .works-prev,
  .works-next {
    display: none;
  }
  .works-pagination {
    gap: 10px;
  }
  .works-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .works-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }
}
@media (max-width: 576px) {
  .works__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .works__card-img {
    height: 180px;
  }
  .works__card-name {
    font-size: 15px;
  }
  .works-pagination {
    gap: 8px;
  }
  .works-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
  .works-pagination .swiper-pagination-bullet-active {
    width: 20px;
  }
}
/* ===== KMR ===== */
.kmr-section {
  position: relative;
  overflow-x: clip;
  border-radius: 16px;
  padding: 32px 24px 60px;
  background: #FDFBF5;
}

.kmr-title {
  margin: 0;
  margin-bottom: 60px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -2%;
  text-align: center;
  color: var(--color-dark-green);
}

.kmr-steps-wrap {
  position: relative;
  width: 100%;
}

.kmr-stripe {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 0;
  margin-left: calc(-50vw + 50%);
  border-radius: 10px;
  width: 100vw;
  height: 150px;
  background: rgba(94, 102, 52, 0.8);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.kmr-steps {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.kmr-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -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;
  border: 3px solid #7E845B;
  border-radius: 20px;
  padding: 24px 12px;
  min-width: 180px;
  min-height: 300px;
  max-width: 250px;
  text-align: center;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.kmr-step:hover {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.kmr-icon-wrap {
  position: relative;
  z-index: 2;
  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-bottom: 20px;
  border: 2px solid #B4D544;
  border-radius: 20px;
  width: 80px;
  height: 80px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.kmr-icon-wrap img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
  object-fit: contain;
}

.kmr-step-title {
  margin-bottom: 10px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-dark-green);
}

.kmr-step-desc {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-dark-green);
}

.kmr-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== АДАПТАЦИЯ ===== */
/* Планшеты (768px - 1024px) */
@media (width <= 1024px) {
  .kmr-section {
    padding: 32px 20px 50px;
  }
  .kmr-title {
    margin-bottom: 40px;
    font-size: 52px;
    line-height: 55px;
  }
  .kmr-stripe {
    height: 70px;
  }
  .kmr-steps {
    gap: 16px;
  }
  .kmr-step {
    padding: 20px 10px;
    min-width: 160px;
    min-height: 350px;
  }
  .kmr-icon-wrap {
    width: 70px;
    height: 70px;
  }
  .kmr-icon-wrap img {
    width: 38px;
    height: 38px;
  }
  .kmr-step-title {
    font-size: 20px;
    line-height: 1.3;
  }
  .kmr-step-desc {
    font-size: 16px;
    line-height: 1.4;
  }
}
/* Мобильные устройства (576px - 768px) */
@media (width <= 768px) {
  .kmr-section {
    padding: 30px 16px 40px;
  }
  .kmr-title {
    margin-bottom: 35px;
    font-size: 40px;
    line-height: 44px;
  }
  .kmr-stripe {
    display: none;
  }
  .kmr-steps {
    -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;
  }
  .kmr-step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 20px;
    width: 100%;
    min-width: 280px;
    min-height: auto;
    max-width: 100%;
    text-align: left;
    gap: 20px;
  }
  .kmr-icon-wrap {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .kmr-step-title {
    margin-bottom: 0;
    font-size: 20px;
  }
  .kmr-step-desc {
    font-size: 16px;
  }
}
/* Маленькие телефоны (375px - 576px) */
@media (width <= 576px) {
  .kmr-section {
    padding: 24px 12px 35px;
  }
  .kmr-title {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 36px;
  }
  .kmr-steps {
    -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: 16px;
  }
  .kmr-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 18px;
    width: 100%;
    min-width: auto;
    text-align: center;
    gap: 12px;
  }
  .kmr-icon-wrap {
    margin-bottom: 10px;
    width: 65px;
    height: 65px;
  }
  .kmr-icon-wrap img {
    width: 35px;
    height: 35px;
  }
  .kmr-step-desc {
    font-size: 16px;
    line-height: 1.4;
  }
}
/* Очень маленькие телефоны (до 375px) */
@media (width <= 375px) {
  .kmr-section {
    padding: 20px 10px 30px;
  }
  .kmr-title {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 32px;
  }
  .kmr-step {
    padding: 15px;
  }
  .kmr-icon-wrap {
    width: 60px;
    height: 60px;
  }
  .kmr-icon-wrap img {
    width: 32px;
    height: 32px;
  }
  .kmr-step-desc {
    font-size: 16px;
  }
}
/* ===== БЛОК "РЕАЛЬНЫЕ ИСТОРИИ" ===== */
.stories-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  min-height: 560px;
  background: #FDFBF5;
}

.stories-parallax {
  position: absolute;
  top: -44%;
  left: -5%;
  right: -5%;
  bottom: -40%;
  background-image: url("../img/bg-4.png");
  background-size: cover;
  background-position: center center;
  will-change: transform;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 0;
}

.stories-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(253, 251, 245, 0.85)), color-stop(30%, rgba(253, 251, 245, 0.4)), color-stop(70%, rgba(253, 251, 245, 0.4)), to(rgba(253, 251, 245, 0.85)));
  background: linear-gradient(to bottom, rgba(253, 251, 245, 0.85) 0%, rgba(253, 251, 245, 0.4) 30%, rgba(253, 251, 245, 0.4) 70%, rgba(253, 251, 245, 0.85) 100%);
  z-index: 1;
}

.stories-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stories-header {
  text-align: center;
  margin-bottom: 48px;
}

.stories-title {
  margin: 0 0 16px;
  font-family: "Comfortaa", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark-green);
}

.stories-title span {
  color: #B4D544;
}

.stories-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: var(--color-dark-green);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.stories-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.story-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.story-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.story-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.story-card:hover .story-card__image img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.story-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #B4D544;
  color: #1a1a1a;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.story-card__content {
  padding: 20px;
}

.story-card__title {
  margin: 0 0 12px;
  font-family: "Comfortaa", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.story-card__problem {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #888;
  margin: 0 0 12px;
  line-height: 1.4;
}

.story-card__solution {
  background: #f5f7f0;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.solution-label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #B4D544;
  display: block;
  margin-bottom: 4px;
}

.solution-text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.story-card__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.result-icon {
  width: 22px;
  height: 22px;
  background: #B4D544;
  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;
  font-size: 14px;
  color: #fff;
}

.result-text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.story-card__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #999;
}

.story-card__location .material-icons {
  font-size: 14px;
  color: #B4D544;
}

.stories-cta {
  text-align: center;
}

.stories-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #B4D544;
  border: none;
  border-radius: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.stories-btn:hover {
  background: #9ec03a;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .stories-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stories-title {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .stories-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .stories-title {
    font-size: 28px;
  }
  .stories-subtitle {
    font-size: 14px;
  }
  .stories-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  .stories-parallax {
    background-image: url("../img/bg-mobile.png") !important;
  }
}
/* ===== about-us ===== */
.about-us {
  padding: 44px 0 0;
  background: #FDFBF5;
}

.about-us__top {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
  gap: 32px;
}

.about-us__left {
  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;
  height: 100%;
  gap: 20px;
}

.about-us__photo-main {
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  min-height: 350px;
  aspect-ratio: 570/387;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-us__photo-main img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-us__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(62, 66, 34, 0.15);
}

.about-us__info-item {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  background: rgba(180, 213, 68, 0.08);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.about-us__info-item:hover {
  background: rgba(180, 213, 68, 0.15);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.about-us__info-number {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--color-yellow-green);
  display: block;
  margin-bottom: 12px;
}

.about-us__info-desc {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);
}

/* Остальные стили без изменений */
.about-us__title {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 0.88;
  letter-spacing: -2px;
  color: var(--color-dark-green);
}

.about-us__text {
  margin: 0;
  max-width: 664px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--color-text);
}

.about-us__text strong {
  color: var(--color-yellow-green);
}

.about-us__bottom-photos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  gap: 24px;
}

.about-us__photo-sm {
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
  min-height: 350px;
  aspect-ratio: 570/387;
}

.about-us__photo-sm img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-us__features {
  margin: 20px auto 0;
  border-top: 1px solid var(--color-bg);
  padding: 40px 0 50px;
  max-width: 1200px;
}

.about-us__features-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 59px;
}

.about-us__feature {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 12px;
  min-height: 200px;
}

.about-us__feature-title {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 25px;
  padding: 8px 16px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -1px;
  text-align: center;
  color: var(--light-color);
  background: var(--color-yellow-green);
}

.about-us__feature-text {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-text-muted);
}

/* Адаптация */
@media (width <= 1024px) {
  .about-us {
    padding: 40px 0 0;
  }
  .about-us__top {
    margin-bottom: 20px;
    gap: 24px;
  }
  .about-us__title {
    font-size: 52px;
  }
  .about-us__text {
    font-size: 20px;
  }
  .about-us__photo-main {
    min-height: 300px;
  }
  .about-us__info-number {
    font-size: 32px;
  }
  .about-us__info-desc {
    font-size: 18px;
  }
  .about-us__photo-sm {
    min-height: 300px;
  }
  .about-us__bottom-photos {
    margin-bottom: 35px;
    gap: 20px;
  }
  .about-us__features-inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .about-us__feature-title {
    font-size: 18px;
  }
  .about-us__feature-text {
    font-size: 15px;
  }
}
@media (width <= 768px) {
  .about-us {
    padding: 30px 0 0;
  }
  .about-us__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-us__title {
    font-size: 42px;
  }
  .about-us__text {
    font-size: 18px;
  }
  .about-us__photo-main {
    min-height: 350px;
  }
  .about-us__info {
    gap: 20px;
  }
  .about-us__info-number {
    font-size: 30px;
  }
  .about-us__info-desc {
    font-size: 14px;
  }
  .about-us__photo-sm {
    min-height: 350px;
  }
  .about-us__bottom-photos {
    margin-bottom: 30px;
    gap: 16px;
  }
  .about-us__features-inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .about-us__feature-text {
    font-size: 16px;
  }
}
@media (width <= 576px) {
  .about-us {
    padding: 24px 0 0;
  }
  .about-us__title {
    font-size: 34px;
  }
  .about-us__photo-main {
    min-height: 280px;
  }
  .about-us__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
  }
  .about-us__info-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: calc(33.33% - 12px);
    padding: 12px 8px;
  }
  .about-us__info-number {
    font-size: 26px;
  }
  .about-us__photo-sm {
    min-height: 280px;
  }
  .about-us__bottom-photos {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 25px;
    gap: 16px;
  }
  .about-us__features-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-us__feature {
    min-height: auto;
  }
}
/* ===== REVIEWS ===== */
.reviews {
  position: relative;
  padding: 20px 20px 80px;
  background: #FDFBF5;
}

.reviews__inner {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}

.reviews__title {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  letter-spacing: -2%;
  text-align: center;
  color: var(--color-dark-green);
}

/* Swiper контейнер */
.reviews-swiper {
  overflow: visible;
  padding: 10px 0 70px;
}

/* Слайд */
.reviews-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.reviews__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.reviews__card:hover {
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.reviews__card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
  gap: 14px;
}

.reviews__avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  background-size: contain;
  background-repeat: no-repeat;
}

.reviews__meta {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.reviews__name {
  display: block;
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark-green);
}

.reviews__date {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.reviews__stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: #f5c542;
}

.reviews__text {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text);
}

/* ===== НАВИГАЦИЯ (как в WORKS) ===== */
.reviews-prev,
.reviews-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.reviews-prev::after,
.reviews-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.reviews-prev:hover,
.reviews-next:hover {
  background: #B4D544;
  border-color: #B4D544;
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-box-shadow: 0 6px 16px rgba(180, 213, 68, 0.25);
  box-shadow: 0 6px 16px rgba(180, 213, 68, 0.25);
}

.reviews-prev:hover::after,
.reviews-next:hover::after {
  color: #1a1a1a;
}

.reviews-prev {
  left: -24px;
}

.reviews-next {
  right: -24px;
}

/* ===== ПАГИНАЦИЯ (как в WORKS) ===== */
.reviews-pagination {
  bottom: 0;
  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;
  gap: 12px;
  margin-top: 30px;
  position: relative;
}

.reviews-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 10px;
  height: 10px;
  background: #d0d5c8;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  border-radius: 50%;
}

.reviews-pagination .swiper-pagination-bullet:hover {
  background: #B4D544;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.reviews-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: #B4D544;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* ===== АДАПТАЦИЯ ===== */
/* Планшеты (768px - 1024px) */
@media (width <= 1024px) {
  .reviews {
    padding: 40px 20px 70px;
  }
  .reviews__title {
    margin-bottom: 40px;
    font-size: 52px;
    line-height: 55px;
  }
  .reviews-prev {
    left: -16px;
  }
  .reviews-next {
    right: -16px;
  }
  .reviews-prev,
  .reviews-next {
    width: 42px;
    height: 42px;
  }
  .reviews__card {
    padding: 20px;
  }
  .reviews__name {
    font-size: 18px;
  }
  .reviews__text {
    font-size: 16px;
  }
}
/* Мобильные устройства (576px - 768px) */
@media (width <= 768px) {
  .reviews {
    padding: 30px 16px 60px;
  }
  .reviews__title {
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 44px;
  }
  .reviews-prev,
  .reviews-next {
    display: none;
  }
  .reviews-swiper {
    padding: 10px 0 50px;
  }
}
/* Маленькие телефоны (375px - 576px) */
@media (width <= 576px) {
  .reviews {
    padding: 24px 12px 50px;
  }
  .reviews__title {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 36px;
  }
  .reviews__card {
    padding: 16px;
  }
  .reviews__avatar {
    width: 44px;
    height: 44px;
  }
  .reviews-pagination {
    gap: 10px;
  }
  .reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .reviews-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }
}
@media (width <= 375px) {
  .reviews {
    padding: 20px 10px 40px;
  }
  .reviews__card {
    padding: 14px;
  }
  .reviews-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
  .reviews-pagination .swiper-pagination-bullet-active {
    width: 20px;
  }
}
.faq__title span {
  color: #B4D544;
}

.faq {
  background: #FDFBF5;
  position: relative;
  padding: 0 0 40px 0;
}

.faq__inner {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}

.faq__title {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-bottom: 50px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  letter-spacing: -2%;
  text-align: center;
  color: var(--color-dark-green);
}

.faq__list {
  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: 16px;
}

.faq__item {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.faq__item:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq__question {
  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;
  border: none;
  padding: 20px 24px;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  color: var(--color-dark-green);
  background: var(--color-bg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  gap: 16px;
  position: relative;
}

.faq__question:hover {
  background: rgba(200, 216, 74, 0.15);
}

.faq__question--open {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-dark-green);
  background: var(--color-bg);
}

.faq__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 24px;
  color: var(--color-medium-green);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__question--open .faq__icon {
  color: var(--color-dark-green);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq__answer {
  display: none;
  background: var(--color-white);
}

.faq__answer--open {
  display: block;
  -webkit-animation: slideDown 0.3s ease;
  animation: slideDown 0.3s ease;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.faq__answer-text {
  margin: 0;
  padding: 20px 24px 24px 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
}

/* Планшеты (768px - 1024px) */
@media (width <= 1024px) {
  .faq {
    padding: 40px 0;
  }
  .faq__title {
    margin-bottom: 40px;
    font-size: 52px;
    line-height: 55px;
  }
  .faq__question {
    padding: 18px 20px;
    font-size: 18px;
  }
}
/* Мобильные устройства (576px - 768px) */
@media (width <= 768px) {
  .faq {
    padding: 20px 0;
  }
  .faq__title {
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 44px;
  }
  .faq__list {
    gap: 12px;
  }
  .faq__question {
    padding: 16px 18px;
  }
  .faq__icon {
    font-size: 22px;
  }
  .faq__answer-text {
    padding: 16px 18px 18px 18px;
  }
}
/* Маленькие телефоны (375px - 576px) */
@media (width <= 576px) {
  .faq {
    background-image: none;
  }
  .faq__title {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 36px;
  }
  .faq__icon {
    font-size: 20px;
  }
}
/* ===== CONTACTS - КАРТА НА ВЕСЬ ЭКРАН + ФОРМА СПРАВА ===== */
.contacts-full {
  position: relative;
  width: 100%;
  height: 700px;
  max-height: 700px;
  overflow: hidden;
}

.contacts-full__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contacts-full__form-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  max-width: 520px;
  height: auto;
  z-index: 2;
  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;
  padding: 40px;
}

.contacts-full__form-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 40px 35px;
  background-image: url("../img/Rectangle.png");
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.contacts-full__form-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.contacts-full__title {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #3E4222;
  margin-bottom: 8px;
}

.contacts-full__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #3E4222;
  margin-bottom: 25px;
  line-height: 1.4;
}

.contacts-full__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.contacts-full__input-group {
  position: relative;
}

.contacts-full__input {
  outline: none;
  border: 1px solid #c0c5b0;
  border-radius: 25px;
  padding: 14px 20px;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contacts-full__input::-webkit-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  text-align: left;
}

.contacts-full__input::-moz-placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  text-align: left;
}

.contacts-full__input:-ms-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  text-align: left;
}

.contacts-full__input::-ms-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  text-align: left;
}

.contacts-full__input::placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  text-align: left;
}

.contacts-full__input:focus {
  border-color: #AAD31E;
  background: #fff;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(170, 211, 30, 0.2);
  box-shadow: 0 0 0 3px rgba(170, 211, 30, 0.2);
}

.contacts-full__agree {
  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;
  gap: 10px;
  margin-top: 5px;
}

.contacts-full__agree span {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #3E4222;
  line-height: 120%;
}

.contacts-full__agree a {
  color: #5E6634;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contacts-full__agree a:hover {
  color: #AAD31E;
  text-decoration: none;
}

.contacts-full__checkbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #AAD31E;
}

.contacts-full__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;
  gap: 10px;
  border: none;
  padding: 14px 24px;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  color: #3E4222;
  background: #AAD31E;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 25px;
  margin-top: 5px;
}

.contacts-full__btn:hover {
  background: #FEE643;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.contacts-full__btn-icon {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
}

/* Адаптация для планшетов */
@media (max-width: 1024px) {
  .contacts-full {
    height: 700px;
    max-height: 700px;
  }
  .contacts-full__form-wrapper {
    max-width: 460px;
    padding: 30px;
  }
  .contacts-full__form-card {
    padding: 35px 30px;
  }
}
/* Адаптация для мобильных */
@media (max-width: 768px) {
  .contacts-full {
    height: auto;
    max-height: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts-full__map {
    position: relative;
    height: 350px;
    width: 100%;
  }
  .contacts-full__form-wrapper {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    max-width: 100%;
    padding: 40px 20px;
    background: #FDFBF5;
  }
  .contacts-full__form-card {
    max-width: 100%;
    padding: 30px 24px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-image: none;
    background: #fff;
  }
  .contacts-full__title {
    font-size: 22px;
  }
  .contacts-full__subtitle {
    font-size: 13px;
  }
  .contacts-full__input {
    padding: 12px 18px;
    font-size: 14px;
    background: #ffffff;
    border-color: #d0d5c0;
  }
  .contacts-full__input::-webkit-input-placeholder {
    font-size: 13px;
  }
  .contacts-full__input::-moz-placeholder {
    font-size: 13px;
  }
  .contacts-full__input:-ms-input-placeholder {
    font-size: 13px;
  }
  .contacts-full__input::-ms-input-placeholder {
    font-size: 13px;
  }
  .contacts-full__input::placeholder {
    font-size: 13px;
  }
  .contacts-full__btn {
    font-size: 15px;
    padding: 12px 20px;
  }
  .contacts-full__btn-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 576px) {
  .contacts-full__map {
    height: 300px;
  }
  .contacts-full__form-card {
    padding: 24px 20px;
  }
  .contacts-full__title {
    font-size: 20px;
  }
  .contacts-full__subtitle {
    font-size: 12px;
  }
  .contacts-full__input {
    padding: 10px 16px;
    font-size: 13px;
  }
  .contacts-full__input::-webkit-input-placeholder {
    font-size: 12px;
  }
  .contacts-full__input::-moz-placeholder {
    font-size: 12px;
  }
  .contacts-full__input:-ms-input-placeholder {
    font-size: 12px;
  }
  .contacts-full__input::-ms-input-placeholder {
    font-size: 12px;
  }
  .contacts-full__input::placeholder {
    font-size: 12px;
  }
  .contacts-full__btn {
    font-size: 14px;
    padding: 10px 16px;
  }
  .contacts-full__btn-icon {
    width: 14px;
    height: 14px;
  }
}
/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ФУТЕРА ===== */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 50px 0 20px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.footer__logo-img {
  width: 150px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__col {
  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;
}

.footer__link {
  color: #cccccc;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #B4D544;
}

.footer__right {
  text-align: right;
}

.footer__phone {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  font-family: "Comfortaa", sans-serif;
  margin-bottom: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__phone:hover {
  color: #B4D544;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer__social {
  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: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
}

.footer__social:hover {
  background: #B4D544;
  color: #1a1a1a;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.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;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  font-size: 12px;
  color: #888888;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright,
.footer__policy,
.footer__dev {
  margin: 0;
  font-family: "Manrope", sans-serif;
}

.footer__policy {
  color: #888888;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__policy:hover {
  color: #B4D544;
}

.footer__dev a {
  color: #888888;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__dev a:hover {
  color: #B4D544;
}

/* ===== АДАПТАЦИЯ ФУТЕРА ===== */
@media (max-width: 900px) {
  .footer__inner {
    -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;
  }
  .footer__nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__col {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__right {
    text-align: center;
  }
  .footer__socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
  .footer__nav {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__col {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .footer__right {
    width: 100%;
    text-align: center;
  }
  .footer__socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__col {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  .footer__phone {
    font-size: 20px;
    text-align: center;
  }
  .footer__bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */
