@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  height: 100%;
  line-height: 1;
}

:root {
  --font-family: "Roboto Flex", sans-serif;
  --second-family: "Inter", sans-serif;
  --container-size: 1440px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #191e26;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: calc(var(--container-size) + 30px);
  width: 100%;
}

.wrapper {
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header {
  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: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1280px) {
  .header .link {
    padding: 10px 20px;
    font-size: 14px;
  }
  .header .link svg {
    display: none;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.logo__text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
}

.nav {
  padding-left: 83px;
}
@media (max-width: 1280px) {
  .nav {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1280px) {
  .nav__list {
    gap: 15px;
  }
}
.nav__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.nav__link:hover {
  opacity: 0.7;
}
@media (max-width: 1280px) {
  .nav__link {
    font-size: 17px;
  }
}

.section:not(.section--hero) {
  padding: 9px 15px;
}
.section--hero {
  padding: 18px 15px 9px 15px;
}
.section--hero .section__wrapper {
  padding: 25px 50px;
  min-height: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 6px;
  background-color: #191e26;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 585px) {
  .section--hero .section__wrapper {
    padding: 15px 25px;
    min-height: 250px;
  }
}
.section--hero .section__start {
  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;
}
.section--hero .section__start .section__title {
  text-align: left;
  line-height: 110%;
}
.section--hero .section__start .link {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}
.section--hero .section__start .link:hover {
  background-color: #fff;
  color: #000;
}
.section--hero .section__end {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1280px) {
  .section--hero .section__end {
    display: none;
  }
}
.section--layout .section__wrapper .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
}
.section--layout .section__wrapper .layout .item {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 300px;
  flex: 1 0 300px;
  background-color: #181924;
  border-radius: 6px;
}
.section--layout .section__wrapper .layout .item__image {
  width: 100%;
}
.section--layout .section__wrapper .layout .item__image:not(.item__image--review) {
  margin-bottom: 15px;
}
.section--layout .section__wrapper .layout .item__image--review {
  width: 46px;
  height: 46px;
}
.section--layout .section__wrapper .layout .item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.section--layout .section__wrapper .layout .item__header .badge {
  margin-left: auto;
  padding: 6px 12px;
  font-size: 16px;
  border-radius: 4px;
}
.section--layout .section__wrapper .layout .item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section--layout .section__wrapper .layout .item__nickname {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #fff;
}
.section--layout .section__wrapper .layout .item__status {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #a6a6a6;
}
.section--layout .section__wrapper .layout .item__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
}
.section--layout .section__wrapper .layout .item__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.25);
}
.section--notification .section__wrapper {
  height: 45px;
  background-image: url("/img/banner/Frame 173.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.section--banner .section__wrapper {
  padding: 45px 50px;
  min-height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  background-color: #000;
  background-repeat: no-repeat;
  border-radius: 6px;
}
.section--banner .section__wrapper .section__title {
  text-align: left;
}
@media (max-width: 768px) {
  .section--banner .section__wrapper {
    padding: 25px;
  }
}
.section--banner-start .section__wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("/img/banner/banner-start.png");
  background-position: 50% 50%;
}
.section--text .section__wrapper {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  border-radius: 6px;
  background-color: #181924;
}
.section--text .section__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.section--text .section__warning {
  padding: 16px;
  background-color: #101113;
}
.section--text .section__warning .section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.section--text .section__warning .section__title {
  font-size: 20px;
  text-align: left;
}
.section--text .section__warning-text {
  margin-top: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.25);
}
.section--contact .form {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.section--contact .form__input,
.section--contact .form__textarea {
  padding: 10px 136px 10px 18px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #d1d1d1;
  outline: none;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  background-color: #181924;
}
.section--contact .form__input:focus,
.section--contact .form__textarea:focus {
  -webkit-box-shadow: 0 0 10px #f6a45a;
  box-shadow: 0 0 10px #f6a45a;
}
.section--contact .form__textarea {
  min-height: 150px;
  resize: none;
}
.section--contact .form__button {
  padding: 10px 18px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #000;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  background: #f6a45a;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.section--contact .form__button:hover {
  opacity: 0.75;
}
.section__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
}
@media (max-width: 585px) {
  .section__title {
    font-size: 20px;
  }
}
.section__title--lg {
  font-size: 36px;
}
.section__title--lg span {
  color: #f6a45a;
}
@media (max-width: 585px) {
  .section__title--lg {
    font-size: 26px;
  }
}

.footer {
  margin-top: auto;
  padding: 50px 15px 25px 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.link {
  padding: 12px 22px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #000;
  border-radius: 8px;
  background-color: #f6a45a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.link:hover {
  background-color: #bd7855;
}
@media (max-width: 585px) {
  .link {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.badge {
  padding: 12px 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #f6a45a;
  border-radius: 8px;
  background-color: rgba(246, 164, 90, 0.22);
}
.badge--gray {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.22);
}
@media (max-width: 585px) {
  .badge {
    padding: 8px 12px;
    font-size: 14px;
  }
}

#terms {
  font-family: var(--font-family);
  padding: 20px;
  border-radius: 5px;
}
#terms h1 {
  margin: 20px 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
}
#terms h2 {
  margin-top: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
}
#terms h3 {
  margin-top: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
}
#terms h4 {
  margin-top: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
}
#terms p,
#terms li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}
#terms li {
  list-style: disc;
  list-style-position: inside;
}
#terms a {
  color: #ea311c;
  font-weight: 600;
}

/* Секция статистики */
.section--stats .section__wrapper {
  padding: 40px 16px;
  background-color: #181924;
  border-radius: 6px;
}

.stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stats__item {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(246, 164, 90, 0.1);
  border: 1px solid rgba(246, 164, 90, 0.2);
}

.stats__number {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  color: #f6a45a;
  margin-bottom: 8px;
}

.stats__label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 585px) {
  .stats__number {
    font-size: 28px;
  }
  .stats__label {
    font-size: 14px;
  }
}

/* Секция галереи */
.section--gallery .section__wrapper {
  padding: 40px 16px;
  background-color: #181924;
  border-radius: 6px;
}

.section__subtitle {
  margin-top: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

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

.gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery__item:hover {
  transform: translateY(-5px);
}

.gallery__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
  transform: translateY(0);
}

.gallery__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.gallery__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Секция FAQ */
.section--faq .section__wrapper {
  padding: 40px 16px;
  background-color: #181924;
  border-radius: 6px;
}

.faq {
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: #f6a45a;
}

.faq__icon {
  transition: transform 0.3s ease;
  color: #f6a45a;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 0 20px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 585px) {
  .faq__question {
    font-size: 16px;
  }
  .faq__answer p {
    font-size: 14px;
  }
}

/* Секция экспертов */
.section--experts .section__wrapper {
  padding: 40px 16px;
  background-color: #181924;
  border-radius: 6px;
}

.experts {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.expert {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(246, 164, 90, 0.2);
}

.expert__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f6a45a;
}

.expert__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
}

.expert__role {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #f6a45a;
  margin-bottom: 15px;
}

.expert__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 585px) {
  .expert__name {
    font-size: 18px;
  }
  .expert__role {
    font-size: 14px;
  }
  .expert__description {
    font-size: 13px;
  }
}
