@charset "UTF-8";
:root {
  --font-family:"Montserrat", "Bounded", "Open Sans", sans-serif;
  --content-width: 1570px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --light-blue: #669BBC;
  --text-color: #141414;
  --primary: #669BBC;
  --primary-light: #8cb3d3;
  --primary-dark: #4a7fa3;
  --secondary: #f97316;
  --light-bg: #f8fafc;
  --light-card: #ffffff;
  --light-border: #e2e8f0;
  --text-primary: #141414;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
}

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

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

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

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

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

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

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

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

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

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

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

.centered {
  text-align: center;
}

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

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

.graph-modal__container {
  font-family: "Montserrat", sans-serif;
}

.graph-modal__container img {
  border-radius: 8px;
}

.graph-modal__close {
  width: 12px;
  height: 12px;
}

.modal__container {
  color: var(--text-primary);
  width: 100%;
  border-radius: 16px;
  position: relative;
  -webkit-animation: modalAppear 0.4s ease-out;
  animation: modalAppear 0.4s ease-out;
  margin: 20px auto;
}

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

@keyframes modalAppear {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.modal__header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid var(--light-border);
  border-radius: 16px 16px 0 0;
}

.modal__badge {
  display: inline-block;
  background: var(--success);
  color: var(--light-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.modal__title {
  color: var(--primary-dark);
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  line-height: 1.3;
}

.modal__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.modal__content {
  padding: 30px 40px 40px;
}

.modal__section {
  margin-bottom: 40px;
}

.modal__section-title {
  color: var(--primary-dark);
  border-left: 4px solid var(--success);
  padding-left: 16px;
  margin: 0 0 25px 0;
  font-size: 1.4rem;
}

.modal__section--highlight {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--light-border);
}

.modal__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.modal__problem {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  padding: 20px;
  border-radius: 10px;
}

.modal__problem h4 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 10px;
}

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

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

.modal__step-number {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--light-color);
  width: 40px;
  height: 40px;
  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-weight: bold;
}

.modal__step-content h4 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 8px;
}

.modal__step-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

.modal__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.modal__result-content h4 {
  color: var(--success);
  margin-top: 0;
  margin-bottom: 8px;
}

.modal__testimonial {
  background: -webkit-gradient(linear, left top, right top, from(var(--light-bg)), to(#ffffff));
  background: linear-gradient(to right, var(--light-bg), #ffffff);
  border-left: 5px solid var(--primary);
  padding: 25px;
  margin: 40px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.modal__testimonial-author {
  margin-top: 15px;
  text-align: right;
  color: var(--text-secondary);
}

.modal__cta {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px dashed var(--primary-light);
}

.modal__cta-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.modal__cta-button {
  background: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--primary-dark)));
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--light-color);
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 5px 15px rgba(102, 155, 188, 0.4);
  box-shadow: 0 5px 15px rgba(102, 155, 188, 0.4);
}

.modal__cta-button:hover {
  -webkit-box-shadow: 0 8px 20px rgba(102, 155, 188, 0.6);
  box-shadow: 0 8px 20px rgba(102, 155, 188, 0.6);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* Мобильная адаптация для экранов меньше 768px */
@media (max-width: 768px) {
  .modal__overlay {
    padding: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; /* Для скролла с верху */
  }
  .modal__container {
    margin: 0;
    border-radius: 0;
    max-height: 100vh;
    overflow-y: auto;
  }
  .modal__header {
    padding: 25px 20px 15px;
  }
  .modal__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
  .modal__title {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .modal__subtitle {
    font-size: 0.95rem;
  }
  .modal__content {
    padding: 20px;
  }
  .modal__section {
    margin-bottom: 30px;
  }
  .modal__section-title {
    font-size: 1.2rem;
    padding-left: 12px;
    margin-bottom: 20px;
  }
  .modal__section--highlight {
    padding: 20px 15px;
    margin: 0 -5px;
    border-radius: 8px;
  }
  .modal__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; /* Одна колонка на мобильных */
    gap: 15px;
  }
  .modal__problem {
    padding: 15px;
  }
  .modal__steps {
    gap: 20px;
  }
  .modal__step {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .modal__step-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .modal__results {
    gap: 20px;
  }
  .modal__result {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .modal__testimonial {
    padding: 20px;
    margin: 30px 0;
    font-size: 0.95rem;
  }
  .modal__testimonial-author {
    font-size: 0.9rem;
  }
  .modal__cta {
    padding: 25px 20px;
    margin: 0 -5px;
  }
  .modal__cta-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .modal__cta-button {
    padding: 14px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
}
/* Дополнительная адаптация для очень маленьких экранов */
@media (max-width: 480px) {
  .modal__title {
    font-size: 1.2rem;
  }
  .modal__subtitle {
    font-size: 0.9rem;
  }
  .modal__section-title {
    font-size: 1.1rem;
  }
  .modal__cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--light-bg);
}

/* Хедер */
.header {
  background-color: var(--light-card);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1000;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 20px;
  position: relative;
  gap: 30px;
}

.header-online {
  display: none;
}

.burger-mobile {
  display: none;
  -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;
  width: 30px;
  height: 22px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: none;
  border: none;
}

.burger-mobile__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(1) {
  -webkit-transform: translateY(9.5px) rotate(45deg);
  -ms-transform: translateY(9.5px) rotate(45deg);
  transform: translateY(9.5px) rotate(45deg);
}

.burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(2) {
  opacity: 0;
}

.burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(3) {
  -webkit-transform: translateY(-9.5px) rotate(-45deg);
  -ms-transform: translateY(-9.5px) rotate(-45deg);
  transform: translateY(-9.5px) rotate(-45deg);
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 22px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__logo:hover {
  color: var(--primary-dark);
}

.header__logo-icon {
  width: 42px;
  height: 42px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__logo-text {
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.nav {
  margin-left: 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  text-transform: lowercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link-icon {
  width: 12px;
  height: 8px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.nav__item:hover .nav__link-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--light-card);
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  min-width: 300px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--light-border);
}

.nav__item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header__dropdown-item {
  position: relative;
}

.header__dropdown-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 24px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  font-family: "Montserrat", sans-serif;
}

.header__dropdown-item > a:hover {
  background-color: var(--light-bg);
  color: var(--primary);
  border-left-color: var(--primary);
}

.dropdown-arrow {
  width: 8px;
  height: 12px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__subdropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--light-card);
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  min-width: 250px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid var(--light-border);
  max-height: 380px;
  overflow-y: auto;
  font-family: "Montserrat", sans-serif;
  /* Кастомный скроллбар */
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) transparent;
}

/* Стили для Webkit браузеров */
.header__subdropdown::-webkit-scrollbar {
  width: var(--scrollbar-width);
}

.header__subdropdown::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
  margin: 8px 0;
}

.header__subdropdown::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
  border: 1px solid var(--light-border);
}

.header__subdropdown::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.header__dropdown-parent:hover .header__subdropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.header__dropdown-parent:hover .dropdown-arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.header__subdropdown li a {
  display: block;
  padding: 9px 24px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.header__subdropdown li a:hover {
  background-color: var(--light-bg);
  color: var(--primary);
  border-left-color: var(--primary-light);
}

/* Социальные иконки */
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.social__link:hover {
  background-color: transparent;
  -webkit-transform: translateY(-4px) scale(1.15);
  -ms-transform: translateY(-4px) scale(1.15);
  transform: translateY(-4px) scale(1.15);
}

.social__link img {
  width: 42px;
  height: 42px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.social__link:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/* Текст "Мы онлайн" */
.header__box {
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: right;
}

.header__text {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}

.header__text span {
  color: var(--primary);
  font-weight: 700;
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

/* Кнопка */
.header__btn {
  padding: 12px 28px;
  background-color: var(--primary);
  color: var(--light-color);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.header__btn:hover {
  background-color: var(--primary-dark);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 155, 188, 0.3);
  box-shadow: 0 4px 12px rgba(102, 155, 188, 0.3);
}

/* ===== АДАПТАЦИЯ БЛОКА "МЫ ОНЛАЙН" С 1075px ===== */
@media (max-width: 1075px) {
  .header__container {
    gap: 15px;
    padding: 12px 15px;
  }
  .header__box {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    min-width: 120px;
  }
  .header__text {
    font-size: 12px;
    white-space: normal;
    text-align: right;
    line-height: 1.3;
  }
  .header__text span {
    font-size: 13px;
    margin-bottom: 1px;
  }
  .nav__list {
    gap: 15px;
  }
  .nav__link {
    font-size: 15px;
    gap: 4px;
  }
  .header__logo {
    font-size: 18px;
  }
  .header__logo-icon {
    width: 36px;
    height: 36px;
  }
  .social__link {
    width: 40px;
    height: 40px;
  }
  .social__link img {
    width: 36px;
    height: 36px;
  }
  .header__btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .header__container {
    gap: 12px;
  }
  .header__text {
    font-size: 11px;
  }
  .header__text span {
    font-size: 12px;
  }
  .nav__list {
    gap: 12px;
  }
  .nav__link {
    font-size: 14px;
  }
}
@media (max-width: 970px) {
  .nav__list {
    gap: 10px;
  }
  .nav__link {
    font-size: 13px;
  }
  .header__btn {
    padding: 9px 18px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .header__container {
    gap: 10px;
  }
  .nav__list {
    gap: 8px;
  }
  .nav__link {
    font-size: 12px;
  }
  .header__logo {
    font-size: 16px;
  }
  .header__logo-icon {
    width: 32px;
    height: 32px;
  }
  .social__link {
    width: 36px;
    height: 36px;
  }
  .social__link img {
    width: 32px;
    height: 32px;
  }
}
/* ===== ПЛАНШЕТНАЯ ВЕРСИЯ ===== */
@media (max-width: 850px) {
  .header__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 12px;
    padding: 12px 15px;
  }
  .nav {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    margin: 0;
    display: none;
  }
  .nav.active {
    display: block;
  }
  .burger-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 28px;
    height: 20px;
  }
  .burger-mobile__line {
    height: 2.5px;
  }
  .burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(1) {
    -webkit-transform: translateY(8.5px) rotate(45deg);
    -ms-transform: translateY(8.5px) rotate(45deg);
    transform: translateY(8.5px) rotate(45deg);
  }
  .burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(3) {
    -webkit-transform: translateY(-8.5px) rotate(-45deg);
    -ms-transform: translateY(-8.5px) rotate(-45deg);
    transform: translateY(-8.5px) rotate(-45deg);
  }
  .header__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .social {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 auto;
    gap: 8px;
  }
  .header__box {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }
  .header__btn {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .nav__link {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--light-border);
  }
  /* Выпадающее меню для планшетов */
  .header__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    background: var(--light-bg);
    border-radius: 0;
    margin-left: 15px;
    min-width: auto;
  }
  .header__dropdown.active {
    max-height: 1000px;
  }
  .header__dropdown-item > a {
    padding: 12px 20px;
    font-size: 16px;
    border-left: none;
    border-bottom: 1px solid var(--light-border);
  }
  /* Вложенное меню с кастомным скроллом */
  .header__subdropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    padding: 0;
    margin-left: 20px;
    min-width: auto;
  }
  .header__subdropdown.active {
    max-height: 400px;
  }
  .header__subdropdown li a {
    padding: 10px 30px;
    font-size: 14px;
  }
}
/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 768px) {
  .header {
    padding: 12px 0 10px 0;
  }
  .header__container {
    padding: 0 12px;
    gap: 8px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    row-gap: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
  }
  /* Блок "Мы онлайн" */
  .header-online {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 10px 0;
    z-index: 999;
  }
  .header-online__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 12px;
    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;
  }
  .header-online__text {
    margin: 0;
    font-size: 14px;
    color: var(--light-color);
    font-weight: 500;
    text-align: center;
    font-family: "Montserrat", sans-serif;
  }
  .header-online__text span {
    font-weight: 700;
    margin-right: 5px;
  }
  .header__box {
    display: none;
  }
  /* Лого (слева) - соцсети (центр) - бургер (справа) */
  .burger-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-left: auto;
    width: 26px;
    height: 18px;
  }
  .burger-mobile__line {
    height: 2px;
  }
  .burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  .burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  .header__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-left: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-width: auto;
  }
  .social {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__btn {
    display: none;
  }
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--light-card);
    overflow-y: auto;
    z-index: 998;
    padding: 0 12px;
    margin: 0;
    display: none;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) transparent;
  }
  .nav::-webkit-scrollbar {
    width: 4px;
  }
  .nav::-webkit-scrollbar-track {
    background: transparent;
  }
  .nav::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 2px;
  }
  .nav.active {
    display: block;
  }
  .header__logo-text {
    font-size: 18px;
  }
  .header__logo-icon {
    width: 36px;
    height: 36px;
  }
}
/* Корректная адаптация после 400px */
@media (max-width: 480px) {
  .header {
    padding: 10px 0 8px 0;
  }
  .header__container {
    padding: 0 10px;
    height: 56px;
    gap: 10px;
  }
  .header-online {
    padding: 8px 0;
  }
  .header-online__container {
    padding: 0 10px;
  }
  .header-online__text {
    font-size: 13px;
  }
  .nav {
    top: 56px;
    height: calc(100vh - 56px);
    padding: 0 10px;
  }
  .header__logo-text {
    font-size: 16px;
  }
  .header__logo-icon {
    width: 32px;
    height: 32px;
  }
  .social {
    gap: 4px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .burger-mobile {
    width: 24px;
    height: 16px;
    margin-left: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .burger-mobile__line {
    height: 2px;
  }
  .burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
  .burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* Очень маленькие экраны - 350px и меньше */
@media (max-width: 350px) {
  .header__container {
    padding: 0 6px;
    gap: 6px;
  }
  .header__logo {
    max-width: 35%;
  }
  .social {
    max-width: 35%;
    gap: 2px;
  }
  .burger-mobile {
    width: 20px;
    height: 12px;
  }
  .header__logo-text {
    font-size: 13px;
    max-width: 100px;
  }
  .header__logo-icon {
    width: 26px;
    height: 26px;
  }
  .social__link {
    width: 28px;
    height: 28px;
  }
  .social__link img {
    width: 28px;
    height: 28px;
  }
  .header-online__container {
    padding: 0 6px;
  }
  .header-online__text {
    font-size: 11px;
  }
  .burger-mobile__line {
    height: 1.5px;
  }
  .burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
    -ms-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
  }
  .burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(3) {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    -ms-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__container {
  margin: 0 auto;
  min-height: 593px;
  padding: 0px 15px;
  position: relative;
  max-width: 1200px;
}
.hero__inner {
  padding-top: 200px;
  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;
  background-position: center top 100px;
  background-repeat: no-repeat;
  position: relative;
  gap: 40px;
}
.hero__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg.png");
  background-position: center top 100px;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-animation: moveBackground 20s ease-in-out infinite;
  animation: moveBackground 20s ease-in-out infinite;
}
.hero__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  z-index: -1;
  -webkit-animation: shimmer 8s ease-in-out infinite;
  animation: shimmer 8s ease-in-out infinite;
}
.hero__title {
  margin: 0;
  max-width: 788px;
  font-family: Bounded;
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -2%;
  margin-bottom: 20px;
  -webkit-animation: fadeInUp 1s ease-out;
  animation: fadeInUp 1s ease-out;
}
.hero__title span {
  color: var(--light-blue);
  -webkit-animation: colorShift 3s ease-in-out infinite;
  animation: colorShift 3s ease-in-out infinite;
}
.hero__subtitle {
  margin: 0;
  max-width: 534px;
  font-family: Bounded;
  font-weight: 300;
  font-style: Light;
  font-size: 22px;
  color: var(--text-color);
  line-height: 100%;
  -webkit-animation: fadeInUp 1s ease-out 0.3s both;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin: 32px 0 40px;
  -webkit-animation: fadeInUp 1s ease-out 0.6s both;
  animation: fadeInUp 1s ease-out 0.6s both;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hero__guarantee-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(102, 155, 188, 0.15);
  box-shadow: 0 4px 20px rgba(102, 155, 188, 0.15);
  border: 1px solid rgba(102, 155, 188, 0.2);
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero__guarantee-badge:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(102, 155, 188, 0.25);
  box-shadow: 0 8px 25px rgba(102, 155, 188, 0.25);
  border-color: rgba(102, 155, 188, 0.4);
}
.hero__guarantee-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(102, 155, 188, 0.1)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(102, 155, 188, 0.1), transparent);
  -webkit-transition: left 0.7s ease;
  transition: left 0.7s ease;
}
.hero__guarantee-badge:hover::before {
  left: 100%;
}
.hero__guarantee-btn {
  padding: 20px 48px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  border-radius: 20px;
  color: var(--light-color);
  background: linear-gradient(135deg, var(--light-blue), #4a8bad);
  font-family: Bounded;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: none;
  outline: none;
  display: inline-block;
  text-decoration: none;
  z-index: 1;
  white-space: nowrap;
  min-width: 320px;
}
.hero__guarantee-btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(102, 155, 188, 0.4);
  box-shadow: 0 8px 25px rgba(102, 155, 188, 0.4);
}
.hero__guarantee-btn:hover::before {
  opacity: 1;
}
.hero__guarantee-btn:active {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 15px rgba(102, 155, 188, 0.3);
  box-shadow: 0 4px 15px rgba(102, 155, 188, 0.3);
}
.hero__guarantee-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a8bad, var(--light-blue));
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.hero__guarantee-btn::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--light-blue) 0%, #4a8bad 50%, var(--light-blue) 100%);
  border-radius: 22px;
  z-index: -2;
  opacity: 0;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hero__guarantee-btn:hover::after {
  opacity: 0.6;
}
.hero__guarantee-badge:last-child {
  min-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero__guarantee-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--light-blue), #4a8bad);
  border-radius: 50%;
  color: white;
  font-size: 16px;
  font-weight: bold;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(102, 155, 188, 0.4);
  box-shadow: 0 2px 8px rgba(102, 155, 188, 0.4);
  position: relative;
  z-index: 1;
}
.hero__guarantee-text {
  font-family: "Bounded", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-color);
  text-align: left;
  z-index: 1;
  white-space: nowrap;
}
.hero__right {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 487px;
  height: 356px;
  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;
}
.hero__left {
  -webkit-animation: slideInLeft 1s ease-out 0.2s both;
  animation: slideInLeft 1s ease-out 0.2s both;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hero__right {
  -webkit-animation: slideInRight 1s ease-out 0.4s both;
  animation: slideInRight 1s ease-out 0.4s both;
}

.laptop-slider {
  margin-top: -25px;
  width: 360px;
  height: 220px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.laptop-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.slider__slide {
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 100%;
  height: 100%;
  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-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

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

.slider__slide:nth-child(1) {
  background: linear-gradient(135deg, #FF8A5C, #FF6B3D); /* Оранжевый */
}

.slider__slide:nth-child(2) {
  background: linear-gradient(135deg, #2E5A88, #1A3F5F); /* Синий */
}

.slider__slide:nth-child(3) {
  background: linear-gradient(135deg, #6A4C93, #543A77); /* Фиолетовый */
}

.slider__slide:nth-child(4) {
  background: linear-gradient(135deg, #2C6E63, #1D4E45); /* Бирюзовый */
}

.hero-slide-content {
  text-align: center;
  color: white;
}

.hero-slide-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-slide-content p {
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.95;
  font-weight: 300;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.dot.active {
  background-color: #fff;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/* Анимации для слайдера */
@-webkit-keyframes slideInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slider__slide.active .slide-content {
  -webkit-animation: slideInFromRight 0.6s ease-out 0.2s both;
  animation: slideInFromRight 0.6s ease-out 0.2s both;
}

/* Адаптация для экранов больше 1500px */
@media (min-width: 1500px) {
  .hero__container {
    max-width: 1400px;
  }
  .hero__right {
    width: 550px;
    height: 400px;
  }
  .laptop-slider {
    width: 380px;
    height: 240px;
  }
  .hero-slide-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .hero-slide-content p {
    font-size: 16px;
  }
  .hero__inner {
    padding-top: 180px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .hero__title {
    font-size: 60px;
    max-width: 750px;
  }
  .hero__subtitle {
    font-size: 24px;
    max-width: 600px;
  }
  .hero__block {
    margin: 36px 0 45px;
  }
  .hero__guarantee-btn {
    padding: 22px 52px;
    font-size: 22px;
    min-width: 350px;
  }
  .hero__guarantee-badge:last-child {
    min-width: 350px;
  }
  .hero__guarantee-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .hero__guarantee-text {
    font-size: 18px;
  }
}
/* Адаптация для очень больших экранов */
@media (min-width: 1800px) {
  .hero__container {
    max-width: 1600px;
  }
  .hero__right {
    width: 600px;
    height: 440px;
  }
  .laptop-slider {
    width: 420px;
    height: 260px;
  }
  .hero__subtitle {
    font-size: 26px;
  }
  .hero__block {
    margin: 40px 0 50px;
  }
  .hero__guarantee-btn {
    padding: 24px 56px;
    font-size: 24px;
    min-width: 380px;
  }
  .hero__guarantee-badge:last-child {
    min-width: 380px;
  }
  .hero__guarantee-text {
    font-size: 19px;
  }
}
/* Для стандартных экранов */
@media (max-width: 1499px) {
  .hero__right {
    width: 487px;
    height: 356px;
  }
  .laptop-slider {
    width: 340px;
    height: 210px;
  }
  .hero-slide-content h3 {
    font-size: 18px;
  }
  .hero-slide-content p {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 50px;
    max-width: 100%;
    line-height: 115%;
    margin-bottom: 25px;
  }
  .hero__block {
    margin: 30px 0 36px;
  }
}
/* Адаптация для планшетов (1024px и меньше) */
@media (max-width: 1024px) {
  .hero__container {
    min-height: auto;
  }
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding-top: 150px;
    gap: 50px;
  }
  .hero__inner::before {
    display: none;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero__right {
    margin: 0 auto;
    width: 500px;
    height: 365px;
  }
  .hero__subtitle {
    font-size: 20px;
    max-width: 100%;
    line-height: 140%;
    letter-spacing: 0.2px;
  }
  .hero__block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 14px;
    margin: 28px 0 35px;
  }
  .hero__guarantee-badge {
    padding: 12px 20px;
  }
  .hero__guarantee-btn {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 18px;
    min-width: 280px;
  }
  .hero__guarantee-badge:last-child {
    min-width: 280px;
  }
  .hero__guarantee-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .hero__guarantee-text {
    font-size: 15px;
    line-height: 1.3;
  }
  .laptop-slider {
    width: 380px;
    height: 235px;
    margin-top: -25px;
  }
  .hero-slide-content h3 {
    font-size: 20px;
  }
  .hero-slide-content p {
    font-size: 15px;
  }
}
/* Адаптация для мобильных устройств (768px и меньше) */
@media (max-width: 768px) {
  .hero__container {
    padding: 0px 15px;
  }
  .hero__inner {
    padding-top: 100px;
    gap: 40px;
    background: none !important;
  }
  .hero__inner::before {
    display: none;
  }
  .hero__title {
    font-size: 42px;
    line-height: 120%;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero__subtitle {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.3px;
  }
  .hero__right {
    width: 420px;
    height: 307px;
  }
  .hero__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin: 24px 0 30px;
  }
  .hero__guarantee-badge {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__guarantee-btn {
    padding: 16px 32px;
    font-size: 17px;
    border-radius: 16px;
    width: 100%;
    min-width: auto;
    white-space: normal;
    line-height: 1.2;
    font-size: 16px;
  }
  .hero__guarantee-badge:last-child {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
  .hero__guarantee-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .hero__guarantee-text {
    font-size: 15px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }
  .laptop-slider {
    width: 300px;
    height: 190px;
    margin-top: -20px;
  }
  .hero-slide-content {
    padding: 18px;
  }
  .hero-slide-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .hero-slide-content p {
    font-size: 14px;
    line-height: 1.4;
  }
}
/* Адаптация для маленьких мобильных устройств (480px и меньше) */
@media (max-width: 480px) {
  .hero__inner {
    padding-top: 100px;
    gap: 35px;
  }
  .hero__inner::before {
    display: none;
  }
  .hero__title {
    font-size: 28px;
    line-height: 125%;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
  }
  .hero__subtitle {
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.4px;
  }
  .hero__right {
    width: 350px;
    height: 256px;
  }
  .hero__block {
    margin: 20px 0 25px;
    gap: 10px;
  }
  .hero__guarantee-badge {
    padding: 12px 16px;
  }
  .hero__guarantee-btn {
    padding: 14px 20px;
    font-size: 15px;
    line-height: 1.3;
  }
  .hero__guarantee-icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
  .hero__guarantee-text {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }
  .laptop-slider {
    width: 250px;
    height: 153px;
    margin-top: -15px;
  }
  .hero-slide-content {
    padding: 15px;
  }
  .hero-slide-content h3 {
    font-size: 17px;
    line-height: 1.3;
  }
  .hero-slide-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 375px) {
  .hero__subtitle {
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.5px;
  }
  .hero__block {
    margin: 18px 0 22px;
  }
  .hero__guarantee-badge {
    padding: 10px 14px;
  }
  .hero__guarantee-btn {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.4;
  }
  .hero__guarantee-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .hero__guarantee-text {
    font-size: 13px;
  }
  .hero-slide-content h3 {
    font-size: 16px;
    line-height: 1.4;
  }
  .hero-slide-content p {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* Для очень узких экранов (320px и меньше) */
@media (max-width: 320px) {
  .hero__guarantee-btn {
    font-size: 13px;
    padding: 10px 12px;
  }
  .hero__guarantee-text {
    font-size: 12px;
  }
}
@-webkit-keyframes moveBackground {
  0%, 100% {
    -webkit-transform: translateX(0px) translateY(0px) scale(1);
    transform: translateX(0px) translateY(0px) scale(1);
    -webkit-filter: brightness(1) hue-rotate(0deg);
    filter: brightness(1) hue-rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-15px) translateY(-8px) scale(1.02);
    transform: translateX(-15px) translateY(-8px) scale(1.02);
    -webkit-filter: brightness(1.05) hue-rotate(5deg);
    filter: brightness(1.05) hue-rotate(5deg);
  }
  50% {
    -webkit-transform: translateX(10px) translateY(12px) scale(1.01);
    transform: translateX(10px) translateY(12px) scale(1.01);
    -webkit-filter: brightness(1.02) hue-rotate(-3deg);
    filter: brightness(1.02) hue-rotate(-3deg);
  }
  75% {
    -webkit-transform: translateX(12px) translateY(-10px) scale(1.03);
    transform: translateX(12px) translateY(-10px) scale(1.03);
    -webkit-filter: brightness(1.08) hue-rotate(8deg);
    filter: brightness(1.08) hue-rotate(8deg);
  }
}
@keyframes moveBackground {
  0%, 100% {
    -webkit-transform: translateX(0px) translateY(0px) scale(1);
    transform: translateX(0px) translateY(0px) scale(1);
    -webkit-filter: brightness(1) hue-rotate(0deg);
    filter: brightness(1) hue-rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-15px) translateY(-8px) scale(1.02);
    transform: translateX(-15px) translateY(-8px) scale(1.02);
    -webkit-filter: brightness(1.05) hue-rotate(5deg);
    filter: brightness(1.05) hue-rotate(5deg);
  }
  50% {
    -webkit-transform: translateX(10px) translateY(12px) scale(1.01);
    transform: translateX(10px) translateY(12px) scale(1.01);
    -webkit-filter: brightness(1.02) hue-rotate(-3deg);
    filter: brightness(1.02) hue-rotate(-3deg);
  }
  75% {
    -webkit-transform: translateX(12px) translateY(-10px) scale(1.03);
    transform: translateX(12px) translateY(-10px) scale(1.03);
    -webkit-filter: brightness(1.08) hue-rotate(8deg);
    filter: brightness(1.08) hue-rotate(8deg);
  }
}
@-webkit-keyframes shimmer {
  0%, 100% {
    opacity: 0.3;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes shimmer {
  0%, 100% {
    opacity: 0.3;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes colorShift {
  0%, 100% {
    color: var(--light-blue);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  }
  50% {
    color: #4dabf7;
    text-shadow: 0 0 20px rgba(77, 171, 247, 0.6);
  }
}
@keyframes colorShift {
  0%, 100% {
    color: var(--light-blue);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  }
  50% {
    color: #4dabf7;
    text-shadow: 0 0 20px rgba(77, 171, 247, 0.6);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.quiz-section {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}

.quiz__header {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.quiz-badge {
  display: inline-block;
  background: #669bbc;
  color: white;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quiz__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.2;
}

.quiz__description {
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Прогресс бар */
.quiz__progress {
  padding: 0 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.progress-steps {
  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;
  position: relative;
  padding: 20px 0;
  margin: 0 -10px;
}

.progress-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #e0e0e0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.progress-step {
  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: 8px;
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100px;
  min-width: 0;
  padding: 0 10px;
}

.step-number-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid #e0e0e0;
  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-weight: 600;
  color: #999;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.step-number.completed-check {
  opacity: 0;
  background: #669bbc;
  border-color: #669bbc;
  color: white;
  z-index: 2;
}

.step-number.completed-check::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
}

.progress-step.active .step-number:not(.completed-check) {
  border-color: #669bbc;
  color: #669bbc;
  background: white;
}

.progress-step.completed .step-number.completed-check {
  opacity: 1;
}

.step-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
  color: #333;
}

.progress-line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 0 5px;
  position: relative;
  min-width: 20px;
}

.progress-line.completed {
  background: #669bbc;
}

/* Убираем последнюю линию прогресса */
.progress-steps .progress-line:last-child {
  display: none;
}

.quiz-form {
  padding: 20px;
  border-radius: 0 0 12px 12px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.step-header {
  text-align: center;
  margin-bottom: 20px;
}

.step-counter {
  font-size: 12px;
  color: #669bbc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.step-question {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-hint {
  font-size: 13px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.4;
}

.quiz-options-grid {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.quiz-options-grid:not(.features-grid) {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.quiz-card {
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.quiz-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.card-content {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  height: 100%;
  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;
  min-height: 90px;
}

.quiz-card:hover .card-content {
  border-color: #669bbc;
}

.quiz-card input:checked + .card-content {
  border-color: #669bbc;
  background: rgba(102, 155, 188, 0.04);
}

.quiz-card input:checked + .card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #669bbc;
}

.card-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.3;
}

.card-desc {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}

.card-check {
  position: absolute;
  top: 8px;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.check-icon {
  font-size: 16px;
  color: #669bbc;
  font-weight: bold;
}

.quiz-card input:checked + .card-content .card-check {
  opacity: 1;
}

.budget-card .card-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 16px 14px;
  gap: 4px;
  min-height: 90px;
}

.amount-main {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1.2;
}

.budget-label {
  font-size: 11px;
  color: #666;
  font-weight: 500;
  line-height: 1.2;
}

.timeline-card .card-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 16px 14px;
  gap: 6px;
  min-height: 90px;
}

.timeline-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(102, 155, 188, 0.1);
  color: #669bbc;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.timeline-badge.urgent {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.timeline-text {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.feature-card .card-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 14px;
  gap: 8px;
  min-height: 90px;
}

.feature-text {
  -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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.feature-title {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-price {
  font-size: 12px;
  color: #10b981;
  font-weight: 700;
}

.no-features-card {
  grid-column: 1/-1;
  margin-top: 6px;
}

.no-features-card .card-content {
  background: rgba(102, 155, 188, 0.04);
  border: 1px dashed #669bbc;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
  padding: 14px;
  gap: 10px;
  min-height: 80px;
}

.no-features-card input:checked + .card-content {
  background: rgba(102, 155, 188, 0.08);
  border-color: #669bbc;
  border-style: solid;
}

.no-features-card .card-text {
  text-align: left;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.no-features-card .card-check {
  position: static;
  margin-left: auto;
  opacity: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.no-features-card input:checked + .card-content .card-check {
  opacity: 1;
}

.features-summary {
  background: rgba(102, 155, 188, 0.04);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  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;
}

.summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}

.summary-item span:last-child {
  font-weight: 700;
  color: #333;
  font-size: 13px;
}

#featuresTotal {
  color: #10b981;
  font-weight: 700;
}

.results-wrapper {
  margin-bottom: 20px;
}

.results-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.summary-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.summary-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

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

.summary-row {
  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;
  font-size: 12px;
  color: #666;
  line-height: 1.3;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.summary-value {
  color: #333;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.summary-features {
  margin-top: 8px;
}

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

.features-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}

.features-list li::before {
  content: "✓";
  font-size: 11px;
  color: #10b981;
  font-weight: bold;
}

.summary-row.total {
  font-size: 13px;
  color: #333;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  font-weight: 600;
}

.summary-total {
  font-size: 18px;
  font-weight: 800;
  color: #669bbc;
}

.summary-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 8px 0;
}

.discount-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  padding: 20px;
  color: white;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.discount-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.discount-icon {
  font-size: 20px;
  margin-right: 8px;
  color: white;
}

.discount-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 15px;
}

.discount-content div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.discount-content .final-price {
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.discount-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

.original-price {
  opacity: 0.8;
  text-decoration: line-through;
}

.discount-value {
  color: #ffd700;
  font-weight: 600;
}

.price-final {
  font-size: 20px;
  font-weight: 700;
  color: #ffd700;
}

.contact-section {
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  text-align: center;
}

.delivery-options {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.delivery-card {
  cursor: pointer;
  position: relative;
  width: 100%;
}

.delivery-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.delivery-card .card-content {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.delivery-card:hover .card-content {
  border-color: #669bbc;
}

.delivery-input:checked + .card-content {
  border-color: #669bbc;
  background: rgba(102, 155, 188, 0.04);
}

.delivery-card .card-icon {
  font-size: 18px;
  color: white;
}

.delivery-card .card-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.delivery-card .card-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.3;
}

.delivery-card .card-desc {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}

.delivery-card .card-check {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.delivery-card .check-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.delivery-input:checked + .card-content .check-circle {
  background: #669bbc;
  border-color: #669bbc;
  position: relative;
}

.delivery-input:checked + .card-content .check-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

.contact-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.field-group {
  position: relative;
  width: 100%;
}

.field-row {
  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;
  width: 100%;
}

.field-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  font-size: 13px;
}

.label-text {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.label-required {
  color: #ef4444;
  font-size: 11px;
  font-weight: bold;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: #333;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #669bbc;
}

.contact-textarea {
  min-height: 70px;
  resize: vertical;
}

.field-hint {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}

.dynamic-field {
  display: none;
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}

.privacy-check {
  background: rgba(102, 155, 188, 0.04);
  padding: 14px;
  border-radius: 6px;
  margin-top: 8px;
  border: 1px solid rgba(102, 155, 188, 0.1);
}

.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: white;
  position: relative;
}

.checkbox-label:hover .checkbox-custom {
  border-color: #669bbc;
}

.checkbox-label input:checked + .checkbox-custom {
  background: #669bbc;
  border-color: #669bbc;
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.privacy-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-text {
  font-size: 11px;
  color: #666;
  line-height: 1.4;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.step-actions {
  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;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #e0e0e0;
  gap: 10px;
  width: 100%;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 120px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-back {
  background: white;
  color: #666;
  border: 1px solid #e0e0e0;
  max-width: 120px;
}

.btn-back:hover {
  background: #f5f5f5;
  border-color: #669bbc;
  color: #669bbc;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6b4290 100%);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.quiz-navigation {
  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;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  margin-top: 15px;
  gap: 10px;
  width: 100%;
}

.nav-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.prev-btn {
  background: white;
  color: #666;
  border: 1px solid #e0e0e0;
  max-width: 100px;
}

.prev-btn:hover {
  background: #f5f5f5;
}

.next-btn,
.submit-btn {
  background: #669bbc;
  color: white;
  max-width: 200px;
}

.next-btn:hover,
.submit-btn:hover {
  background: #4a8bb3;
}

.nav-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.current-step {
  color: #333;
  font-weight: 600;
}

#currentStepNumber {
  color: #669bbc;
  font-weight: 700;
}

.validation-message {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 6px;
  margin-top: 12px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.validation-message.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.message-icon {
  font-size: 16px;
  color: #ef4444;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.validation-message span {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.quiz-success {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.success-content {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.success-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #669bbc;
}

.success-title {
  font-size: 18px;
  font-weight: 700;
  color: #669bbc;
  margin-bottom: 10px;
  line-height: 1.3;
}

.success-text {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 8px;
}

.success-bonus {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 15px 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bonus-icon {
  font-size: 18px;
  color: #10b981;
}

.bonus-text {
  text-align: left;
  font-size: 12px;
  color: #10b981;
  line-height: 1.3;
  font-weight: 600;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .quiz-section {
    padding: 15px 10px;
  }
  .quiz__header,
  .quiz-form {
    padding: 15px;
  }
  .quiz__title {
    font-size: 22px;
  }
  .quiz__description {
    font-size: 13px;
  }
  .quiz__progress {
    padding: 0 15px;
  }
  .progress-steps {
    padding: 15px 0;
    margin: 0 -5px;
  }
  .progress-step {
    padding: 0 5px;
    gap: 6px;
  }
  .step-number-wrapper {
    width: 28px;
    height: 28px;
  }
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .step-number.completed-check::after {
    font-size: 12px;
  }
  .step-label {
    font-size: 10px;
  }
  .progress-line {
    margin: 0 3px;
    min-width: 15px;
  }
  .quiz-options-grid:not(.features-grid),
  .features-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .results-summary {
    gap: 12px;
  }
  .delivery-options {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .field-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .step-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
    max-width: none;
  }
  .btn-back {
    max-width: none;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .btn-primary {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .quiz-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .nav-btn {
    width: 100%;
    max-width: none;
  }
  .nav-steps {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 4px;
  }
  .summary-total {
    font-size: 16px;
  }
  .success-title {
    font-size: 16px;
  }
  .success-icon {
    font-size: 32px;
  }
  .no-features-card .card-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .no-features-card .card-check {
    margin-left: 0;
    margin-top: 6px;
  }
  .features-summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .step-question {
    font-size: 15px;
  }
  .step-hint {
    font-size: 12px;
  }
  .card-content {
    min-height: 85px;
    padding: 12px;
  }
  .card-title {
    font-size: 12px;
  }
  .card-desc {
    font-size: 10px;
  }
  .amount-main {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .quiz__header,
  .quiz-form {
    padding: 12px;
  }
  .quiz__title {
    font-size: 20px;
  }
  .quiz-badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  .quiz__progress {
    padding: 0 10px;
  }
  .progress-steps {
    padding: 12px 0;
    margin: 0 -2px;
  }
  .progress-step {
    padding: 0 2px;
    gap: 4px;
  }
  .step-number-wrapper {
    width: 24px;
    height: 24px;
  }
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
    border-width: 1.5px;
  }
  .step-number.completed-check::after {
    font-size: 11px;
  }
  .step-label {
    font-size: 9px;
    letter-spacing: 0.3px;
  }
  .progress-line {
    margin: 0 2px;
    min-width: 10px;
  }
  .progress-steps::before {
    left: 15px;
    right: 15px;
  }
  .quiz__description {
    font-size: 12px;
  }
  .quiz-options-grid:not(.features-grid),
  .features-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .card-content {
    padding: 10px;
    min-height: 80px;
  }
  .card-title {
    font-size: 12px;
  }
  .card-desc {
    font-size: 10px;
  }
  .amount-main {
    font-size: 14px;
  }
  .summary-card,
  .discount-card,
  .contact-section {
    padding: 12px;
  }
  .summary-title,
  .contact-title {
    font-size: 14px;
  }
  .summary-total {
    font-size: 16px;
  }
  .btn {
    padding: 8px 12px;
    font-size: 12px;
    min-width: auto;
  }
  .success-icon {
    font-size: 28px;
  }
  .success-title {
    font-size: 16px;
  }
  .success-text {
    font-size: 12px;
  }
  .bonus-text {
    font-size: 11px;
  }
  .step-question {
    font-size: 14px;
  }
  .step-hint {
    font-size: 12px;
  }
  .progress-step {
    min-width: 40px;
  }
  .step-number {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .step-label {
    font-size: 8px;
    max-width: 50px;
  }
}
@media (min-width: 769px) {
  .field-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
  }
  .field-group {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .results-summary {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .summary-card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .discount-card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.clculate {
  background: linear-gradient(135deg, #1a1f25 0%, #232a33 100%);
  padding: 50px 0px;
  position: relative;
}
.clculate__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
.clculate__social {
  margin: 0 auto;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.clculate__stat {
  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: 10px;
  text-align: center;
}
.clculate__stat-number {
  font-family: Bounded;
  font-weight: 700;
  font-size: 42px;
  color: var(--light-blue);
  line-height: 1;
  text-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.clculate__stat-text {
  font-family: Bounded;
  font-weight: 400;
  font-size: 18px;
  color: var(--light-color);
  line-height: 1.3;
  max-width: 180px;
}
.clculate__stat:hover .clculate__stat-number {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
}
.clculate__content {
  margin: 0 auto;
  max-width: 1200px;
  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: 40px;
  width: 100%;
}
.clculate__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 70px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
}
.clculate__item {
  position: relative;
  height: 118px;
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.clculate__item:not(:last-child)::after {
  position: absolute;
  content: url("../img/Arrow.png");
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.8);
  -ms-transform: translateY(-50%) scale(0.8);
  transform: translateY(-50%) scale(0.8);
}
.clculate__icon {
  display: block;
  width: 84px;
  height: 83px;
  fill: #fff;
  -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;
}
.clculate__icon-center {
  width: 121px;
  height: 81px;
}
.clculate__text {
  margin: 0;
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  color: var(--light-color);
  line-height: 100%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
}
.clculate__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  min-width: 320px;
}
.clculate__btn {
  width: 420px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 15px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  border-radius: 20px;
  color: var(--light-color);
  background: var(--light-blue);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.clculate__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.clculate__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}
.clculate__btn:hover::before {
  left: 100%;
}
.clculate__btn:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.clculate__btn {
  -webkit-animation: buttonShimmer 3s ease-in-out infinite;
  animation: buttonShimmer 3s ease-in-out infinite;
}
.clculate__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 0px 15px;
  width: 420px;
  height: 80px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  background: transparent;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: var(--light-color);
  line-height: 1.2;
  letter-spacing: 0%;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.clculate__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.clculate__link:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.clculate__link:hover::before {
  left: 100%;
}
.clculate__link:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.clculate__link {
  -webkit-animation: linkShimmer 4s ease-in-out infinite;
  animation: linkShimmer 4s ease-in-out infinite;
}

@-webkit-keyframes buttonShimmer {
  0%, 100% {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  }
}

@keyframes buttonShimmer {
  0%, 100% {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  }
}
@-webkit-keyframes linkShimmer {
  0%, 100% {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    border-color: rgba(255, 255, 255, 0.6);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    border-color: rgba(255, 255, 255, 0.7);
  }
}
@keyframes linkShimmer {
  0%, 100% {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    border-color: rgba(255, 255, 255, 0.6);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    border-color: rgba(255, 255, 255, 0.7);
  }
}
.clculate::before {
  /* Декоративный элемент */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--light-blue)), color-stop(#4a8bad), color-stop(var(--light-blue)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--light-blue), #4a8bad, var(--light-blue), transparent);
  opacity: 0.6;
}

@media (max-width: 1300px) {
  .clculate__container {
    gap: 50px;
  }
  .clculate__top-section {
    gap: 15px;
  }
  .clculate__social {
    gap: 60px;
  }
  .clculate__stat-number {
    font-size: 38px;
  }
  .clculate__stat-text {
    font-size: 16px;
    max-width: 160px;
  }
  .clculate__content {
    gap: 30px;
  }
  .clculate__list {
    gap: 50px;
    max-width: 500px;
  }
  .clculate__item {
    height: 110px;
    width: 150px;
  }
  .clculate__item:not(:last-child)::after {
    right: -40px;
    -webkit-transform: translateY(-50%) scale(0.7);
    -ms-transform: translateY(-50%) scale(0.7);
    transform: translateY(-50%) scale(0.7);
  }
  .clculate__icon {
    width: 75px;
    height: 74px;
  }
  .clculate__icon-center {
    width: 108px;
    height: 72px;
  }
  .clculate__text {
    font-size: 18px;
  }
  .clculate__btns {
    min-width: 300px;
  }
  .clculate__btn, .clculate__link {
    width: 300px;
    height: 75px;
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .clculate__top-section {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
  .clculate__social {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
  }
  .clculate__stat-number {
    font-size: 34px;
  }
  .clculate__stat-text {
    font-size: 15px;
    max-width: 140px;
  }
  .clculate__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }
  .clculate__list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    gap: 50px;
    max-width: 100%;
  }
  .clculate__item:not(:last-child)::after {
    right: -40px;
    -webkit-transform: translateY(-50%) scale(0.7);
    -ms-transform: translateY(-50%) scale(0.7);
    transform: translateY(-50%) scale(0.7);
  }
  .clculate__btns {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 100%;
  }
  .clculate__btn, .clculate__link {
    width: 320px;
  }
}
@media (max-width: 768px) {
  .clculate {
    padding: 40px 0;
  }
  .clculate__container {
    gap: 40px;
  }
  .clculate__top-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .clculate__social {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    gap: 30px;
    margin-top: 0;
  }
  .clculate__guarantee-badge:first-child, .clculate__guarantee-badge:last-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .clculate__stat-number {
    font-size: 30px;
  }
  .clculate__stat-text {
    font-size: 14px;
    max-width: 120px;
  }
  .clculate__content {
    gap: 30px;
  }
  .clculate__list {
    gap: 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .clculate__item {
    height: 100px;
    width: 140px;
    gap: 15px;
  }
  .clculate__item:not(:last-child)::after {
    right: -30px;
    -webkit-transform: translateY(-50%) scale(0.6);
    -ms-transform: translateY(-50%) scale(0.6);
    transform: translateY(-50%) scale(0.6);
  }
  .clculate__icon {
    width: 70px;
    height: 69px;
  }
  .clculate__icon-center {
    width: 100px;
    height: 67px;
  }
  .clculate__text {
    font-size: 16px;
  }
  .clculate__btns {
    gap: 15px;
    width: 100%;
  }
  .clculate__btn, .clculate__link {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 60px;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    border-radius: 15px;
    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;
  }
  .clculate__btn {
    background: var(--light-blue);
    border: none;
    font-weight: 500;
  }
  .clculate__link {
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }
}
@media (max-width: 576px) {
  .clculate {
    padding: 35px 0;
  }
  .clculate__container {
    gap: 35px;
  }
  .clculate__top-section {
    gap: 12px;
  }
  .clculate__social {
    gap: 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .clculate__stat-number {
    font-size: 28px;
  }
  .clculate__stat-text {
    font-size: 13px;
    max-width: 100px;
  }
  .clculate__content {
    gap: 25px;
  }
  .clculate__list {
    gap: 25px;
  }
  .clculate__item {
    height: 90px;
    width: 120px;
    gap: 12px;
  }
  .clculate__item:not(:last-child)::after {
    right: -25px;
    -webkit-transform: translateY(-50%) scale(0.5);
    -ms-transform: translateY(-50%) scale(0.5);
    transform: translateY(-50%) scale(0.5);
  }
  .clculate__icon {
    width: 60px;
    height: 59px;
  }
  .clculate__icon-center {
    width: 85px;
    height: 57px;
  }
  .clculate__text {
    font-size: 14px;
  }
  .clculate__btns {
    gap: 10px;
    width: 100%;
  }
  .clculate__btn, .clculate__link {
    max-width: 100%;
    min-height: 55px;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 12px;
  }
  .clculate__btn {
    background: var(--light-blue);
    border: none;
    -webkit-box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
  }
  .clculate__link {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 480px) {
  .clculate {
    padding: 30px 0;
  }
  .clculate__container {
    gap: 30px;
  }
  .clculate__top-section {
    gap: 10px;
  }
  .clculate__social {
    gap: 20px;
  }
  .clculate__stat {
    gap: 5px;
  }
  .clculate__stat-number {
    font-size: 26px;
  }
  .clculate__stat-text {
    font-size: 12px;
    max-width: 90px;
  }
  .clculate__content {
    gap: 20px;
  }
  .clculate__list {
    gap: 20px;
  }
  .clculate__item {
    height: 85px;
    width: 110px;
    gap: 10px;
  }
  .clculate__item:not(:last-child)::after {
    right: -20px;
    -webkit-transform: translateY(-50%) scale(0.45);
    -ms-transform: translateY(-50%) scale(0.45);
    transform: translateY(-50%) scale(0.45);
  }
  .clculate__icon {
    width: 55px;
    height: 54px;
  }
  .clculate__icon-center {
    width: 75px;
    height: 52px;
  }
  .clculate__text {
    font-size: 13px;
  }
  .clculate__btns {
    gap: 8px;
  }
  .clculate__btn, .clculate__link {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  .clculate__btn {
    font-weight: 500;
  }
  .clculate__link {
    font-size: 13px;
    line-height: 1.2;
  }
}
@media (max-width: 375px) {
  .clculate__container {
    gap: 25px;
  }
  .clculate__top-section {
    gap: 8px;
  }
  .clculate__social {
    gap: 15px;
  }
  .clculate__stat-number {
    font-size: 24px;
  }
  .clculate__stat-text {
    font-size: 11px;
    max-width: 80px;
  }
  .clculate__content {
    gap: 15px;
  }
  .clculate__list {
    gap: 15px;
  }
  .clculate__item {
    height: 80px;
    width: 100px;
    gap: 8px;
  }
  .clculate__item:not(:last-child)::after {
    right: -15px;
    -webkit-transform: translateY(-50%) scale(0.4);
    -ms-transform: translateY(-50%) scale(0.4);
    transform: translateY(-50%) scale(0.4);
  }
  .clculate__icon {
    width: 50px;
    height: 49px;
  }
  .clculate__icon-center {
    width: 70px;
    height: 47px;
  }
  .clculate__text {
    font-size: 12px;
  }
  .clculate__btns {
    gap: 6px;
  }
  .clculate__btn, .clculate__link {
    min-height: 45px;
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 8px;
  }
  .clculate__btn {
    font-size: 14px;
    font-weight: 500;
  }
  .clculate__link {
    font-size: 12px;
  }
}
.clculate__item:hover .clculate__icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.clculate__item:hover .clculate__icon-center {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.card {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0px;
}
.card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card__title {
  margin: 0;
  margin-left: auto;
  max-width: 530px;
  font-weight: 400;
  font-style: Regular;
  font-size: 55px;
  color: var(--text-color);
  line-height: 70px;
  letter-spacing: -2%;
  text-align: right;
}
.card__title span {
  font-weight: 700;
  font-size: 160px;
  line-height: 160px;
  letter-spacing: -2%;
  text-align: right;
  color: var(--light-blue);
}
.card__subtitle {
  margin: 0;
  font-weight: 466;
  font-style: Medium;
  font-size: 38px;
  color: var(--light-color);
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 15px;
}
.card__descr {
  margin: 0;
  font-weight: 300;
  font-style: Light;
  font-size: 25px;
  color: var(--light-color);
  line-height: 100%;
  letter-spacing: 0%;
}
.card__number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: 700;
  font-size: 24px;
  color: var(--light-color);
  background: rgba(102, 155, 188, 0.8);
  width: 60px;
  height: 60px;
  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;
  padding: 20px;
}
.card__badge {
  position: absolute;
  top: 20px;
  left: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#FF6B6B), to(#FF8E8E));
  background: linear-gradient(90deg, #FF6B6B 0%, #FF8E8E 100%);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  color: var(--light-color);
  text-transform: uppercase;
}
.card__item {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 55px 40px 20px 40px;
  width: 670px;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 20px;
  /* Анимация появления при скролле */
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.card__item:last-child {
  height: 320px;
}
.card__item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.card__item.visible::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.card__right {
  display: inline-block;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 0.8s ease 0.4s;
  transition: all 0.8s ease 0.4s;
}
.card__right.visible {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.card__arr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#669BBC), to(#A9D1EA));
  background: linear-gradient(90deg, #669BBC 0%, #A9D1EA 100%);
  width: 100%;
  max-width: 670px;
  height: 80px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
  /* Анимация для кнопки */
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s ease 0.8s;
  transition: all 0.6s ease 0.8s;
}
.visible .card__arr {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.card__arr {
  /* Ховер-эффект */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card__arr:hover {
  background: -webkit-gradient(linear, left top, right top, from(#5a8ba8), to(#97c1d9));
  background: linear-gradient(90deg, #5a8ba8 0%, #97c1d9 100%);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(102, 155, 188, 0.3);
  box-shadow: 0 5px 15px rgba(102, 155, 188, 0.3);
}
.card__arr:hover .card__arr-img {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.card__arr:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 2px 5px rgba(102, 155, 188, 0.3);
  box-shadow: 0 2px 5px rgba(102, 155, 188, 0.3);
}
.card__arr-text {
  display: block;
  font-size: 26px;
  color: var(--light-color);
  font-weight: 500;
  text-transform: uppercase;
}
.card__arr-img {
  width: 28px;
  height: 28px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.problems__title {
  padding-top: 70px;
  margin: 0 auto;
  max-width: 1253px;
  font-weight: 400;
  font-size: 70px;
  color: var(--text-color);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 50px;
  /* Анимация для заголовка */
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.problems__title.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.problems__icon {
  width: 36px;
  height: 34px;
}
.problems__list {
  margin: 0 auto;
  max-width: 1250px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.problems__item {
  position: relative;
  width: 606px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
  /* Анимация для items */
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.problems__item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.problems__item-bottom {
  padding-bottom: 100px;
}
.problems__item-form {
  background: #669BBC;
}
.problems__item {
  /* Разные задержки для каскадного эффекта */
}
.problems__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.problems__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.problems__item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.problems__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.problems__top {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  padding: 0px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 85px;
  background: linear-gradient(89.33deg, #003049 -4.48%, #141414 99.42%);
  margin-bottom: 15px;
}
.problems__subtitle {
  margin: 0;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--light-color);
}
.problems__descr {
  margin: 0;
  padding: 0px 40px;
  font-weight: 566;
  font-style: SemiBold;
  font-size: 30px;
  color: #0F1A3C;
  line-height: 40px;
  letter-spacing: 0%;
  padding-bottom: 40px;
}
.problems__form-title {
  margin: 0;
  padding: 20px 40px;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  color: var(--light-color);
  line-height: 25px;
  letter-spacing: -2%;
}
.problems__form {
  padding: 35px;
  background: #fff;
  border-top-right-radius: 16px;
  width: 451px;
  height: 100%;
}
.problems__input {
  padding: 19px 30px;
  border-radius: 8px;
  width: 100%;
  height: 60px;
  background: rgba(45, 55, 72, 0.1019607843);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 121%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.problems__input::-webkit-input-placeholder {
  font-size: 14px;
}
.problems__input::-moz-placeholder {
  font-size: 14px;
}
.problems__input:-ms-input-placeholder {
  font-size: 14px;
}
.problems__input::-ms-input-placeholder {
  font-size: 14px;
}
.problems__input::placeholder {
  font-size: 14px;
}
.problems__checkbox-text {
  font-weight: 400;
  font-style: Regular;
  font-size: 11px;
  color: rgba(45, 55, 72, 0.8);
  line-height: 90%;
  letter-spacing: 0%;
}
.problems__checkbox-text a {
  color: #669BBC;
}
.problems__btn {
  top: 200px;
  right: 40px;
  position: absolute;
  width: 50px;
  height: 50px;
  /* Анимация для кнопки */
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.4s ease 0.6s;
  transition: all 0.4s ease 0.6s;
}
.visible .problems__btn {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* Адаптация с 1024px */
@media (max-width: 1250px) {
  .card {
    padding: 50px 0;
  }
  .card__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .card__title {
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
    font-size: 50px;
    line-height: 50px;
  }
  .card__title span {
    font-size: 60px;
    line-height: 60px;
  }
  .card__right {
    height: 550px;
    background-position: center top 70px;
    background-size: contain !important;
  }
  .card__item {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    height: 270px;
    min-height: 200px;
  }
  .card__subtitle {
    font-size: 32px;
    line-height: 38px;
  }
  .card__descr {
    font-size: 20px;
    line-height: 24px;
  }
  .card__arr {
    max-width: 600px;
    height: 70px;
    margin: 20px auto 0;
  }
  .card__arr-text {
    font-size: 24px;
  }
  .card__arr-img {
    width: 24px;
    height: 24px;
  }
  .problems__title {
    font-size: 50px;
    padding-top: 50px;
    margin-bottom: 30px;
  }
  .problems__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 15px;
  }
  .problems__item {
    width: 100%;
  }
  .problems__top {
    padding: 0px 25px;
    height: 70px;
    gap: 25px;
  }
  .problems__subtitle {
    font-size: 20px;
  }
  .problems__descr {
    font-size: 24px;
    line-height: 32px;
    padding: 0px 25px 25px;
  }
  .problems__form {
    width: 100%;
    padding: 25px;
  }
  .problems__checkbox-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .problems__checkbox-text {
    display: block;
    max-width: 400px !important;
  }
  .problems__btn {
    background: var(--light-blue);
    border-radius: 100%;
    top: 260px;
    right: 20px;
    position: absolute;
  }
}
/* Адаптация для планшетов (768px и меньше) */
@media (max-width: 768px) {
  .card {
    padding: 40px 0;
  }
  .card__title {
    font-size: 36px;
    line-height: 36px;
  }
  .card__title span {
    font-size: 40px;
    line-height: 40px;
  }
  .card__item {
    max-width: 500px;
    height: 220px;
    min-height: 180px;
  }
  .card__subtitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  .card__descr {
    font-size: 18px;
  }
  .card__arr {
    max-width: 500px;
    height: 65px;
    margin: 15px auto 0;
  }
  .card__arr-text {
    font-size: 22px;
  }
  .card__arr-img {
    width: 22px;
    height: 22px;
  }
  .card__number {
    font-size: 16px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .problems__title {
    font-size: 40px;
    padding-top: 80px;
  }
  .problems__top {
    height: 60px;
    gap: 20px;
  }
  .problems__subtitle {
    font-size: 18px;
  }
  .problems__descr {
    font-size: 20px;
    line-height: 28px;
  }
  .problems__form-title {
    font-size: 20px;
    padding: 15px 25px;
  }
  .problems__input {
    height: 50px;
    padding: 15px 20px;
  }
  .problems__btn {
    top: 230px;
    right: 25px;
    position: absolute;
  }
}
/* Адаптация для мобильных устройств (480px и меньше) */
@media (max-width: 480px) {
  .card {
    padding: 30px 0;
  }
  .card__right {
    background-position: center top 100px;
    height: 500px;
  }
  .card__title {
    font-size: 28px;
    line-height: 36px;
  }
  .card__title span {
    font-size: 34px;
    line-height: 34px;
  }
  .card__item {
    min-height: 250px;
    margin-bottom: 15px;
  }
  .card__subtitle {
    font-size: 24px;
    line-height: 30px;
  }
  .card__descr {
    font-size: 16px;
  }
  .card__arr {
    height: 60px;
    margin: 10px auto 0;
  }
  .card__arr-text {
    font-size: 20px;
  }
  .card__arr-img {
    width: 20px;
    height: 20px;
  }
  .problems__title {
    font-size: 28px;
    text-align: left;
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .problems__top {
    padding: 0px 15px;
    height: 50px;
    gap: 15px;
  }
  .problems__icon {
    width: 28px;
    height: 26px;
  }
  .problems__subtitle {
    font-size: 16px;
  }
  .problems__descr {
    font-size: 18px;
    line-height: 24px;
    padding: 0px 15px 15px;
  }
  .problems__form-title {
    font-size: 18px;
    padding: 10px 15px;
  }
  .problems__form {
    padding: 20px;
  }
  .problems__input {
    height: 45px;
    padding: 12px 15px;
    font-size: 12px;
  }
  .problems__checkbox-text {
    max-width: 240px !important;
  }
  .problems__btn {
    top: 220px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 360px) {
  .card__arr {
    height: 55px;
  }
  .card__arr-text {
    font-size: 18px;
  }
  .card__arr-img {
    width: 18px;
    height: 18px;
  }
}
.gallery {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.gallery__container {
  position: relative;
  overflow: hidden;
  padding: 90px 15px 0px 15px;
}
.gallery__title {
  margin: 0;
  max-width: 522px;
  font-weight: 400;
  font-size: 60px;
  color: var(--text-color);
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 40px;
}
.gallery__title span {
  font-size: 75px;
  color: var(--light-blue);
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.gallery__right {
  right: 0;
  border-radius: 20px;
  padding: 30px 40px;
  top: 90px;
  position: absolute;
  width: 840px;
  height: 553px;
  background: rgba(20, 20, 20, 0.8);
  color: #fff;
}
.gallery__descr {
  margin: 0;
  font-family: Bounded;
  font-weight: 300;
  font-style: Light;
  font-size: 25px;
  color: var(--light-color);
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.slide-button {
  width: 366px;
  height: 60px;
  background: #669BBC;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: Bounded;
  font-weight: 400;
  font-style: Medium;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.slide-button:hover {
  background: #4a7a9a;
}

@media (max-width: 1250px) {
  .gallery__left {
    max-width: 100%;
  }
  .gallery__title {
    font-size: 40px;
    max-width: 350px;
    margin-bottom: 30px;
  }
  .gallery__title span {
    font-size: 55px;
  }
  .gallery__right {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    padding: 25px 30px;
  }
  .gallery__descr {
    font-size: 20px;
    line-height: 130%;
  }
}
@media (max-width: 1300px) {
  .slide-button {
    width: 320px;
    height: 55px;
    font-size: 22px;
  }
  .slide-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
  .slide-button {
    width: 100%;
    max-width: 320px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
@media (max-width: 1024px) {
  .gallery__title {
    font-size: 36px;
    max-width: 300px;
  }
  .gallery__title span {
    font-size: 50px;
  }
  .gallery__descr {
    font-size: 18px;
  }
  .slide-button {
    width: 100%;
    max-width: 280px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .gallery__container {
    padding: 60px 15px 0px 15px;
  }
  .gallery__title {
    font-size: 32px;
    max-width: 280px;
    margin-bottom: 20px;
  }
  .gallery__title span {
    font-size: 45px;
  }
  .gallery__right {
    padding: 20px 25px;
    margin-bottom: 25px;
  }
  .gallery__descr {
    font-size: 16px;
    line-height: 140%;
  }
  .slide-button {
    max-width: 260px;
    height: 48px;
    font-size: 18px;
  }
  .slide-bottom {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .gallery__container {
    padding: 40px 15px 0px 15px;
  }
  .gallery__title {
    font-size: 28px;
    max-width: 250px;
  }
  .gallery__title span {
    font-size: 40px;
  }
  .gallery__descr {
    font-size: 15px;
  }
  .slide-button {
    max-width: 240px;
    height: 45px;
    font-size: 16px;
  }
  .slide-bottom {
    gap: 15px;
  }
}
.swiper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.swiper-slide {
  border-radius: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: auto;
  background: #FFFFFF;
}

.slide-content {
  width: 100%;
  height: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.slide-image-container {
  width: 100%;
  height: 550px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1250px) {
  .slide-image-container {
    height: 455px;
  }
}
@media (max-width: 768px) {
  .slide-image-container {
    height: 550px;
  }
}
.slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-position: center;
  border-radius: 10px;
}

.slide-bottom {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.slide-title {
  margin: 0;
  font-family: Bounded;
  font-weight: 400;
  font-style: Medium;
  font-size: 40px;
  color: var(--text-color);
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 15px;
  color: var(--text-color);
}

.slide-subtitle {
  margin: 0;
  max-width: 400px;
  font-family: Bounded;
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  color: rgba(0, 48, 73, 0.6);
  line-height: 100%;
  letter-spacing: 0%;
}

@media (max-width: 1250px) {
  .slide-title {
    font-size: 36px;
  }
  .slide-subtitle {
    font-size: 17px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .slide-title {
    font-size: 32px;
  }
  .slide-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .slide-content {
    padding: 20px;
  }
  .slide-title {
    font-size: 28px;
  }
  .slide-subtitle {
    font-size: 15px;
  }
  .slide-bottom {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .slide-content {
    padding: 8px;
  }
  .slide-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .slide-subtitle {
    font-size: 14px;
  }
  .slide-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center;
    border-radius: 10px;
  }
}
/* Компьютерная версия */
@media (min-width: 1024px) {
  .swiper-slide {
    width: 66.6666666667% !important;
    margin-right: 20px;
  }
  .swiper-wrapper {
    padding-left: 0;
  }
}
/* Планшетная версия */
@media (min-width: 768px) and (max-width: 1023px) {
  .swiper-slide {
    width: 83.3333333333% !important;
    margin-right: 15px;
  }
}
/* Мобильная версия */
@media (max-width: 767px) {
  .swiper-slide {
    width: 83.3333333333% !important;
    margin-right: 10px;
  }
}
/* Маленькие мобильные */
@media (max-width: 480px) {
  .swiper-slide {
    width: 90.9090909091% !important;
    margin-right: 8px;
  }
}
.steps {
  background: linear-gradient(135deg, #1a1f25 0%, #232a33 100%);
  padding: 65px 0px;
}
.steps__subtitle {
  margin: 0;
  font-family: Bounded;
  font-weight: 200;
  font-size: 30px;
  color: var(--light-color);
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 5px;
}
.steps__title {
  margin: 0;
  max-width: 730px;
  font-family: Bounded;
  font-weight: 400;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--light-color);
  margin-bottom: 30px;
}
.steps__list {
  margin: 0 auto;
  max-width: 1240px;
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
@media (min-width: 768px) {
  .steps__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.steps__item {
  position: relative;
  background: linear-gradient(100.91deg, #FFFFFF 3.43%, #D7E8F3 91.92%);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 400px;
  height: 406px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -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;
}
.steps__item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.steps__digital {
  display: block;
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  color: var(--light-blue);
  line-height: 121%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.steps__descr {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 25px;
  line-height: 121%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}
.steps__icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 156px;
  height: 118px;
}
.steps__text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.steps__form {
  margin: 0 auto;
  max-width: 1244px;
  font-family: Bounded;
  font-weight: 400;
  font-size: 52px;
  color: var(--light-color);
  line-height: 130%;
  letter-spacing: -2%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.steps__bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 992px) {
  .steps__bottom {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.steps__img {
  width: 100%;
  max-width: 947px;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

.form__wrapper {
  width: 550px;
  height: 560px;
  background: linear-gradient(100.91deg, #669BBC 3.43%, #D7E8F3 91.92%);
  padding: 40px;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.form__group {
  margin-bottom: 25px;
}
.form__group:last-of-type {
  margin-bottom: 30px;
}
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #003049;
}
.form__input.error, .form__textarea.error {
  border-color: #dc3545;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}
.form__checkbox input[type=checkbox] {
  margin-top: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.form__checkbox-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.form__checkbox-text a {
  color: #003049;
  text-decoration: none;
}
.form__checkbox-text a:hover {
  text-decoration: underline;
}
.form__messenger {
  margin-bottom: 25px;
}
.form__messenger-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.form__messenger-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.form__messenger-option {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.form__messenger-input {
  display: none;
}
.form__messenger-input:checked + .form__messenger-label {
  border-color: #003049;
  background-color: #f8f9ff;
}
.form__messenger-input:checked + .form__messenger-label::after {
  opacity: 1;
}
.form__messenger-label {
  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: 8px;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.form__messenger-label:hover {
  border-color: #003049;
}
.form__messenger-label::after {
  content: "✓";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: #003049;
  color: white;
  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;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form__messenger-icon {
  width: 24px;
  height: 24px;
}
.form__messenger-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.form__submit {
  width: 100%;
  padding: 15px;
  background: #003049;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.form__submit:hover {
  background: linear-gradient(100.91deg, #669BBC 3.43%, #D7E8F3 91.92%);
  border: 2px solid #003049;
}
.form__submit:disabled {
  background: #6c757d;
  cursor: not-allowed;
}
.form__success {
  text-align: center;
  padding: 20px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  color: #155724;
  margin-top: 20px;
  display: none;
}
.form__success.show {
  display: block;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.error-message.show {
  display: block;
}

/* Адаптация для 1100px */
@media (max-width: 1100px) {
  .steps {
    padding: 50px 20px;
  }
  .steps__title {
    font-size: 60px;
    max-width: 600px;
    margin-bottom: 25px;
  }
  .steps__list {
    max-width: 100%;
    gap: 15px;
    margin-bottom: 40px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .steps__item {
    padding: 25px;
    height: 380px;
    max-width: 100%;
  }
  .steps__item:nth-child(3) {
    grid-column: 1/-1;
    max-width: 400px;
    margin: 0 auto;
  }
  .steps__digital {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .steps__descr {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .steps__icon {
    width: 130px;
    height: 98px;
    right: 8px;
    bottom: 8px;
  }
  .steps__form {
    font-size: 42px;
    max-width: 100%;
    line-height: 120%;
    margin-bottom: 20px;
  }
  .steps__bottom {
    gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .steps__img {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .steps .form__wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .form__wrapper {
    width: 100%;
    max-width: 500px;
    height: auto;
    padding: 30px;
    margin: 0 auto;
  }
  .form__group {
    margin-bottom: 20px;
  }
  .form__group:last-of-type {
    margin-bottom: 25px;
  }
  .form__messenger {
    margin-bottom: 20px;
  }
  .form__messenger-options {
    gap: 12px;
  }
  .form__messenger-label {
    padding: 12px;
  }
  .form__checkbox {
    margin-bottom: 20px;
  }
  .form__submit {
    padding: 14px;
  }
}
/* Адаптация для планшетов */
@media (max-width: 768px) {
  .steps {
    padding: 40px 15px;
  }
  .steps__subtitle {
    font-size: 24px;
  }
  .steps__title {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .steps__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 35px;
  }
  .steps__item {
    padding: 20px;
    height: 350px;
  }
  .steps__item:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }
  .steps__digital {
    font-size: 20px;
  }
  .steps__descr {
    font-size: 20px;
  }
  .steps__form {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .steps__bottom {
    gap: 30px;
  }
  .form__wrapper {
    padding: 25px;
  }
  .form__messenger-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
/* Адаптация для мобильных устройств */
@media (max-width: 480px) {
  .steps {
    padding: 30px 10px;
  }
  .steps__subtitle {
    font-size: 20px;
  }
  .steps__title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .steps__list {
    gap: 10px;
    margin-bottom: 30px;
  }
  .steps__item {
    padding: 15px;
    height: 320px;
  }
  .steps__digital {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .steps__descr {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .steps__icon {
    width: 100px;
    height: 75px;
  }
  .steps__form {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .form__wrapper {
    padding: 20px;
  }
  .form__input, .form__textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
  .form__textarea {
    min-height: 100px;
  }
  .form__submit {
    padding: 12px;
    font-size: 14px;
  }
}
/* Адаптация для очень маленьких экранов */
@media (max-width: 360px) {
  .steps__title {
    font-size: 32px;
  }
  .steps__item {
    padding: 12px;
    height: 300px;
  }
  .steps__digital {
    font-size: 16px;
  }
  .steps__descr {
    font-size: 16px;
  }
  .steps__form {
    font-size: 20px;
  }
  .form__wrapper {
    padding: 15px;
  }
}
/* Футер - полностью темный вариант */
.footer {
  background: linear-gradient(135deg, #1a1f25 0%, #232a33 100%);
  color: #e5e9f0;
  padding: 48px 0 24px;
  position: relative;
  border-top: 1px solid rgba(102, 155, 188, 0.2);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Декоративный элемент */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--light-blue)), color-stop(#4a8bad), color-stop(var(--light-blue)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--light-blue), #4a8bad, var(--light-blue), transparent);
  opacity: 0.6;
}

/* Верхняя часть */
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(229, 233, 240, 0.1);
}

/* Логотип */
.footer__logo-compact {
  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: 8px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__logo-icon {
  width: 48px;
  height: 48px;
  color: var(--light-blue);
  -webkit-filter: drop-shadow(0 4px 8px rgba(102, 155, 188, 0.3));
  filter: drop-shadow(0 4px 8px rgba(102, 155, 188, 0.3));
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.footer__logo-compact:hover .footer__logo-icon {
  -webkit-transform: rotate(180deg) scale(1.1);
  -ms-transform: rotate(180deg) scale(1.1);
  transform: rotate(180deg) scale(1.1);
}

.footer__logo-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff, #e5e9f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Нижняя часть */
.footer__bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

/* Список услуг */
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer__item {
  font-size: 15px;
  color: #b0b9c9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__item::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--light-blue);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__item:hover {
  color: #fff;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.footer__item:hover::before {
  opacity: 1;
  left: 0;
}

/* Центральный блок */
.footer__center {
  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;
  padding: 0 20px;
  border-left: 1px solid rgba(229, 233, 240, 0.1);
  border-right: 1px solid rgba(229, 233, 240, 0.1);
}

.footer__time {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 12px 16px;
  background: rgba(102, 155, 188, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(102, 155, 188, 0.2);
  color: #b0b9c9;
  position: relative;
  overflow: hidden;
}

.footer__time::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--light-blue);
}

.footer__mail {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(102, 155, 188, 0.1);
  border: 1px solid rgba(102, 155, 188, 0.2);
  text-align: center;
  letter-spacing: 0.5px;
}

.footer__mail:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 155, 188, 0.3);
  box-shadow: 0 4px 12px rgba(102, 155, 188, 0.3);
}

.footer__policy {
  color: #b0b9c9;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.footer__policy:hover {
  color: #fff;
  background: rgba(102, 155, 188, 0.15);
}

/* Социальные сети */
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer__social__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 155, 188, 0.4) 0%, transparent 70%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.footer__social__link:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  -webkit-transform: translateY(-4px) scale(1.05);
  -ms-transform: translateY(-4px) scale(1.05);
  transform: translateY(-4px) scale(1.05);
  -webkit-box-shadow: 0 8px 24px rgba(102, 155, 188, 0.4);
  box-shadow: 0 8px 24px rgba(102, 155, 188, 0.4);
}

.footer__social__link:hover::before {
  width: 200px;
  height: 200px;
}

.footer__social__link img {
  width: 22px;
  height: 22px;
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer__social__link:hover img {
  -webkit-filter: brightness(1) invert(1);
  filter: brightness(1) invert(1);
  -webkit-transform: rotate(360deg) scale(1.1);
  -ms-transform: rotate(360deg) scale(1.1);
  transform: rotate(360deg) scale(1.1);
}

/* Копирайт (добавил для полноты) */
.footer__copyright {
  text-align: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(229, 233, 240, 0.1);
  color: #6f7a8c;
  font-size: 13px;
}

/* Адаптивность */
@media (max-width: 992px) {
  .footer__bottom {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__bottom {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__item {
    width: auto;
  }
  .footer__item::before {
    display: none;
  }
  .footer__item:hover {
    -webkit-transform: translateX(0) scale(1.05);
    -ms-transform: translateX(0) scale(1.05);
    transform: translateX(0) scale(1.05);
  }
  .footer__center {
    border: none;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__time {
    text-align: left;
    max-width: 280px;
  }
  .footer__mail {
    max-width: 280px;
    width: 100%;
  }
  .footer__social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer__social__link {
    width: 44px;
    height: 44px;
  }
  .footer__social__link img {
    width: 20px;
    height: 20px;
  }
}/*# sourceMappingURL=main.css.map */
