@charset "UTF-8";
:root {
  --font-family:"Montserrat", "Open Sans", sans-serif;
  --content-width: 1470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --bg-cream: #F2F0E5;
  --bg-yellow: #F9DC40;
  --bg-olive: #849213;
  --green:#9FB111;
  --text:#464A3B;
  --text-dark: #464A3BE5;
  --text-muted: #464A3BB2;
  --white: #ffffff;
  --dark-gray: #4a4a4a;
  --card-bg: #f5f0d0;
  --font-main: 'Montserrat', sans-serif;
  --font-alt: 'Rubik', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

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

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

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

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

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

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

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

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

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

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

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

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

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

.centered {
  text-align: center;
}

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

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-cream);
  border-bottom: 1px solid rgba(70, 74, 59, 0.1);
  -webkit-transition: -webkit-box-shadow var(--transition);
  transition: -webkit-box-shadow var(--transition);
  transition: box-shadow var(--transition);
  transition: box-shadow var(--transition), -webkit-box-shadow var(--transition);
}

.navbar.scrolled {
  -webkit-box-shadow: 0 2px 20px rgba(70, 74, 59, 0.15);
  box-shadow: 0 2px 20px rgba(70, 74, 59, 0.15);
}

.navbar__container {
  padding: 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}

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

.navbar__logo-text span {
  color: var(--bg-olive);
}

.navbar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}

.navbar__nav-link {
  font-family: var(--font-alt);
  color: var(--text);
  text-transform: uppercase;
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2%;
  vertical-align: middle;
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-olive {
  font-family: var(--font-alt);
  font-weight: 500;
  font-style: italic;
  font-size: 25px;
  padding: 14px 45px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--light-color);
  background: var(--green);
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 7.09px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 0px 7.09px 0px rgba(0, 0, 0, 0.1019607843);
}

.navbar__nav-link:hover {
  color: var(--bg-olive);
}

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

.navbar__burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__burger-line {
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.navbar__burger.active .navbar__burger-line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

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

.navbar__burger.active .navbar__burger-line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .navbar__list {
    display: none !important;
  }
  .navbar__burger {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .navbar__list.active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-cream);
    padding: 100px 24px 30px;
    gap: 20px;
    z-index: 998;
    border-top: none;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  .navbar__list.active .navbar__nav-link {
    font-size: 18px;
    padding: 12px 0;
    white-space: normal;
    text-align: center;
    border-bottom: 1px solid rgba(132, 146, 19, 0.1);
  }
  .navbar__burger.active {
    z-index: 999;
    position: relative;
  }
  .navbar__actions .btn-olive {
    font-size: 16px;
    padding: 8px 20px;
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .navbar__container {
    padding: 0 16px;
  }
  .navbar__actions .btn-olive {
    font-size: 14px;
    padding: 8px 16px;
  }
  .navbar__logo img {
    max-height: 40px;
    width: auto;
  }
  .navbar__list.active {
    padding: 90px 20px 30px;
  }
}
@media (min-width: 981px) {
  .navbar__burger {
    display: none !important;
  }
  .navbar__list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/* ===== МОДАЛЬНОЕ ОКНО ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

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

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

.modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--bg-olive);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__close:hover {
  background: var(--bg-yellow);
  color: var(--text-dark);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal__title {
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.modal__subtitle {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.4;
}

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

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

.modal__input::-webkit-input-placeholder {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: left;
}

.modal__input::-moz-placeholder {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: left;
}

.modal__input:-ms-input-placeholder {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: left;
}

.modal__input::-ms-input-placeholder {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: left;
}

.modal__input::placeholder {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: left;
}

.modal__input:focus {
  border-color: var(--green);
  background: #fff;
  outline: none;
}

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

.modal__agree span {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-dark);
  line-height: 120%;
}

.modal__policy-link {
  color: var(--bg-olive);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal__policy-link:hover {
  color: var(--green);
  text-decoration: none;
}

.modal__checkbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--green);
}

.modal__submit {
  border: none;
  padding: 16px;
  width: 100%;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--green);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 25px;
}

.modal__submit:hover {
  background: var(--bg-yellow);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

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

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

.custom-toast--success {
  background: var(--green, #9FB111);
  color: var(--white, #ffffff);
  border-left: 4px solid var(--bg-olive, #849213);
}

.custom-toast--error {
  background: var(--bg-yellow, #F9DC40);
  color: var(--text-dark, rgba(70, 74, 59, 0.8980392157));
  border-left: 4px solid var(--bg-olive, #849213);
}

.custom-toast--warning {
  background: var(--bg-yellow, #F9DC40);
  color: var(--text-dark, rgba(70, 74, 59, 0.8980392157));
  border-left: 4px solid var(--bg-olive, #849213);
}

@media (max-width: 576px) {
  .modal__content {
    padding: 40px 24px;
  }
  .modal__title {
    font-size: 24px;
  }
  .modal__subtitle {
    font-size: 14px;
  }
  .modal__input {
    padding: 14px 20px;
    font-size: 16px;
  }
  .modal__input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .modal__input::-moz-placeholder {
    font-size: 14px;
  }
  .modal__input:-ms-input-placeholder {
    font-size: 14px;
  }
  .modal__input::-ms-input-placeholder {
    font-size: 14px;
  }
  .modal__input::placeholder {
    font-size: 14px;
  }
  .modal__submit {
    font-size: 18px;
    padding: 14px;
  }
}
/* ===== HERO SECTION ===== */
.hero {
  padding-top: 70px;
  background-color: var(--bg-cream);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__container {
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1019607843);
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 30px;
  background: #FFF8DD;
  max-width: 1380px;
  min-height: 782px;
  padding: 60px 90px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}

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

.hero__title {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 55px;
  line-height: 85%;
  letter-spacing: 0%;
  color: var(--text-dark);
}

.hero__subtitle {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 400;
  font-style: italic;
  font-size: 35px;
  line-height: 100%;
  letter-spacing: -2%;
  text-transform: lowercase;
  color: var(--bg-olive);
}

.btn-primary {
  font-family: var(--font-alt);
  font-weight: 500;
  font-style: italic;
  font-size: 25px;
  background: var(--bg-yellow);
  line-height: 100%;
  letter-spacing: -3%;
  text-align: center;
  padding: 15px 34px;
  color: var(--text-dark);
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.btn-primary:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(249, 220, 64, 0.3);
  box-shadow: 0 8px 20px rgba(249, 220, 64, 0.3);
}

.btn-outline {
  padding: 15px 34px;
  font-family: var(--font-alt);
  font-weight: 500;
  font-style: italic;
  font-size: 25px;
  color: var(--text-dark);
  line-height: 100%;
  letter-spacing: -3%;
  text-align: center;
  border-radius: 30px;
  border: 3px solid rgba(70, 74, 59, 0.6);
  text-decoration: none;
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--bg-olive);
  color: var(--bg-olive);
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero__avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero__avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  margin-left: -10px;
  background-color: var(--bg-olive);
}

.hero__avatar:first-child {
  margin-left: 0;
}

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

.hero__rating-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero__rating-stars {
  font-family: var(--font-alt);
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2%;
  color: var(--bg-olive);
}

.hero__rating-text {
  font-family: var(--font-alt);
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2%;
  color: var(--bg-olive);
}

.hero__image-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

/* НА ДЕСКТОПЕ ФОТО СКРЫТО */
.hero__image {
  display: none;
}

.hero__badge {
  position: absolute;
  background-color: var(--white);
  padding: 12px 30px;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
  font-family: var(--font-alt);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  border-radius: 25px;
  color: var(--text-dark);
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

.hero__count {
  font-weight: 700;
  color: var(--bg-olive);
  font-size: 28px;
}

.hero__badge--1 {
  bottom: 240px;
  right: -20px;
}

.hero__badge--2 {
  bottom: 140px;
  right: 180px;
}

.hero__badge--3 {
  bottom: 40px;
  right: 50px;
}

/* ===== ПЛАНШЕТЫ 1200px ===== */
@media (max-width: 1200px) {
  .hero__container {
    padding: 40px 50px;
    gap: 30px;
  }
  .hero__title {
    font-size: 55px;
  }
  .hero__subtitle {
    font-size: 28px;
  }
  .btn-primary, .btn-outline {
    font-size: 20px;
    padding: 12px 28px;
  }
  .hero__badge {
    font-size: 18px;
    padding: 8px 20px;
  }
  .hero__count {
    font-size: 22px;
  }
  .hero__badge--1 {
    bottom: 200px;
    right: -10px;
  }
  .hero__badge--2 {
    bottom: 110px;
    right: 140px;
  }
  .hero__badge--3 {
    bottom: 30px;
    right: 30px;
  }
}
/* ===== МОБИЛЬНАЯ ВЕРСИЯ (до 992px) ===== */
@media (max-width: 992px) {
  .hero {
    padding-top: 80px;
  }
  .hero__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 40px;
    text-align: center;
    background-image: none !important;
  }
  .hero__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .hero__image-wrapper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    min-height: 400px;
    margin-top: 20px;
    position: relative;
  }
  /* НА МОБИЛЬНОЙ ВЕРСИИ ПОКАЗЫВАЕМ ФОТО */
  .hero__image {
    display: block !important;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
  }
  .hero__title {
    font-size: 48px;
  }
  .hero__subtitle {
    font-size: 24px;
  }
  .hero__actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__rating {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* БЕЙДЖИ НА МОБИЛЬНОЙ ВЕРСИИ ВНИЗУ */
  .hero__badge--1 {
    bottom: 240px;
    right: 20px;
    top: auto;
    left: auto;
  }
  .hero__badge--2 {
    bottom: 140px;
    right: 180px;
    top: auto;
    left: auto;
  }
  .hero__badge--3 {
    bottom: 40px;
    right: 50px;
    top: auto;
    left: auto;
  }
}
/* ===== МОБИЛЬНЫЕ 768px ===== */
@media (max-width: 768px) {
  .hero {
    padding-top: 50px;
  }
  .hero__container {
    padding: 30px 20px;
    margin: 20px;
    border-radius: 20px;
  }
  .hero__title {
    font-size: 36px;
    line-height: 100%;
  }
  .hero__subtitle {
    font-size: 20px;
  }
  .btn-primary, .btn-outline {
    font-size: 16px;
    padding: 10px 20px;
  }
  .hero__avatar {
    width: 50px;
    height: 50px;
  }
  .hero__rating-stars, .hero__rating-text {
    font-size: 16px;
  }
  .hero__image-wrapper {
    min-height: 380px;
  }
  .hero__badge {
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 20px;
  }
  .hero__count {
    font-size: 18px;
  }
  .hero__badge--1 {
    bottom: 200px;
    right: 10px;
  }
  .hero__badge--2 {
    bottom: 110px;
    right: 140px;
  }
  .hero__badge--3 {
    bottom: 30px;
    right: 30px;
  }
}
/* ===== МАЛЕНЬКИЕ ТЕЛЕФОНЫ 600px ===== */
@media (max-width: 600px) {
  .hero__image-wrapper {
    min-height: 350px;
  }
  .hero__count {
    font-size: 16px;
  }
  .hero__badge--1 {
    bottom: 180px;
    right: 5px;
  }
  .hero__badge--2 {
    bottom: 100px;
    right: 100px;
  }
  .hero__badge--3 {
    bottom: 20px;
    right: 20px;
  }
}
/* ===== МАЛЕНЬКИЕ ТЕЛЕФОНЫ 480px ===== */
@media (max-width: 480px) {
  .hero__container {
    padding: 20px 15px;
  }
  .hero__content {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .hero__title {
    font-size: 26px;
    text-align: left;
  }
  .hero__subtitle {
    font-size: 18px;
    text-align: left;
  }
  .btn-primary, .btn-outline {
    font-size: 14px;
    padding: 8px 16px;
  }
  .hero__actions {
    gap: 10px;
  }
  .hero__avatar {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  .hero__rating-stars, .hero__rating-text {
    font-size: 14px;
  }
  .hero__image-wrapper {
    min-height: 300px;
  }
  .hero__badge--1 {
    bottom: 160px;
    right: 5px;
  }
  .hero__badge--2 {
    bottom: 90px;
    right: 80px;
  }
  .hero__badge--3 {
    bottom: 15px;
    right: 15px;
  }
}
/* ===== PROBLEMS SECTION ===== */
.problems {
  background-color: var(--bg-cream);
  padding: 80px 0;
}

.problems__container {
  max-width: 1380px;
}

.section-title {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 55px;
  line-height: 120%;
  letter-spacing: -2px;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.section-title em {
  font-style: italic;
  color: var(--bg-olive);
}

.problems__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.problem-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.problem-card__image {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.problem-card__title {
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 28px;
  color: var(--bg-olive);
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin: 0;
}

.problem-card__text {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* Нечетные карточки (1, 3) - фото внизу */
.problem-card--odd {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.problem-card--odd .problem-card__title {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.problem-card--odd .problem-card__text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.problem-card--odd .problem-card__image {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

/* Четные карточки (2) - фото вверху */
.problem-card--even {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.problem-card--even .problem-card__image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.problem-card--even .problem-card__title {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.problem-card--even .problem-card__text {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* ===== АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ (до 1024px) ===== */
@media (max-width: 1024px) {
  .problems {
    padding: 60px 0;
  }
  .section-title {
    font-size: 55px;
    margin-bottom: 40px;
  }
  .problems__grid {
    gap: 24px;
  }
  .problem-card {
    padding: 20px;
  }
  .problem-card__image {
    height: 180px;
  }
  .problem-card__title {
    font-size: 1.3rem;
  }
  .problem-card__text {
    font-size: 0.95rem;
  }
}
/* ===== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ (до 768px) ===== */
@media (max-width: 768px) {
  .problems {
    padding: 50px 0;
  }
  .section-title {
    font-size: 40px;
    margin-bottom: 32px;
  }
  .problems__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }
  .problem-card {
    padding: 20px;
    height: auto;
  }
  .problem-card__image {
    height: 200px;
  }
  .problem-card__title {
    font-size: 1.25rem;
  }
  .problem-card__text {
    font-size: 0.9rem;
  }
  /* На мобильных все карточки: фото сверху, текст снизу */
  .problem-card--odd .problem-card__image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .problem-card--odd .problem-card__title {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .problem-card--odd .problem-card__text {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .problem-card--even .problem-card__image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .problem-card--even .problem-card__title {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .problem-card--even .problem-card__text {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
/* ===== АДАПТАЦИЯ ДЛЯ МАЛЕНЬКИХ ТЕЛЕФОНОВ (до 480px) ===== */
@media (max-width: 480px) {
  .problems {
    padding: 40px 0;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 28px;
  }
  .problems__grid {
    gap: 20px;
  }
  .problem-card {
    padding: 16px;
  }
  .problem-card__image {
    height: 180px;
  }
  .problem-card__title {
    font-size: 1.1rem;
  }
  .problem-card__text {
    font-size: 0.85rem;
  }
}
/* ===== OFFER BANNER ===== */
.offer-banner {
  background-color: var(--bg-yellow);
  padding: 40px 0;
}

.offer-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.offer-banner__pre {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.offer-banner__pre strong {
  font-weight: 700;
}

.offer-banner__title {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: italic;
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: var(--text-dark);
}

/* ===== АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ (до 1024px) ===== */
@media (max-width: 1024px) {
  .offer-banner {
    padding: 35px 0;
  }
  .offer-banner__pre {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 25px;
  }
  .offer-banner__title {
    font-size: 55px;
  }
}
/* ===== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ (до 768px) ===== */
@media (max-width: 768px) {
  .offer-banner {
    padding: 30px 0;
  }
  .offer-banner__container {
    padding: 0 20px;
  }
  .offer-banner__pre {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .offer-banner__title {
    font-size: 40px;
  }
}
/* ===== ДЛЯ МАЛЕНЬКИХ ТЕЛЕФОНОВ (до 480px) ===== */
@media (max-width: 480px) {
  .offer-banner {
    padding: 25px 0;
  }
  .offer-banner__container {
    padding: 0 16px;
  }
  .offer-banner__pre {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
  }
  .offer-banner__title {
    font-size: 28px;
  }
}
/* ===== ДЛЯ ОЧЕНЬ МАЛЕНЬКИХ ЭКРАНОВ (до 360px) ===== */
@media (max-width: 360px) {
  .offer-banner {
    padding: 20px 0;
  }
  .offer-banner__pre {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }
  .offer-banner__title {
    font-size: 24px;
  }
}
/* ===== ABOUT SECTION ===== */
.about {
  padding: 60px 5%;
  background: var(--bg-cream);
  margin: 0 auto;
}

.about-container {
  max-width: 1380px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-images {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 320px;
  position: relative;
}

.images-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.images-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: block;
}

/* ============================================
   КРУГ ПО ЦЕНТРУ (МЕЖДУ ФОТО)
   ============================================ */
.stat-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--bg-yellow), #e6c200);
  color: var(--bg-olive);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(255, 255, 255, 0.5);
  -webkit-transition: all var(--transition);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  z-index: 10;
}

.stat-circle span:first-of-type {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-alt);
}

.stat-circle span:last-of-type {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  text-align: center;
  padding: 0 10px;
}

.stat-circle:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
  background: var(--bg-olive);
  color: white;
}

/* ============================================
   ПЕРЕВОРОТ (БЕЗ ИЗМЕНЕНИЯ ПОЗИЦИИ)
   ============================================ */
.flip-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  z-index: 10;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-container.flipped .flip-inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  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;
}

.flip-front {
  z-index: 2;
}

.flip-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  z-index: 1;
}

/* ЛИЦЕВАЯ СТОРОНА (ЖЁЛТЫЙ) */
.flip-front .stat-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-yellow), #e6c200);
  color: var(--bg-olive);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(255, 255, 255, 0.5);
  padding: 20px;
}

.flip-front .stat-circle .counter-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-alt);
}

.flip-front .stat-circle span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
}

/* ОБРАТНАЯ СТОРОНА (ЗЕЛЁНЫЙ) */
.flip-back .stat-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-olive);
  color: white;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(255, 255, 255, 0.5);
  padding: 20px;
}

.flip-back .stat-circle span:first-child {
  font-size: 30px;
}

.flip-back .stat-circle span:last-child {
  font-size: 14px;
}

/* ============================================
   ОСТАЛЬНЫЕ СТИЛИ (БЕЗ ИЗМЕНЕНИЙ)
   ============================================ */
.about-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 320px;
}

.about-content .badge {
  margin: 0;
  color: var(--bg-olive);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.about-content h2 {
  margin: 0;
  text-transform: uppercase;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 0%;
  color: var(--text-dark);
  font-family: var(--font-main);
}

.about-content h2 .highlight {
  color: var(--bg-olive);
  font-style: italic;
  border-bottom: 3px solid var(--bg-yellow);
}

.about-content > p {
  font-weight: 400;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 0%;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.about-content h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0px;
  color: var(--text);
}

.specialization {
  margin-bottom: 22px;
}

.specialization label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -1px;
  color: var(--text);
}

.specialization label span {
  color: var(--bg-olive);
  font-weight: 700;
}

.progress-bar {
  height: 8px;
  background: rgba(132, 146, 19, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bg-olive), var(--bg-yellow));
  border-radius: 10px;
  -webkit-transition: width 3.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 3.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cta-button {
  background: var(--green);
  color: white;
  padding: 14px 38px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-alt);
  font-weight: 500;
  font-style: Italic;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  font-family: var(--font-alt);
  font-style: italic;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-transition: all var(--transition);
  transition: all var(--transition);
}

.cta-button:hover {
  background: #6a7a0e;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 20px rgba(132, 146, 19, 0.3);
  box-shadow: 0 8px 20px rgba(132, 146, 19, 0.3);
}

@media (max-width: 992px) {
  .about {
    padding: 60px 5%;
  }
  .images-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .flip-container,
  .stat-circle {
    width: 110px;
    height: 110px;
  }
  .flip-front .stat-circle .counter-number {
    font-size: 1.6rem;
  }
  .flip-front .stat-circle span:last-child {
    font-size: 0.65rem;
  }
  .about-content h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 40px 4%;
  }
  .about-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .about-content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    text-align: center;
  }
  .about-images {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    min-width: unset;
    width: 100%;
  }
  .about-content h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .about-content > p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .about-content h3 {
    font-size: 1.1rem;
  }
  .flip-container,
  .stat-circle {
    width: 100px;
    height: 100px;
  }
  .flip-front .stat-circle .counter-number {
    font-size: 1.4rem;
  }
  .flip-front .stat-circle span:last-child {
    font-size: 0.6rem;
  }
  .images-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 100%;
  }
  .images-grid img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
  .cta-button {
    padding: 12px 28px;
    font-size: 1.1rem;
    gap: 8px;
  }
  .cta-container {
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 30px 0;
  }
  .about-container {
    gap: 20px;
  }
  .about-content h2 {
    font-size: 1.5rem;
    line-height: 1.1;
  }
  .about-content > p {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .about-content h3 {
    font-size: 1rem;
  }
  .about-content .badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .specialization label {
    font-size: 14px;
    line-height: 1.2;
  }
  .flip-container,
  .stat-circle {
    width: 80px;
    height: 80px;
  }
  .flip-front .stat-circle .counter-number {
    font-size: 1.2rem;
  }
  .flip-front .stat-circle span:last-child {
    font-size: 0.5rem;
    padding: 0 6px;
  }
  .flip-back .stat-circle span:first-child {
    font-size: 20px;
  }
  .flip-back .stat-circle span:last-child {
    font-size: 10px;
  }
  .images-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .images-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
    gap: 6px;
    border-radius: 40px;
  }
  .cta-container {
    margin-top: 20px;
  }
  .progress-bar {
    height: 6px;
  }
  .specialization {
    margin-bottom: 15px;
  }
}
/* ===== PRICING SECTION ===== */
.pricing {
  background-color: var(--bg-cream);
  padding: 60px 0;
}

.pricing-title {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 55px;
  line-height: 70px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.pricing-title span {
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 60px;
  color: var(--bg-olive);
  line-height: 70px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.pricing__grid {
  margin: 0 auto;
  max-width: 1350px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 20px;
}

.pricing-card {
  max-width: 435px;
  width: 100%;
  background-color: var(--white);
  border-radius: 40px;
  padding: 40px 24px;
  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;
  border: 2px solid transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  height: 100%;
  min-height: 480px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pricing-card:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 40px rgba(70, 74, 59, 0.12);
  box-shadow: 0 12px 40px rgba(70, 74, 59, 0.12);
}

.pricing-card--featured {
  background-color: var(--bg-yellow);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  min-height: 520px;
  padding: 48px 28px;
  z-index: 2;
}

.pricing-card--featured:hover {
  -webkit-transform: scale(1.03) translateY(-4px);
  -ms-transform: scale(1.03) translateY(-4px);
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__title {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 700;
  font-style: Italic;
  font-size: 30px;
  line-height: 26px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.pricing-card__description {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--text);
}

.pricing-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pricing-card__amount {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text-dark);
}

.pricing-card__period {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-card__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pricing-card__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: var(--text);
}

.pricing-card .btn-outline,
.pricing-card .btn-olive {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 18px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: auto;
}

/* ===== ТОЛЬКО АДАПТАЦИЯ (НИЖЕ) ===== */
@media (max-width: 1024px) {
  .pricing-title {
    font-size: 55px;
    line-height: 55px;
  }
  .pricing-title span {
    font-size: 65px;
    line-height: 55px;
  }
  .pricing__grid {
    gap: 15px;
  }
  .pricing-card {
    min-height: 440px;
    padding: 30px 20px;
  }
  .pricing-card--featured {
    min-height: 480px;
    padding: 36px 22px;
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
  }
}
@media (max-width: 768px) {
  .pricing__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
  }
  .pricing-card {
    max-width: 400px;
    min-height: 420px;
  }
  .pricing-card--featured {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    min-height: 440px;
    padding: 40px 24px;
  }
  .pricing-card--featured:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  .pricing-title {
    font-size: 42px;
    line-height: 45px;
    margin-bottom: 35px;
  }
  .pricing-title span {
    font-size: 50px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .pricing-title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 30px;
  }
  .pricing-title span {
    font-size: 38px;
    line-height: 36px;
  }
  .pricing-card {
    max-width: 100%;
    min-height: 380px;
    padding: 24px 16px;
  }
  .pricing-card--featured {
    min-height: 400px;
    padding: 28px 18px;
  }
  .pricing-card__title {
    font-size: 24px;
  }
  .pricing-card__amount {
    font-size: 1.8rem;
  }
  .pricing-card .btn-outline,
  .pricing-card .btn-olive {
    font-size: 16px;
    padding: 12px 16px;
  }
}
/* ===== PROCESS SECTION ===== */
.process {
  background-color: var(--bg-cream);
  padding: 80px 0;
}

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

/* 1-й блок — слева */
.process__left {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

/* 2-й блок (фото) — снизу от 1-го блока */
.process__image-wrapper {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  margin-top: 20px;
}

/* фото без ограничения высоты */
.process__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius);
}

/* 3-й блок — справа */
.process__steps {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(70, 74, 59, 0.1);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__number {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--bg-olive);
  margin-bottom: 12px;
}

.process-step__number-bage {
  padding: 8px 32px;
  border-radius: 30px;
  background: var(--bg-olive);
  color: var(--light-color);
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.process-step__title {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text);
}

.process-step__text {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
  margin-top: 8px;
}

.process__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--bg-olive);
  margin-bottom: 16px;
}

.process__tag-dot {
  width: 20px;
  height: 20px;
}

.process__title {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 600;
  font-style: Italic;
  font-size: 38px;
  line-height: 1.1;
  color: var(--text);
}

.process__text {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
}

.process .btn-olive {
  display: inline-block;
  background: var(--bg-olive);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-alt);
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-olive:hover {
  background: #6a7a0e;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* ===== АДАПТАЦИЯ ===== */
@media (max-width: 992px) {
  .process__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process__left {
    grid-column: auto;
    grid-row: auto;
  }
  .process__image-wrapper {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }
  .process__steps {
    grid-column: auto;
    grid-row: auto;
  }
  .process__title {
    font-size: 32px;
  }
  .process__text {
    font-size: 18px;
  }
  .process-step__title {
    font-size: 22px;
  }
  .process-step__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .process {
    padding: 50px 0;
  }
  .process__container {
    gap: 30px;
  }
  .process__title {
    font-size: 28px;
  }
  .process__text {
    font-size: 16px;
  }
  .process__tag {
    font-size: 18px;
  }
  .process-step__number {
    font-size: 18px;
  }
  .process-step__title {
    font-size: 20px;
  }
  .process-step__text {
    font-size: 15px;
  }
  .process-step__number-bage {
    padding: 6px 20px;
  }
  .btn-olive {
    padding: 10px 24px;
    font-size: 14px;
  }
}
/* ===== ADVANTAGES SECTION ===== */
.advantages {
  background-color: var(--bg-cream);
  padding: 60px 0;
}

.advantages__container {
  max-width: 1380px;
}

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

.advantages-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  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;
  position: relative;
  overflow: hidden;
}

.advantages-card:nth-child(1) {
  background-image: url("../img/icon-1.png");
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.advantages-card:nth-child(2) {
  background-image: url("../img/icon-2.png");
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.advantages-card:nth-child(3) {
  background-image: url("../img/icon-3.png");
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.advantages-card--center {
  background: #FFF8DD;
}

.advantages-card--featured {
  background-color: rgba(249, 220, 64, 0.8);
}

.advantages-card__title {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: italic;
  font-size: 30px;
  line-height: 30px;
  color: var(--text);
  margin-bottom: 15px;
}

.advantages-card__text {
  margin: 0;
  max-width: 300px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  color: var(--text);
}

.advantages__cta-banner {
  position: relative;
  background-color: rgba(159, 177, 17, 0.6980392157);
  border-radius: var(--radius);
  padding: 48px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.advantages-social {
  position: absolute;
  right: 40px;
  bottom: 40px;
}

.advantages-social__link img {
  width: 60px;
  height: 60px;
}

.advantages__cta-title {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: italic;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
  margin-bottom: 20px;
}

.advantages__cta-sub {
  margin: 0 auto;
  max-width: 650px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  line-height: 20px;
  text-align: center;
}

.btn-white {
  display: inline-block;
  background-color: var(--white);
  color: var(--bg-olive);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 25px;
  line-height: 20px;
  text-align: center;
  padding: 22px 50px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-top: 8px;
  text-decoration: none;
}

.btn-white:hover {
  background-color: var(--bg-yellow);
  color: var(--text-dark);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ===== АДАПТАЦИЯ ===== */
@media (max-width: 992px) {
  .advantages {
    padding: 50px 0;
  }
  .advantages__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .advantages-card__title {
    font-size: 26px;
    line-height: 28px;
  }
  .advantages-card__text {
    font-size: 18px;
    line-height: 22px;
    max-width: 250px;
  }
  .advantages__cta-banner {
    padding: 40px 30px;
  }
  .advantages__cta-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .advantages__cta-sub {
    font-size: 18px;
    line-height: 24px;
    max-width: 500px;
  }
  .btn-white {
    font-size: 20px;
    padding: 16px 40px;
  }
  .advantages-social {
    position: static;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding: 40px 0;
  }
  .advantages__container {
    padding: 0 4%;
  }
  .advantages__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  .advantages-card {
    padding: 20px 20px;
    background-size: 20% !important;
  }
  .advantages-card__title {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .advantages-card__text {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
  }
  .advantages__cta-banner {
    padding: 30px 20px;
  }
  .advantages__cta-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .advantages__cta-sub {
    font-size: 16px;
    line-height: 22px;
    max-width: 100%;
  }
  .btn-white {
    font-size: 16px;
    padding: 12px 24px;
    margin-top: 4px;
  }
  .advantages-social {
    margin-top: 16px;
  }
  .advantages-social__link img {
    width: 40px;
    height: 40px;
  }
}
/* Маленькие мобильные устройства (до 480px) */
@media (max-width: 480px) {
  .advantages {
    padding: 30px 0;
  }
  .advantages__cards {
    gap: 12px;
    margin-bottom: 20px;
  }
  .advantages-card {
    padding: 16px 16px;
  }
  .advantages-card__title {
    font-size: 20px;
    line-height: 24px;
  }
  .advantages-card__text {
    font-size: 14px;
    line-height: 18px;
  }
  .advantages__cta-banner {
    padding: 24px 16px;
  }
  .advantages__cta-title {
    font-size: 22px;
  }
  .advantages__cta-sub {
    font-size: 14px;
    line-height: 20px;
  }
  .btn-white {
    font-size: 14px;
    padding: 10px 20px;
  }
}
/* ===== СЕКЦИЯ ОТЗЫВОВ ===== */
.section {
  background: rgba(249, 220, 64, 0.3019607843);
  padding: 60px 5%;
  font-family: var(--font);
}

.section .container {
  max-width: 1380px;
  margin: 0 auto;
}

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

.cercle {
  width: 10px;
  height: 10px;
}

.label-text {
  font-weight: 500;
  font-size: 25px;
  color: rgba(51, 53, 51, 0.6);
  line-height: 40px;
  letter-spacing: 0px;
}

.section h2 {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--text);
  margin: 20px 0;
}

.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ----- ЛЕВАЯ КОЛОНКА (фото) ----- */
.photo-col {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 478px;
  position: relative;
}

.photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 700px;
  position: relative;
  background: #e8e0c8;
}

.photo-item {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.photo-item.active {
  opacity: 1;
}

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

.name-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  border-radius: 60px;
  padding: 8px 16px 8px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  z-index: 10;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  background: #EEE9C8;
}

.badge-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.badge-role {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
}

/* ----- ПРАВАЯ КОЛОНКА (слайдер) ----- */
.slider-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 600px;
  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;
}

.swiper-reviews {
  width: 100%;
  border-radius: var(--radius);
}

.swiper-reviews .swiper-slide {
  height: auto;
}

/* ----- КАРТОЧКА ----- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 473px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-name {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 30px;
  color: rgba(70, 74, 59, 0.8980392157);
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}

.was-label {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 20px;
  color: rgba(70, 74, 59, 0.6);
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.was-text {
  margin: 0;
  font-family: Montserrat;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  color: rgba(70, 74, 59, 0.8980392157);
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.btn-sol {
  display: inline-block;
  background: var(--green);
  border: none;
  border-radius: 40px;
  padding: 16px 34px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 25px;
  color: var(--white);
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-bottom: 16px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

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

/* ----- РЕЗУЛЬТАТЫ (PILL) ----- */
.results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pill {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 3px solid rgba(159, 177, 17, 0.6);
  padding: 15px 12px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pill.y {
  background: var(--bg-yellow);
  border: none;
}

.pill-num {
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 28px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}

.pill.y .pill-num {
  font-size: 28px;
}

.pill-desc {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}

/* ----- НАВИГАЦИЯ (СКРЫТА) ----- */
.nav-row {
  display: none;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #d5d2be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: var(--bg-yellow);
  border-color: var(--bg-yellow);
}

.nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== АДАПТАЦИЯ ===== */
/* Планшеты (до 992px) */
@media (max-width: 992px) {
  .section {
    padding: 50px 4%;
  }
  .section h2 {
    margin: 0;
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
  }
  .top-label {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .layout {
    -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;
  }
  .photo-col {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 90%;
    max-width: 700px;
  }
  .photo-wrap {
    height: 473px;
    width: 100%;
  }
  .slider-col {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 90%;
    max-width: 700px;
    min-width: auto;
  }
  .card {
    height: 473px;
    padding: 24px;
  }
  .card-name {
    font-size: 26px;
  }
  .was-label {
    font-size: 18px;
  }
  .was-text {
    font-size: 18px;
  }
  .btn-sol {
    padding: 14px 28px;
    font-size: 20px;
  }
  .results {
    gap: 10px;
  }
  .pill {
    padding: 12px 10px;
    min-width: 120px;
  }
  .pill-num {
    font-size: 22px;
  }
  .pill.y .pill-num {
    font-size: 22px;
  }
  .pill-desc {
    font-size: 12px;
  }
  /* БЕЙДЖ СВЕРХУ */
  .name-badge {
    top: 24px !important;
    left: 24px !important;
    bottom: auto !important;
    padding: 10px 18px 10px 12px;
  }
  .badge-avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .badge-name {
    font-size: 13px;
  }
  .badge-role {
    font-size: 10px;
  }
}
/* Планшеты малые (до 820px) */
@media (max-width: 820px) {
  .photo-col {
    width: 95%;
    max-width: 600px;
  }
  .slider-col {
    width: 95%;
    max-width: 600px;
  }
  .photo-wrap {
    height: 450px;
  }
  .card {
    height: 450px;
    padding: 20px;
  }
  .card-name {
    font-size: 24px;
  }
  .was-label {
    font-size: 16px;
  }
  .was-text {
    font-size: 16px;
  }
  .btn-sol {
    padding: 12px 24px;
    font-size: 18px;
  }
  .pill-num {
    font-size: 20px;
  }
  .pill-desc {
    font-size: 11px;
  }
  .name-badge {
    top: 20px !important;
    left: 20px !important;
  }
}
/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
  .section {
    padding: 40px 4%;
  }
  .section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
  }
  .top-label {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .layout {
    -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: 24px;
  }
  .photo-col {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    max-width: 287px;
  }
  .slider-col {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 287px;
    min-width: auto;
  }
  .photo-wrap {
    width: 100%;
    height: auto;
    max-height: 400px;
    aspect-ratio: 478/712;
  }
  .swiper-reviews {
    width: 100%;
  }
  .card {
    padding: 16px;
    height: auto;
  }
  .card-name {
    font-size: 20px;
  }
  .was-label {
    font-size: 14px;
  }
  .was-text {
    font-size: 16px;
  }
  .btn-sol {
    padding: 10px 20px;
    font-size: 18px;
  }
  .results {
    gap: 8px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .pill {
    padding: 10px 8px;
    min-width: 100px;
  }
  .pill-num {
    font-size: 18px;
  }
  .pill.y .pill-num {
    font-size: 18px;
  }
  .pill-desc {
    font-size: 10px;
  }
  .name-badge {
    padding: 8px 14px 8px 10px;
  }
  .badge-avatar {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .badge-name {
    font-size: 12px;
  }
  .badge-role {
    font-size: 9px;
  }
}
/* Маленькие мобильные (до 540px) */
@media (max-width: 540px) {
  .photo-col {
    max-width: 100%;
  }
  .slider-col {
    max-width: 100%;
  }
  .photo-wrap {
    max-height: 400px;
  }
  .name-badge {
    padding: 6px 12px 6px 8px;
  }
  .badge-avatar {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .badge-name {
    font-size: 11px;
  }
  .badge-role {
    font-size: 9px;
  }
  .card {
    padding: 14px;
  }
  .card-name {
    font-size: 18px;
  }
  .was-label {
    font-size: 12px;
  }
  .was-text {
    font-size: 14px;
  }
  .btn-sol {
    padding: 8px 16px;
    font-size: 16px;
  }
  .results {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
  .pill {
    width: 100%;
    min-width: auto;
    padding: 10px 12px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
  }
  .pill-num {
    font-size: 16px;
    margin-bottom: 0;
  }
  .pill.y .pill-num {
    font-size: 16px;
  }
  .pill-desc {
    font-size: 12px;
    text-align: right;
  }
}
/* ===== FAQ SECTION ===== */
.faq {
  background-color: var(--bg-cream);
  padding: 60px 0;
}

.faq__container {
  max-width: 1200px;
}

.faq__title {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 80px;
  color: var(--text);
  line-height: 70px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 40px;
}

.faq__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.faq-item--active {
  background-color: var(--bg-olive);
}

.faq-item__header {
  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;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq-item__question {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0%;
  color: var(--text-dark);
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}

.faq-item--active .faq-item__question {
  color: var(--white);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 2.5;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.faq-item--active .faq-item__icon {
  background-color: var(--bg-yellow);
}

.faq-item__icon svg.rotated {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.faq-item__body.open {
  max-height: 300px;
}

.faq-item__answer {
  padding: 0 24px 20px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  line-height: 22px;
  letter-spacing: 0%;
}

/* ===== АДАПТАЦИЯ ===== */
/* Планшеты (до 992px) */
@media (max-width: 992px) {
  .faq {
    padding: 50px 0;
  }
  .faq__title {
    font-size: 60px;
    line-height: 55px;
    margin-bottom: 30px;
  }
  .faq__grid {
    gap: 14px;
  }
  .faq-item__header {
    padding: 16px 20px;
  }
  .faq-item__question {
    font-size: 18px;
    line-height: 22px;
  }
  .faq-item__icon {
    width: 24px;
    height: 24px;
  }
  .faq-item__icon svg {
    width: 12px;
    height: 12px;
  }
  .faq-item__answer {
    padding: 0 20px 16px;
    font-size: 16px;
    line-height: 20px;
  }
  .faq-item__body.open {
    max-height: 250px;
  }
}
/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
  .faq__container {
    padding: 0 4%;
  }
  .faq__title {
    font-size: 42px;
    line-height: 45px;
    margin-bottom: 24px;
  }
  .faq__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq-item__header {
    padding: 14px 18px;
    gap: 12px;
  }
  .faq-item__question {
    font-size: 16px;
    line-height: 20px;
  }
  .faq-item__icon {
    width: 22px;
    height: 22px;
  }
  .faq-item__icon svg {
    width: 10px;
    height: 10px;
  }
  .faq-item__answer {
    padding: 0 18px 14px;
    font-size: 14px;
    line-height: 18px;
  }
  .faq-item__body.open {
    max-height: 200px;
  }
}
/* Маленькие мобильные (до 480px) */
@media (max-width: 480px) {
  .faq {
    padding: 30px 0;
  }
  .faq__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .faq__grid {
    gap: 10px;
  }
  .faq-item {
    border-radius: 20px;
  }
  .faq-item__header {
    padding: 12px 16px;
    gap: 10px;
  }
  .faq-item__question {
    font-size: 14px;
    line-height: 18px;
  }
  .faq-item__icon {
    width: 20px;
    height: 20px;
  }
  .faq-item__icon svg {
    width: 9px;
    height: 9px;
  }
  .faq-item__answer {
    padding: 0 16px 12px;
    font-size: 13px;
    line-height: 17px;
  }
  .faq-item__body.open {
    max-height: 180px;
  }
}
/* ===== WHY-US SECTION ===== */
.why-us {
  background-color: var(--bg-cream);
  padding: 60px 0;
}

.why-us__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.why-us__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.why-us__title {
  margin: 0 0 30px 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 90px;
  line-height: 80px;
  letter-spacing: 0%;
  color: var(--text);
}

.why-us__title span {
  display: block;
  font-weight: 700;
  font-style: Italic;
  font-size: 70px;
  color: var(--bg-olive);
  line-height: 80px;
  letter-spacing: 0%;
}

.why-us__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  border-radius: 16px;
  padding: 24px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -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;
  height: 100%;
}

.why-card:nth-child(odd) {
  background-color: var(--white);
}

.why-card:nth-child(even) {
  background-color: #FFF8DD;
}

.why-card:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-card__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.why-card__title {
  margin: 0 0 15px 0;
  font-family: var(--font-alt);
  font-weight: 700;
  font-style: Italic;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--text);
}

.why-card__text {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0%;
  color: var(--text-muted);
}

.why-us__video-wrapper {
  width: 605px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  background-color: #1a1a2e;
  position: relative;
  aspect-ratio: 16/9;
  max-height: 500px;
}

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

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.video-play-btn:hover {
  background: var(--bg-yellow);
  border-color: var(--bg-yellow);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn:hover svg polygon {
  fill: var(--text-dark);
}

.video-play-btn.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fullscreen-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
}

.why-us__video-wrapper:hover .fullscreen-btn {
  opacity: 1;
}

.fullscreen-btn svg {
  width: 20px;
  height: 20px;
  color: white;
}

.fullscreen-btn:hover {
  background: var(--bg-yellow);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.fullscreen-btn:hover svg {
  color: var(--text-dark);
}

video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

video:-ms-fullscreen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

video:fullscreen {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .why-us__title {
    font-size: 70px;
    line-height: 65px;
  }
  .why-us__title span {
    font-size: 55px;
    line-height: 60px;
  }
  .why-card__title {
    font-size: 24px;
    line-height: 28px;
  }
  .why-card__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1024px) {
  .why-us__container {
    gap: 40px;
  }
  .why-us__title {
    font-size: 60px;
    line-height: 55px;
    margin-bottom: 25px;
  }
  .why-us__title span {
    font-size: 48px;
    line-height: 50px;
  }
  .why-us__video-wrapper {
    width: 450px;
    max-height: 380px;
  }
  .video-play-btn {
    width: 70px;
    height: 70px;
  }
  .video-play-btn svg {
    width: 28px;
    height: 28px;
  }
  .why-card {
    padding: 18px 16px;
    gap: 12px;
  }
  .why-card__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .why-card__text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 900px) {
  .why-us__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }
  .why-us__video-wrapper {
    width: 400px;
    max-height: 340px;
  }
  .why-us__title {
    font-size: 50px;
    line-height: 48px;
  }
  .why-us__title span {
    font-size: 40px;
    line-height: 44px;
  }
  .why-us__grid {
    gap: 15px;
  }
  .why-card__title {
    font-size: 18px;
    line-height: 22px;
  }
  .why-card__text {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .why-us {
    padding: 40px 0;
  }
  .why-us__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .why-us__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .why-us__video-wrapper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    max-width: 500px;
    max-height: 320px;
    margin: 0 auto;
    aspect-ratio: 16/9;
  }
  .why-us__title {
    font-size: 42px;
    line-height: 45px;
    text-align: center;
    margin-bottom: 25px;
  }
  .why-us__title span {
    font-size: 34px;
    line-height: 40px;
  }
  .why-us__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .video-play-btn {
    width: 65px;
    height: 65px;
  }
  .video-play-btn svg {
    width: 26px;
    height: 26px;
  }
  .why-card {
    padding: 16px;
    gap: 14px;
  }
  .why-card__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .why-card__text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 480px) {
  .why-us {
    padding: 30px 0;
  }
  .why-us__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .why-us__title span {
    font-size: 26px;
    line-height: 32px;
  }
  .why-us__grid {
    gap: 12px;
  }
  .why-card {
    padding: 14px;
    gap: 12px;
  }
  .why-card__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  .why-card__text {
    font-size: 14px;
    line-height: 18px;
  }
  .why-us__video-wrapper {
    max-width: 100%;
    max-height: 250px;
  }
  .video-play-btn {
    width: 55px;
    height: 55px;
  }
  .video-play-btn svg {
    width: 22px;
    height: 22px;
  }
}
/* ===== CONTACT SECTION ===== */
.contact {
  background: rgba(70, 74, 59, 0.6980392157);
  padding: 60px 0;
}

.contact__container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 5%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 480px;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.contact__title {
  margin: 0;
  font-family: var(--font-alt);
  font-weight: 600;
  font-style: Italic;
  font-size: 70px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

.contact__title span {
  color: var(--bg-yellow);
}

.contact__text {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 35px 30px 30px;
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-main);
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  color: var(--text);
  line-height: 1.3;
}

.contact__text::before {
  content: url("../img/cercle-1.png");
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

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

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

.contact__icon {
  width: 40px;
  height: 40px;
}

.contact__info-text {
  font-family: var(--font-main);
  margin: 0;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  color: var(--white);
  text-decoration: none;
}

.contact__info-text:hover {
  text-decoration: underline;
}

.contact__info-sub {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  line-height: 24px;
  opacity: 0.8;
}

.contact__socials {
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
}

.contact__social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact__social-link:hover {
  background: var(--bg-yellow);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.contact__social-icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.contact__image {
  width: 100%;
  height: auto;
  max-height: 550px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: var(--radius);
}

/* ===== АДАПТАЦИЯ ===== */
/* Планшеты (до 1024px) */
@media (max-width: 1024px) {
  .contact {
    padding: 50px 0;
  }
  .contact__container {
    -ms-grid-columns: 1fr 400px;
    grid-template-columns: 1fr 400px;
    gap: 50px;
  }
  .contact__title {
    font-size: 55px;
  }
  .contact__text {
    font-size: 18px;
    padding: 25px;
  }
  .contact__text::before {
    display: none;
  }
  .contact__info-text {
    font-size: 20px;
    line-height: 26px;
  }
  .contact__info-sub {
    font-size: 16px;
    line-height: 22px;
  }
  .contact__socials {
    padding-left: 0;
  }
  .contact__social-link {
    width: 50px;
    height: 50px;
  }
  .contact__social-icon {
    width: 40px;
    height: 40px;
  }
  .contact__image {
    max-height: 450px;
  }
}
/* Планшеты (до 900px) */
@media (max-width: 900px) {
  .contact__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__title {
    text-align: center;
    font-size: 50px;
  }
  .contact__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .contact__image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
  .contact__text {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contact__info-item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contact__socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
  }
}
/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
  .contact__container {
    gap: 30px;
    padding: 0 0;
  }
  .contact__title {
    font-size: 40px;
    text-align: center;
    padding: 0 16px;
  }
  .contact__text {
    font-size: 16px;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    border-radius: 0;
    margin: 0;
  }
  .contact__text::before {
    display: none;
  }
  .contact__info {
    gap: 16px;
    padding: 0 16px;
  }
  .contact__info-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
  }
  .contact__info-icon {
    width: 48px;
    height: 48px;
  }
  .contact__icon {
    width: 32px;
    height: 32px;
  }
  .contact__info-text {
    font-size: 18px;
    line-height: 24px;
  }
  .contact__info-sub {
    font-size: 14px;
    line-height: 20px;
  }
  .contact__socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    gap: 12px;
    margin-top: 8px;
  }
  .contact__social-link {
    width: 48px;
    height: 48px;
  }
  .contact__social-icon {
    width: 34px;
    height: 34px;
  }
  .contact__image {
    display: none;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 30px 0;
  }
  .contact__container {
    gap: 20px;
  }
  .contact__title {
    font-size: 32px;
    padding: 0 12px;
  }
  .contact__text {
    font-size: 14px;
    padding: 16px;
  }
  .contact__info {
    padding: 0 12px;
  }
  .contact__info-item {
    gap: 12px;
  }
  .contact__info-icon {
    width: 40px;
    height: 40px;
  }
  .contact__icon {
    width: 28px;
    height: 28px;
  }
  .contact__info-text {
    font-size: 16px;
    line-height: 22px;
  }
  .contact__info-sub {
    font-size: 12px;
    line-height: 18px;
  }
  .contact__socials {
    gap: 10px;
  }
  .contact__social-link {
    width: 44px;
    height: 44px;
  }
  .contact__social-icon {
    width: 32px;
    height: 32px;
  }
}
/* Очень маленькие (до 360px) */
@media (max-width: 360px) {
  .contact__title {
    font-size: 28px;
  }
  .contact__text {
    font-size: 13px;
  }
  .contact__info-text {
    font-size: 14px;
  }
  .contact__info-sub {
    font-size: 11px;
  }
  .contact__social-link {
    width: 40px;
    height: 40px;
  }
  .contact__social-icon {
    width: 30px;
    height: 30px;
  }
}
/* ============================================
   СТРАНИЦА ПОЛИТИКИ КОНФИДЕНЦИАЛЬНОСТИ
   ============================================ */
.privacy-policy {
  padding: 80px 5%;
  background: var(--bg-cream, #f5f0e8);
}

.privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white, #ffffff);
  padding: 60px 80px;
  border-radius: 30px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.privacy-policy__title {
  font-family: var(--font-alt, "Rubik", sans-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 42px;
  line-height: 1.2;
  color: var(--text-dark, #333);
  margin: 0 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--bg-yellow, #F9DC40);
}

.privacy-policy__content {
  font-family: var(--font-main, "Montserrat", sans-serif);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text, #464A3B);
}

.privacy-policy__content h2 {
  font-family: var(--font-alt, "Rubik", sans-serif);
  font-weight: 700;
  font-size: 26px;
  margin: 40px 0 15px 0;
  color: var(--text-dark, #222);
}

.privacy-policy__content h3 {
  font-family: var(--font-alt, "Rubik", sans-serif);
  font-weight: 600;
  font-size: 22px;
  margin: 30px 0 10px 0;
  color: var(--text-dark, #222);
}

.privacy-policy__content p {
  margin: 0 0 15px 0;
}

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

.privacy-policy__content li {
  margin-bottom: 8px;
}

.privacy-policy__content a {
  color: var(--bg-olive, #849213);
  text-decoration: underline;
}

.privacy-policy__content a:hover {
  color: var(--bg-yellow, #F9DC40);
  text-decoration: none;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 60px 4%;
  }
  .privacy-policy__container {
    padding: 30px 20px;
  }
  .privacy-policy__title {
    font-size: 32px;
  }
  .privacy-policy__content {
    font-size: 16px;
    line-height: 1.7;
  }
  .privacy-policy__content h2 {
    font-size: 22px;
  }
  .privacy-policy__content h3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .privacy-policy__title {
    font-size: 26px;
  }
  .privacy-policy__container {
    padding: 20px 15px;
  }
}
/* ===== СТРАНИЦА 404 ===== */
.error-404 {
  padding: 120px 5%;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--bg-cream, #f5f0e8);
}

.error-404__container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.error-404__content {
  text-align: center;
  background: var(--white, #ffffff);
  padding: 60px 80px;
  border-radius: 30px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.error-404__title {
  font-family: var(--font-alt, "Rubik", sans-serif);
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  color: var(--bg-yellow, #F9DC40);
  margin: 0;
  text-shadow: 4px 4px 0 rgba(132, 146, 19, 0.15);
}

.error-404__subtitle {
  font-family: var(--font-alt, "Rubik", sans-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  color: var(--text-dark, #333);
  margin: 10px 0 20px 0;
}

.error-404__text {
  font-family: var(--font-main, "Montserrat", sans-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted, #666);
  margin: 0 0 10px 0;
}

.error-404__text:last-of-type {
  margin-bottom: 30px;
}

.error-404__actions {
  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;
}

.error-404__actions .btn-primary {
  font-family: var(--font-alt, "Rubik", sans-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  background: var(--bg-yellow, #F9DC40);
  color: var(--text-dark, #333);
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.error-404__actions .btn-primary:hover {
  background: var(--bg-olive, #849213);
  color: var(--white, #fff);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(132, 146, 19, 0.25);
  box-shadow: 0 8px 25px rgba(132, 146, 19, 0.25);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 4%;
    min-height: 60vh;
  }
  .error-404__content {
    padding: 40px 30px;
  }
  .error-404__title {
    font-size: 80px;
  }
  .error-404__subtitle {
    font-size: 24px;
  }
  .error-404__text {
    font-size: 16px;
  }
  .error-404__actions .btn-primary {
    font-size: 18px;
    padding: 14px 32px;
  }
}
@media (max-width: 480px) {
  .error-404 {
    padding: 40px 4%;
    min-height: 50vh;
  }
  .error-404__content {
    padding: 30px 20px;
  }
  .error-404__title {
    font-size: 60px;
  }
  .error-404__subtitle {
    font-size: 20px;
  }
  .error-404__text {
    font-size: 15px;
  }
  .error-404__actions .btn-primary {
    font-size: 16px;
    padding: 12px 24px;
  }
}
/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--text-dark, #464A3B);
  padding: 16px 20px;
  -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--bg-yellow, #F9DC40);
}

.cookie-banner__container {
  max-width: 1380px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-family: var(--font-main, "Montserrat", sans-serif);
  font-size: 14px;
  line-height: 1.5;
  color: var(--white, #ffffff);
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cookie-banner__link {
  color: var(--bg-yellow, #F9DC40);
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.cookie-banner__link:hover {
  color: var(--bg-olive, #849213);
  text-decoration: none;
}

.cookie-banner__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: var(--font-alt, "Rubik", sans-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  background: var(--bg-yellow, #F9DC40);
  color: var(--text-dark, #333);
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie-banner__btn:hover {
  background: var(--bg-olive, #849213);
  color: var(--white, #fff);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(132, 146, 19, 0.3);
  box-shadow: 0 4px 15px rgba(132, 146, 19, 0.3);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 14px 16px;
  }
  .cookie-banner__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
  }
  .cookie-banner__text {
    font-size: 13px;
    text-align: center;
  }
  .cookie-banner__btn {
    font-size: 14px;
    padding: 8px 24px;
    width: 100%;
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  .cookie-banner__text {
    font-size: 12px;
  }
  .cookie-banner__btn {
    font-size: 13px;
    padding: 8px 20px;
    max-width: 100%;
  }
}
.footer {
  position: relative;
  padding: 20px 30px;
  background: var(--bg-cream);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer__logo-img {
  width: auto;
  height: 255px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

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

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

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

.footer__link {
  position: relative;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-al);
  font-weight: 700;
  font-style: Italic;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: var(--text);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--bg-olive);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.footer__menu li {
  margin-bottom: 10px !important;
  list-style: none !important;
}

/* Последний пункт без отступа */
.footer__menu li:last-child {
  margin-bottom: 0 !important;
}

.footer__link:hover {
  color: var(--bg-olive);
}

.footer__link:hover::after {
  width: 100%;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
}

.footer__phone {
  font-family: var(--font-alt);
  font-weight: 500;
  font-style: italic;
  font-size: 25px;
  padding: 14px 45px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--light-color);
  background: var(--green);
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 7.09px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 0px 7.09px 0px rgba(0, 0, 0, 0.1019607843);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__phone:hover {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  text-decoration: none;
  background: rgba(62, 66, 34, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__social:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}

.footer__social img {
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 30px;
  max-width: 1300px;
  gap: 20px;
}

.footer__copyright {
  margin: 0;
  font-size: 13px;
  color: var(--green);
  font-family: Rubik;
  font-weight: 500;
  font-style: Italic;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.footer__policy {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  font-family: Rubik;
  font-weight: 500;
  font-style: Italic;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__policy:hover {
  text-decoration: underline;
  color: var(--green);
}

.footer__dev {
  margin: 0;
  font-size: 13px;
  color: var(--green);
  font-family: Rubik;
  font-weight: 500;
  font-style: Italic;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__dev a {
  text-decoration: none;
  color: var(--color-medium-green);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__dev a:hover {
  text-decoration: underline;
  color: var(--color-dark-green);
}

@media (width <= 1024px) {
  .footer {
    padding: 50px 20px 25px;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }
  .footer__logo {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 10px;
  }
  .footer__nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }
  .footer__col {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__link::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .footer__right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
@media (width <= 768px) {
  .footer {
    padding: 40px 16px 20px;
  }
  .footer__inner {
    gap: 30px;
  }
  .footer__nav {
    gap: 30px;
  }
  .footer__link {
    font-size: 16px;
  }
  .footer__logo-img {
    height: 120px;
  }
  .footer__phone {
    font-size: 22px;
  }
  .footer__social {
    width: 38px;
    height: 38px;
  }
  .footer__copyright,
  .footer__policy,
  .footer__dev {
    font-size: 12px;
  }
}
@media (width <= 576px) {
  .footer {
    padding: 30px 12px 20px;
  }
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px 30px;
  }
  .footer__col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 120px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__phone {
    font-size: 20px;
  }
  .footer__socials {
    gap: 12px;
  }
  .footer__social {
    width: 36px;
    height: 36px;
  }
  .footer__bottom {
    gap: 10px;
  }
}/*# sourceMappingURL=main.css.map */
