@charset "UTF-8";
:root {
  --font-family: "Commissioner", sans-serif;
  --content-width: 1470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --green:#7CB518;
  --orange:#FB6107;
  --text:#463830;
  --dark:#1A1A1A;
  --accent-dark: #1EA822;
  --primary-light: rgba(35, 194, 41, 0.1);
  --light: #fff;
  --border-color: #E2E8F0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --bg-light: #f8f8f8;
  --accent-dark: #1EA822;
  --gray: #f5f5f5;
}

/* 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: "UAF Memory";
  src: url("../fonts/UAFMemory-CompactMedium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "UAF Memory";
  src: url("../fonts/UAFMemory-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

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

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

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

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

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

.centered {
  text-align: center;
}

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

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

/* Стили для уведомления */
.success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #7CB518 0%, #C9DD6A 100%);
  border-radius: 15px;
  padding: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--light);
  z-index: 10000;
  max-width: 350px;
  -webkit-transform: translateX(400px);
  -ms-transform: translateX(400px);
  transform: translateX(400px);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  overflow: hidden;
}

.success-notification.show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.notification-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}

.notification-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #7CB518;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.notification-title {
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--light);
  margin: 0;
}

.notification-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--light);
  cursor: pointer;
  margin-left: auto;
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0;
  width: 30px;
  height: 30px;
  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;
}

.notification-close:hover {
  opacity: 1;
}

.notification-body {
  font-family: "Commissioner", sans-serif;
  color: var(--light);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.notification-body p {
  margin: 0;
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--light);
  width: 100%;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 15s linear;
  transition: -webkit-transform 15s linear;
  transition: transform 15s linear;
  transition: transform 15s linear, -webkit-transform 15s linear;
}

.success-notification.show .notification-progress {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

/* Адаптивность для уведомления */
.hero__cta-btn {
  max-width: 500px;
  display: block;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green), var(--accent-dark));
  color: var(--light);
  border: none;
  padding: 16px 32px;
  font-family: Commissioner;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  border-radius: 20px;
  line-height: 121%;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* Пульсация при наведении */
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.hero__cta-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 0 20px rgba(91, 224, 8, 0.4);
  box-shadow: 0 0 20px rgba(91, 224, 8, 0.4);
  -webkit-animation: pulse 1.5s infinite !important;
  animation: pulse 1.5s infinite !important;
}

/* Анимация пульсации */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(30, 168, 34, 0.7);
    box-shadow: 0 0 0 0 rgba(30, 168, 34, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(30, 168, 34, 0.7);
    box-shadow: 0 0 0 0 rgba(30, 168, 34, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}
.hero__cta-btn:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Эффект "вспышка" при клике */
.hero__cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
  -ms-transform: scale(1, 1) translate(-50%);
  transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.hero__cta-btn:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
  animation: ripple 1s ease-out;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    -webkit-transform: scale(25, 25);
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50, 50);
    transform: scale(50, 50);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    -webkit-transform: scale(25, 25);
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50, 50);
    transform: scale(50, 50);
    opacity: 0;
  }
}
.dream-compact__title {
  font-family: UAF Memory;
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  position: relative;
  max-width: 800px;
  padding-bottom: 20px;
}

.dream-compact__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--orange)), to(var(--green)));
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .dream-compact__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .dream-compact__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .hero__cta-btn {
    max-width: 300px;
    padding: 8px 16px;
    font-size: 18px;
    border-radius: 20px;
    line-height: 90%;
  }
}
@media (max-width: 480px) {
  .dream-compact__title {
    font-size: 26px;
  }
}
.header {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}
.header__container {
  position: relative;
  padding: 0;
}
.header__logo {
  width: 130px;
  height: 90px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .header__logo {
    position: absolute;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: auto;
    height: auto !important;
    width: 100px;
    height: 60px;
    -webkit-transform: translateX(0%) !important;
    -ms-transform: translateX(0%) !important;
    transform: translateX(0%) !important;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    top: 10px;
    left: 0px;
  }
}
.header__top {
  width: 100%;
  height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#010101), to(rgba(1, 17, 43, 0.1)));
  background: linear-gradient(180deg, #010101 0%, rgba(1, 17, 43, 0.1) 100%);
  background-blend-mode: multiply;
  position: relative;
}
@media (max-width: 991px) {
  .header__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 576px) {
  .header__top {
    padding: 0 40px 0 15px;
    height: 70px;
  }
}
.header__phones-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .header__phones-wrapper {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 768px) {
  .header__phones-wrapper {
    gap: 3px;
  }
}
.header__phone-wrapper {
  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;
}
@media (max-width: 992px) {
  .header__phone-wrapper--international {
    display: none;
  }
}
.header__phone {
  margin: 0;
  font-family: Commissioner;
  font-weight: 400;
  color: var(--light);
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}
.header__phone:hover {
  color: var(--orange);
}
@media (max-width: 1200px) {
  .header__phone {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .header__phone {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header__phone {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .header__phone {
    font-size: 11px;
  }
}
.header__phone-note {
  font-family: Commissioner;
  font-size: 10px;
  color: var(--light);
  opacity: 0.8;
  margin-top: 2px;
  font-weight: 300;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .header__phone-note {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .header__phone-note {
    font-size: 8px;
  }
}
.header__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;
  width: 301px;
  height: 55px;
  border-radius: 20px;
  font-family: Commissioner;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--light);
  border: 3px solid var(--green);
}
@media (max-width: 1200px) {
  .header__btn {
    width: 250px;
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .header__btn {
    display: none;
  }
}

.menu {
  position: relative;
}
.menu__icon {
  display: none;
}
@media (max-width: 992px) {
  .menu__icon {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
    width: 30px;
    height: 22px;
    z-index: 1000;
    cursor: pointer;
  }
  .menu__icon span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .menu__icon span:first-child {
    top: 0;
  }
  .menu__icon span:last-child {
    top: auto;
    bottom: 0;
  }
  .menu__icon.active span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
  }
  .menu__icon.active span:nth-child(2) {
    opacity: 0;
  }
  .menu__icon.active span:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 10px;
  }
}
@media (max-width: 576px) {
  .menu__icon {
    top: 25px;
    right: 15px;
    width: 25px;
    height: 18px;
  }
}
.menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }
}
.menu__body.active {
  left: 0;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 1200px) {
  .menu__list {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 100px 30px 30px;
    gap: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#C9DD6A), to(#7CB518));
    background: linear-gradient(90deg, #C9DD6A 0%, #7CB518 100%);
    background-blend-mode: multiply;
  }
}
@media (max-width: 992px) {
  .menu__item {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
  .menu__item:last-child {
    margin-bottom: 0;
  }
}
.menu__link {
  font-family: Commissioner;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--light);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}
.menu__link:hover {
  color: var(--orange);
}
@media (max-width: 1200px) {
  .menu__link {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .menu__link {
    display: block;
    font-size: 24px;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    color: var(-text);
  }
}
@media (max-width: 576px) {
  .menu__link {
    font-size: 20px;
    padding: 12px 0;
  }
}

/* Добавляем затемнение фона при открытом меню */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .menu__body.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
  /* Центрирование логотипа и телефона в мобильной версии */
  .header__top {
    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;
  }
  .header__logo {
    position: absolute;
    left: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .header__phones-wrapper {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
  }
}
/* Анимация появления пунктов меню */
@media (max-width: 992px) {
  .menu__item {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .menu__body.active .menu__item {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  /* Задержка для каждого пункта меню */
  .menu__body.active .menu__item:nth-child(1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  .menu__body.active .menu__item:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .menu__body.active .menu__item:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .menu__body.active .menu__item:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  .menu__body.active .menu__item:nth-child(5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .menu__body.active .menu__item:nth-child(6) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
}
/* Для десктопной версии - центрирование логотипа */
@media (min-width: 992px) {
  .header__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 100px;
  }
  .header__phones-wrapper {
    margin-right: auto;
  }
  .header__btn {
    margin-left: auto;
  }
}
/* Дополнительные стили для двух номеров */
@media (min-width: 993px) {
  .header__phones-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__phone-wrapper {
    line-height: 1.2;
  }
}
/* Адаптация для очень маленьких экранов */
@media (max-width: 360px) {
  .header__phone {
    font-size: 10px;
  }
  .header__phone-note {
    font-size: 7px;
  }
  .header__logo {
    font-size: 20px;
    left: 10px;
  }
}
.graph-modal__container {
  max-width: 600px;
  padding-top: 30px;
}

.cta-form-container {
  background: var(--light);
  padding: 40px;
  border-radius: 25px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(124, 181, 24, 0.1);
  border-top: 4px solid var(--green);
}

.cta-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;
}

.form-group {
  position: relative;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 2px solid var(--gray);
  border-radius: 15px;
  background: var(--light);
  color: var(--text);
  font-size: 1rem;
  font-family: "Commissioner", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--green);
  -webkit-box-shadow: 0 0 0 3px rgba(124, 181, 24, 0.1);
  box-shadow: 0 0 0 3px rgba(124, 181, 24, 0.1);
}

.input-wrapper input::-webkit-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-wrapper input::-moz-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-wrapper input:-ms-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-wrapper input::-ms-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-wrapper input::placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--text);
  opacity: 0.6;
  z-index: 2;
  width: 20px;
  height: 20px;
  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;
  pointer-events: none;
}

.checkbox-group {
  margin: 10px 0;
}

.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: "Commissioner", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray);
  border-radius: 4px;
  background: var(--light);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 2px;
  -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;
}

.checkbox-label input:checked + .checkbox-custom {
  border-color: var(--green);
  background: var(--green);
}

.checkbox-label input:checked + .checkbox-custom::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  background: var(--light);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.privacy-link {
  color: var(--green);
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--accent-dark);
}

.submit-btn {
  background: linear-gradient(135deg, var(--green), var(--accent-dark));
  color: var(--light);
  border: none;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Commissioner", sans-serif;
  margin-top: 10px;
}

.submit-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 25px rgba(124, 181, 24, 0.4);
  box-shadow: 0 10px 25px rgba(124, 181, 24, 0.4);
}

.privacy-note {
  text-align: center;
  font-family: "Commissioner", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  margin-top: 15px;
}

/* Адаптивность */
@media (max-width: 968px) {
  .cta-content {
    padding-right: 0;
    text-align: center;
  }
  .cta-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.8rem;
  }
  .cta-form-container {
    padding: 30px 25px;
  }
}
@media (max-width: 480px) {
  .cta-title {
    font-size: 1.5rem;
  }
  .cta-form-container {
    padding: 25px 20px;
  }
  .input-wrapper input {
    padding: 16px 20px 16px 45px;
  }
  .submit-btn {
    padding: 16px 25px;
    font-size: 1rem;
  }
}
.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}

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

.hero__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Остальные существующие стили остаются без изменений */
.hero__container {
  height: 875px;
  position: relative;
}

.hero__content {
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
  padding-top: 300px;
  -webkit-animation: fadeInUp 0.8s ease-out;
  animation: fadeInUp 0.8s ease-out;
}

.hero__container {
  height: 875px;
  position: relative;
}

.hero__content {
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
  padding-top: 300px;
  -webkit-animation: fadeInUp 0.8s ease-out;
  animation: fadeInUp 0.8s ease-out;
}

.hero__title {
  margin: 0;
  font-family: UAF Memory;
  font-weight: 500;
  font-style: Medium;
  font-size: 60px;
  color: var(--light);
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__subtitle {
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 750px;
  font-style: Medium;
  font-size: 25px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--light);
  margin-bottom: 30px;
}

.consultation-note {
  margin-top: 20px;
  color: var(--light);
  font-family: Commissioner;
  font-size: 18px;
  text-align: center;
  opacity: 0.9;
  -webkit-animation: fadeIn 1s ease-out 0.5s both;
  animation: fadeIn 1s ease-out 0.5s both;
}

.consultation-note a {
  color: var(--light);
  text-decoration: underline;
  font-weight: 500;
}

/* Плавающая кнопка */
.floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-button {
  width: 70px;
  height: 70px;
  background: var(--accent-dark);
  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;
  color: white;
  font-size: 28px;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.floating-button:hover {
  background: var(--green);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.floating-button.pulse {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(33, 179, 37, 0.7);
    box-shadow: 0 0 0 0 rgba(33, 179, 37, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(33, 179, 37, 0);
    box-shadow: 0 0 0 15px rgba(33, 179, 37, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(33, 179, 37, 0);
    box-shadow: 0 0 0 0 rgba(33, 179, 37, 0);
  }
}
/* Меню контактов */
.contact-menu {
  position: absolute;
  bottom: 85px;
  right: 0;
  width: 250px;
  background: var(--light);
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-menu.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.contact-menu h3 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.contact-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--text);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.contact-option:last-child {
  margin-bottom: 0;
}

.contact-option:hover {
  background: var(--accent-dark);
  color: white;
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}

.contact-option i {
  margin-right: 10px;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.contact-option.phone i {
  color: var(--accent-dark);
}

.contact-option.whatsapp i {
  color: var(--green);
}

.contact-option:hover i {
  color: white;
}

/* Адаптивность */
@media (max-width: 600px) {
  .floating-container {
    bottom: 20px;
    right: 20px;
  }
  .floating-button {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .contact-menu {
    width: 220px;
    right: -10px;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}
/* Адаптивность */
@media (max-width: 768px) {
  .hero__container {
    height: 700px;
  }
  .hero__content {
    padding-top: 200px;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__subtitle {
    font-size: 18px;
  }
  .consultation-note {
    font-size: 16px;
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .consultation-note {
    font-size: 14px;
  }
}
/* Анимация появления */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.dream-compact {
  padding: 60px 0px;
}

/* Колонки */
.dream-compact__columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.dream-compact__column {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.dream-compact__column--problem {
  border-top: 4px solid var(--color-danger);
}

.dream-compact__column--solution {
  border-top: 4px solid var(--color-success);
}

/* Заголовок колонки */
.dream-compact__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.dream-compact__icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.dream-compact__column--problem .dream-compact__icon-wrapper {
  background-color: #fee2e2;
  color: var(--color-danger);
}

.dream-compact__column--solution .dream-compact__icon-wrapper {
  background-color: #dcfce7;
  color: var(--color-success);
}

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

.dream-compact__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

/* Список */
.dream-compact__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: 1rem;
}

.dream-compact__item {
  padding: 1rem;
  background-color: var(--color-light);
  border-radius: 8px;
  border-left: 4px solid transparent;
}

.dream-compact__column--problem .dream-compact__item {
  border-left-color: var(--color-danger);
}

.dream-compact__column--solution .dream-compact__item {
  border-left-color: var(--color-success);
}

.dream-compact__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.75rem;
}

.dream-compact__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 24px;
  color: inherit;
}

.dream-compact__column--problem .dream-compact__item-icon {
  color: var(--color-danger);
}

.dream-compact__column--solution .dream-compact__item-icon {
  color: var(--color-success);
}

.dream-compact__item-text {
  color: var(--color-text);
  line-height: 1.5;
}

/* Кнопка */
/* Адаптивность */
@media (max-width: 768px) {
  .dream-compact__columns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .dream-compact__subtitle {
    font-size: 1.25rem;
  }
  .dream-compact__column {
    padding: 1.5rem;
  }
}
/* Обновленные стили для карточек */
.cards-inner {
  margin: 0 auto;
  max-width: 1220px;
}

.card {
  width: 1220px;
  max-width: 100%;
  height: 450px; /* Немного уменьшено с 475px */
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  border-top: 4px solid var(--green);
}

.card__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.card__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid var(--green);
  padding: 35px 20px;
  overflow: hidden;
}

/* Фиксированные размеры для изображений */
.card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.card__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 20px 20px; /* Уменьшено сверху */
  height: 100%;
  min-height: 0;
}

/* Убрал скролл */
.card__scrollable {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
  overflow: visible; /* Убрал скролл */
}

.card__title {
  margin: 0;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px; /* Немного уменьшено с 50px */
  line-height: 52px;
  letter-spacing: 0%;
  color: var(--text);
  margin-bottom: 20px; /* Уменьшено с 25px */
}

.card__description {
  margin: 0 0 18px 0;
  font-family: Commissioner;
  font-weight: 400;
  color: var(--text);
  font-size: 19px; /* Немного уменьшено с 20px */
  line-height: 1.4;
  letter-spacing: 0%;
}

.card__features {
  margin-bottom: 18px; /* Немного уменьшено с 20px */
}

.card__features-item {
  font-family: Commissioner;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 19px; /* Немного уменьшено с 20px */
  color: var(--text);
  line-height: 1.3; /* Немного уменьшено с 1.4 */
  letter-spacing: 0%;
  padding: 5px 0; /* Немного уменьшено с 6px */
  padding-left: 22px; /* Немного уменьшено с 24px */
  position: relative;
}

.card__footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: auto;
}

.card__price {
  position: absolute;
  right: 20px;
  bottom: 85px; /* Поднято выше для кнопок */
}

.card__price-text {
  margin: 0;
  font-family: Commissioner;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 34px; /* Немного уменьшено с 36px */
  color: var(--text);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
}

.card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px; /* Немного уменьшено с 15px */
}

.card__button {
  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;
  padding: 10px 20px; /* Уменьшено */
  border: none;
  border-radius: 20px;
  font-family: Commissioner;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 22px; /* Уменьшено с 26px */
  color: var(--light-color);
  line-height: 90%;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 120px;
  width: 260px; /* Уменьшено с 280px */
  height: 55px; /* Уменьшено с 65px */
  text-decoration: none;
}

/* Сохраняем оригинальные цвета кнопок */
.card__button--detail {
  background: linear-gradient(135deg, var(--green), var(--accent-dark));
  color: var(--light);
}

.card__button--detail:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.card__button--primary {
  background: var(--light-color);
  color: var(--green);
  border: 2px solid var(--green);
  -webkit-box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.card__button--primary:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* Стили для слайдера */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.slider__slide.active {
  opacity: 1;
}

.slider__nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text);
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.slider__dot.active {
  background: var(--green);
}

.slider__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 20px;
  z-index: 3;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.slider__arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.slider__arrow--prev {
  left: 15px;
}

.slider__arrow--next {
  right: 15px;
}

/* Адаптивность */
@media (max-width: 1280px) {
  .card {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .card__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .card__image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 400px; /* Уменьшено с 450px */
    border-right: none;
    border-bottom: 1px solid var(--green);
    padding: 25px 15px; /* Уменьшено */
  }
  .card__content {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 20px 15px 15px; /* Уменьшено */
  }
  .card__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px; /* Уменьшено с 10px */
  }
  .card__button {
    width: 100%;
    font-size: 20px; /* Уменьшено с 24px */
    padding: 10px 15px; /* Уменьшено */
    height: 50px; /* Уменьшено */
  }
  .card__price {
    position: static;
    text-align: left;
    margin-bottom: 15px; /* Уменьшено с 20px */
  }
}
@media (max-width: 968px) {
  .card__image {
    height: 350px; /* Уменьшено с 400px */
  }
  .card__title {
    font-size: 40px; /* Уменьшено с 42px */
  }
  .card__description {
    font-size: 17px; /* Уменьшено с 18px */
  }
  .card__features-item {
    font-size: 17px; /* Уменьшено с 18px */
  }
  .card__button {
    font-size: 18px; /* Уменьшено для мобильных */
  }
}
@media (max-width: 768px) {
  .card__image {
    height: 320px; /* Уменьшено с 350px */
    padding: 20px 15px;
  }
  .card__content {
    padding: 18px 15px;
  }
  .card__title {
    font-size: 36px; /* Уменьшено с 38px */
    margin-bottom: 18px;
  }
  .card__description {
    font-size: 16px; /* Уменьшено с 17px */
    margin-bottom: 15px;
  }
  .card__price-text {
    font-size: 26px; /* Уменьшено с 28px */
  }
  .card__button {
    padding: 10px 15px;
    font-size: 18px; /* Уменьшено с 22px */
    height: 48px;
  }
}
@media (max-width: 580px) {
  .card__image {
    height: 280px; /* Уменьшено с 320px */
  }
  .card__title {
    font-size: 32px; /* Уменьшено с 34px */
    line-height: 100%;
  }
  .card__description {
    font-size: 15px; /* Уменьшено с 16px */
  }
  .card__features-item {
    font-size: 15px; /* Уменьшено с 16px */
    padding: 4px 0;
    padding-left: 18px;
  }
  .card__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
  .card__button {
    font-size: 16px; /* Уменьшено с 20px */
    height: 45px;
  }
}
@media (max-width: 480px) {
  .card__image {
    height: 250px; /* Уменьшено с 280px */
    padding: 15px 10px;
  }
  .card__content {
    padding: 15px 12px;
  }
  .card__title {
    font-size: 28px; /* Уменьшено с 30px */
    margin-bottom: 15px;
  }
  .card__description {
    font-size: 14px; /* Уменьшено с 15px */
  }
  .card__features-item {
    font-size: 14px; /* Уменьшено с 15px */
  }
  .card__button {
    font-size: 15px; /* Уменьшено с 18px */
    padding: 8px 12px;
    height: 42px;
  }
}
@media (max-width: 380px) {
  .card__image {
    height: 220px; /* Уменьшено с 250px */
  }
  .card__title {
    font-size: 26px; /* Уменьшено с 28px */
  }
  .card__button {
    font-size: 14px;
    height: 40px;
  }
}
/* Скрываем навигационные точки */
.slider__nav {
  display: none !important;
}

.calculator {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.calculator__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 60px;
  line-height: 1.3;
  font-family: "Playfair Display", serif;
}

.calculator__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.calculator__form {
  background: var(--light);
  padding: 40px 30px;
  border-radius: 25px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(124, 181, 24, 0.1);
  border-top: 4px solid var(--orange);
}

.calculator__field {
  margin-bottom: 35px;
}

.calculator__label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

/* Radio buttons */
.calculator__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.calculator__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 20px;
  border: 2px solid var(--gray);
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--light);
}

.calculator__radio input {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--green);
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  -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;
}

.calculator__radio input:checked + .radio-custom::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.calculator__radio input:checked ~ .radio-text {
  color: var(--green);
  font-weight: 600;
}

.calculator__radio:hover {
  border-color: var(--green);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(124, 181, 24, 0.2);
  box-shadow: 0 5px 15px rgba(124, 181, 24, 0.2);
}

/* Slider - ИСПРАВЛЕННЫЕ СТИЛИ */
.calculator__slider-container {
  margin-top: 20px;
}

.calculator__slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: -webkit-gradient(linear, left top, right top, from(var(--green)), color-stop(0%, var(--gray)));
  background: linear-gradient(to right, var(--green) 0%, var(--gray) 0%);
  border-radius: 3px;
  outline: none;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 4px solid var(--light);
  -webkit-box-shadow: 0 2px 8px rgba(124, 181, 24, 0.4);
  box-shadow: 0 2px 8px rgba(124, 181, 24, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.calculator__slider::-webkit-slider-thumb:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 4px 12px rgba(124, 181, 24, 0.6);
  box-shadow: 0 4px 12px rgba(124, 181, 24, 0.6);
}

.calculator__slider-info {
  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;
  color: var(--text);
  font-weight: 500;
}

#area-value {
  font-weight: 600;
  color: var(--green);
  font-size: 1.1rem;
}

.calculator__slider-price {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Toggle buttons */
.calculator__toggle-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.calculator__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 25px;
  border: 2px solid var(--gray);
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--light);
}

.calculator__toggle input {
  display: none;
}

.toggle-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--green);
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.toggle-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 2px;
  -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;
}

.calculator__toggle input:checked + .toggle-custom::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.calculator__toggle input:checked ~ .toggle-text {
  color: var(--green);
  font-weight: 600;
}

.calculator__toggle:hover {
  border-color: var(--green);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(124, 181, 24, 0.2);
  box-shadow: 0 5px 15px rgba(124, 181, 24, 0.2);
}

/* Result */
.calculator__result {
  background: linear-gradient(135deg, var(--primary-light), rgba(124, 181, 24, 0.15));
  padding: 25px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border: 2px solid rgba(124, 181, 24, 0.2);
}

.calculator__result-icon {
  width: 50px;
  height: 50px;
  background: var(--green);
  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;
  color: white;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.calculator__result-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.calculator__result-label {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

.calculator__result-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  font-family: "Playfair Display", serif;
}

/* Capture form */
.calculator__capture {
  border-top: 4px solid var(--green);
  background: linear-gradient(135deg, var(--light), #f8fdf8);
  padding: 40px 30px;
  border-radius: 25px;
  color: var(--dark);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(124, 181, 24, 0.1);
}

.calculator__capture-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  color: var(--dark);
}

.calculator__capture-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;
}

.calculator__form-group {
  position: relative;
}

.calculator__input-wrapper {
  position: relative;
}

.calculator__form-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--gray);
  border-radius: 15px;
  background: var(--light);
  color: var(--text);
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.calculator__form-input::-webkit-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.calculator__form-input::-moz-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.calculator__form-input:-ms-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.calculator__form-input::-ms-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.calculator__form-input::placeholder {
  color: var(--text);
  opacity: 0.6;
}

.calculator__form-input:focus {
  outline: none;
  border-color: var(--green);
  -webkit-box-shadow: 0 0 0 3px rgba(124, 181, 24, 0.1);
  box-shadow: 0 0 0 3px rgba(124, 181, 24, 0.1);
}

/* ИСПРАВЛЕННЫЕ СТИЛИ ДЛЯ ИКОНОК */
.calculator__input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--text);
  opacity: 0.6;
  z-index: 2;
  width: 20px;
  height: 20px;
  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;
  pointer-events: none;
}

.calculator__submit-btn {
  background: linear-gradient(135deg, var(--green), var(--accent-dark));
  color: var(--light);
  border: none;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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: 10px;
  margin-top: 10px;
}

.calculator__submit-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 25px rgba(124, 181, 24, 0.4);
  box-shadow: 0 10px 25px rgba(124, 181, 24, 0.4);
}

.calculator__capture-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--text);
}

/* Стили для ошибок */
.calculator__error-message {
  color: var(--orange);
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.calculator__error-message.show {
  opacity: 1;
}

.calculator__form-input.error {
  border-color: var(--orange);
  -webkit-box-shadow: 0 0 0 3px rgba(251, 97, 7, 0.1);
  box-shadow: 0 0 0 3px rgba(251, 97, 7, 0.1);
}

/* Чекбокс политики */
.calculator__checkbox-group {
  margin: 15px 0;
}

.calculator__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.calculator__checkbox input {
  display: none;
}

.calculator__checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray);
  border-radius: 4px;
  background: var(--light);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.calculator__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 2px;
  -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;
}

.calculator__checkbox input:checked + .calculator__checkbox-custom {
  border-color: var(--green);
  background: var(--green);
}

.calculator__checkbox input:checked + .calculator__checkbox-custom::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  background: var(--light);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.calculator__privacy-link {
  color: var(--green);
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.calculator__privacy-link:hover {
  color: var(--accent-dark);
}

/* Анимация загрузки */
.calculator__submit-btn.loading {
  position: relative;
  color: transparent;
}

.calculator__submit-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--light);
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.modal__content {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  margin: auto;
  text-align: center;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  -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;
}

.modal.show .modal__content {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.modal__icon {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.modal__text {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 25px;
}

.modal__button {
  background: var(--green);
  color: var(--light);
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal__button:hover {
  background: var(--accent-dark);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.modal__close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal__close-btn:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

.modal__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal__button--primary {
  background: var(--green);
  color: white;
}

.modal__button--secondary {
  background: var(--gray);
  color: var(--text);
}

.modal__button--secondary:hover {
  background: #e0e0e0;
}

.modal__countdown {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  margin: 0;
}

/* Адаптивность */
@media (max-width: 968px) {
  .calculator__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .calculator {
    padding: 80px 0;
  }
  .calculator__title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .calculator__form,
  .calculator__capture {
    padding: 30px 25px;
  }
  .calculator__radio-group,
  .calculator__toggle-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .calculator__slider-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .calculator__title {
    font-size: 1.7rem;
  }
  .calculator__form,
  .calculator__capture {
    padding: 25px 20px;
  }
  .calculator__result {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .calculator__result-price {
    font-size: 1.2rem;
  }
  .calculator__capture-title {
    font-size: 1.1rem;
  }
  .calculator__submit-btn {
    padding: 16px 25px;
    font-size: 1rem;
  }
}
/* Анимации */
.calculator__form,
.calculator__capture {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease forwards;
  animation: fadeInUp 0.8s ease forwards;
}

.calculator__capture {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.benefits {
  padding: 60px 0;
  font-family: "Commissioner", sans-serif;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.benefits__title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--orange)), to(var(--green)));
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 2px;
}

.benefits__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  padding: 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.benefit-card__inner {
  padding: 40px 30px;
  position: relative;
  z-index: 3;
}

.benefit-card__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}

.icon-wrapper {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green), var(--accent-dark));
  border-radius: 20px;
  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: white;
  position: relative;
  z-index: 2;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 10px 25px rgba(124, 181, 24, 0.3);
  box-shadow: 0 10px 25px rgba(124, 181, 24, 0.3);
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(124, 181, 24, 0.2), rgba(251, 97, 7, 0.2));
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.benefit-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.benefit-card__description {
  color: var(--text);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  opacity: 0.9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Hover эффекты */
.benefit-card:hover {
  -webkit-transform: translateY(-15px) scale(1.02);
  -ms-transform: translateY(-15px) scale(1.02);
  transform: translateY(-15px) scale(1.02);
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.benefit-card:hover .icon-wrapper {
  -webkit-transform: rotate(0deg) scale(1.1);
  -ms-transform: rotate(0deg) scale(1.1);
  transform: rotate(0deg) scale(1.1);
  -webkit-box-shadow: 0 15px 30px rgba(124, 181, 24, 0.4);
  box-shadow: 0 15px 30px rgba(124, 181, 24, 0.4);
}

.benefit-card:hover .icon-bg {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}

.benefit-card:hover .benefit-card__name {
  color: var(--green);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.benefit-card:hover .benefit-card__description {
  opacity: 1;
}

/* Эффекты свечения и анимации */
.benefit-card__hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 181, 24, 0.1), rgba(251, 97, 7, 0.1));
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.benefit-card:hover .benefit-card__hover-effect {
  opacity: 1;
}

.benefit-card__glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--green), var(--orange), var(--green));
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  -webkit-filter: blur(15px);
  filter: blur(15px);
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.benefit-card:hover .benefit-card__glow {
  opacity: 0.6;
}

/* Анимация появления */
.benefit-card {
  opacity: 0;
  -webkit-transform: translateY(50px) rotate(2deg);
  -ms-transform: translateY(50px) rotate(2deg);
  transform: translateY(50px) rotate(2deg);
  -webkit-animation: cardAppear 1s ease forwards;
  animation: cardAppear 1s ease forwards;
}

.benefit-card:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@-webkit-keyframes cardAppear {
  to {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes cardAppear {
  to {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
}
/* Адаптивность */
@media (max-width: 1024px) {
  .benefits__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .benefits__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .benefits {
    padding: 40px 0;
    background-image: none !important;
  }
  .benefits__title {
    font-size: 2.2rem;
    margin-bottom: 60px;
  }
  .benefit-card__inner {
    padding: 30px 25px;
  }
  .benefit-card__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }
}
@media (max-width: 640px) {
  .benefits__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
  }
  .benefits__title {
    font-size: 2rem;
  }
  .benefit-card__inner {
    padding: 25px 20px;
  }
  .benefit-card__icon {
    width: 60px;
    height: 60px;
  }
  .benefit-card__name {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .benefits__title {
    font-size: 1.8rem;
  }
  .benefit-card__inner {
    padding: 20px 15px;
  }
  .benefit-card__name {
    font-size: 1.2rem;
  }
  .benefit-card__description {
    font-size: 1rem;
  }
}
.about {
  padding: 60px 0;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

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

.about__header {
  margin-bottom: 50px;
  text-align: center;
}

/* Стили для нового блока с информацией о компании */
.about__company-info {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 40px;
  background: var(--light);
  border-radius: 25px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(124, 181, 24, 0.1);
  position: relative;
}

.about__company-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--green)), to(var(--orange)));
  background: linear-gradient(180deg, var(--green), var(--orange));
  border-radius: 2px 0 0 2px;
}

.about__company-content {
  max-width: 900px;
  margin: 0 auto;
}

.about__company-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text);
}

.about__company-text:last-child {
  margin-bottom: 0;
}

.about__company-text strong {
  color: var(--green);
  font-weight: 600;
}

.about__company-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid rgba(124, 181, 24, 0.2);
}

.about__company-conclusion {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
  text-align: center;
}

.about__company-guarantee {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.8;
  text-align: center;
  margin: 0;
}

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

.about__card {
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 181, 24, 0.1);
}

.about__card--main {
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 4px solid var(--orange);
}

.about__card--feature {
  background: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  border-top: 4px solid var(--green);
}

.about__card--highlight {
  background: linear-gradient(135deg, var(--primary-light), rgba(124, 181, 24, 0.15));
  color: var(--text);
  border-top: 4px solid var(--orange);
}

.about__card--guarantee {
  background: linear-gradient(135deg, var(--dark), #2c3e50);
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  border-top: 4px solid var(--green);
}

.about__card-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.about__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
}

.about__card-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text);
}

.about__icon {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 8px;
  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;
  margin-top: 3px;
}

.about__icon svg {
  width: 16px;
  height: 16px;
  fill: var(--light);
}

.about__feature-text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.about__badge {
  position: absolute;
  top: 0;
  right: 30px;
  background: var(--orange);
  color: var(--light);
  padding: 8px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.about__highlight-text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.about__highlight-text strong {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--orange);
}

.about__years {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-dark);
  font-family: "Playfair Display", serif;
}

.about__guarantee-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.about__guarantee-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--light);
}

.about__guarantee-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  color: var(--light);
}

/* Эффекты при наведении */
.about__card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about__company-info:hover {
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 968px) {
  .about__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .about__card--main {
    grid-column: auto;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
  .about__company-info {
    padding: 30px 25px;
    margin-bottom: 40px;
    border-radius: 20px;
  }
  .about__company-text {
    font-size: 1rem;
  }
  .about__company-conclusion {
    font-size: 1.1rem;
  }
  .about__grid {
    gap: 20px;
  }
  .about__card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  .about__card--main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .about__card-title {
    font-size: 1.3rem;
  }
  .about__card-text {
    font-size: 1rem;
  }
  .about__feature-text {
    font-size: 1rem;
  }
  .about__years {
    font-size: 2.5rem;
  }
  .about__guarantee-text {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .about__company-info {
    padding: 20px;
    margin-bottom: 30px;
  }
  .about__company-text {
    font-size: 0.95rem;
  }
  .about__card {
    padding: 20px;
  }
  .about__card--guarantee {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .about__years {
    font-size: 2rem;
  }
  .about__badge {
    right: 20px;
    padding: 6px 15px;
    font-size: 0.8rem;
  }
}
/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.about__company-info,
.about__card {
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease forwards;
  animation: fadeInUp 0.8s ease forwards;
}

.about__card--feature {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.about__card--highlight {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.about__card--guarantee {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.portfolio {
  border-radius: 20px;
  padding: 60px 0px;
}

.portfolio-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.service-cards-container {
  margin: 0 auto;
  max-width: 1200px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--light);
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 30px rgba(26, 26, 26, 0.1);
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.1);
  overflow: hidden;
  -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;
}

.service-card:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 15px 45px rgba(26, 26, 26, 0.15);
  box-shadow: 0 15px 45px rgba(26, 26, 26, 0.15);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 500%;
  height: 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;
}

.slide {
  width: 20%;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

.slider-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(26, 26, 26, 0.7);
  color: var(--light);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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: 10;
}

.slider-nav:hover {
  background: var(--accent);
  -webkit-transform: translateY(-50%) scale(1.1);
  -ms-transform: translateY(-50%) scale(1.1);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--dark);
  color: var(--light);
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: bold;
  font-size: 14px;
  z-index: 10;
}

.service-content {
  padding: 20px;
}

.service-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-specs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.spec-item {
  background: var(--gray);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.spec-label {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
}

.spec-value.accent {
  color: var(--accent);
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.price-range {
  background: var(--primary-light);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 3px solid var(--accent);
}

.price-range-label {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-range-value {
  font-size: 16px;
  font-weight: bold;
  color: var(--green);
}

.service-button {
  width: 100%;
  background: var(--green);
  color: var(--light);
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-button:hover {
  background: var(--accent-dark);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(35, 194, 41, 0.3);
  box-shadow: 0 8px 25px rgba(35, 194, 41, 0.3);
}

.service-button:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio {
    padding: 20px;
  }
  .portfolio-title {
    font-size: 2rem;
  }
  .service-cards-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .service-card {
    margin: 0 10px;
    border-radius: 12px;
  }
  .slider-container {
    height: 200px;
  }
  .service-content {
    padding: 15px;
  }
  .service-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .service-specs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .spec-item {
    padding: 8px;
  }
  .spec-value {
    font-size: 12px;
  }
  .spec-label {
    font-size: 10px;
  }
  .price-range {
    padding: 10px;
    margin-bottom: 12px;
  }
  .price-range-value {
    font-size: 14px;
  }
  .price-range-label {
    font-size: 10px;
  }
  .service-description {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .service-button {
    padding: 10px;
    font-size: 12px;
  }
  .slider-nav {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .slider-prev {
    left: 8px;
  }
  .slider-next {
    right: 8px;
  }
  .price-badge {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 12px;
  }
}
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light) 0%, #f8fdf8 100%);
  position: relative;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta-content {
  padding-right: 40px;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 40px;
}

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

.benefit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light);
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 181, 24, 0.1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--green);
  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;
  color: var(--light);
  font-size: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.benefit-item span {
  font-family: "Commissioner", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
}

.cta-form-container {
  background: var(--light);
  padding: 40px;
  border-radius: 25px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(124, 181, 24, 0.1);
  border-top: 4px solid var(--green);
}

.cta-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;
}

.form-group {
  position: relative;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 2px solid var(--gray);
  border-radius: 15px;
  background: var(--light);
  color: var(--text);
  font-size: 1rem;
  font-family: "Commissioner", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--green);
  -webkit-box-shadow: 0 0 0 3px rgba(124, 181, 24, 0.1);
  box-shadow: 0 0 0 3px rgba(124, 181, 24, 0.1);
}

.input-wrapper input::-webkit-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-wrapper input::-moz-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-wrapper input:-ms-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-wrapper input::-ms-input-placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-wrapper input::placeholder {
  color: var(--text);
  opacity: 0.6;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--text);
  opacity: 0.6;
  z-index: 2;
  width: 20px;
  height: 20px;
  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;
  pointer-events: none;
}

.checkbox-group {
  margin: 10px 0;
}

.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: "Commissioner", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray);
  border-radius: 4px;
  background: var(--light);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 2px;
  -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;
}

.checkbox-label input:checked + .checkbox-custom {
  border-color: var(--green);
  background: var(--green);
}

.checkbox-label input:checked + .checkbox-custom::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  background: var(--light);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.privacy-link {
  color: var(--green);
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--accent-dark);
}

.submit-btn {
  background: linear-gradient(135deg, var(--green), var(--accent-dark));
  color: var(--light);
  border: none;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Commissioner", sans-serif;
  margin-top: 10px;
}

.submit-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 25px rgba(124, 181, 24, 0.4);
  box-shadow: 0 10px 25px rgba(124, 181, 24, 0.4);
}

.privacy-note {
  text-align: center;
  font-family: "Commissioner", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  margin-top: 15px;
}

/* Адаптивность */
@media (max-width: 968px) {
  .cta-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-content {
    padding-right: 0;
    text-align: center;
  }
  .cta-title {
    font-size: 2rem;
  }
  .benefit-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }
  .cta-title {
    font-size: 1.8rem;
  }
  .cta-form-container {
    padding: 30px 25px;
  }
}
@media (max-width: 480px) {
  .cta-title {
    font-size: 1.5rem;
  }
  .cta-form-container {
    padding: 25px 20px;
  }
  .input-wrapper input {
    padding: 16px 20px 16px 45px;
  }
  .submit-btn {
    padding: 16px 25px;
    font-size: 1rem;
  }
  .benefit-item {
    padding: 15px;
  }
  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.contacts {
  padding: 60px 0;
  position: relative;
}

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

.contacts__map {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 25px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(124, 181, 24, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacts__map:hover {
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.contacts__left {
  background: var(--light);
  padding: 50px 40px;
  border-radius: 25px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(124, 181, 24, 0.1);
  border-top: 4px solid var(--green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

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

.contacts__phone-item {
  background: linear-gradient(135deg, rgba(124, 181, 24, 0.05), rgba(124, 181, 24, 0.02));
  padding: 25px;
  border-radius: 20px;
  border: 2px solid rgba(124, 181, 24, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacts__phone-item:hover {
  border-color: var(--green);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 25px rgba(124, 181, 24, 0.15);
  box-shadow: 0 10px 25px rgba(124, 181, 24, 0.15);
}

.contacts__phone-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.contacts__icon {
  width: 50px;
  height: 50px;
  background: var(--green);
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--light);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacts__phone-item:hover .contacts__icon {
  background: var(--accent-dark);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.contacts__icon svg {
  width: 24px;
  height: 24px;
}

.contacts__phone-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contacts__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(124, 181, 24, 0.05), rgba(124, 181, 24, 0.02));
  border-radius: 20px;
  border: 2px solid rgba(124, 181, 24, 0.1);
  text-decoration: none;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacts__phone:hover {
  border-color: var(--green);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 25px rgba(124, 181, 24, 0.15);
  box-shadow: 0 10px 25px rgba(124, 181, 24, 0.15);
  color: var(--green);
}

.contacts__phone:hover .contacts__icon {
  background: var(--accent-dark);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.contacts__phone:first-of-type {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.contacts__phone:first-of-type:hover {
  color: var(--green);
}

.contacts__phone-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  margin-top: 8px;
  font-weight: 400;
}

/* Анимации */
.contacts__map,
.contacts__left {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease forwards;
  animation: fadeInUp 0.8s ease forwards;
}

.contacts__left {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Адаптивность */
@media (max-width: 968px) {
  .contacts__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }
  .contacts__map {
    min-height: 400px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .contacts__left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .contacts {
    padding: 60px 0;
  }
  .contacts__phone-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .contacts__phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
  .contacts__phone:first-of-type {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .contacts__left {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .contacts__phone-item {
    padding: 20px;
  }
  .contacts__phone {
    padding: 15px;
  }
  .contacts__icon {
    width: 40px;
    height: 40px;
  }
  .contacts__icon svg {
    width: 20px;
    height: 20px;
  }
}
/* Специальные стили для iframe карты */
.contacts__map iframe {
  border-radius: 25px;
  width: 100%;
  height: 100%;
  border: none;
}

/* Эффекты при наведении для всех элементов */
.contacts__phone-item,
.contacts__phone {
  cursor: pointer;
}

.contacts__phone-item:active,
.contacts__phone:active {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

/* Плавные переходы */
.contacts__phone-item,
.contacts__phone,
.contacts__map,
.contacts__icon {
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
  background: var(--gray);
  color: var(--text);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* Стили для логотипа в первой колонке */
.footer-logo {
  margin-bottom: 25px;
}

.footer-logo-image {
  width: 150px;
  height: 100px;
  background: var(--light);
  border-radius: 15px;
  padding: 15px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(124, 181, 24, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-logo-image:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--green);
}

.footer-logo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -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;
}

.footer-logo-image:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.footer-description {
  margin: 20px 0;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 300px;
  font-size: 1rem;
  color: var(--text);
}

.footer-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--green);
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
}

.footer-links i {
  margin-right: 12px;
  color: var(--green);
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

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

.footer-contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 12px 15px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.footer-contact-link:hover {
  opacity: 1;
  color: var(--green);
  background: var(--primary-light);
  border-color: var(--green);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
  -webkit-box-shadow: var(--shadow-hover);
  box-shadow: var(--shadow-hover);
}

.footer-contact-link i {
  color: var(--green);
  font-size: 1.1rem;
  margin-right: 15px;
  margin-top: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
}

.footer-contact-link span {
  line-height: 1.5;
  color: var(--text);
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 25px 20px 0;
  border-top: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.copyright {
  opacity: 0.8;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.95rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--green);
}

/* Адаптивность */
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }
  .footer-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }
  .footer-logo-image {
    margin: 0 auto;
    width: 120px;
    height: 80px;
    padding: 10px;
  }
  .footer-description {
    margin: 20px auto;
  }
  .footer-heading::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .footer-contact-link {
    padding: 10px 12px;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-top: 40px;
  }
  .footer-bottom-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .footer-contact-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .footer-contact-link i {
    margin-right: 0;
  }
  .footer-bottom-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .footer-logo-image {
    width: 100px;
    height: 70px;
  }
}
/* Анимация появления логотипа */
@-webkit-keyframes fadeInLogo {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.9);
    transform: translateY(-20px) scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeInLogo {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.9);
    transform: translateY(-20px) scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
.footer-logo-image {
  -webkit-animation: fadeInLogo 0.8s ease-out;
  animation: fadeInLogo 0.8s ease-out;
}/*# sourceMappingURL=main.css.map */
