@charset "UTF-8";
:root {
  --font-family:"Manrope", "Open Sans", sans-serif;
  --content-width: 1470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --font-main: var(--font-family);
  --color-bg: #F0F0F0;
  --color-navy: #0F1D38;
  --color-navy-deep: #1b2536;
  --color-gold: #c89a4a;
  --color-gold-dark: #b08538;
  --color-card: #ffffff;
  --color-card-grey: #dcdad6;
  --color-text: #33343B;
  --color-text-muted: #6b7180;
  --color-line: #d3d1cc;
}

/* 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-Semibold.woff2") format("woff2");
  font-weight: 600;
  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: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-card);
  padding: 15px 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: slideDown 0.4s ease both;
  animation: slideDown 0.4s ease both;
}

.site-header + * {
  padding-top: 90px;
}

.site-header.scrolled {
  padding: 8px 0;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.site-header.scrolled .site-header__logo {
  width: 130px;
}

.site-header.scrolled .site-header__phone {
  font-size: 20px;
}

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

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.site-header__inner {
  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: 20px;
}

.site-header__brand {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site-header__logo {
  width: 160px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.site-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.site-header__nav-link {
  font-family: var(--font-main);
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--color-text) !important;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.site-header__nav-link:hover {
  color: var(--color-gold-dark) !important;
}

.site-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.site-header__phone {
  color: var(--color-navy) !important;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 25px;
  line-height: 120%;
  letter-spacing: -2%;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.site-header__social-icon {
  min-width: 25px;
  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;
  color: var(--color-navy) !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.site-header__social-icon:hover {
  color: var(--color-gold-dark) !important;
}

.site-header__burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site-header__burger-line {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-navy);
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.site-header__burger.active .site-header__burger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 6px);
  -ms-transform: rotate(45deg) translate(5px, 6px);
  transform: rotate(45deg) translate(5px, 6px);
}

.site-header__burger.active .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header__burger.active .site-header__burger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -7px);
  -ms-transform: rotate(-45deg) translate(6px, -7px);
  transform: rotate(-45deg) translate(6px, -7px);
}

.site-header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}

.site-header__overlay.active {
  display: block;
}

@media (max-width: 1150px) {
  .site-header__nav-link {
    font-size: 13px;
  }
  .site-header__phone {
    font-size: 18px;
  }
  .site-header__nav {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .site-header + * {
    padding-top: 75px;
  }
  .site-header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-card);
    -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: 25px;
    padding: 40px 20px;
    -webkit-transition: right 0.4s ease;
    transition: right 0.4s ease;
    -webkit-box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  .site-header__nav.open {
    right: 0;
  }
  .site-header__nav-link {
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }
  .site-header__right {
    gap: 10px;
  }
  .site-header__phone {
    font-size: 16px;
  }
  .site-header__socials {
    display: none;
  }
  .site-header.scrolled .site-header__phone {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .site-header + * {
    padding-top: 65px;
  }
  .site-header {
    padding: 10px 0;
  }
  .site-header.scrolled {
    padding: 6px 0;
  }
  .site-header__logo {
    width: 90px;
    height: auto;
  }
  .site-header.scrolled .site-header__logo {
    width: 70px;
  }
  .site-header__phone {
    font-size: 14px;
  }
  .site-header__inner {
    gap: 10px;
  }
  .site-header__nav-link {
    font-size: 16px;
  }
  .site-header__burger-line {
    width: 24px;
    height: 2.5px;
  }
}
@media (max-width: 480px) {
  .site-header + * {
    padding-top: 60px;
  }
  .site-header__logo {
    width: 100px;
  }
  .site-header.scrolled .site-header__logo {
    width: 80px;
  }
  .site-header__phone {
    font-size: 16px;
  }
  .site-header__burger-line {
    width: 22px;
    height: 2.5px;
    gap: 4px;
  }
  .site-header__nav-link {
    font-size: 14px;
  }
  .site-header__right {
    gap: 6px;
  }
}
/* ===== МОДАЛЬНОЕ ОКНО ===== */
.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: 528px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 50px 40px;
  background-image: url("../img/bg-form.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: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #0F1D38;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  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: #BFA373;
  color: #FFFFFF;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal__title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 28px;
  color: #0F1D38;
  margin-bottom: 12px;
}

.modal__subtitle {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  color: #33343B;
  margin-bottom: 30px;
  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: 20px;
}

.modal__input {
  outline: none !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 25px !important;
  padding: 16px 24px !important;
  width: 100% !important;
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  letter-spacing: 0.5px !important;
  color: #0F1D38 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left !important;
  height: auto !important;
  min-height: 56px !important;
}

.modal__input::-webkit-input-placeholder {
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #6B7180 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  opacity: 1 !important;
}

.modal__input::-moz-placeholder {
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #6B7180 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  opacity: 1 !important;
}

.modal__input:-ms-input-placeholder {
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #6B7180 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  opacity: 1 !important;
}

.modal__input::-ms-input-placeholder {
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #6B7180 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  opacity: 1 !important;
}

.modal__input::placeholder {
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #6B7180 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  opacity: 1 !important;
}

.modal__input::-webkit-input-placeholder {
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #6B7180 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  opacity: 1 !important;
}

.modal__input::-moz-placeholder {
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #6B7180 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  opacity: 1 !important;
}

.modal__input:-ms-input-placeholder {
  font-family: var(--font-main) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #6B7180 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  opacity: 1 !important;
}

.modal__input:focus {
  border-color: #BFA373 !important;
  background: #FFFFFF !important;
  outline: none !important;
  -webkit-box-shadow: 0 0 0 3px rgba(191, 163, 115, 0.2) !important;
  box-shadow: 0 0 0 3px rgba(191, 163, 115, 0.2) !important;
}

.modal__agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  cursor: pointer;
  gap: 10px;
  text-align: left;
}

.modal__agree span {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 13px;
  color: #33343B;
  line-height: 1.4;
}

.modal__policy-link {
  color: #0F1D38 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.modal__policy-link:hover {
  color: #BFA373 !important;
  text-decoration: none;
}

.modal__checkbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #BFA373;
}

.modal__submit {
  border: none;
  padding: 16px;
  width: 100%;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 25px;
}

.modal__submit:hover {
  -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: 16px 32px;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 14px;
  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: 280px;
  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: #BFA373;
  color: #FFFFFF;
  border-left: 4px solid #8E7C5C;
}

.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: 30px 20px;
    max-width: 400px;
  }
  .modal__title {
    font-size: 22px;
  }
  .modal__subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .modal__input {
    padding: 12px 16px !important;
    font-size: 14px !important;
    min-height: 44px !important;
    border-radius: 20px !important;
  }
  .modal__input::-webkit-input-placeholder {
    font-size: 13px !important;
  }
  .modal__input::-moz-placeholder {
    font-size: 13px !important;
  }
  .modal__input:-ms-input-placeholder {
    font-size: 13px !important;
  }
  .modal__input::-ms-input-placeholder {
    font-size: 13px !important;
  }
  .modal__input::placeholder {
    font-size: 13px !important;
  }
  .modal__agree span {
    font-size: 11px;
  }
  .modal__checkbox {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 1px;
  }
  .modal__submit {
    font-size: 16px;
    padding: 12px;
    border-radius: 20px;
  }
  .modal__close {
    width: 28px;
    height: 28px;
    font-size: 22px;
    top: 14px;
    right: 16px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__photo {
  background-image: url("../img/Rectangle.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__inner {
  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;
  min-height: 850px;
  padding: 60px 0;
}

.hero__form-card {
  background-image: url("../img/Rectangle-1.png");
  border-radius: 20px;
  padding: 26px;
  -webkit-box-shadow: 0 20px 45px rgba(20, 25, 40, 0.18);
  box-shadow: 0 20px 45px rgba(20, 25, 40, 0.18);
  max-width: 550px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hero__form-top {
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.8) -8.86%, rgba(25, 50, 99, 0.8) 108.42%);
  border-radius: 20px 20px 0 0;
  padding: 12px 16px;
  margin: -26px -26px 16px -26px;
  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;
}

.hero__license {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 22px;
  color: var(--light-color);
  line-height: 35px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
}

.hero__form-title {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 700;
  font-style: Bold;
  font-size: 27px;
  line-height: 35px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-text);
}

.hero__form-subtitle {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: rgba(51, 52, 59, 0.8);
  line-height: 35px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 10px;
}

.hero__input {
  border-radius: 10px !important;
  width: 100%;
  height: 55px;
  border: 1px solid var(--color-line);
  padding: 11px 13px !important;
  font-family: var(--font-main);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 121%;
  letter-spacing: 2%;
  margin-bottom: 10px;
  color: var(--color-text);
  background: #f3f2ef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.hero__input::-webkit-input-placeholder {
  color: #989ba4 !important;
}

.hero__input::-moz-placeholder {
  color: #989ba4 !important;
}

.hero__input:-ms-input-placeholder {
  color: #989ba4 !important;
}

.hero__input::-ms-input-placeholder {
  color: #989ba4 !important;
}

.hero__input::placeholder {
  color: #989ba4 !important;
}

.hero__consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 400;
  font-style: Regular;
  color: rgba(51, 52, 59, 0.8980392157);
  font-size: 12px;
  line-height: 90%;
  letter-spacing: 0%;
  margin: 8px 0 14px;
  cursor: pointer;
}

.hero__consent-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  accent-color: #BFA373;
  cursor: pointer;
  border-radius: 4px !important;
  margin: 0 !important;
}

.hero__consent-text {
  line-height: 1.3;
}

.hero__consent-text a {
  color: #BFA373 !important;
  text-decoration: underline !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.hero__consent-text a:hover {
  color: #8E7C5C !important;
}

.hero__submit-row {
  margin: 0 auto;
  max-width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: relative;
}

.hero__submit {
  background: var(--color-navy);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  color: var(--light-color);
  line-height: 120%;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 13px 14px;
  border-radius: 10px;
  height: 60px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none !important;
  outline: none !important;
  cursor: pointer;
}

.hero__submit:hover {
  background: linear-gradient(0deg, rgba(67, 80, 66, 0.6), rgba(67, 80, 66, 0.6)), linear-gradient(88.17deg, rgba(191, 163, 115, 0.6) 11.68%, rgba(142, 124, 92, 0.6) 88.32%);
  color: #fff !important;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.hero__timer-badge {
  position: absolute;
  right: -30px;
  top: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(67, 80, 66, 0.6), rgba(67, 80, 66, 0.6)), linear-gradient(88.17deg, rgba(191, 163, 115, 0.8) 11.68%, rgba(142, 124, 92, 0.8) 88.32%);
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero__timer-badge-num {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 26px;
  color: var(--light-color);
  line-height: 90%;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.hero__timer-badge-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 9px;
  color: var(--light-color);
  line-height: 90%;
  letter-spacing: 2%;
  text-align: center;
}

.hero__checklist-link {
  background: linear-gradient(0deg, rgba(67, 80, 66, 0.6), rgba(67, 80, 66, 0.6)), linear-gradient(88.17deg, rgba(191, 163, 115, 0.6) 11.68%, rgba(142, 124, 92, 0.6) 88.32%);
  border-radius: 0 0 20px 20px;
  padding: 16px 20px;
  margin: 14px -26px -26px -26px;
  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;
  gap: 12px;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 81px;
  color: #ffffff !important;
}

.hero__checklist-link-text {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  color: #ffffff !important;
  line-height: 14px;
  letter-spacing: -2%;
  text-align: center;
}

.hero__checklist-link:hover {
  background: linear-gradient(88.17deg, #c9ad7e 11.68%, #9e8a68 88.32%);
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}

.hero__checklist-icon {
  font-size: 24px;
  color: var(--light-color);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hero__content {
  position: relative;
  max-width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.hero__title {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 700;
  font-style: Bold;
  font-size: 70px;
  color: var(--light-color);
  line-height: 65px;
  letter-spacing: -2%;
  text-align: right;
  margin-bottom: 10px;
}

.hero__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 22px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.hero__tag {
  font-family: var(--font-main);
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  color: var(--light-color);
  line-height: 121%;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
}

.hero__cta {
  display: inline-block;
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  line-height: 20px;
  letter-spacing: -2%;
  text-align: center;
  padding: 24px 47px;
  border-radius: 10px;
  text-decoration: none !important;
  color: #ffffff !important;
}

.hero__cta:hover {
  background: var(--color-gold-dark);
}

.hero a {
  color: inherit;
  text-decoration: none;
}

.hero__consent span a {
  color: #0F1D38 !important;
  text-decoration: underline !important;
}

.hero__consent span a:hover {
  color: #1A2D5A !important;
}

@media (max-width: 1200px) {
  .hero__title {
    font-size: 50px;
    line-height: 50px;
  }
  .hero__tag {
    font-size: 22px;
  }
  .hero__cta {
    font-size: 24px;
    padding: 20px 35px;
  }
}
@media (max-width: 1150px) {
  .hero__inner {
    gap: 30px;
  }
  .hero__title {
    font-size: 40px;
    line-height: 42px;
  }
  .hero__form-card {
    max-width: 440px;
  }
  .hero__tag {
    font-size: 18px;
  }
  .hero__cta {
    font-size: 20px;
    padding: 18px 30px;
  }
}
@media (max-width: 991px) {
  .hero__inner {
    -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;
    min-height: auto;
    padding: 40px 0;
    gap: 40px;
  }
  .hero__content {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .hero__form-card {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .hero__title {
    padding-top: 40px;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
  }
  .hero__tags {
    margin: 0 auto;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    margin-bottom: 30px;
  }
  .hero__tag {
    font-size: 18px;
  }
  .hero__cta {
    display: none;
    font-size: 22px;
    padding: 20px 40px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero__inner {
    padding: 30px 0;
    gap: 30px;
  }
  .hero__title {
    font-size: 30px;
    line-height: 32px;
  }
  .hero__tag {
    font-size: 16px;
  }
  .hero__cta {
    font-size: 18px;
    padding: 16px 30px;
  }
  .hero__form-title {
    font-size: 20px;
    line-height: 28px;
  }
  .hero__form-subtitle {
    font-size: 16px;
    line-height: 28px;
  }
  .hero__form-top {
    padding: 10px 12px;
    margin: -20px -20px 12px -20px;
  }
  .hero__form-card {
    padding: 20px;
  }
  .hero__license {
    font-size: 18px;
    line-height: 28px;
  }
  .hero__input {
    height: 48px;
    font-size: 16px;
  }
  .hero__submit {
    font-size: 16px;
    height: 50px;
  }
  .hero__timer-badge {
    width: 50px;
    height: 50px;
    right: -25px;
    top: -15px;
  }
  .hero__timer-badge-num {
    font-size: 22px;
  }
  .hero__checklist-link {
    padding: 14px 16px;
    margin: 12px -20px -20px -20px;
    min-height: 70px;
  }
  .hero__checklist-link-text {
    font-size: 14px;
  }
  .hero__checklist-icon {
    font-size: 20px;
  }
  .hero__consent {
    font-size: 13px;
  }
  .hero__consent-checkbox {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}
@media (max-width: 480px) {
  .hero__inner {
    padding: 20px 0;
    gap: 20px;
  }
  .hero__tags {
    gap: 12px;
  }
  .hero__form-card {
    padding: 16px;
    border-radius: 16px;
  }
  .hero__form-top {
    margin: -16px -16px 12px -16px;
    padding: 8px 12px;
    border-radius: 16px 16px 0 0;
  }
  .hero__form-title {
    font-size: 16px;
    line-height: 24px;
  }
  .hero__form-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  .hero__license {
    font-size: 14px;
    line-height: 22px;
  }
  .hero__input {
    height: 44px;
    font-size: 14px;
  }
  .hero__submit {
    font-size: 14px;
    height: 46px;
    padding: 10px 12px;
  }
  .hero__submit-row {
    max-width: 100%;
  }
  .hero__timer-badge {
    width: 44px;
    height: 44px;
    right: -20px;
    top: -12px;
  }
  .hero__timer-badge-num {
    font-size: 18px;
  }
  .hero__timer-badge-text {
    font-size: 7px;
  }
  .hero__checklist-link {
    padding: 12px 14px;
    margin: 10px -16px -16px -16px;
    min-height: 60px;
    border-radius: 0 0 16px 16px;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hero__checklist-link-text {
    font-size: 12px;
    line-height: 14px;
  }
  .hero__checklist-icon {
    font-size: 18px;
  }
  .hero__consent {
    font-size: 11px;
    gap: 8px;
  }
  .hero__consent-checkbox {
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin-top: 2px;
  }
  .hero__consent-text {
    line-height: 1.2;
  }
}
.pain {
  position: relative;
  background-image: url("../img/bg-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 895px;
  padding-bottom: 40px;
}

.pain__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.pain__title {
  margin: 0;
  padding: 60px 0 70px 0;
  color: var(--light-color);
  font-weight: 700;
  font-style: Bold;
  font-size: 70px;
  line-height: 65px;
  letter-spacing: 0%;
  text-align: center;
}

.pain__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.15fr 1fr;
  grid-template-columns: 1.15fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
}

.pain__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  -ms-grid-column-align: end;
  justify-self: end;
}

.pain__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  background: linear-gradient(88.52deg, rgba(72, 72, 72, 0.8) -8.86%, rgba(143, 143, 143, 0.8) 108.42%);
  width: 661px;
  height: 140px;
  border-radius: 20px 0 0 20px;
  padding: 18px 20px;
}

.pain__icon {
  -o-object-fit: contain;
  object-fit: contain;
  width: 86px;
  height: 86px;
}

.pain__item-text {
  color: var(--light-color);
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0%;
}

.pain__stats {
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.8) -8.86%, rgba(25, 50, 99, 0.8) 108.42%);
  border-radius: 20px;
  padding: 32px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  max-width: 573px;
  -ms-grid-column-align: start;
  justify-self: start;
}

.pain__stat-value {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  color: var(--light-color);
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 10px;
}

.pain__stat-value span {
  font-size: 80px;
}

.pain__stat-label {
  color: var(--light-color);
  font-weight: 600;
  font-size: 25px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}

.pain__divider {
  border-top: 1px solid #fff;
  margin: 10px 0;
}

.pain__cta {
  background: #fff;
  color: var(--color-navy);
  font-weight: 700;
  font-style: Bold;
  font-size: 25px;
  border-radius: 10px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  padding: 21px 30px;
  text-decoration: none;
  display: block;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.pain__cta:hover {
  background: var(--color-bg);
}

/* ===================== АДАПТАЦИЯ ===================== */
@media (max-width: 1200px) {
  .pain__title {
    font-size: 50px;
    line-height: 50px;
    padding: 40px 0 50px 0;
  }
  .pain__item {
    width: 100%;
    height: 120px;
    gap: 30px;
  }
  .pain__item-text {
    font-size: 24px;
    line-height: 26px;
  }
  .pain__item-icon {
    min-width: 70px;
  }
  .pain__icon {
    width: 70px;
    height: 70px;
  }
  .pain__stats {
    max-width: 100%;
    padding: 28px 24px;
  }
  .pain__stat-value {
    font-size: 50px;
    line-height: 44px;
  }
  .pain__stat-value span {
    font-size: 65px;
  }
  .pain__stat-label {
    font-size: 22px;
    line-height: 26px;
  }
  .pain__cta {
    font-size: 22px;
    padding: 12px 16px;
  }
}
@media (max-width: 991px) {
  .pain {
    min-height: auto;
    padding: 40px 0;
  }
  .pain__title {
    font-size: 40px;
    line-height: 42px;
    padding: 0 0 40px 0;
  }
  .pain__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
  }
  .pain__list {
    gap: 10px;
    margin-right: 0;
    -ms-grid-column-align: center;
    justify-self: center;
    width: 100%;
  }
  .pain__item {
    width: 100%;
    height: 100px;
    gap: 25px;
    border-radius: 20px;
    padding: 16px 20px;
  }
  .pain__item-text {
    font-size: 20px;
    line-height: 24px;
  }
  .pain__item-icon {
    min-width: 60px;
  }
  .pain__icon {
    width: 60px;
    height: 60px;
  }
  .pain__stats {
    max-width: 100%;
    padding: 24px 20px;
    gap: 14px;
    -ms-grid-column-align: center;
    justify-self: center;
    width: 100%;
  }
  .pain__stat-value {
    font-size: 44px;
    line-height: 40px;
  }
  .pain__stat-value span {
    font-size: 55px;
  }
  .pain__stat-label {
    font-size: 20px;
    line-height: 24px;
    max-width: 200px;
    margin: 0 auto;
  }
  .pain__divider {
    margin: 14px 0;
  }
  .pain__cta {
    font-size: 20px;
    padding: 12px 16px;
  }
}
@media (max-width: 768px) {
  .pain {
    padding: 30px 0;
  }
  .pain__title {
    font-size: 30px;
    line-height: 36px;
    padding: 0 0 30px 0;
  }
  .pain__item {
    height: 85px;
    gap: 20px;
    padding: 14px 16px;
  }
  .pain__item-text {
    font-size: 17px;
    line-height: 20px;
  }
  .pain__item-icon {
    min-width: 50px;
  }
  .pain__icon {
    width: 50px;
    height: 50px;
  }
  .pain__stats {
    padding: 20px 16px;
    gap: 12px;
  }
  .pain__stat-value {
    font-size: 38px;
    line-height: 34px;
  }
  .pain__stat-value span {
    font-size: 48px;
  }
  .pain__stat-label {
    font-size: 18px;
    line-height: 22px;
    max-width: 180px;
  }
  .pain__divider {
    margin: 12px 0;
  }
  .pain__cta {
    font-size: 18px;
    padding: 10px 14px;
    line-height: 18px;
  }
}
@media (max-width: 480px) {
  .pain {
    padding: 20px 0;
  }
  .pain__grid {
    gap: 20px;
  }
  .pain__list {
    gap: 8px;
  }
  .pain__item {
    height: 70px;
    gap: 14px;
    padding: 10px 14px;
  }
  .pain__item-text {
    font-size: 14px;
    line-height: 16px;
  }
  .pain__item-icon {
    min-width: 40px;
  }
  .pain__icon {
    width: 40px;
    height: 40px;
  }
  .pain__stats {
    padding: 16px 14px;
    gap: 10px;
  }
  .pain__stat-value {
    font-size: 30px;
    line-height: 28px;
  }
  .pain__stat-value span {
    font-size: 38px;
  }
  .pain__stat-label {
    font-size: 15px;
    line-height: 18px;
    max-width: 150px;
  }
  .pain__divider {
    margin: 10px 0;
  }
  .pain__cta {
    font-size: 15px;
    padding: 10px 12px;
    line-height: 16px;
  }
}
/* ===================== PROCESS SECTION ===================== */
.process {
  padding: 60px 24px;
  background: rgba(15, 29, 56, 0.0509803922);
  position: relative;
  overflow: hidden;
  background-image: url("../img/decor.svg");
  background-repeat: no-repeat;
  background-position: top left;
}

.process__inner {
  position: relative;
  max-width: 835px;
  margin-left: auto;
}

.process__title {
  margin: 0;
  font-weight: 700;
  font-style: Bold;
  font-size: 70px;
  color: var(--color-navy);
  line-height: 65px;
  letter-spacing: -2%;
  margin-bottom: 34px;
}

/* ===== КОНТЕЙНЕР ДЛЯ ШАГОВ ===== */
.process__steps {
  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: 22px;
  margin: 0 auto;
  padding-left: 30px;
}

.process-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.process-step__number {
  position: relative;
  z-index: 2;
  background: #0F1D38;
  border-radius: 100%;
  border: 2px solid #BFA373;
  width: 40px;
  height: 40px;
  color: #fff;
  font-weight: 800;
  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-negative: 0;
  flex-shrink: 0;
  font-size: 15px;
}

.process-step__title {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 35px;
  letter-spacing: 0px;
  color: var(--color-navy);
  margin-bottom: 3px;
}

.process-step__desc {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0px;
  color: var(--color-navy-deep);
}

.process-step__box {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.process-step__box .process-step__desc {
  max-width: 600px;
  min-width: 300px;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.process-step__media {
  margin-top: 10px;
  width: 100%;
  max-width: 200px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.process-step__media-img {
  border-radius: 10px;
  width: 235px;
  height: 155px;
  background: linear-gradient(155deg, #aab0bc 0%, #6c7484 100%);
}

.process-step__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  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: 12px;
  color: var(--color-navy);
}

.process__cta {
  position: relative;
  z-index: 1;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 80%;
  margin: 24px auto 0;
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.6) -8.86%, rgba(25, 50, 99, 0.6) 108.42%), linear-gradient(88.52deg, #435042 -8.86%, #647063 108.42%), linear-gradient(88.52deg, rgba(15, 29, 56, 0.6) -8.86%, rgba(25, 50, 99, 0.6) 108.42%);
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 20px;
  letter-spacing: -2%;
  text-align: center;
  padding: 26px 44px;
  border-radius: 10px;
}

.process__cta:hover {
  background: linear-gradient(0deg, rgba(67, 80, 66, 0.6), rgba(67, 80, 66, 0.6)), linear-gradient(88.17deg, rgba(191, 163, 115, 0.6) 11.68%, rgba(142, 124, 92, 0.6) 88.32%);
  color: #fff !important;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ===== ЛИНИЯ, СОЗДАННАЯ ЧЕРЕЗ JS ===== */
.process__line-js {
  position: absolute;
  width: 3px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  z-index: 0;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}

/* ===================== АДАПТАЦИЯ ===================== */
@media (max-width: 1024px) {
  .process {
    padding: 50px 20px;
  }
  .process__title {
    font-size: 54px;
    line-height: 54px;
  }
  .process__steps {
    padding-left: 24px;
    gap: 18px;
  }
  .process-step__number {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .process-step__title {
    font-size: 28px;
    line-height: 30px;
  }
  .process-step__desc {
    font-size: 18px;
    line-height: 30px;
  }
  .process-step__box .process-step__desc {
    max-width: 400px;
    min-width: 200px;
  }
  .process-step__media-img {
    width: 180px;
    height: 120px;
  }
  .process__cta {
    font-size: 24px;
    padding: 20px 34px;
    min-width: 70%;
  }
  .process__line-js {
    width: 2px;
  }
}
@media (max-width: 768px) {
  .process {
    padding: 40px 16px;
    background-size: 40%;
  }
  .process__title {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 24px;
    text-align: center;
  }
  .process__steps {
    padding-left: 20px;
    gap: 16px;
    max-width: 100%;
  }
  .process-step {
    gap: 12px;
  }
  .process-step__number {
    width: 28px;
    height: 28px;
    font-size: 11px;
    border-width: 2px;
  }
  .process-step__title {
    font-size: 22px;
    line-height: 26px;
  }
  .process-step__desc {
    font-size: 16px;
    line-height: 24px;
  }
  .process-step__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .process-step__box .process-step__desc {
    max-width: 100%;
    min-width: auto;
  }
  .process-step__media {
    max-width: 100%;
  }
  .process-step__media-img {
    width: 100%;
    height: auto;
    max-width: 235px;
    aspect-ratio: 235/155;
  }
  .process__cta {
    font-size: 18px;
    padding: 18px 24px;
    min-width: 100%;
    line-height: 24px;
    border-radius: 8px;
  }
  .process__line-js {
    width: 2px;
  }
}
@media (max-width: 480px) {
  .process {
    padding: 30px 12px;
  }
  .process__title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 18px;
  }
  .process__steps {
    padding: 0;
    gap: 14px;
  }
  .process-step {
    gap: 10px;
  }
  .process-step__number {
    width: 24px;
    height: 24px;
    font-size: 10px;
    border-width: 2px;
  }
  .process-step__title {
    font-size: 18px;
    line-height: 22px;
  }
  .process-step__desc {
    font-size: 14px;
    line-height: 20px;
  }
  .process-step__box {
    gap: 12px;
  }
  .process-step__media-img {
    max-width: 100%;
    border-radius: 6px;
  }
  .process__cta {
    font-size: 16px;
    padding: 8px 16px;
    line-height: 20px;
  }
  .process__line-js {
    width: 2px;
  }
}
.qwiz {
  padding: 60px 0;
  background: #EDEDED;
}

.quiz-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.sidebar {
  border-radius: 20px 0 0 20px;
  width: 380px;
  min-width: 340px;
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.6) -8.86%, rgba(25, 50, 99, 0.6) 108.42%);
  padding: 50px 36px 44px;
  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: 16px;
  position: relative;
  overflow: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sidebar::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 100% 0%, rgba(191, 163, 115, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sidebar__label {
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 35px;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.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: 14px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.sidebar__benefit {
  font-family: "Manrope", "Open Sans", sans-serif;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-radius: 14px;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid rgba(191, 163, 115, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: default;
}

.sidebar__benefit:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(191, 163, 115, 0.5);
  -webkit-transform: translateX(6px);
  -ms-transform: translateX(6px);
  transform: translateX(6px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sidebar__benefit .benefit-icon {
  display: none;
}

.sidebar__benefit strong {
  font-size: 18px;
}

.sidebar__benefit span {
  color: #FFFFFF;
}

.sidebar__benefit::before {
  content: "◆";
  color: #BFA373;
  font-size: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 1;
}

.quiz-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 40px 50px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  background: #ffffff;
  border-radius: 0 20px 20px 0;
}

.quiz-header__subtitle {
  font-family: "Manrope", "Open Sans", sans-serif;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  color: #6b7180;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.quiz-header__title {
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 46px;
  color: #242424;
}

.quiz-header__title span {
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  line-height: 36px;
  color: #6b7180;
}

.quiz-header__title strong {
  text-transform: uppercase;
  color: #BFA373;
  padding: 0 10px;
  border-radius: 10px;
}

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

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  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: 16px;
  margin-bottom: 28px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.step-number {
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  background: rgba(15, 29, 56, 0.1);
  color: #0F1D38;
  border-radius: 8px;
  padding: 6px 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.step-title {
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #242424;
}

.step-hint {
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #6b7180;
  margin-left: auto;
}

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

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

.options-grid--checkbox .list-option {
  cursor: pointer;
}

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

.list-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  border: 2px solid #d3d1cc;
  border-radius: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #6b7180;
  background: #ffffff;
  -webkit-transition: border-color 0.25s, background 0.25s, color 0.25s, -webkit-box-shadow 0.25s;
  transition: border-color 0.25s, background 0.25s, color 0.25s, -webkit-box-shadow 0.25s;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s, -webkit-box-shadow 0.25s;
  position: relative;
}

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

.list-option__check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border: 2.5px solid #BFA373;
  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.25s;
  transition: all 0.25s;
  position: relative;
}

.options-grid--checkbox .list-option__check {
  border-radius: 6px;
}

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

.list-option:hover {
  border-color: #0F1D38;
  background: rgba(15, 29, 56, 0.04);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(15, 29, 56, 0.06);
  box-shadow: 0 4px 12px rgba(15, 29, 56, 0.06);
}

.list-option.selected {
  border-color: #BFA373;
  background: rgba(191, 163, 115, 0.08);
  color: #242424;
  -webkit-box-shadow: 0 4px 16px rgba(191, 163, 115, 0.15);
  box-shadow: 0 4px 16px rgba(191, 163, 115, 0.15);
}

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

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

.step-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

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

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

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

.btn--next {
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  color: #ffffff;
  -webkit-box-shadow: 0 4px 16px rgba(191, 163, 115, 0.35);
  box-shadow: 0 4px 16px rgba(191, 163, 115, 0.35);
}

.btn--next:hover {
  background: linear-gradient(88.17deg, #a88d5f 11.68%, #7a6a4e 88.32%);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 28px rgba(191, 163, 115, 0.45);
  box-shadow: 0 8px 28px rgba(191, 163, 115, 0.45);
}

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

.btn--back:hover {
  background: #1b2536;
  opacity: 1;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.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: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  -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__tag {
  margin: 0;
  display: inline-block;
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  color: #ffffff;
  border-radius: 8px;
  padding: 6px 14px;
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.contact-step__title {
  margin: 0;
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  color: #242424;
}

.contact-step__sub {
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  color: #6b7180;
  margin-bottom: 0;
}

.messenger-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px !important;
  -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: 4px;
}

.messenger-btn span {
  display: none;
}

.messenger-btn img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 14px;
  background: #EDEDED;
  padding: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.messenger-btn:hover img {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 16px rgba(15, 29, 56, 0.15);
  box-shadow: 0 4px 16px rgba(15, 29, 56, 0.15);
  border-color: #0F1D38;
}

.messenger-btn--active img {
  border-color: #BFA373;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 4px 20px rgba(191, 163, 115, 0.3);
  box-shadow: 0 4px 20px rgba(191, 163, 115, 0.3);
}

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

.contact-input {
  width: 100% !important;
  border: 1.5px solid #193263 !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-family: "Manrope", "Open Sans", sans-serif !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  line-height: 24px !important;
  color: #242424 !important;
  background: #ffffff !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.contact-input:focus {
  outline: 3px solid #BFA373 !important;
  border-color: #BFA373 !important;
}

.contact-input::-webkit-input-placeholder {
  color: #999 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  text-align: left !important;
}

.contact-input::-moz-placeholder {
  color: #999 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  text-align: left !important;
}

.contact-input:-ms-input-placeholder {
  color: #999 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  text-align: left !important;
}

.contact-input::-ms-input-placeholder {
  color: #999 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  text-align: left !important;
}

.contact-input::placeholder {
  color: #999 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  text-align: left !important;
}

.contact-input::-webkit-input-placeholder {
  color: #999 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  text-align: left !important;
}

.contact-input::-moz-placeholder {
  color: #999 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  text-align: left !important;
}

.contact-input:-ms-input-placeholder {
  color: #999 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 20px !important;
  opacity: 1 !important;
  text-align: left !important;
}

.phone-wrap {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  border: 1.5px solid #193263 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.phone-wrap:focus-within {
  outline: 3px solid #BFA373 !important;
  border-color: #BFA373 !important;
}

.phone-prefix {
  padding: 14px 16px !important;
  background: #EDEDED !important;
  font-family: "Manrope", "Open Sans", sans-serif !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  line-height: 24px !important;
  border-right: 1.5px solid #193263 !important;
  color: #0F1D38 !important;
}

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

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

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

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

.checkbox-label {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  gap: 12px !important;
  font-family: "Manrope", "Open Sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 18px !important;
  color: #6b7180 !important;
  cursor: pointer !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  position: relative !important;
}

.checkbox-label::before {
  content: "" !important;
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  margin-top: 1px !important;
  background: #ffffff !important;
  border: 2px solid #BFA373 !important;
  border-radius: 5px !important;
  -webkit-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

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

.checkbox-label:hover::before {
  border-color: #8E7C5C !important;
}

.checkbox-policy {
  color: #0F1D38 !important;
  text-decoration: underline !important;
  -webkit-transition: opacity 0.2s !important;
  transition: opacity 0.2s !important;
}

.checkbox-policy:hover {
  color: #BFA373 !important;
  text-decoration: underline !important;
}

.contact-step__left a {
  color: #0F1D38 !important;
  text-decoration: underline !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.contact-step__left a:hover {
  color: #BFA373 !important;
  text-decoration: underline !important;
}

.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: 320px;
  width: 100%;
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  color: #ffffff;
  padding: 16px 24px;
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 2%;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 16px rgba(191, 163, 115, 0.35);
  box-shadow: 0 4px 16px rgba(191, 163, 115, 0.35);
}

.btn--submit:hover {
  background: linear-gradient(88.17deg, #a88d5f 11.68%, #7a6a4e 88.32%);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

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

.step-error {
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #f44336;
  text-align: center;
  background: #ffebee;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1.5px solid #f44336;
  margin-bottom: 18px;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .quiz-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 20px;
  }
  .sidebar {
    display: none;
  }
  .quiz-main {
    padding: 30px 28px;
    border-radius: 20px;
  }
  .quiz-header__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .qwiz {
    padding: 30px 0;
  }
  .quiz-main {
    padding: 24px 16px;
  }
  .quiz-header__title {
    font-size: 24px;
    line-height: 32px;
  }
  .quiz-header__title span {
    font-size: 18px;
    line-height: 24px;
  }
  .quiz-header__subtitle {
    font-size: 13px;
    line-height: 18px;
  }
  .options-grid--list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .step-title {
    font-size: 20px;
    line-height: 28px;
  }
  .step-number {
    font-size: 14px;
    line-height: 20px;
    padding: 4px 10px;
  }
  .list-option {
    padding: 14px 16px;
    font-size: 15px;
    line-height: 20px;
    gap: 12px;
  }
  .list-option__check {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }
  .btn {
    padding: 12px 22px;
    font-size: 15px;
    line-height: 20px;
  }
  .contact-step__left {
    padding: 20px 16px;
  }
  .contact-step__title {
    font-size: 20px;
    line-height: 28px;
  }
  .contact-step__sub {
    font-size: 15px;
    line-height: 20px;
  }
  .messenger-btn img {
    width: 34px;
    height: 34px;
    padding: 4px;
  }
  .checkbox-label {
    font-size: 12px !important;
    line-height: 13px;
  }
  .btn--submit {
    font-size: 16px;
    line-height: 22px;
    padding: 12px 16px;
    max-width: 100%;
  }
  .contact-input {
    padding: 8px 14px !important;
    font-size: 15px;
    line-height: 20px;
  }
  .contact-input::-webkit-input-placeholder {
    font-size: 13px;
    line-height: 18px;
  }
  .contact-input::-moz-placeholder {
    font-size: 13px;
    line-height: 18px;
  }
  .contact-input:-ms-input-placeholder {
    font-size: 13px;
    line-height: 18px;
  }
  .contact-input::-ms-input-placeholder {
    font-size: 13px;
    line-height: 18px;
  }
  .contact-input::placeholder {
    font-size: 13px;
    line-height: 18px;
  }
  .phone-prefix {
    padding: 12px 12px;
    font-size: 15px;
    line-height: 20px;
  }
  .step-error {
    font-size: 13px;
    line-height: 18px;
    padding: 10px 14px;
    margin-bottom: 14px;
  }
}
@media (max-width: 420px) {
  .quiz-main {
    padding: 16px 12px;
  }
  .quiz-header__title {
    font-size: 20px;
    line-height: 28px;
  }
  .quiz-header__title span {
    font-size: 16px;
    line-height: 22px;
  }
  .step-title {
    font-size: 17px;
    line-height: 24px;
  }
  .list-option {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 19px;
    gap: 10px;
  }
  .list-option__check {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .btn {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 19px;
  }
  .contact-step__left {
    padding: 16px 12px;
  }
  .contact-input {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 19px;
  }
  .contact-input::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 16px;
  }
  .contact-input::-moz-placeholder {
    font-size: 12px;
    line-height: 16px;
  }
  .contact-input:-ms-input-placeholder {
    font-size: 12px;
    line-height: 16px;
  }
  .contact-input::-ms-input-placeholder {
    font-size: 12px;
    line-height: 16px;
  }
  .contact-input::placeholder {
    font-size: 12px;
    line-height: 16px;
  }
  .phone-prefix {
    padding: 10px 10px;
    font-size: 14px;
    line-height: 19px;
  }
  .btn--submit {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 12px;
  }
  .step-error {
    font-size: 12px;
    line-height: 16px;
    padding: 8px 12px;
    margin-bottom: 12px;
  }
}
/* ===================== CONSEQUENCES SECTION ===================== */
.consequences {
  padding: 60px 0;
  background: var(--color-bg);
}

.consequences__title {
  margin: 0;
  font-weight: 700;
  font-size: 70px;
  line-height: 65px;
  letter-spacing: -2%;
  text-align: center;
  color: var(--color-navy);
  margin-bottom: 50px;
}

.consequences__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 48px;
}

.consequences__col {
  border-radius: 10px;
  background: var(--color-card);
  border: 3px solid rgba(36, 36, 36, 0.6);
  padding: 50px;
}

.consequences__col-title {
  margin: 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 30px;
  letter-spacing: -2%;
  color: rgba(36, 36, 36, 0.8);
  margin-bottom: 40px;
}

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

.consequences__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 14px;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  color: rgba(36, 36, 36, 0.8);
}

.consequences__icon--check {
  color: var(--color-gold-dark);
}

.consequences__icon--circle {
  color: var(--color-text-muted);
}

/* ===================== АДАПТАЦИЯ ===================== */
/* Планшеты и маленькие ноутбуки */
@media (max-width: 1024px) {
  .consequences {
    padding: 50px 0;
  }
  .consequences__title {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 40px;
  }
  .consequences__grid {
    gap: 20px;
    padding-bottom: 40px;
  }
  .consequences__col {
    padding: 40px 30px;
  }
  .consequences__col-title {
    font-size: 32px;
    line-height: 28px;
    margin-bottom: 30px;
  }
  .consequences__list {
    gap: 16px;
  }
  .consequences__list-item {
    font-size: 18px;
    line-height: 22px;
    gap: 12px;
  }
}
/* Мобильные устройства */
@media (max-width: 768px) {
  .consequences {
    padding: 40px 0;
  }
  .consequences__title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .consequences__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 30px;
  }
  .consequences__col {
    padding: 30px 20px;
  }
  .consequences__col-title {
    font-size: 28px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .consequences__list {
    gap: 14px;
  }
  .consequences__list-item {
    font-size: 16px;
    line-height: 20px;
    gap: 10px;
  }
}
/* Очень маленькие экраны */
@media (max-width: 420px) {
  .consequences {
    padding: 30px 0;
  }
  .consequences__title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  .consequences__grid {
    gap: 12px;
    padding-bottom: 24px;
  }
  .consequences__col {
    padding: 20px 15px;
  }
  .consequences__col-title {
    font-size: 22px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .consequences__list {
    gap: 12px;
  }
  .consequences__list-item {
    font-size: 14px;
    line-height: 18px;
    gap: 8px;
  }
}
.banner {
  padding: 60px 0;
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.5) -8.86%, rgba(25, 50, 99, 0.5) 108.42%);
}

.consequences__banner {
  background-image: url("../img/vesy.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.consequences__banner-title {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  line-height: 45px;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.consequences__banner-desc {
  max-width: 704px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0%;
}

.consequences__banner-btn {
  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;
  height: 60px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 0%;
  text-align: center;
  padding: 0 60px;
  background: var(--color-navy);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.consequences__banner-btn:hover {
  background: linear-gradient(0deg, rgba(67, 80, 66, 0.6), rgba(67, 80, 66, 0.6)), linear-gradient(88.17deg, rgba(191, 163, 115, 0.6) 11.68%, rgba(142, 124, 92, 0.6) 88.32%);
  color: #fff !important;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.consequences__banner-icon {
  width: 160px;
  height: 160px;
  color: rgba(255, 255, 255, 0.5);
  -ms-grid-column-align: center;
  justify-self: center;
}

.consequences__banner-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

/* ===================== АДАПТАЦИЯ БАННЕРА ===================== */
/* Планшеты и маленькие ноутбуки */
@media (max-width: 1024px) {
  .banner {
    padding: 50px 0;
  }
  .consequences__banner {
    background-size: 40%;
    background-position: right center;
  }
  .consequences__banner-title {
    max-width: 600px;
    font-size: 40px;
    line-height: 38px;
    margin-bottom: 16px;
  }
  .consequences__banner-desc {
    max-width: 500px;
    font-size: 16px;
    line-height: 18px;
  }
  .consequences__banner-btn {
    height: 54px;
    font-size: 20px;
    padding: 0 40px;
  }
  .consequences__banner-icon {
    width: 120px;
    height: 120px;
  }
}
/* Мобильные устройства */
@media (max-width: 768px) {
  .banner {
    padding: 40px 0;
  }
  .consequences__banner {
    background-size: 20%;
    background-position: right bottom;
  }
  .consequences__banner-title {
    max-width: 100%;
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 14px;
  }
  .consequences__banner-desc {
    max-width: 100%;
    font-size: 15px;
    line-height: 17px;
    margin-bottom: 20px;
  }
  .consequences__banner-btn {
    height: 48px;
    font-size: 18px;
    padding: 0 30px;
    margin: 0 auto;
  }
  .consequences__banner-icon {
    width: 80px;
    height: 80px;
  }
}
/* Очень маленькие экраны */
@media (max-width: 420px) {
  .banner {
    padding: 30px 0;
  }
  .consequences__banner-title {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 12px;
  }
  .consequences__banner-desc {
    font-size: 14px;
    line-height: 16px;
  }
  .consequences__banner-btn {
    height: 44px;
    font-size: 15px;
    padding: 0 20px;
    gap: 6px;
  }
  .consequences__banner-icon {
    width: 60px;
    height: 60px;
  }
  .consequences__banner-btn-icon {
    width: 18px;
    height: 18px;
  }
}
/* Большие экраны */
@media (min-width: 1400px) {
  .banner {
    padding: 80px 0;
  }
  .consequences__banner-title {
    font-size: 60px;
    line-height: 55px;
  }
  .consequences__banner-desc {
    font-size: 20px;
    line-height: 24px;
  }
  .consequences__banner-btn {
    height: 70px;
    font-size: 28px;
    padding: 0 70px;
  }
}
.cases {
  padding: 60px 0;
  background: #EDEDED;
}

.cases__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
}

.cases__title {
  margin: 0;
  max-width: 860px;
  color: rgba(36, 36, 36, 0.8);
  font-weight: 700;
  font-style: Bold;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: 0%;
}

.cases__title-accent {
  color: var(--color-navy);
}

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

.cases__nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-card);
  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;
  border: 1px solid var(--color-line);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cases__nav-btn:hover:not(.swiper-button-disabled) {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.cases__nav-btn:hover:not(.swiper-button-disabled) .cases__nav-icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cases__nav-icon {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cases__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cases__nav-btn.swiper-button-disabled:hover {
  background: var(--color-card);
  border-color: var(--color-line);
}

.cases__nav-btn.swiper-button-disabled:hover .cases__nav-icon {
  -webkit-filter: none;
  filter: none;
}

.cases__slider {
  overflow: hidden;
  padding-bottom: 6px;
}

.cases__slide {
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case-card {
  border-radius: 16px;
  background: var(--color-card-grey);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.case-card__photo {
  width: 100%;
  height: 300px !important;
  background-size: cover;
  background-position: center;
  display: block;
}

.case-card__body {
  padding: 0 !important;
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.5) -8.86%, rgba(25, 50, 99, 0.5) 108.42%);
  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-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.case-card__body-top {
  padding: 20px;
  background: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.case-card__name {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #242424;
  margin-bottom: 10px;
}

.case-card__row {
  color: rgba(36, 36, 36, 0.6);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.case-card__row-label {
  color: #242424;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case-card__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 20px !important;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  line-height: 20px;
  letter-spacing: 0px;
  margin-top: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case-card__result-label {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  line-height: 25px;
  margin-bottom: 3px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  gap: 8px;
  margin-top: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case-card__btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 60px;
  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;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  background: #fff;
  color: #0F1D38;
  padding: 0 20px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
}

.case-card__btn--primary {
  background: #fff;
  color: #0F1D38;
}

.case-card__btn--primary:hover {
  background: var(--color-gold-dark);
}

.case-card__btn--secondary {
  background: rgba(255, 255, 255, 0.6);
}

.case-card__btn:hover {
  background: var(--color-line);
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media (max-width: 1279px) {
  .cases {
    padding: 50px 20px 40px;
  }
  .cases__title {
    font-size: 50px;
    line-height: 60px;
  }
  .cases__nav-btn {
    width: 50px;
    height: 50px;
  }
  .case-card__photo {
    height: 220px !important;
  }
  .case-card__body-top {
    padding: 16px;
  }
  .case-card__name {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 12px;
  }
  .case-card__row {
    font-size: 16px;
    line-height: 18px;
  }
  .case-card__row-label {
    font-size: 16px;
    line-height: 17px;
  }
  .case-card__result {
    padding: 16px !important;
    font-size: 17px;
    line-height: 19px;
  }
  .case-card__result-label {
    font-size: 17px;
    line-height: 20px;
  }
  .case-card__actions {
    padding: 16px;
  }
  .case-card__btn {
    height: 50px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .cases {
    padding: 40px 0;
  }
  .cases__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }
  .cases__title {
    font-size: 32px;
    line-height: 38px;
    max-width: 100%;
  }
  .cases__nav {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .cases__nav-btn {
    width: 44px;
    height: 44px;
  }
  .case-card__photo {
    height: 180px !important;
  }
  .case-card__body-top {
    padding: 14px;
  }
  .case-card__name {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .case-card__row {
    font-size: 15px;
    line-height: 17px;
    gap: 4px;
  }
  .case-card__row-label {
    font-size: 14px;
    line-height: 15px;
  }
  .case-card__result {
    padding: 14px !important;
    font-size: 15px;
    line-height: 17px;
    gap: 6px;
  }
  .case-card__result-label {
    font-size: 15px;
    line-height: 18px;
  }
  .case-card__actions {
    padding: 14px;
    gap: 6px;
  }
  .case-card__btn {
    height: 44px;
    font-size: 12px;
    padding: 0 12px;
  }
}
@media (max-width: 420px) {
  .cases {
    padding: 30px 0;
  }
  .cases__title {
    font-size: 26px;
    line-height: 32px;
  }
  .cases__nav {
    gap: 6px;
  }
  .cases__nav-btn {
    width: 38px;
    height: 38px;
  }
  .case-card__photo {
    height: 140px !important;
  }
  .case-card__body-top {
    padding: 12px;
  }
  .case-card__name {
    font-size: 17px;
    line-height: 19px;
    margin-bottom: 8px;
  }
  .case-card__row {
    font-size: 13px;
    line-height: 15px;
    gap: 4px;
  }
  .case-card__row-label {
    font-size: 13px;
    line-height: 14px;
  }
  .case-card__result {
    padding: 12px !important;
    font-size: 13px;
    line-height: 15px;
    gap: 4px;
  }
  .case-card__result-label {
    font-size: 13px;
    line-height: 15px;
  }
  .case-card__actions {
    padding: 12px;
    gap: 6px;
  }
  .case-card__btn {
    height: 38px;
    font-size: 10px;
    padding: 0 8px;
    border-radius: 6px;
  }
}
/* ===================== REVIEWS SECTION ===================== */
.reviews {
  background: #EDEDED;
  padding: 60px 0;
}

.reviews__head {
  margin-bottom: 26px;
}

.reviews__title {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: 0%;
  color: var(--color-navy);
  margin-bottom: 50px;
}

.reviews__slider {
  overflow: visible;
  padding: 0 15px;
}

.reviews__slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.reviews__slider .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc((100% - 40px) / 3);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review-card {
  background: var(--color-card);
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.review-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.review-card__photo {
  width: 100%;
  height: 320px;
  border-radius: 10px 10px 0 0;
  background-size: cover;
  background-position: center;
  position: relative;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.review-card__photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 0 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.review-card__photo:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.review-card__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232, 69, 60, 0.9);
  border: 3px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  padding: 0;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.review-card__play-btn:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background: #e8453c;
}

.review-card__play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.review-card__stop-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: none;
  -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.3s ease;
  transition: all 0.3s ease;
  padding: 0;
  opacity: 0;
}

.review-card__stop-btn svg {
  width: 30px;
  height: 30px;
}

.review-card__stop-btn:hover {
  background: rgba(232, 69, 60, 0.9);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
  border-color: #fff;
}

.review-card__photo.video-active:hover .review-card__stop-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.review-card__photo.video-active .review-card__play-btn {
  display: none;
}

.review-card__video {
  display: none;
  width: 100%;
  height: 320px;
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: #000;
}

.review-card__video.active {
  display: block;
}

.review-card__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.review-card__photo.video-active .review-card__video {
  display: block;
}

.review-card__body {
  padding: 16px 18px 20px;
  -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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.review-card__case {
  margin: 0;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0px;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.review-card__row {
  margin: 0;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  color: rgba(36, 36, 36, 0.6);
  line-height: 25px;
  letter-spacing: 0px;
}

.review-card__row:last-child {
  margin-top: 4px;
}

.reviews__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 18px;
}

/* Кнопки навигации Swiper */
.reviews__slider .swiper-button-next,
.reviews__slider .swiper-button-prev {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -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;
}

.reviews__slider .swiper-button-next:hover,
.reviews__slider .swiper-button-prev:hover {
  background: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.reviews__slider .swiper-button-next::after,
.reviews__slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* Пагинация */
.reviews__slider .swiper-pagination-bullet {
  background: var(--color-navy);
  opacity: 0.3;
}

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

/* ===================== АДАПТАЦИЯ ===================== */
/* Десктоп - 3 слайда */
@media (min-width: 1024px) {
  .reviews__slider .swiper-slide {
    width: calc((100% - 40px) / 3);
  }
}
/* Планшет - 2 слайда */
@media (min-width: 640px) and (max-width: 1023px) {
  .reviews__slider .swiper-slide {
    width: calc((100% - 20px) / 2);
  }
  .reviews {
    padding: 40px 0;
  }
  .reviews__title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
  }
  .review-card__photo {
    height: 250px;
  }
  .review-card__video {
    height: 250px;
  }
  .review-card__play-btn,
  .review-card__stop-btn {
    width: 60px;
    height: 60px;
  }
  .review-card__play-btn svg,
  .review-card__stop-btn svg {
    width: 24px;
    height: 24px;
  }
  .review-card__case {
    font-size: 26px;
    line-height: 28px;
  }
  .review-card__row {
    font-size: 18px;
    line-height: 22px;
  }
}
/* Мобильные - 1 слайд */
@media (max-width: 639px) {
  .reviews__slider .swiper-slide {
    width: 100%;
  }
  .reviews {
    padding: 30px 0;
  }
  .reviews__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .reviews__slider {
    padding: 0 5px;
  }
  .review-card__photo {
    height: 200px;
  }
  .review-card__video {
    height: 200px;
  }
  .review-card__play-btn,
  .review-card__stop-btn {
    width: 56px;
    height: 56px;
  }
  .review-card__play-btn svg,
  .review-card__stop-btn svg {
    width: 22px;
    height: 22px;
  }
  .review-card__body {
    padding: 14px 16px 18px;
  }
  .review-card__case {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 6px;
  }
  .review-card__row {
    font-size: 16px;
    line-height: 20px;
  }
  .reviews__nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 16px;
  }
  .reviews__slider .swiper-button-next,
  .reviews__slider .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .reviews__slider .swiper-button-next::after,
  .reviews__slider .swiper-button-prev::after {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .reviews {
    padding: 20px 0;
  }
  .reviews__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .review-card__photo {
    height: 180px;
  }
  .review-card__video {
    height: 180px;
  }
  .review-card__play-btn,
  .review-card__stop-btn {
    width: 48px;
    height: 48px;
  }
  .review-card__play-btn svg,
  .review-card__stop-btn svg {
    width: 18px;
    height: 18px;
  }
  .review-card__body {
    padding: 12px 14px 16px;
  }
  .review-card__case {
    font-size: 18px;
    line-height: 20px;
  }
  .review-card__row {
    font-size: 14px;
    line-height: 18px;
  }
  .reviews__slider .swiper-button-next,
  .reviews__slider .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 1400px) {
  .reviews {
    padding: 80px 0;
  }
  .reviews__title {
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 60px;
  }
  .reviews__slider .swiper-slide {
    width: calc((100% - 40px) / 3);
  }
  .review-card__photo {
    height: 380px;
  }
  .review-card__video {
    height: 380px;
  }
  .review-card__play-btn,
  .review-card__stop-btn {
    width: 100px;
    height: 100px;
  }
  .review-card__play-btn svg,
  .review-card__stop-btn svg {
    width: 38px;
    height: 38px;
  }
  .review-card__body {
    padding: 20px 22px 24px;
  }
  .review-card__case {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .review-card__row {
    font-size: 26px;
    line-height: 30px;
  }
}
/* ===================== WHY SECTION ===================== */
.why {
  padding: 60px 0;
  background: #EDEDED;
}

.why__title {
  text-align: center;
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  font-style: Bold;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: 0%;
  margin-bottom: 50px;
}

.why__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.why__row:last-child {
  margin-bottom: 0;
}

.why-card {
  position: relative;
  border-radius: 10px;
  padding: 24px 24px 50px 24px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  min-height: 350px;
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== ПЕРВЫЙ РЯД ===== */
.why-card--consult {
  width: 550px;
}

.why-card--plan {
  width: 350px;
}

.why-card--property {
  width: 350px;
}

/* ===== ВТОРОЙ РЯД ===== */
.why-card--result {
  width: 350px;
}

.why-card--scales {
  width: 410px;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-card--chat {
  width: 490px;
  background-size: 50% !important;
  background-position: left 20px top 50px !important;
}

.why-card--photo {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.why-card--navy {
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.9) -8.86%, rgba(25, 50, 99, 0.9) 108.42%);
  color: #fff;
}

.why-card--light {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text);
  border: 1px solid var(--color-line);
}

.why-card--gold {
  background: linear-gradient(88.17deg, rgba(191, 163, 115, 0.6) 11.68%, rgba(142, 124, 92, 0.6) 88.32%);
  color: var(--color-navy-deep);
}

.why-card--gold .why-card__text {
  color: #242424;
}

.why-card--gold .why-card__subtext {
  color: #242424;
}

.why-card__icon {
  position: absolute;
  top: 20px;
  left: 20px;
  min-width: 68px;
  max-width: 115px;
}

.why-card__text {
  font-family: Manrope;
  font-weight: 800;
  color: #fff;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
}

.why-card--light .why-card__text {
  color: #242424;
}

.why-card__subtext {
  margin: 0;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #242424;
  width: 100%;
}

.why-card__app-mock {
  background: var(--color-navy);
  border-radius: 6px;
  padding: 12px 14px;
  color: #fff;
  font-size: 11px;
  margin-bottom: 6px;
  width: 64%;
}

.why-card__app-mock-title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
}

.why-card__app-mock-sub {
  color: #9a9eaa;
  font-size: 10px;
  margin-top: 2px;
}

/* ===================== АДАПТАЦИЯ ===================== */
/* Планшеты (до 1024px) */
@media (max-width: 1024px) {
  .why {
    padding: 8px 20px 50px;
  }
  .why__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
  .why-card {
    min-height: auto;
    height: auto;
    padding: 30px 24px 50px 24px !important;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 12px);
    flex: 1 1 calc(50% - 12px);
  }
  .why-card--consult,
  .why-card--plan,
  .why-card--property,
  .why-card--result,
  .why-card--scales,
  .why-card--chat {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(33.333% - 12px);
    flex: 1 1 calc(33.333% - 12px);
  }
  .why-card--chat {
    background-size: 40% !important;
    background-position: left 15px top 40px !important;
  }
  .why-card--photo {
    min-height: auto;
    height: auto;
  }
  .why-card__icon {
    min-width: 50px;
    max-width: 80px;
    top: 20px;
    left: 20px;
  }
  .why-card__text {
    font-size: 14px;
    width: 100%;
  }
  .why-card__subtext {
    font-size: 13px;
    width: 100%;
  }
}
/* Мобильные (до 768px) */
@media (max-width: 768px) {
  .why {
    padding: 0;
  }
  .why__title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .why__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }
  .why-card {
    min-height: auto;
    height: auto;
    padding: 30px 24px 50px 24px !important;
    width: 100% !important;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  /* Скрываем 1 и 5 блоки (consult и scales) */
  .why-card--consult,
  .why-card--scales {
    display: none !important;
  }
  .why-card--plan,
  .why-card--property,
  .why-card--result,
  .why-card--chat {
    width: 100% !important;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  /* МОБИЛЬНАЯ ВЕРСИЯ - фон и иконки справа */
  .why-card--plan {
    background-position: right center !important;
  }
  .why-card--property {
    background-position: right center !important;
  }
  .why-card--result {
    background-position: right center !important;
  }
  .why-card--chat {
    background-size: 30% !important;
    background-position: right 15px center !important;
  }
  .why-card--photo {
    min-height: auto;
    height: auto;
  }
  .why-card__icon {
    min-width: 45px;
    max-width: 65px;
    top: 20px;
    right: 20px;
    left: auto;
  }
  .why-card__text {
    width: 80%;
    font-size: 14px;
  }
  .why-card__subtext {
    width: 80%;
    font-size: 13px;
  }
  .why-card__app-mock {
    width: 70%;
  }
}
/* Очень маленькие (до 420px) */
@media (max-width: 420px) {
  .why__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .why__row {
    gap: 10px;
    margin-bottom: 10px;
  }
  .why-card {
    min-height: auto;
    height: auto;
    padding: 28px 20px 45px 20px !important;
    border-radius: 8px;
  }
  /* Скрываем 1 и 5 блоки (consult и scales) */
  .why-card--consult,
  .why-card--scales {
    display: none !important;
  }
  .why-card--plan,
  .why-card--property,
  .why-card--result,
  .why-card--chat {
    width: 100% !important;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  /* МОБИЛЬНАЯ ВЕРСИЯ - фон и иконки справа */
  .why-card--plan {
    background-position: right center !important;
  }
  .why-card--property {
    background-position: right center !important;
  }
  .why-card--result {
    background-position: right center !important;
  }
  .why-card--chat {
    background-size: 25% !important;
    background-position: right 12px center !important;
  }
  .why-card--photo {
    min-height: auto;
    height: auto;
  }
  .why-card__icon {
    min-width: 35px;
    max-width: 55px;
    top: 18px;
    right: 18px;
    left: auto;
  }
  .why-card__text {
    width: 80%;
    font-size: 13px;
  }
  .why-card__subtext {
    width: 80%;
    font-size: 12px;
  }
  .why-card__app-mock {
    width: 65%;
  }
}
/* Большие экраны (1400px+) */
@media (min-width: 1400px) {
  .why__row {
    max-width: 1300px;
    gap: 16px;
  }
  .why-card {
    min-height: 400px;
    height: 400px;
    padding: 28px 28px 60px 28px !important;
  }
  .why-card--consult {
    width: 600px;
  }
  .why-card--plan {
    width: 380px;
  }
  .why-card--property {
    width: 380px;
  }
  .why-card--result {
    width: 380px;
  }
  .why-card--scales {
    width: 440px;
  }
  .why-card--chat {
    width: 520px;
    background-size: 50% !important;
    background-position: left 25px top 60px !important;
  }
  .why-card--photo {
    min-height: 400px;
    height: 400px;
  }
  .why-card__icon {
    min-width: 80px;
    max-width: 130px;
    top: 25px;
    left: 25px;
  }
  .why-card__text {
    width: 100%;
    font-size: 22px;
  }
  .why-card__subtext {
    width: 100%;
    font-size: 20px;
  }
}
.insurance {
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.8) -8.86%, rgba(25, 50, 99, 0.8) 108.42%) !important;
  padding: 52px 0 !important;
}

.insurance__container {
  background-image: url("../img/percent.png") !important;
  background-repeat: no-repeat !important;
  background-position: right bottom !important;
}

.insurance__inner {
  margin: 0 auto !important;
  max-width: 1000px !important;
  padding: 0 20px !important;
}

.insurance__title {
  margin: 0 !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-size: 50px !important;
  line-height: 52px !important;
  letter-spacing: 0px !important;
  text-align: center !important;
  margin-bottom: 30px !important;
}

.insurance__desc {
  margin: 0 !important;
  font-weight: 400 !important;
  font-style: Regular !important;
  font-size: 16px !important;
  color: #fff !important;
  line-height: 20px !important;
  letter-spacing: 0px !important;
  text-align: center !important;
  margin-bottom: 26px !important;
}

.insurance__form {
  margin: 0 auto !important;
  max-width: 650px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  gap: 10px !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.insurance__input {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 !important;
  flex: 1 !important;
  border-radius: 30px !important;
  height: 50px !important;
  min-width: 180px !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  background: transparent !important;
  color: #fff !important;
  padding: 13px 16px !important;
  font-weight: 500 !important;
  font-style: Medium !important;
  font-size: 20px !important;
  line-height: 26px !important;
  letter-spacing: 0px !important;
  outline: none !important;
  -webkit-transition: border-color 0.3s ease !important;
  transition: border-color 0.3s ease !important;
}

.insurance__input:focus {
  border-color: #BFA373 !important;
}

.insurance__input::-webkit-input-placeholder {
  color: #9098a8 !important;
}

.insurance__input::-moz-placeholder {
  color: #9098a8 !important;
}

.insurance__input:-ms-input-placeholder {
  color: #9098a8 !important;
}

.insurance__input::-ms-input-placeholder {
  color: #9098a8 !important;
}

.insurance__input::placeholder {
  color: #9098a8 !important;
}

.insurance__consent {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
  gap: 10px !important;
  cursor: pointer !important;
  padding: 5px 0 !important;
}

.insurance__checkbox {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.insurance__checkmark {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  margin-top: 1px !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 4px !important;
  background: transparent !important;
  position: relative !important;
  -webkit-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
}

.insurance__checkmark::after {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 1px !important;
  width: 6px !important;
  height: 11px !important;
  border: solid #fff !important;
  border-width: 0 2px 2px 0 !important;
  -webkit-transform: rotate(45deg) !important;
  -ms-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
  opacity: 0 !important;
  -webkit-transition: opacity 0.2s ease !important;
  transition: opacity 0.2s ease !important;
}

.insurance__checkbox:checked + .insurance__checkmark {
  background: #BFA373 !important;
  border-color: #BFA373 !important;
}

.insurance__checkbox:checked + .insurance__checkmark::after {
  opacity: 1 !important;
}

.insurance__checkbox:focus-visible + .insurance__checkmark {
  outline: 2px solid #BFA373 !important;
  outline-offset: 2px !important;
}

.insurance__consent-text {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.insurance__consent-text a {
  color: #BFA373 !important;
  text-decoration: underline !important;
  -webkit-transition: color 0.3s ease !important;
  transition: color 0.3s ease !important;
}

.insurance__consent-text a:hover {
  color: #d4b88c !important;
}

.insurance__submit {
  background: #fff !important;
  color: #0F1D38 !important;
  font-family: Manrope !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: 26px !important;
  letter-spacing: 0px !important;
  text-align: center !important;
  padding: 13px 22px !important;
  border-radius: 30px !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.insurance__submit:hover {
  background: #BFA373 !important;
  color: #fff !important;
  -webkit-transform: scale(1.02) !important;
  -ms-transform: scale(1.02) !important;
  transform: scale(1.02) !important;
}

@media (max-width: 1024px) {
  .insurance {
    padding: 40px 0 !important;
  }
  .insurance__title {
    font-size: 40px !important;
    line-height: 44px !important;
    margin-bottom: 24px !important;
  }
  .insurance__desc {
    font-size: 15px !important;
    line-height: 19px !important;
    margin-bottom: 22px !important;
  }
  .insurance__form {
    max-width: 400px !important;
  }
  .insurance__input {
    height: 45px !important;
    font-size: 18px !important;
    padding: 11px 14px !important;
  }
  .insurance__consent-text {
    font-size: 13px !important;
  }
  .insurance__submit {
    font-size: 18px !important;
    padding: 11px 20px !important;
  }
}
@media (max-width: 768px) {
  .insurance {
    padding: 35px 0 !important;
  }
  .insurance__inner {
    padding: 0 16px !important;
  }
  .insurance__title {
    font-size: 32px !important;
    line-height: 36px !important;
    margin-bottom: 20px !important;
  }
  .insurance__desc {
    font-size: 14px !important;
    line-height: 18px !important;
    margin-bottom: 20px !important;
  }
  .insurance__form {
    max-width: 100% !important;
    gap: 8px !important;
  }
  .insurance__input {
    height: 44px !important;
    font-size: 16px !important;
    padding: 10px 14px !important;
    min-width: unset !important;
  }
  .insurance__checkmark {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
  }
  .insurance__checkmark::after {
    left: 4px !important;
    top: 1px !important;
    width: 5px !important;
    height: 9px !important;
  }
  .insurance__consent-text {
    font-size: 12px !important;
  }
  .insurance__submit {
    font-size: 16px !important;
    padding: 10px 18px !important;
    white-space: normal !important;
  }
}
@media (max-width: 420px) {
  .insurance {
    padding: 25px 0 !important;
  }
  .insurance__inner {
    padding: 0 12px !important;
  }
  .insurance__title {
    font-size: 26px !important;
    line-height: 30px !important;
    margin-bottom: 16px !important;
  }
  .insurance__desc {
    font-size: 13px !important;
    line-height: 17px !important;
    margin-bottom: 16px !important;
  }
  .insurance__form {
    gap: 8px !important;
  }
  .insurance__input {
    height: 40px !important;
    font-size: 14px !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
  }
  .insurance__checkmark {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
  }
  .insurance__checkmark::after {
    left: 3px !important;
    top: 1px !important;
    width: 4px !important;
    height: 8px !important;
  }
  .insurance__consent-text {
    font-size: 11px !important;
  }
  .insurance__submit {
    font-size: 14px !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
  }
}
@media (min-width: 1400px) {
  .insurance {
    padding: 60px 0 !important;
  }
  .insurance__title {
    font-size: 56px !important;
    line-height: 60px !important;
    margin-bottom: 34px !important;
  }
  .insurance__desc {
    font-size: 18px !important;
    line-height: 22px !important;
    margin-bottom: 30px !important;
  }
  .insurance__form {
    max-width: 500px !important;
  }
  .insurance__input {
    height: 56px !important;
    font-size: 22px !important;
    padding: 14px 18px !important;
  }
  .insurance__consent-text {
    font-size: 16px !important;
  }
  .insurance__submit {
    font-size: 22px !important;
    padding: 14px 24px !important;
  }
}
/* ===================== BANNER ALERT ===================== */
.banner-alert {
  padding: 40px 0;
  background: #EDEDED;
  position: relative;
  overflow: hidden;
}

/* Декоративный фон секции */
.banner-alert::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(191, 163, 115, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.banner-alert::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(191, 163, 115, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== БАННЕР С ГРАДИЕНТНЫМ ФОНОМ ===== */
.banner-alert__inner {
  margin: 0 auto;
  max-width: 1180px;
  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: 30px;
  padding: 35px 50px;
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.5) -8.86%, rgba(25, 50, 99, 0.5) 108.42%);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banner-alert__inner:hover {
  -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* Эффект стекла на баннере */
.banner-alert__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

.banner-alert__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

/* ===== КОНТЕНТ ===== */
.banner-alert__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 1;
}

.banner-alert__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.banner-alert__badge {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 6px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.banner-alert__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.banner-alert__text {
  margin: 0 0 18px 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* ===== ФУТЕР ===== */
.banner-alert__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  padding: 12px 24px 12px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.banner-alert__inner:hover .banner-alert__footer {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.25);
}

.banner-alert__footer-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.banner-alert__footer-text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

/* ===== КНОПКА ЗАКРЫТИЯ ===== */
.banner-alert__close {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner-alert__close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.banner-alert__close svg {
  width: 20px;
  height: 20px;
}

/* ===================== АДАПТАЦИЯ ===================== */
@media (max-width: 1024px) {
  .banner-alert {
    padding: 30px 0;
  }
  .banner-alert__inner {
    padding: 28px 35px;
    border-radius: 18px;
  }
  .banner-alert__title {
    font-size: 23px;
  }
  .banner-alert__text {
    font-size: 16px;
  }
  .banner-alert__footer-text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .banner-alert {
    padding: 25px 0;
  }
  .banner-alert__inner {
    padding: 24px 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 16px;
    gap: 20px;
  }
  .banner-alert__header {
    gap: 14px;
  }
  .banner-alert__badge {
    font-size: 12px;
    padding: 4px 16px;
  }
  .banner-alert__title {
    font-size: 20px;
    width: 100%;
  }
  .banner-alert__text {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .banner-alert__footer {
    padding: 10px 18px 10px 16px;
    gap: 10px;
    border-left-width: 3px;
  }
  .banner-alert__footer-label {
    font-size: 12px;
  }
  .banner-alert__footer-text {
    font-size: 14px;
  }
  .banner-alert__close {
    width: 38px;
    height: 38px;
    padding: 8px;
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .banner-alert__close svg {
    width: 18px;
    height: 18px;
  }
  .banner-alert__inner {
    padding-top: 50px;
  }
}
@media (max-width: 480px) {
  .banner-alert {
    padding: 20px 0;
  }
  .banner-alert__inner {
    padding: 18px 16px;
    border-radius: 14px;
    padding-top: 20px;
  }
  .banner-alert__badge {
    font-size: 10px;
    padding: 3px 12px;
  }
  .banner-alert__title {
    font-size: 17px;
    line-height: 1.3;
  }
  .banner-alert__text {
    font-size: 14px;
    line-height: 1.5;
  }
  .banner-alert__footer {
    padding: 8px 14px 8px 12px;
    border-left-width: 3px;
    gap: 8px;
  }
  .banner-alert__footer-label {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  .banner-alert__footer-text {
    font-size: 13px;
  }
  .banner-alert__close {
    width: 34px;
    height: 34px;
    padding: 6px;
    top: 12px;
    right: 12px;
  }
  .banner-alert__close svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1400px) {
  .banner-alert {
    padding: 50px 0;
  }
  .banner-alert__inner {
    padding: 45px 60px;
    border-radius: 24px;
  }
  .banner-alert__title {
    font-size: 30px;
  }
  .banner-alert__text {
    font-size: 19px;
  }
  .banner-alert__footer-text {
    font-size: 18px;
  }
  .banner-alert__badge {
    font-size: 16px;
    padding: 8px 26px;
  }
  .banner-alert__close {
    width: 48px;
    height: 48px;
  }
  .banner-alert__close svg {
    width: 22px;
    height: 22px;
  }
}
/* ===================== CONTACTS SECTION ===================== */
.contacts {
  background: var(--color-bg);
}

.contacts__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 717px;
  height: 517px;
}

.contacts__map {
  background: #d8d6cf;
  position: relative;
  overflow: hidden;
  min-height: 717px;
  height: 717px;
  width: 100%;
}

#contactsMap {
  width: 100% !important;
  height: 100% !important;
  min-height: 717px !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
}

.contacts__map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.5) -8.86%, rgba(25, 50, 99, 0.5) 108.42%);
  z-index: 10;
  pointer-events: none;
}

#contactsMap {
  width: 100%;
  height: 100%;
  min-height: 717px;
  z-index: 1;
}

.contacts__map-pin {
  display: none;
}

/* ===== ПРАВЫЙ БЛОК - ЭФФЕКТ СТЕКЛА ===== */
.contacts__info {
  background-image: url("../img/contact_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1c1612;
  color: #fff;
  padding: 50px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 28px;
  min-height: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacts__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

.contacts__title {
  margin: 0;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  color: #fff;
  line-height: 120%;
  letter-spacing: -2%;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.contacts__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -1%;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contacts__item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(191, 163, 115, 0.4);
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contacts__item a {
  color: #ffffff !important;
  text-decoration: none !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.contacts__item a:hover {
  color: #BFA373 !important;
}

.contacts__icon {
  color: #BFA373;
  font-size: 26px;
  width: 40px;
  -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.3s ease;
  transition: all 0.3s ease;
}

.contacts__item:hover .contacts__icon {
  color: #fff;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* ===== КАСТОМНЫЕ МАРКЕРЫ КАРТЫ ===== */
.custom-marker-wrapper {
  background: transparent !important;
  border: none !important;
}

.custom-marker {
  background: #BFA373;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 15px rgba(191, 163, 115, 0.6);
  box-shadow: 0 0 15px rgba(191, 163, 115, 0.6);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.custom-marker:hover {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-box-shadow: 0 0 25px rgba(191, 163, 115, 0.8);
  box-shadow: 0 0 25px rgba(191, 163, 115, 0.8);
}

.custom-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  background: #0F1D38;
  color: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.custom-popup .leaflet-popup-content {
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 4px;
}

.custom-popup .leaflet-popup-content strong {
  color: #BFA373;
  font-size: 16px;
}

.custom-popup .leaflet-popup-tip {
  background: #0F1D38;
}

/* ===== СТИЛИ ЗУМА КАРТЫ ===== */
.leaflet-control-zoom {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-control-zoom a {
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  font-size: 20px !important;
  background: #0F1D38 !important;
  color: #BFA373 !important;
  border: none !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:hover {
  background: #BFA373 !important;
  color: #0F1D38 !important;
}

.leaflet-control-zoom-in {
  border-radius: 12px 12px 0 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.leaflet-control-zoom-out {
  border-radius: 0 0 12px 12px !important;
}

/* ===================== АДАПТАЦИЯ ===================== */
@media (max-width: 1200px) {
  .contacts__info {
    padding: 40px 40px;
    gap: 22px;
  }
  .contacts__title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .contacts__list {
    gap: 20px;
  }
  .contacts__item {
    font-size: 20px;
    padding: 12px 16px;
    gap: 18px;
  }
}
@media (max-width: 1024px) {
  .contacts__grid {
    min-height: 600px;
    height: 600px;
  }
  .contacts__map {
    min-height: 600px;
    height: 600px;
  }
  #contactsMap {
    min-height: 600px !important;
  }
  .contacts__info {
    padding: 35px 30px;
    gap: 18px;
  }
  .contacts__title {
    font-size: 34px;
    margin-bottom: 18px;
  }
  .contacts__list {
    gap: 16px;
  }
  .contacts__item {
    font-size: 17px;
    gap: 15px;
    padding: 10px 14px;
  }
  .contacts__icon {
    font-size: 20px;
    width: 32px;
  }
  .leaflet-control-zoom a {
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    font-size: 18px !important;
  }
}
@media (max-width: 768px) {
  .contacts__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  /* МЕНЯЕМ МЕСТАМИ: СНАЧАЛА ИНФО, ПОТОМ КАРТА */
  .contacts__info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    min-height: 350px;
    height: auto;
    padding: 35px 24px;
    gap: 16px;
  }
  .contacts__map {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    min-height: 350px;
    height: 350px;
    width: 100%;
  }
  #contactsMap {
    min-height: 350px !important;
    height: 350px;
    width: 100%;
  }
  .contacts__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .contacts__list {
    gap: 14px;
  }
  .contacts__item {
    font-size: 17px;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 14px;
  }
  .contacts__icon {
    font-size: 20px;
    width: 36px;
    min-width: 36px;
  }
  .leaflet-control-zoom a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 16px !important;
  }
}
@media (max-width: 480px) {
  .contacts__info {
    min-height: 280px;
    padding: 28px 16px;
    gap: 14px;
  }
  .contacts__map {
    min-height: 280px;
    height: 280px;
  }
  #contactsMap {
    min-height: 280px !important;
    height: 280px;
  }
  .contacts__title {
    font-size: 26px;
    margin-bottom: 12px;
    line-height: 110%;
  }
  .contacts__list {
    gap: 10px;
  }
  .contacts__item {
    font-size: 15px;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
  }
  .contacts__icon {
    font-size: 18px;
    width: 32px;
    min-width: 32px;
  }
  .leaflet-control-zoom a {
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    font-size: 14px !important;
  }
}
@media (max-width: 380px) {
  .contacts__info {
    min-height: 220px;
    padding: 20px 12px;
    gap: 12px;
  }
  .contacts__map {
    min-height: 220px;
    height: 220px;
  }
  #contactsMap {
    min-height: 220px !important;
    height: 220px;
  }
  .contacts__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .contacts__list {
    gap: 8px;
  }
  .contacts__item {
    font-size: 13px;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
  }
  .contacts__icon {
    font-size: 16px;
    width: 28px;
    min-width: 28px;
  }
  .leaflet-control-zoom a {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 12px !important;
  }
}
@media (min-width: 1400px) {
  .contacts__grid {
    min-height: 717px;
    height: 717px;
  }
  #contactsMap {
    min-height: 717px;
  }
  .contacts__info {
    padding: 60px 70px;
    gap: 30px;
  }
  .contacts__title {
    font-size: 56px;
    margin-bottom: 30px;
  }
  .contacts__list {
    gap: 30px;
  }
  .contacts__item {
    font-size: 28px;
    gap: 22px;
    padding: 16px 24px;
  }
  .contacts__icon {
    font-size: 28px;
    width: 44px;
  }
  .leaflet-control-zoom a {
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    font-size: 24px !important;
  }
}
/* ===================== PRIVACY POLICY ===================== */
.privacy-policy {
  padding: 60px 0;
  background: #EDEDED;
}

.privacy-policy__inner {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px 70px;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.privacy-policy__title {
  margin: 0 0 40px 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #0F1D38;
  text-align: center;
}

.privacy-policy__content {
  color: #242424;
  font-size: 16px;
  line-height: 1.7;
}

.privacy-policy__content h2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #0F1D38;
  margin: 40px 0 16px 0;
}

.privacy-policy__content h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #0F1D38;
  margin: 30px 0 12px 0;
}

.privacy-policy__content h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #0F1D38;
  margin: 24px 0 10px 0;
}

.privacy-policy__content p {
  margin: 0 0 16px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #242424;
}

.privacy-policy__content ul,
.privacy-policy__content ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.privacy-policy__content li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #242424;
}

.privacy-policy__content a {
  color: #0F1D38;
  text-decoration: underline;
}

.privacy-policy__content a:hover {
  color: #BFA373;
}

.privacy-policy__content strong {
  font-weight: 700;
  color: #0F1D38;
}

.privacy-policy__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px 0;
}

.privacy-policy__content table th,
.privacy-policy__content table td {
  border: 1px solid #D3D1CC;
  padding: 12px 16px;
  text-align: left;
}

.privacy-policy__content table th {
  background: #F5F5F5;
  font-weight: 700;
  color: #0F1D38;
}

.privacy-policy__content table td {
  background: #FFFFFF;
  color: #242424;
}

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

.privacy-policy__operator-list li {
  padding: 10px 0;
  border-bottom: 1px solid #E8E8E8;
  font-size: 16px;
  line-height: 1.5;
  color: #242424;
}

.privacy-policy__operator-list li:last-child {
  border-bottom: none;
}

.privacy-policy__operator-list strong {
  color: #0F1D38;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .privacy-policy {
    padding: 40px 0;
  }
  .privacy-policy__inner {
    padding: 40px 35px;
    margin: 0 20px;
  }
  .privacy-policy__title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .privacy-policy {
    padding: 30px 0;
  }
  .privacy-policy__inner {
    padding: 30px 20px;
    margin: 0 16px;
    border-radius: 12px;
  }
  .privacy-policy__title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 24px;
  }
  .privacy-policy__content {
    font-size: 15px;
  }
  .privacy-policy__content h2 {
    font-size: 22px;
    line-height: 28px;
    margin: 30px 0 12px 0;
  }
  .privacy-policy__content h3 {
    font-size: 18px;
    line-height: 24px;
    margin: 24px 0 10px 0;
  }
  .privacy-policy__content p,
  .privacy-policy__content li {
    font-size: 15px;
  }
  .privacy-policy__operator-list li {
    font-size: 15px;
    padding: 8px 0;
  }
  .privacy-policy__content table th,
  .privacy-policy__content table td {
    padding: 8px 12px;
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .privacy-policy {
    padding: 20px 0;
  }
  .privacy-policy__inner {
    padding: 20px 16px;
    margin: 0 10px;
    border-radius: 8px;
  }
  .privacy-policy__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 18px;
  }
  .privacy-policy__content {
    font-size: 14px;
  }
  .privacy-policy__content h2 {
    font-size: 18px;
    line-height: 24px;
    margin: 24px 0 10px 0;
  }
  .privacy-policy__content h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .privacy-policy__content p,
  .privacy-policy__content li {
    font-size: 14px;
  }
  .privacy-policy__operator-list li {
    font-size: 14px;
    padding: 6px 0;
  }
}
.site-footer {
  background: #EDEDED;
  color: #4A5568;
  padding: 50px 24px 30px;
  font-size: 14px;
  border-top: 1px solid #E2E8F0;
}

.site-footer__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr 1.4fr 1fr 1fr;
  grid-template-columns: 1.1fr 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  padding-bottom: 30px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 20px;
}

.site-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: 8px;
  list-style: none;
}

.site-footer__logo {
  max-width: 200px;
  height: auto;
}

.site-footer__legal-list,
.site-footer__link-list {
  padding: 0;
  margin: 0;
  list-style: none;
  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;
}

.site-footer__brand {
  color: #0F1D38;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 22px;
}

.site-footer__brand-sub {
  color: #718096;
  font-size: 13px;
}

.site-footer__heading {
  color: rgba(15, 29, 56, 0.8);
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 8px;
}

.site-footer__legal {
  color: rgba(15, 29, 56, 0.8) !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.site-footer__link {
  color: #0F1D38 !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
}

.site-footer__link:hover {
  color: #BFA373 !important;
}

.site-footer__col--actions {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-footer__socials li {
  list-style: none;
}

.site-footer__social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 8px rgba(15, 29, 56, 0.08);
  box-shadow: 0 2px 8px rgba(15, 29, 56, 0.08);
}

.site-footer__social-icon img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.site-footer__social-icon:hover {
  background: #FFFFFF;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 16px rgba(191, 163, 115, 0.2);
  box-shadow: 0 4px 16px rgba(191, 163, 115, 0.2);
}

.site-footer__social-icon:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(66%) sepia(58%) saturate(388%) hue-rotate(5deg) brightness(91%) contrast(88%);
  filter: brightness(0) saturate(100%) invert(66%) sepia(58%) saturate(388%) hue-rotate(5deg) brightness(91%) contrast(88%);
}

.site-footer__cta {
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.8) -8.86%, rgba(25, 50, 99, 0.8) 108.42%);
  color: #FFFFFF;
  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;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  height: 60px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 14px;
  width: 100%;
  max-width: 320px;
}

.site-footer__cta:hover {
  background: linear-gradient(0deg, rgba(67, 80, 66, 0.6), rgba(67, 80, 66, 0.6)), linear-gradient(88.17deg, rgba(191, 163, 115, 0.6) 11.68%, rgba(142, 124, 92, 0.6) 88.32%);
  color: #fff !important;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 5px;
}

.site-footer__copyright {
  color: #A0AEC0;
  font-size: 13px;
  margin: 0;
}

.site-footer__developer {
  color: #A0AEC0;
  font-size: 13px;
  margin: 0;
}

.site-footer__dev-link {
  color: #0F1D38 !important;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.site-footer__dev-link:hover {
  color: #BFA373 !important;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 20px 0;
  }
  .site-footer__inner {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .site-footer__logo {
    max-width: 150px;
  }
  .site-footer__heading {
    font-size: 16px;
  }
  .site-footer__legal,
  .site-footer__link {
    font-size: 14px;
  }
  .site-footer__social-icon {
    width: 44px;
    height: 44px;
  }
  .site-footer__social-icon img {
    width: 30px;
    height: 30px;
  }
  .site-footer__cta {
    font-size: 18px;
    padding: 16px 28px;
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .site-footer__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  .site-footer__col {
    gap: 8px;
  }
  .site-footer__col--actions {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .site-footer__legal-list,
  .site-footer__link-list {
    gap: 10px;
  }
  .site-footer__logo {
    max-width: 120px;
  }
  .site-footer__heading {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .site-footer__legal,
  .site-footer__link {
    font-size: 14px;
  }
  .site-footer__socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .site-footer__social-icon {
    width: 48px;
    height: 48px;
  }
  .site-footer__social-icon img {
    width: 32px;
    height: 32px;
  }
  .site-footer__cta {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 16px 24px;
    max-width: 100%;
  }
  .site-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .site-footer__copyright,
  .site-footer__developer {
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .site-footer__inner {
    gap: 16px;
    padding-bottom: 16px;
  }
  .site-footer__logo {
    max-width: 100px;
  }
  .site-footer__heading {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .site-footer__legal,
  .site-footer__link {
    font-size: 13px;
  }
  .site-footer__legal-list,
  .site-footer__link-list {
    gap: 8px;
  }
  .site-footer__social-icon {
    width: 40px;
    height: 40px;
  }
  .site-footer__social-icon img {
    width: 28px;
    height: 28px;
  }
  .site-footer__cta {
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 8px;
  }
  .site-footer__copyright,
  .site-footer__developer {
    font-size: 11px;
  }
  .site-footer__socials {
    gap: 8px;
  }
}
@media (min-width: 1400px) {
  .site-footer {
    padding: 60px 24px 40px;
  }
  .site-footer__inner {
    gap: 40px;
  }
  .site-footer__logo {
    max-width: 250px;
  }
  .site-footer__heading {
    font-size: 20px;
  }
  .site-footer__legal,
  .site-footer__link {
    font-size: 18px;
  }
  .site-footer__social-icon {
    width: 56px;
    height: 56px;
  }
  .site-footer__cta {
    max-width: 360px;
  }
}
/* ===================== ERROR 404 ===================== */
.error-404 {
  min-height: 70vh;
  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;
  background: #EDEDED;
  padding: 60px 0;
}

.error-404__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.error-404__code {
  display: block;
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  color: #0F1D38;
  margin-bottom: 20px;
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-404__title {
  margin: 0 0 16px 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #0F1D38;
}

.error-404__desc {
  margin: 0 0 32px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #4A5568;
}

.error-404__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.error-404__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.error-404__btn svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.error-404__btn--primary {
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  color: #FFFFFF;
}

.error-404__btn--primary:hover {
  background: #8E7C5C;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 20px rgba(191, 163, 115, 0.3);
  box-shadow: 0 4px 20px rgba(191, 163, 115, 0.3);
}

.error-404__btn--secondary {
  background: #FFFFFF;
  color: #0F1D38;
  border: 1px solid #D3D1CC;
}

.error-404__btn--secondary:hover {
  background: #0F1D38;
  color: #FFFFFF;
  border-color: #0F1D38;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.error-404__btn--secondary svg {
  color: #0F1D38;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.error-404__btn--secondary:hover svg {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .error-404 {
    min-height: 60vh;
    padding: 40px 0;
  }
  .error-404__code {
    font-size: 80px;
  }
  .error-404__title {
    font-size: 28px;
    line-height: 34px;
  }
  .error-404__desc {
    font-size: 16px;
    line-height: 24px;
  }
  .error-404__actions {
    -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;
  }
  .error-404__btn {
    width: 100%;
    max-width: 320px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .error-404__code {
    font-size: 60px;
  }
  .error-404__title {
    font-size: 22px;
    line-height: 28px;
  }
  .error-404__desc {
    font-size: 14px;
    line-height: 20px;
  }
  .error-404__btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}
/* ===================== COOKIE БАННЕР ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: linear-gradient(88.52deg, rgba(15, 29, 56, 0.5) -8.86%, rgba(25, 50, 99, 0.5) 108.42%);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -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;
  border-top: 2px solid rgba(191, 163, 115, 0.3);
}

.cookie-banner.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

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

.cookie-banner__content {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cookie-banner__text {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text a {
  color: #BFA373 !important;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.cookie-banner__text a:hover {
  color: #d4b88c;
}

.cookie-banner__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 28px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
}

.cookie-banner__btn--accept {
  background: linear-gradient(88.17deg, #BFA373 11.68%, #8E7C5C 88.32%);
  color: #FFFFFF;
}

.cookie-banner__btn--accept:hover {
  background: #8E7C5C;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 20px rgba(191, 163, 115, 0.3);
  box-shadow: 0 4px 20px rgba(191, 163, 115, 0.3);
}

.cookie-banner__btn--decline {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner__btn--decline:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px 0;
  }
  .cookie-banner__content {
    -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: 16px;
  }
  .cookie-banner__text {
    font-size: 14px;
    min-width: unset;
    text-align: center;
  }
  .cookie-banner__actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .cookie-banner__btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}
@media (max-width: 420px) {
  .cookie-banner__btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}/*# sourceMappingURL=main.css.map */
