@charset "UTF-8";
:root {
  --font-family:"Montserrat", "Comfortaa", "Open Sans", sans-serif;
  --content-width: 1470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #4CAF50;
  --accent-color: #FFB13D;
  --text-dark: #333333;
  --text-light: #666666;
  --background: #FFFFFF;
  --border: #E0E0E0;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --soft-green: #f0f9f0;
  --card-bg: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 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: "Comfortaa";
  src: url("../fonts/Comfortaa-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  src: url("../fonts/Comfortaa-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  src: url("../fonts/comfortaa-cyrillic-ext-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  src: url("../fonts/Comfortaa-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "RussoOne";
  src: url("../fonts/RussoOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* 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;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary-color)), color-stop(50%, var(--primary-light)), to(var(--accent-color)));
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header.scrolled::before {
  opacity: 1;
}

.header.hidden {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 85px;
  gap: 30px;
}

/* Burger Menu */
.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  border-radius: 8px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  margin-left: auto;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.burger:hover {
  background: var(--soft-green);
}

.burger__line {
  width: 26px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger.active .burger__line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}

.burger.active .burger__line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
  -ms-transform: rotate(-45deg) translate(7px, -7px);
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Logo */
.header__brand {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--soft-green);
  border-radius: 12px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.header__logo:hover::before {
  opacity: 1;
}

.logo__icon {
  width: 100px;
  height: 60px;
}

.header__logo:hover .logo__icon {
  -webkit-transform: scale(1.1) rotate(-5deg);
  -ms-transform: scale(1.1) rotate(-5deg);
  transform: scale(1.1) rotate(-5deg);
}

.logo__text {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 18px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.nav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--soft-green) 0%, rgba(76, 175, 80, 0.1) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.nav__link:hover::before {
  opacity: 1;
}

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

.nav__link .material-icons {
  position: relative;
  z-index: 1;
  font-size: 18px;
  margin-right: 6px;
}

/* Header Contacts */
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.contact-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.contact-phone:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.contact-phone__icon {
  font-size: 22px;
  color: var(--primary-color);
  position: relative;
  -webkit-animation: phoneRing 2s ease-in-out infinite;
  animation: phoneRing 2s ease-in-out infinite;
}

@-webkit-keyframes phoneRing {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  30% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  40% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes phoneRing {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  30% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  40% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* Reviews Link */
.reviews-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reviews-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff3cd 0%, rgba(255, 243, 205, 0.3) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.reviews-link:hover::before {
  opacity: 1;
}

.reviews-link:hover {
  color: #e6a700;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.reviews-link .material-icons {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: #e6a700;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  background: white;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-menu.active {
  max-height: 600px;
}

.mobile-nav__list {
  list-style: none;
  padding: 20px;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--border);
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav__item {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.active .mobile-nav__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav__item:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.mobile-menu.active .mobile-nav__item:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav__item:nth-child(4) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.mobile-menu.active .mobile-nav__item:nth-child(5) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav__item:nth-child(6) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.mobile-nav__item:last-child {
  border-bottom: none;
}

.mobile-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-nav__link:active {
  background: var(--soft-green);
  color: var(--primary-color);
}

.mobile-nav__link .material-icons {
  font-size: 20px;
  margin-right: 10px;
}

.mobile-contacts {
  padding: 25px 20px;
  border-top: 2px solid var(--soft-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(var(--soft-green)));
  background: linear-gradient(180deg, white 0%, var(--soft-green) 100%);
}

.mobile-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 18px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-phone:active {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.mobile-phone__icon {
  font-size: 26px;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1300px) {
  .header__container {
    gap: 15px;
  }
  .nav__list {
    gap: 2px;
  }
  .nav__link {
    padding: 10px 12px;
    font-size: 14px;
  }
  .nav__link .material-icons {
    font-size: 16px;
    margin-right: 4px;
  }
  .contact-phone {
    font-size: 14px;
    padding: 8px 10px;
  }
  .contact-phone__icon {
    font-size: 20px;
  }
  .reviews-link {
    font-size: 14px;
    padding: 8px 12px;
  }
  .reviews-link .material-icons {
    font-size: 18px;
  }
  .logo__text {
    font-size: 20px;
  }
}
@media (max-width: 1100px) {
  .nav__link .material-icons {
    display: none;
  }
  .nav__link {
    padding: 10px 14px;
    font-size: 13px;
  }
  .reviews-link .material-icons {
    display: none;
  }
  .reviews-link {
    padding: 10px 12px;
    font-size: 13px;
  }
}
@media (max-width: 1025px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .nav {
    display: none;
  }
  .header__contacts {
    display: none;
  }
  .header__brand {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: auto;
  }
  .header__container {
    height: 75px;
  }
  .mobile-menu {
    top: 75px;
  }
  .logo__text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .header__contacts {
    display: none;
  }
}
@media (max-width: 480px) {
  .logo__text {
    font-size: 15px;
  }
  .header__container {
    height: 70px;
    gap: 10px;
  }
  .mobile-menu {
    top: 70px;
  }
}
@media (max-width: 380px) {
  .logo__text {
    font-size: 14px;
  }
  .header__logo {
    gap: 8px;
    padding: 6px 8px;
  }
  .burger {
    padding: 8px;
  }
  .burger__line {
    width: 22px;
  }
}
/* Стили для сайдбара */
.sidebar {
  position: fixed;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.sidebar-button {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  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;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.sidebar-button:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
}

.sidebar-button .material-icons {
  font-size: 24px;
  -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;
}

.sidebar-button:hover .material-icons {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Специальные стили для иконки видео */
.sidebar-button.video .material-icons {
  font-size: 26px; /* Чуть больше для лучшей видимости */
  -webkit-transform: translateX(1px);
  -ms-transform: translateX(1px);
  transform: translateX(1px); /* Смещение для визуального выравнивания */
}

.sidebar-button.video:hover .material-icons {
  -webkit-transform: scale(1.15) translateX(1px);
  -ms-transform: scale(1.15) translateX(1px);
  transform: scale(1.15) translateX(1px); /* Увеличенный масштаб при наведении */
}

/* Тултип */
.tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(51, 51, 51, 0.95);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(51, 51, 51, 0.95);
}

.sidebar-button:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Текст кнопки (для акций) */
.button-text {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #FF5722;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  -webkit-box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

/* Уведомление (бейдж) */
.notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF5722;
  color: white;
  border-radius: 50%;
  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;
  font-size: 11px;
  font-weight: 700;
  -webkit-box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

/* Стили для кнопки видео отзывов */
.sidebar-button.video {
  background: linear-gradient(135deg, #9C27B0, #7B1FA2);
  /* box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4); */
  -webkit-animation: videoPulse 3s ease-in-out infinite;
  animation: videoPulse 3s ease-in-out infinite;
}

.sidebar-button.video:hover {
  background: linear-gradient(135deg, #8E24AA, #6A1B9A);
  /* box-shadow: 0 6px 20px rgba(156, 39, 176, 0.6); */
}

/* Стили для уведомления NEW */
.notification.video-notification {
  background: linear-gradient(135deg, #E91E63, #AD1457);
  -webkit-animation: pulseVideo 2s infinite;
  animation: pulseVideo 2s infinite;
  font-size: 7px;
  width: 30px;
  height: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Анимация пульсации для уведомления */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 3px 12px rgba(255, 87, 34, 0.5);
    box-shadow: 0 3px 12px rgba(255, 87, 34, 0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 3px 12px rgba(255, 87, 34, 0.5);
    box-shadow: 0 3px 12px rgba(255, 87, 34, 0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
  }
}
/* Анимация пульсации для видео уведомления */
@-webkit-keyframes pulseVideo {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
  }
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-box-shadow: 0 3px 15px rgba(233, 30, 99, 0.7);
    box-shadow: 0 3px 15px rgba(233, 30, 99, 0.7);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
  }
}
@keyframes pulseVideo {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
  }
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-box-shadow: 0 3px 15px rgba(233, 30, 99, 0.7);
    box-shadow: 0 3px 15px rgba(233, 30, 99, 0.7);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
  }
}
/* Анимация мигания для кнопки акций */
.blink {
  -webkit-animation: blink 3s ease-in-out infinite;
  animation: blink 3s ease-in-out infinite;
}

@-webkit-keyframes blink {
  0%, 100% {
    -webkit-box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  }
  50% {
    -webkit-box-shadow: 0 4px 20px rgba(255, 152, 0, 0.5);
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.5);
  }
}

@keyframes blink {
  0%, 100% {
    -webkit-box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  }
  50% {
    -webkit-box-shadow: 0 4px 20px rgba(255, 152, 0, 0.5);
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.5);
  }
}
/* Анимация пульсации для кнопки видео */
@-webkit-keyframes videoPulse {
  0%, 100% {
    -webkit-box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 4px 20px rgba(156, 39, 176, 0.7);
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.7);
  }
}
@keyframes videoPulse {
  0%, 100% {
    -webkit-box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 4px 20px rgba(156, 39, 176, 0.7);
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.7);
  }
}
/* Цвета для разных кнопок */
/* .sidebar-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.sidebar-button.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
} */
/* .sidebar-button.calc {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.sidebar-button.calc:hover {
    background: linear-gradient(135deg, #1976D2, #2196F3);
} */
.sidebar-button.phone {
  background: linear-gradient(135deg, #FF9800, #F57C00);
}

.sidebar-button.phone:hover {
  background: linear-gradient(135deg, #F57C00, #FF9800);
}

/* Анимация клика */
.sidebar-button.clicked {
  -webkit-animation: clickAnimation 0.4s ease;
  animation: clickAnimation 0.4s ease;
}

@-webkit-keyframes clickAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes clickAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .sidebar {
    right: 15px;
    gap: 10px;
  }
  .sidebar-button {
    width: 50px;
    height: 50px;
  }
  .sidebar-button .material-icons {
    font-size: 20px;
  }
  /* Адаптация для иконки видео на мобильных */
  .sidebar-button.video .material-icons {
    font-size: 22px;
    -webkit-transform: translateX(0.5px);
    -ms-transform: translateX(0.5px);
    transform: translateX(0.5px);
  }
  .tooltip {
    font-size: 12px;
    padding: 6px 10px;
    right: 60px;
  }
  .sidebar-button:hover .tooltip {
    right: 65px;
  }
  .button-text {
    font-size: 10px;
    padding: 1px 6px;
    top: -15px;
  }
  .notification {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .notification.video-notification {
    width: 24px;
    height: 24px;
    font-size: 6px;
  }
}
@media (max-width: 480px) {
  .sidebar {
    right: 10px;
    gap: 8px;
  }
  .sidebar-button {
    width: 45px;
    height: 45px;
  }
  .sidebar-button .material-icons {
    font-size: 18px;
  }
  /* Адаптация для иконки видео на маленьких экранах */
  .sidebar-button.video .material-icons {
    font-size: 20px;
    -webkit-transform: translateX(0.5px);
    -ms-transform: translateX(0.5px);
    transform: translateX(0.5px);
  }
  .tooltip {
    display: none;
  }
}
/* Анимация появления сайдбара */
.sidebar {
  -webkit-animation: slideIn 0.5s ease-out;
  animation: slideIn 0.5s ease-out;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(50px);
    transform: translateY(-50%) translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(50px);
    transform: translateY(-50%) translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
  }
}
.hero {
  position: relative;
}
.hero__container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  min-height: 720px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 50px 50px 40px;
  text-align: center;
}
.hero__title {
  max-width: 1000px;
  margin: 0 auto 20px;
  font-weight: 400;
  font-size: 52px;
  color: var(--light-color);
  line-height: 110%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero__subtitle {
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 500;
  font-size: 22px;
  color: var(--light-color);
  line-height: 130%;
  letter-spacing: -1%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero__btn {
  display: inline-block;
  width: 400px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 12px;
  font-family: Comfortaa;
  font-weight: 700;
  font-size: 18px;
  color: var(--light-color);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 70px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4), 0 0 0 0 rgba(46, 125, 50, 0.7);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4), 0 0 0 0 rgba(46, 125, 50, 0.7);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.hero__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 25px rgba(46, 125, 50, 0.6), 0 0 0 0 rgba(46, 125, 50, 0.7);
  box-shadow: 0 6px 25px rgba(46, 125, 50, 0.6), 0 0 0 0 rgba(46, 125, 50, 0.7);
  -webkit-animation: none;
  animation: none;
}
.hero__btn:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}
.hero__btn:hover::before {
  left: 100%;
}
.hero__btn-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0 auto 40px;
  max-width: 400px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4), 0 0 0 0 rgba(46, 125, 50, 0.7);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4), 0 0 0 0 rgba(46, 125, 50, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4), 0 0 0 15px rgba(46, 125, 50, 0);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4), 0 0 0 15px rgba(46, 125, 50, 0);
  }
  100% {
    -webkit-box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4), 0 0 0 0 rgba(46, 125, 50, 0);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4), 0 0 0 0 rgba(46, 125, 50, 0);
  }
}

@media (max-width: 1024px) {
  .hero__container {
    min-height: 600px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero__content {
    padding: 30px;
  }
  .hero__title {
    padding-top: 100px;
    font-size: 36px;
    margin-bottom: 15px;
  }
  .hero__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero__btn {
    width: 320px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    margin-bottom: 12px;
  }
  .hero__btn-note {
    font-size: 13px;
    margin-bottom: 30px;
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .hero__container {
    background-size: cover;
    background-position: center;
    min-height: 500px;
  }
  .hero__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .hero__btn {
    width: 280px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .hero__btn-note {
    font-size: 12px;
    margin-bottom: 25px;
    max-width: 280px;
  }
}
.photo-slider-section {
  background: linear-gradient(160deg, #ffffff, #f5fcf5);
  padding-top: 50px;
}

.custom-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

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

.slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.slider-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
  padding: 10px 0;
}

.slider-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #4CAF50;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.slider-pagination-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-pagination-dot.active {
  background: #4CAF50;
  border-color: #4CAF50;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

@media (orientation: landscape) {
  .photo-slider-section {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .slider-wrapper {
    height: 450px;
    max-width: 90%;
    margin: 0 auto;
  }
  .slide-image {
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
  }
  .slider-pagination {
    bottom: 15px;
    padding: 8px 0;
  }
  .slider-pagination-dot {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .photo-slider-section {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .slider-wrapper {
    height: 350px;
    max-width: 95%;
  }
  .slider-pagination {
    bottom: 10px;
    padding: 6px 0;
    gap: 8px;
  }
  .slider-pagination-dot {
    width: 7px;
    height: 7px;
    border-width: 1px;
  }
}
@media (max-width: 700px) and (orientation: landscape) {
  .slider-wrapper {
    height: 300px;
  }
  .slider-pagination {
    bottom: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slider-wrapper {
    height: 480px;
  }
  .slider-pagination {
    bottom: 30px;
    padding: 15px 0;
  }
  .slider-pagination-dot {
    width: 12px;
    height: 12px;
  }
  .slide-image {
    -o-object-fit: contain;
    object-fit: contain;
    background-color: #f8f8f8;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .slider-wrapper {
    height: 650px;
  }
  .slider-pagination {
    bottom: 25px;
  }
}
@media (max-width: 767px) {
  .photo-slider-section {
    padding-top: 35px;
  }
  .slider-wrapper {
    height: 350px;
    position: relative;
    overflow: hidden;
  }
  .slider-slide {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .slide-image {
    -o-object-fit: contain;
    object-fit: contain;
    background-color: #f5f5f5;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .slider-pagination {
    bottom: 15px;
    padding: 8px 0;
    gap: 6px;
  }
  .slider-pagination-dot {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 480px) {
  .slider-wrapper {
    height: 280px;
  }
  .slider-pagination {
    bottom: 12px;
    padding: 6px 0;
  }
  .slider-pagination-dot {
    width: 7px;
    height: 7px;
    border-width: 1.5px;
  }
}
@media (min-width: 1201px) {
  .slider-wrapper {
    height: 600px;
  }
  .slider-pagination {
    bottom: 20px;
  }
}
@supports (-webkit-touch-callout: none) {
  .slider-slide,
  .slide-image {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slider-slide.active {
  opacity: 1;
  visibility: visible;
}

.slider-slide:not(.active) {
  opacity: 0;
  visibility: hidden;
}

/* Отключение скролла при открытом модальном окне */
body.no-scroll {
  overflow: hidden;
}

/* Стили для модального окна */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-animation: fadeIn 0.3s;
  animation: fadeIn 0.3s;
}

.video-modal-content {
  position: relative;
  margin: auto;
  width: auto;
  max-width: 90%;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
}

.video-player {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  background-color: #000;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Кнопка закрытия */
.video-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  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: 1001;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.video-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* Анимация появления */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Адаптивность */
@media (max-width: 768px) {
  .video-modal-content {
    max-width: 95%;
  }
  .video-player {
    max-height: 85vh;
  }
  .video-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .video-player {
    max-height: 80vh;
    border-radius: 4px;
  }
}
.advantages {
  padding: 40px 0 80px;
  background: linear-gradient(160deg, #f5fcf5, #ebf9eb);
}

.advantages__title {
  font-size: 42px;
  font-weight: 400;
  color: var(--text-dark, #333);
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}

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

.advantage-card {
  text-align: center;
  padding: 25px 15px;
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid var(--border, #e0e0e0);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.advantage-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color, #2e7d32) 0%, var(--primary-dark, #1b5e20) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 8px 0 0 8px;
  font-weight: 700;
  font-size: 16px;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.advantage-card__badge::before {
  content: counter(advantage-counter);
  counter-increment: advantage-counter;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color, #2e7d32) 0%, var(--primary-dark, #1b5e20) 100%);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.advantage-card:hover {
  -webkit-transform: translateY(-8px) scale(1.02);
  -ms-transform: translateY(-8px) scale(1.02);
  transform: translateY(-8px) scale(1.02);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(46, 125, 50, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(46, 125, 50, 0.2);
}

.advantage-card:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.advantage-card:hover::after {
  width: 150%;
  height: 150%;
}

.advantage-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--soft-green, #e8f5e9);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.advantage-card:hover .advantage-card__icon {
  background: linear-gradient(135deg, var(--primary-color, #2e7d32) 0%, var(--primary-dark, #1b5e20) 100%);
  -webkit-transform: scale(1.1) rotate(5deg);
  -ms-transform: scale(1.1) rotate(5deg);
  transform: scale(1.1) rotate(5deg);
  -webkit-box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.advantage-card__icon .material-icons {
  font-size: 28px;
  color: var(--primary-dark, #1b5e20);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.advantage-card:hover .material-icons {
  color: white;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.advantage-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark, #333);
  margin-bottom: 10px;
  line-height: 1.3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.advantage-card:hover .advantage-card__title {
  color: var(--primary-dark, #1b5e20);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.advantage-card__text {
  font-size: 16px;
  color: var(--text-light, #666);
  line-height: 1.5;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.advantage-card:hover .advantage-card__text {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.advantage-card:active {
  -webkit-transform: translateY(-4px) scale(1.01);
  -ms-transform: translateY(-4px) scale(1.01);
  transform: translateY(-4px) scale(1.01);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

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

@keyframes cardSlideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.advantages__grid {
  counter-reset: advantage-counter;
}

.advantage-card {
  -webkit-animation: cardSlideUp 0.6s ease-out;
  animation: cardSlideUp 0.6s ease-out;
}

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

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

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

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

@media (max-width: 992px) {
  .advantages {
    padding: 30px 0;
  }
  .advantages__title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .advantages__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .advantage-card {
    padding: 20px 15px;
  }
  .advantage-card__badge {
    width: 50px;
    height: 50px;
    font-size: 14px;
    padding: 6px 0 0 6px;
  }
  .advantage-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .advantage-card__icon .material-icons {
    font-size: 24px;
  }
  .advantage-card__title {
    font-size: 18px;
  }
  .advantage-card__text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding: 25px 0;
  }
  .advantages__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .advantages__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
  }
  .advantage-card {
    padding: 20px 15px;
  }
  .advantage-card__badge {
    width: 45px;
    height: 45px;
    font-size: 13px;
    padding: 5px 0 0 5px;
  }
  .advantage-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .advantage-card__icon .material-icons {
    font-size: 24px;
  }
  .advantage-card__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .advantage-card__text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .advantages {
    padding: 20px 0;
  }
  .advantages__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .advantage-card {
    padding: 18px 12px;
  }
  .advantage-card__badge {
    width: 40px;
    height: 40px;
    font-size: 12px;
    padding: 4px 0 0 4px;
  }
  .advantage-card:hover {
    -webkit-transform: translateY(-4px) scale(1.01);
    -ms-transform: translateY(-4px) scale(1.01);
    transform: translateY(-4px) scale(1.01);
  }
}
.about-section {
  min-height: 500px;
  padding: 60px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
  z-index: 0;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-image: url("../img/back-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

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

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.2;
  color: white;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  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: 40px;
}

.about-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin: 0;
  font-size: 18px;
  margin-bottom: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-weight: 400;
}

.about-text p:first-child {
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 28px;
}

.about-text p:last-of-type {
  font-weight: 500;
  color: white;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-color);
  background: rgba(16, 185, 129, 0.1);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 10px;
}

.cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #34d399 100%);
  color: white;
  padding: 16px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0d9668 0%, #2abf8a 100%);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.cta-button .material-icons {
  font-size: 20px;
  -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;
}

.cta-button:hover .material-icons {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}

.stats-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
  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;
}

.stat-item {
  text-align: center;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 140px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.1)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.35);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 12px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1;
  letter-spacing: -0.5px;
  position: relative;
}

.stat-number::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--accent-color)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 2px;
}

.stat-label {
  font-size: 16px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.3px;
  max-width: 200px;
}

/* Анимация появления для статистики */
@-webkit-keyframes statAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes statAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.stat-item:nth-child(1) {
  -webkit-animation: statAppear 0.6s ease 0.1s both;
  animation: statAppear 0.6s ease 0.1s both;
}

.stat-item:nth-child(2) {
  -webkit-animation: statAppear 0.6s ease 0.3s both;
  animation: statAppear 0.6s ease 0.3s both;
}

.stat-item:nth-child(3) {
  -webkit-animation: statAppear 0.6s ease 0.5s both;
  animation: statAppear 0.6s ease 0.5s both;
}

@media (max-width: 1024px) {
  .about-section {
    min-height: 450px;
    padding: 25px 0;
  }
  .about-header {
    margin-bottom: 30px;
  }
  .about-header h2 {
    font-size: 38px;
    margin-bottom: 12px;
  }
  .about-content {
    gap: 30px;
  }
  .about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .about-text p:first-child {
    font-size: 18px;
    margin-bottom: 22px;
  }
  .stats-container {
    gap: 18px;
  }
  .stat-item {
    padding: 28px 22px;
    min-height: 130px;
    border-radius: 14px;
  }
  .stat-number {
    font-size: 38px;
    margin-bottom: 10px;
  }
  .stat-label {
    font-size: 15px;
  }
  .cta-button {
    padding: 14px 30px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .about-section {
    min-height: 400px;
    padding: 20px 0;
  }
  .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
  .stats-container {
    gap: 16px;
    width: 100%;
  }
  .stat-item {
    padding: 25px 20px;
    min-height: 120px;
    border-radius: 12px;
  }
  .stat-number {
    font-size: 34px;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 14px;
    max-width: 180px;
  }
  .about-header {
    margin-bottom: 25px;
  }
  .about-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .about-text p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .about-text p:first-child {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 14px;
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .parallax-container,
  .parallax-bg {
    height: 100%;
  }
}
@media (max-width: 480px) {
  .about-section {
    min-height: 350px;
    padding: 15px 0;
  }
  .about-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .about-text p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .about-text p:first-child {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .stats-container {
    gap: 14px;
  }
  .stat-item {
    padding: 22px 18px;
    min-height: 110px;
    border-radius: 10px;
  }
  .stat-number {
    font-size: 30px;
    margin-bottom: 6px;
  }
  .stat-number::after {
    width: 35px;
    height: 2px;
    bottom: -4px;
  }
  .stat-label {
    font-size: 13px;
    max-width: 160px;
  }
  .cta-button {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about-content {
    gap: 20px;
  }
  .about-header {
    margin-bottom: 20px;
  }
}
@media (max-width: 360px) {
  .about-section {
    min-height: 320px;
    padding: 10px 0;
  }
  .about-header h2 {
    font-size: 24px;
  }
  .about-text p {
    font-size: 14px;
  }
  .about-text p:first-child {
    font-size: 15px;
  }
  .stats-container {
    gap: 12px;
  }
  .stat-item {
    padding: 20px 15px;
    min-height: 100px;
  }
  .stat-number {
    font-size: 26px;
  }
  .stat-label {
    font-size: 12px;
    max-width: 140px;
  }
  .cta-button {
    padding: 10px 16px;
    font-size: 12px;
  }
}
.portfolio {
  padding: 40px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0f9f0));
  background: linear-gradient(to bottom, #fff, #f0f9f0);
}

.portfolio-title {
  margin: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Стили для табов */
.portfolio-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.tab-btn:hover {
  background: var(--soft-green);
  border-color: var(--primary-light);
}

.tab-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Контент табов */
.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Сетка галереи */
.portfolio-grid {
  margin: 0 auto;
  max-width: 1200px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  -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;
  background: white;
  aspect-ratio: 4/3;
}

.portfolio-item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.portfolio-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

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

.portfolio-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent-color);
  color: white;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
}

/* Адаптивность */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .portfolio {
    padding: 40px 0;
  }
  .portfolio-title {
    font-size: 28px;
  }
  .portfolio-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .portfolio-tabs {
    gap: 8px;
    margin-bottom: 25px;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .portfolio-badge {
    top: 5px;
    right: 5px;
    padding: 4px 6px;
    font-size: 9px;
  }
}
.process {
  padding: 40px 0 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f9f0), to(#fff));
  background: linear-gradient(to bottom, #f0f9f0, #fff);
}

.process-title {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 42px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.process-steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  text-align: center;
  padding: 25px 15px;
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding-top: 70px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.process-step:hover {
  -webkit-transform: translateY(-8px) scale(1.02);
  -ms-transform: translateY(-8px) scale(1.02);
  transform: translateY(-8px) scale(1.02);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(46, 125, 50, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(46, 125, 50, 0.2);
}

.process-step:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.process-step:hover::after {
  width: 150%;
  height: 150%;
}

.step-badge {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 60px;
  background: var(--soft-green);
  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: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  border-bottom: 3px solid var(--primary-light);
}

.process-step:hover .step-badge {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  -webkit-transform: translateX(-50%) scale(1.05);
  -ms-transform: translateX(-50%) scale(1.05);
  transform: translateX(-50%) scale(1.05);
  -webkit-box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.step-content {
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.process-step:hover .step-title {
  color: var(--primary-dark);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.step-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0 0 15px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.process-step:hover .step-description {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.step-feature {
  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: 8px;
  padding: 10px 12px;
  background: var(--soft-green);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.step-feature .material-icons {
  font-size: 18px;
  color: var(--accent-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.process-step:hover .step-feature {
  background: var(--primary-light);
  color: white;
}

.process-step:hover .step-feature .material-icons {
  color: white;
}

.process-step:active {
  -webkit-transform: translateY(-4px) scale(1.01);
  -ms-transform: translateY(-4px) scale(1.01);
  transform: translateY(-4px) scale(1.01);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@keyframes cardSlideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.process-step {
  -webkit-animation: cardSlideUp 0.6s ease-out;
  animation: cardSlideUp 0.6s ease-out;
}

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

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

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

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

@media (max-width: 1024px) {
  .process-steps {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .process-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .process-step {
    padding: 20px 15px;
    padding-top: 60px;
  }
  .step-badge {
    height: 50px;
    font-size: 20px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-description {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .process {
    padding: 30px 0;
  }
  .process-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .process-steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
  }
  .process-step {
    padding: 20px 15px;
    padding-top: 55px;
  }
  .step-badge {
    height: 45px;
    font-size: 18px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  }
  .step-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .step-description {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .process {
    padding: 20px 0;
  }
  .process-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .process-step {
    padding: 18px 12px;
    padding-top: 50px;
  }
  .step-badge {
    height: 40px;
    font-size: 16px;
  }
  .process-step:hover {
    -webkit-transform: translateY(-4px) scale(1.01);
    -ms-transform: translateY(-4px) scale(1.01);
    transform: translateY(-4px) scale(1.01);
  }
}
@media (max-width: 360px) {
  .process-step {
    padding: 15px 10px;
    padding-top: 45px;
  }
  .step-badge {
    height: 35px;
    font-size: 14px;
  }
  .step-title {
    font-size: 16px;
  }
  .step-description {
    font-size: 13px;
  }
}
.city {
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f9f0), to(#fff));
  background: linear-gradient(to bottom, #f0f9f0, #fff);
  padding: 40px 15px;
}

.game-section {
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 20px;
  position: relative;
}

.game-header {
  text-align: center;
  margin-bottom: 40px;
}

.game-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

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

.search-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.search-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-light);
  z-index: 0;
  font-size: 20px;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.15);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.15);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.search-input::-webkit-input-placeholder {
  color: var(--text-light);
}

.search-input::-moz-placeholder {
  color: var(--text-light);
}

.search-input:-ms-input-placeholder {
  color: var(--text-light);
}

.search-input::-ms-input-placeholder {
  color: var(--text-light);
}

.search-input::placeholder {
  color: var(--text-light);
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1001;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: none;
}

.autocomplete-item {
  padding: 14px 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: var(--soft-green);
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

.autocomplete-item.highlighted {
  background: var(--primary-light);
  color: white;
}

.autocomplete-item .material-icons {
  font-size: 18px;
  color: var(--primary-color);
}

.autocomplete-item.highlighted .material-icons {
  color: white;
}

.search-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.search-button:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.search-button:active {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.map-container {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

#realMap {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Стили для маркеров */
.custom-marker {
  background: var(--primary-color);
  border: 3px solid white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-marker:hover {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  background: var(--accent-color);
}

.custom-marker.active {
  background: var(--accent-color);
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  -webkit-animation: pulse-sity 1.5s infinite;
  animation: pulse-sity 1.5s infinite;
}

.leaflet-popup-content {
  font-family: inherit;
  font-size: 14px;
}

.leaflet-popup-content-wrapper {
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.results-section {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, var(--soft-green) 0%, rgba(232, 245, 233, 0.8) 100%);
  border-radius: 12px;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.city-result {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-message {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.instructions {
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 12px;
}

.legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

@-webkit-keyframes pulse-sity {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 61, 0.7);
    box-shadow: 0 0 0 0 rgba(255, 177, 61, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 12px rgba(255, 177, 61, 0);
    box-shadow: 0 0 0 12px rgba(255, 177, 61, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 61, 0);
    box-shadow: 0 0 0 0 rgba(255, 177, 61, 0);
  }
}

@keyframes pulse-sity {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 61, 0.7);
    box-shadow: 0 0 0 0 rgba(255, 177, 61, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 12px rgba(255, 177, 61, 0);
    box-shadow: 0 0 0 12px rgba(255, 177, 61, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 177, 61, 0);
    box-shadow: 0 0 0 0 rgba(255, 177, 61, 0);
  }
}
@media (max-width: 768px) {
  .city {
    padding: 10px 15px;
  }
  .game-section {
    padding: 10px 0px;
    border-radius: 16px;
  }
  .game-title {
    font-size: 2rem;
  }
  .map-container {
    height: 400px;
  }
  .search-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .search-container {
    min-width: 100%;
  }
  .instructions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    font-size: 0.75rem;
  }
  .search-button {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .results-section {
    padding: 12px;
    min-height: 60px;
  }
  .city-result {
    font-size: 1.3rem;
  }
  .result-message {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .game-title {
    font-size: 1.8rem;
  }
  .map-container {
    height: 350px;
  }
  .city-result {
    font-size: 1.2rem;
  }
  .results-section {
    padding: 10px;
    min-height: 50px;
  }
  .instructions {
    font-size: 0.7rem;
    gap: 6px;
  }
}
/* ===== SERVICES SECTION ===== */
.services {
  padding: 20px 0px 40px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f9f0), to(#fff));
  background: linear-gradient(to bottom, #f0f9f0, #fff);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--primary-light)), to(transparent));
  background: linear-gradient(to right, transparent, var(--primary-light), transparent);
}

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

.section-title {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.services-description {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px;
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.7;
  padding: 0 20px;
  font-weight: 400;
  position: relative;
}

.services-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  position: relative;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: var(--card-bg);
  border-radius: 16px;
  -webkit-box-shadow: var(--shadow-md);
  box-shadow: var(--shadow-md);
  -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);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary-color)), to(var(--accent-color)));
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -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;
}

.service-card:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.service-card:hover {
  -webkit-transform: translateY(-8px) scale(1.02);
  -ms-transform: translateY(-8px) scale(1.02);
  transform: translateY(-8px) scale(1.02);
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card__image-container {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.service-card__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card__image-container::after {
  opacity: 1;
}

.service-card__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__image {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.service-card__content {
  padding: 28px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* ===== SERVICE CARD TITLE ===== */
.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__title {
  color: var(--primary-dark);
}

.service-card__title .material-icons {
  font-size: 24px;
  color: var(--primary-color);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__title .material-icons {
  color: var(--accent-color);
}

/* ===== SERVICE CARD TEXT ===== */
.service-card__text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 400;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__text {
  color: var(--text-dark);
}

/* ===== SERVICE CARD FEATURES ===== */
.service-card__features {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}

.service-card__features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.service-card:hover .service-card__features li {
  color: var(--text-dark);
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}

.service-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__features li::before {
  color: var(--primary-color);
}

/* ===== SERVICE CARD FOOTER ===== */
.service-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.service-card:hover .service-card__footer {
  border-color: var(--primary-light);
}

.service-card__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.service-card__price-item {
  position: relative;
  display: inline-block;
}

.service-card__price-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 400;
}

.service-card__btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  -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);
  font-size: 18px;
  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: 8px;
  text-align: center;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.service-card__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.service-card__btn:hover::before {
  left: 100%;
}

.service-card__btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.service-card__btn .material-icons {
  font-size: 20px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.service-card__btn:hover .material-icons {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

/* ===== ANIMATIONS ===== */
@-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);
  }
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
.service-card {
  -webkit-animation: fadeInUp 0.6s ease-out;
  animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
  -webkit-animation: float 2s ease-in-out infinite;
  animation: float 2s ease-in-out infinite;
}

/* Staggered animation delays */
.service-card:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

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

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

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

.service-card:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.service-card:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.service-card:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.service-card:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Desktop Large (1200px и больше) */
@media (min-width: 1200px) {
  .services-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
/* Desktop (992px - 1199px) */
@media (max-width: 1200px) {
  .services-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card__content {
    padding: 24px;
  }
  .service-card__title {
    font-size: 18px;
  }
  .service-card__text {
    font-size: 16px;
  }
  .service-card__features li {
    font-size: 15px;
  }
  .service-card__price {
    font-size: 20px;
  }
  .service-card__btn {
    font-size: 16px;
    padding: 12px 20px;
  }
}
/* Tablet Landscape (768px - 991px) */
@media (max-width: 992px) {
  .services {
    padding: 60px 0;
  }
  .section-title {
    font-size: 36px;
  }
  .services-description {
    font-size: 18px;
    margin-bottom: 50px;
    padding: 0 15px;
  }
  .services-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .service-card__title {
    font-size: 17px;
  }
  .service-card__title .material-icons {
    font-size: 22px;
  }
  .service-card__text {
    font-size: 15px;
  }
  .service-card__features li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .service-card__price {
    font-size: 20px;
  }
  .service-card__btn {
    font-size: 16px;
    padding: 12px 20px;
  }
}
/* Tablet Portrait (600px - 767px) */
@media (max-width: 768px) {
  .services {
    padding: 50px 0;
  }
  .section-title {
    font-size: 32px;
    padding-bottom: 15px;
  }
  .services-description {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  .services-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .service-card__content {
    padding: 20px;
  }
  .service-card__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .service-card__title .material-icons {
    font-size: 20px;
  }
  .service-card__text {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .service-card__features li {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .service-card__price {
    font-size: 18px;
  }
  .service-card__btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}
/* Mobile Landscape (480px - 599px) */
@media (max-width: 600px) {
  .services-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
  .service-card__content {
    padding: 18px;
  }
  .service-card__title {
    font-size: 18px;
  }
  .service-card__text {
    font-size: 15px;
  }
  .service-card__features li {
    font-size: 14px;
  }
  .service-card__price {
    font-size: 18px;
  }
  .service-card__btn {
    font-size: 15px;
    padding: 12px 18px;
  }
}
/* Mobile Portrait (360px - 479px) */
@media (max-width: 480px) {
  .services {
    padding: 40px 0;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .services-description {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  .services-grid {
    gap: 16px;
  }
  .service-card__content {
    padding: 16px;
  }
  .service-card__title {
    font-size: 16px;
    gap: 8px;
  }
  .service-card__title .material-icons {
    font-size: 18px;
  }
  .service-card__features {
    margin-bottom: 16px;
  }
  .service-card__features li {
    margin-bottom: 6px;
    padding-left: 20px;
  }
  .service-card__price {
    font-size: 16px;
  }
  .service-card__btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}
/* Small Mobile (до 359px) */
@media (max-width: 400px) {
  .service-card__title {
    font-size: 15px;
    line-height: 1.4;
  }
  .service-card__title .material-icons {
    font-size: 16px;
  }
  .service-card__price {
    font-size: 15px;
  }
  .service-card__btn {
    font-size: 12px;
    padding: 8px 12px;
  }
  .services-container {
    padding: 0 15px;
  }
}
/* Extra Small Mobile (до 320px) */
@media (max-width: 360px) {
  .section-title {
    font-size: 24px;
  }
  .services-description {
    font-size: 13px;
    padding: 0;
  }
  .service-card__title {
    font-size: 14px;
  }
  .service-card__image-container {
    height: 180px;
  }
  .service-card__content {
    padding: 14px;
  }
}
.pre-footer-cta {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0f9f0));
  background: linear-gradient(to bottom, #fff, #f0f9f0);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.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 {
  color: #2d3748;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  color: #1a202c;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin: 0 0 40px 0;
  line-height: 1.6;
  color: #4a5568;
  font-weight: 400;
}

.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;
  margin-bottom: 30px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  color: #2d3748;
  font-size: 1.1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input::-webkit-input-placeholder {
  color: #a0aec0;
}

.form-input::-moz-placeholder {
  color: #a0aec0;
}

.form-input:-ms-input-placeholder {
  color: #a0aec0;
}

.form-input::-ms-input-placeholder {
  color: #a0aec0;
}

.form-input::placeholder {
  color: #a0aec0;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  -webkit-box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.privacy-agreement {
  margin: 10px 0 20px 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-size: 0.9rem;
  color: #4a5568;
  line-height: 1.4;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: relative;
  top: 2px;
  height: 18px;
  width: 18px;
  background-color: white;
  border: 2px solid #cbd5e0;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.checkbox-input:checked + .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-input:focus + .checkmark {
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.privacy-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.cta-submit-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  -webkit-box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.cta-submit-btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.cta-submit-btn:hover::before {
  left: 100%;
}

.cta-submit-btn:active {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1.4rem;
  -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;
}

.cta-submit-btn:hover .btn-icon {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.urgency-icon {
  font-size: 1.5rem;
  -webkit-animation: pulse-works 2s infinite;
  animation: pulse-works 2s infinite;
}

.urgency-text {
  font-size: 1rem;
  font-weight: 500;
}

@-webkit-keyframes pulse-works {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes pulse-works {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.cta-visual {
  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;
}

.visual-element {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.fence-icon {
  font-size: 8rem;
  -webkit-filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  -webkit-animation: float 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.guarantee-badge {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 12px 25px;
  border-radius: 25px;
  -webkit-box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    -webkit-box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  }
  to {
    -webkit-box-shadow: 0 5px 20px rgba(46, 125, 50, 0.5);
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.5);
  }
}

@keyframes glow {
  from {
    -webkit-box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  }
  to {
    -webkit-box-shadow: 0 5px 20px rgba(46, 125, 50, 0.5);
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.5);
  }
}
.guarantee-text {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .cta-container {
    gap: 40px;
  }
  .cta-title {
    font-size: 2.5rem;
  }
  .cta-subtitle {
    font-size: 1.2rem;
  }
  .fence-icon {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .pre-footer-cta {
    padding: 60px 0;
  }
  .cta-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cta-title {
    font-size: 2.2rem;
  }
  .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .cta-form {
    max-width: 400px;
    margin: 0 auto 30px auto;
  }
  .fence-icon {
    font-size: 5rem;
  }
  .visual-element {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .pre-footer-cta {
    padding: 50px 0;
  }
  .cta-title {
    font-size: 1.8rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .form-input {
    padding: 16px 18px;
    font-size: 1rem;
  }
  .cta-submit-btn {
    padding: 18px 30px;
    font-size: 1.1rem;
  }
  .urgency-text {
    font-size: 0.9rem;
  }
  .fence-icon {
    font-size: 4rem;
  }
  .guarantee-badge {
    padding: 10px 20px;
  }
  .guarantee-text {
    font-size: 1rem;
  }
  .checkbox-label {
    font-size: 0.85rem;
  }
}
@media (max-width: 360px) {
  .cta-title {
    font-size: 1.6rem;
  }
  .cta-submit-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
  .btn-icon {
    display: none;
  }
  .privacy-agreement {
    margin: 5px 0 15px 0;
  }
}
.feedback {
  background-image: url("../img/back-banner-1.png");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  position: relative;
}

.feedback__container {
  padding: 0px 15px;
}

.feedback__title {
  margin: 0;
  font-weight: 400;
  font-size: 48px;
  color: var(--light-color);
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
}

.feedback__subtitle {
  margin: 0;
  text-align: center;
  color: var(--light-color);
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.feedback__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 40px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  border: none;
  min-width: 200px;
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  -webkit-box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  background: white;
  color: var(--primary-color);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.feedbackSwiper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 20px 0 60px;
  position: relative;
}

.swiper-slide {
  height: 320px;
  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;
}

.swiper-feedback-box {
  width: 420px;
  position: relative;
  height: 100%;
}

.feedback-img-wrapper {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

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

.feedback-img-wrapper:hover .feedback-img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.swiper-feedback-inner {
  border-top: 2px solid #fff;
  border-radius: 30px;
  margin-left: auto;
  padding: 25px 25px 25px 90px;
  width: 360px;
  height: 100%;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.swiper-feedback-header {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 8px;
  margin-top: 10px;
}

.swiper-feedback-title {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  color: var(--light-color);
  line-height: 120%;
  width: 100%;
}

.swiper-feedback-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.star {
  color: #FFD700;
  font-size: 18px;
}

.swiper-feedback-descr {
  margin: 0;
  font-family: Comfortaa;
  font-weight: 500;
  font-size: 15px;
  color: var(--light-color);
  line-height: 150%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.swiper-feedback-descr::-webkit-scrollbar {
  width: 4px;
}

.swiper-feedback-descr::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.swiper-feedback-descr::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: auto !important;
  bottom: 5px !important;
}

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

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.swiper-button-prev {
  left: calc(50% - 60px) !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.swiper-button-next {
  right: calc(50% - 60px) !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

@media (max-width: 1200px) {
  .feedback__title {
    font-size: 50px;
  }
  .swiper-feedback-box {
    width: 380px;
  }
  .feedback-img-wrapper {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 992px) {
  .swiper-feedback-box {
    width: 340px;
  }
  .feedback-img-wrapper {
    width: 80px;
    height: 80px;
  }
  .swiper-feedback-title {
    font-size: 22px;
  }
  .star {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .feedback {
    padding: 20px 0;
  }
  .feedback__container {
    padding: 20px;
  }
  .feedback__title {
    font-size: 36px;
    padding: 20px 0 15px 0;
  }
  .feedback__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .feedback__actions {
    margin-top: 40px;
    -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: 10px;
  }
  .btn {
    padding: 12px 30px;
    font-size: 16px;
    min-width: 180px;
  }
  .feedbackSwiper {
    padding: 10px 0 60px;
    width: 100%;
    max-width: 500px;
  }
  .swiper-slide {
    height: 224px;
    padding: 0 10px;
  }
  .swiper-feedback-box {
    width: 100%;
    max-width: 294px;
  }
  .swiper-feedback-inner {
    width: 100%;
    padding: 25px 20px 20px 90px;
    height: 100%;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  .feedback-img-wrapper {
    position: absolute;
    left: 0px !important;
    top: 50% !important;
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
  }
  .swiper-feedback-header {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 6px;
    margin-top: 0;
  }
  .swiper-feedback-title {
    font-size: 16.8px;
    margin: 0;
    font-family: Comfortaa;
    font-weight: 700;
    color: var(--light-color);
    line-height: 120%;
    width: 100%;
  }
  .swiper-feedback-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
  }
  .star {
    color: #FFD700;
    font-size: 12.6px;
  }
  .swiper-feedback-descr {
    margin: 0;
    font-family: Comfortaa;
    font-weight: 500;
    color: var(--light-color);
    line-height: 150%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 8px;
    text-align: left;
  }
  .swiper-feedback-descr::-webkit-scrollbar {
    width: 3px;
  }
  .swiper-feedback-descr::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .swiper-feedback-descr::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
  }
  .swiper-button-prev {
    left: calc(50% - 50px) !important;
    top: auto !important;
    bottom: 5px !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
  .swiper-button-next {
    right: calc(50% - 50px) !important;
    top: auto !important;
    bottom: 5px !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}
@media (max-width: 480px) {
  .feedback__title {
    font-size: 28px;
  }
  .feedback__subtitle {
    font-size: 14px;
  }
  .swiper-slide {
    height: 180px;
  }
  .swiper-feedback-inner {
    padding: 25px 15px 15px 75px;
  }
  .feedback-img-wrapper {
    width: 60px;
    height: 60px;
  }
  .swiper-feedback-title {
    font-size: 15.4px;
  }
  .swiper-feedback-descr {
    font-size: 12px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 16px;
  }
  .swiper-button-prev {
    left: calc(50% - 45px) !important;
  }
  .swiper-button-next {
    right: calc(50% - 45px) !important;
  }
}
@media (max-width: 360px) {
  .feedback__title {
    font-size: 24px;
  }
  .feedback__actions {
    margin-top: 35px;
    gap: 8px;
  }
  .btn {
    padding: 10px 25px;
    font-size: 15px;
    min-width: 160px;
  }
  .swiper-button-prev {
    left: calc(50% - 40px) !important;
  }
  .swiper-button-next {
    right: calc(50% - 40px) !important;
  }
}
.footer {
  background: #2d3748;
  color: white;
  padding: 60px 0 25px 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary-color)), to(var(--accent-color)));
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-container {
  max-width: 1475px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Сетка 4 колонки в один ряд */
.footer-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 1fr 1fr 320px;
  grid-template-columns: 280px 1fr 1fr 320px;
  gap: 50px;
  margin-bottom: 50px;
}

/* Бренд блок (первая колонка) */
.footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.brand-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-logo {
  width: 140px;
  height: auto;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 8px 0;
  color: white;
  line-height: 1.2;
  text-align: left;
}

.brand-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
  max-width: 260px;
  text-align: left;
}

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

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left;
}

.contact-item:hover {
  color: white;
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 1.1rem;
  color: var(--accent-color);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Навигация - остальные 3 колонки */
.footer-nav {
  display: contents;
}

/* Общие стили для всех колонок навигации */
.nav-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.nav-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: white;
  position: relative;
  padding-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.nav-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.nav-title-icon {
  font-size: 1.3rem;
  color: var(--accent-color);
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  -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;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  text-align: left;
}

.nav-link:hover {
  color: white;
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  padding-left: 8px;
}

.nav-link-icon {
  font-size: 1.1rem;
  color: var(--primary-light);
  width: 22px;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.nav-link:hover .nav-link-icon {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
  color: var(--accent-color);
}

/* Специальные стили для блока услуг (3 колонка) */
.nav-links--services {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 25px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 15px;
}

.nav-links--services .nav-link {
  min-height: 48px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 8px 0;
  text-align: left;
}

.nav-links--services .nav-link span:last-child {
  line-height: 1.4;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* Стили для скроллбара в блоке услуг */
.nav-links--services::-webkit-scrollbar {
  width: 6px;
}

.nav-links--services::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.nav-links--services::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.nav-links--services::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Стили для блока контактов (4 колонка) */
.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;
}

.phone-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  text-align: left;
}

.phone-link:hover {
  color: var(--accent-color);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.phone-icon {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.contact-info .contact-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 8px;
  text-align: left;
}

.contact-info .contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

/* Футер нижняя часть */
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
}

.footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
  text-align: left;
}

.legal-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Плавная прокрутка */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* Анимация появления */
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.nav-links li {
  -webkit-animation: fadeInUp 0.5s ease forwards;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

/* Задержки для анимации */
.nav-links li:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.nav-links li:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.nav-links li:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.nav-links li:nth-child(4) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.nav-links li:nth-child(5) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.nav-links li:nth-child(6) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.nav-links li:nth-child(7) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.nav-links li:nth-child(8) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.nav-links li:nth-child(9) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .nav-links li {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
  }
}
/* Адаптивность */
/* Большие экраны 1600px+ */
@media (min-width: 1600px) {
  .footer-container {
    max-width: 1550px;
    padding: 0 60px;
  }
  .footer-main {
    gap: 60px;
  }
}
/* Ноутбуки 1475px-1200px */
@media (max-width: 1475px) {
  .footer-container {
    max-width: 1200px;
    padding: 0 30px;
  }
  .footer-main {
    gap: 40px;
  }
}
/* Планшет 1200px-992px */
@media (max-width: 1200px) {
  .footer-container {
    max-width: 100%;
    padding: 0 30px;
  }
  .footer-main {
    -ms-grid-columns: 250px 1fr 1fr;
    grid-template-columns: 250px 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    gap: 40px 30px;
  }
  /* Контакты переходят на вторую строку */
  .nav-column:last-child {
    grid-column: 1/-1;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .contact-info .contact-item {
    margin-bottom: 0;
  }
}
/* Планшет 992px */
@media (max-width: 992px) {
  .footer-main {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    gap: 40px 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
  }
  .brand-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
  }
  .footer-logo {
    width: 120px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .nav-links--services {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .nav-column:last-child {
    grid-column: 1/-1;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
/* МОБИЛЬНАЯ ВЕРСИЯ (до 768px) - ВСЕ ЭЛЕМЕНТЫ ПО ЛЕВОМУ КРАЮ */
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 20px 0;
  }
  .footer-container {
    padding: 0 20px;
  }
  .footer-main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  /* Бренд-блок выравниваем по левому краю */
  .footer-brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
    gap: 25px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-logo {
    width: 110px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-left: 0;
  }
  .brand-name {
    font-size: 1.8rem;
    text-align: left;
  }
  .brand-tagline {
    text-align: left;
    max-width: 100%;
  }
  .brand-contacts {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }
  /* Все заголовки выравниваем по левому краю */
  .nav-column {
    text-align: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .nav-title {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .nav-title::after {
    left: 0;
  }
  /* Навигационные ссылки выравниваем по левому краю */
  .nav-links {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }
  .nav-link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
  .nav-links--services {
    max-height: none;
    overflow-y: visible;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .nav-links--services .nav-link {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  /* Блок контактов выравниваем по левому краю */
  .nav-column:last-child {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .contact-info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }
  .phone-link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }
  .contact-info .contact-item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }
  /* Нижняя часть футера выравниваем по левому краю */
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    padding-top: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-copyright {
    text-align: left;
    width: 100%;
  }
  .footer-legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }
  .legal-link {
    text-align: left;
    padding: 8px 0;
  }
}
/* Мобильный 576px */
@media (max-width: 576px) {
  .footer-container {
    padding: 0 20px;
  }
  .footer {
    padding: 40px 0 20px 0;
  }
  .footer-main {
    gap: 35px;
  }
  .footer-logo {
    width: 100px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .brand-name {
    font-size: 1.6rem;
    text-align: left;
  }
  .phone-link {
    font-size: 1.2rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .nav-title {
    font-size: 1.1rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .nav-links--services .nav-link {
    font-size: 0.9rem;
    min-height: 42px;
    padding: 7px 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .nav-links--services .nav-link-icon {
    font-size: 1rem;
  }
}
/* Маленькие мобильные 480px */
@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  .brand-name {
    font-size: 1.5rem;
    text-align: left;
  }
  .brand-tagline {
    font-size: 0.95rem;
    text-align: left;
  }
  .phone-link {
    font-size: 1.1rem;
    padding: 12px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .nav-links {
    gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 8px 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
/* Оптимизация */
.footer * {
  will-change: transform, opacity;
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
  .footer {
    background: #1a202c;
  }
  .contact-info .contact-item,
  .phone-link {
    background: rgba(255, 255, 255, 0.03);
  }
  .contact-info .contact-item:hover,
  .phone-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}
/* Печать */
@media print {
  .footer {
    background: white !important;
    color: black !important;
    padding: 30px 0 !important;
    text-align: left !important;
  }
  .footer-logo {
    width: 100px;
    -webkit-filter: grayscale(100%) contrast(200%);
    filter: grayscale(100%) contrast(200%);
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .nav-links--services {
    max-height: none;
    overflow: visible;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer::before {
    background: #000;
  }
  .contact-icon,
  .phone-icon,
  .nav-title-icon,
  .nav-link-icon {
    color: #000 !important;
  }
  .phone-link,
  .contact-info .contact-item {
    background: none !important;
    border: 1px solid #ddd !important;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .brand-name,
  .brand-tagline,
  .nav-title,
  .nav-link,
  .footer-copyright,
  .legal-link {
    text-align: left !important;
  }
}
/* Активные ссылки */
.nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  font-weight: 500;
}

.nav-link.active .nav-link-icon {
  color: var(--accent-color);
}

/* Material Icons */
.material-icons {
  font-size: inherit;
}/*# sourceMappingURL=main.css.map */
