/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Кастомизация скроллбара для WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
  /* Увеличена ширина для лучшей видимости */
}

::-webkit-scrollbar-track {
  background: #181a1e;
  /* Тёмный фон дорожки для контраста */
  border-radius: 12px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  /* Лёгкая тень для глубины */
}

::-webkit-scrollbar-thumb {
  background: #f07a3f;
  /* Основной акцентный цвет */
  border-radius: 12px;
  border: 2px solid #181a1e;
  /* Обводка для гармонии с дорожкой */
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #f07a3f;
  /* Более тёмный оттенок при наведении */
}

/* Кастомизация скроллбара для Firefox */
body {
  font-family: "Montserrat", sans-serif;
  background: #0f0f0f;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: thin;
  /* Тонкий скроллбар */
  scrollbar-color: #f07a3f #181a1e;
  /* Ползунок голубой, дорожка тёмная */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #f07a3f;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* Лёгкая тень для объёма */
}

/* Кнопки */
.cta {
  background: #f07a3f;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-size: 1.2em;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(184, 115, 24, 0.4);
  /* Тень для кнопки */
}

.cta:hover {
  background: #181a1e;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(184, 115, 24, 0.6);
  /* Усиленная тень при наведении */
}

.secondary-btn {
  display: inline-block;
  padding: 15px 40px;
  color: #f07a3f;
  border: 2px solid #f07a3f;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s, box-shadow 0.3s;
}

.secondary-btn:hover {
  background: #f07a3f;
  color: #fff;
  box-shadow: 0 4px 10px rgba(184, 115, 24, 0.4);
}

/* Шапка */
header {
  background: linear-gradient(135deg, #1a1a1a, #333);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 2em;
  color: #f07a3f;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  /* Тень для логотипа */
}

.logo p {
  font-size: 1em;
  color: #ccc;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #f07a3f;
}

/* Главный экран */
.hero {
  background: url("../img/banner-start.png") no-repeat center/cover;
  padding: 150px 0;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 4em;
  text-shadow: 3px 3px 15px #000;
}

.hero p {
  font-size: 1.5em;
  margin: 20px 0;
  color: #ccc;
  /* Более мягкий цвет текста */
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Преимущества */
.features {
  padding: 100px 0;
  background: #1a1a1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 30px;
  background: #222;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(184, 115, 24, 0.3);
  /* Тень с акцентным цветом */
}

.feature-item i {
  font-size: 3em;
  color: #f07a3f;
  margin-bottom: 20px;
}

/* Как это работает */
.how-it-works {
  padding: 100px 0;
  background: #0f0f0f;
  /* Более тёмный фон для контраста */
}

.steps {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  max-width: 300px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(184, 115, 24, 0.3);
}

.step span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #f07a3f;
  color: #fff;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5em;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  /* Тень для кружков */
}

/* Отзывы */
.reviews {
  padding: 100px 0;
  background: #1a1a1a;
}

.review-slider {
  position: relative;
  overflow: hidden;
}

.review-item {
  display: none;
  font-style: italic;
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #222;
  border-radius: 10px;
  color: #ccc;
  /* Более мягкий цвет текста */
}

.review-item.active {
  display: block;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #f07a3f;
}

/* Статья */
.article {
  padding: 100px 0;
  background: #0f0f0f;
}

.article h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.article h3 {
  font-size: 1.8em;
  color: #f07a3f;
  margin: 20px 0 15px;
}

.article p {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.article strong {
  color: #fff;
}

/* Призыв к действию */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #f07a3f, #181a1e);
}

/* Подвал */
footer {
  background: #0f0f0f;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: #f07a3f;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff5f0;
  /* Более тёмный оттенок при наведении */
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  font-size: 1.5em;
  margin: 0 10px;
  color: #f07a3f;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #fff5f0;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item,
.step,
.article {
  opacity: 0;
  animation: slideUp 0.6s ease forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.5s;
}

.step:nth-child(1) {
  animation-delay: 0.1s;
}

.step:nth-child(2) {
  animation-delay: 0.3s;
}

.step:nth-child(3) {
  animation-delay: 0.5s;
}

.review-item {
  animation: fadeIn 0.5s ease;
}

/* Кнопка "Наверх" */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f07a3f;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s, transform 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(184, 115, 24, 0.4);
}

.back-to-top:hover {
  background: #181a1e;
  transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 20px;
  }

  .hero h2 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1.2em;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta,
  .secondary-btn {
    padding: 12px 30px;
    font-size: 1em;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }
} /* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Кастомизация скроллбара для WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
  /* Увеличена ширина для лучшей видимости */
}

::-webkit-scrollbar-track {
  background: #181a1e;
  /* Тёмный фон дорожки для контраста */
  border-radius: 12px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  /* Лёгкая тень для глубины */
}

::-webkit-scrollbar-thumb {
  background: #f07a3f;
  /* Основной акцентный цвет */
  border-radius: 12px;
  border: 2px solid #181a1e;
  /* Обводка для гармонии с дорожкой */
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #146a90;
  /* Более тёмный оттенок при наведении */
}

/* Кастомизация скроллбара для Firefox */
body {
  font-family: "Montserrat", sans-serif;
  background: #0f0f0f;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: thin;
  /* Тонкий скроллбар */
  scrollbar-color: #f07a3f #181a1e;
  /* Ползунок голубой, дорожка тёмная */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #f07a3f;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* Лёгкая тень для объёма */
}

/* Кнопки */
.cta {
  background: #f07a3f;
  color: #fff;
  padding: 15px 50px;
  border: none;
  border-radius: 25px;
  font-size: 1.2em;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(184, 115, 24, 0.4);
  /* Тень для кнопки */
}

.cta:hover {
  background: #181a1e;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(184, 115, 24, 0.6);
  /* Усиленная тень при наведении */
}

.secondary-btn {
  display: inline-block;
  padding: 8px 30px;
  color: #f07a3f;
  border: 2px solid #f07a3f;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s, box-shadow 0.3s;
}

.secondary-btn:hover {
  background: #f07a3f;
  color: #fff;
  box-shadow: 0 4px 10px rgba(184, 115, 24, 0.4);
}

/* Шапка */
header {
  background: linear-gradient(135deg, #1a1a1a, #333);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 2em;
  color: #f07a3f;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  /* Тень для логотипа */
}

.logo p {
  font-size: 1em;
  color: #ccc;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #f07a3f;
}

/* Главный экран */
.hero {
  background: url("../img/banner-start.png") no-repeat center/cover;
  padding: 150px 0;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 4em;
  text-shadow: 3px 3px 15px #000;
}

.hero p {
  font-size: 1.5em;
  margin: 20px 0;
  color: #ccc;
  /* Более мягкий цвет текста */
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Преимущества */
.features {
  padding: 100px 0;
  background: #1a1a1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature-item {
  padding: 30px;
  background: #222;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(184, 115, 24, 0.3);
  /* Тень с акцентным цветом */
}

.feature-item i {
  font-size: 3em;
  color: #f07a3f;
  margin-bottom: 20px;
}

/* Как это работает */
.how-it-works {
  padding: 100px 0;
  background: #0f0f0f;
  /* Более тёмный фон для контраста */
}

.steps {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 300px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(184, 115, 24, 0.3);
}

.step span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #f07a3f;
  color: #fff;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5em;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  /* Тень для кружков */
}

/* Отзывы */
.reviews {
  padding: 100px 0;
  background: #1a1a1a;
}

.review-slider {
  position: relative;
  overflow: hidden;
}

.review-item {
  display: none;
  font-style: italic;
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #222;
  border-radius: 10px;
  color: #ccc;
  /* Более мягкий цвет текста */
}

.review-item.active {
  display: block;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #f07a3f;
}

/* Статья */
.article {
  padding: 100px 0;
  background: #0f0f0f;
}

.article h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.article h3 {
  font-size: 1.8em;
  color: #f07a3f;
  margin: 20px 0 15px;
}

.article p {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.article strong {
  color: #fff;
}

/* Призыв к действию */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #f07a3f, #181a1e);
}

/* Подвал */
footer {
  background: #0f0f0f;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: #f07a3f;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #146a90;
  /* Более тёмный оттенок при наведении */
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  font-size: 1.5em;
  margin: 0 10px;
  color: #f07a3f;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #181a1e;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item,
.step,
.article {
  opacity: 0;
  animation: slideUp 0.6s ease forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.5s;
}

.step:nth-child(1) {
  animation-delay: 0.1s;
}

.step:nth-child(2) {
  animation-delay: 0.3s;
}

.step:nth-child(3) {
  animation-delay: 0.5s;
}

.review-item {
  animation: fadeIn 0.5s ease;
}

/* Кнопка "Наверх" */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f07a3f;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s, transform 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(184, 115, 24, 0.4);
}

.back-to-top:hover {
  background: #181a1e;
  transform: scale(1.1);
}

.promo-first {
  height: 100px;
  width: 100%;
  background: #0f0f0f;
}

.promo-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1026px;
  height: 100%;
  margin: 0 auto;
  background: url("../img/promo-dots.png");
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  position: relative;
}

.promocode-one {
  background: url("../img/first_promo_block_one.png") no-repeat;
  height: 81px;
  width: 172px;
}

.text-wrap {
  position: relative;
  font-size: 18px;
  color: #2b0a4f;
  text-transform: uppercase;
  font-weight: bold;
}

.text {
  position: absolute;
  font-size: 36px;
  color: #fff;
  top: 10px;
  left: 15px;
  letter-spacing: -3px;
  -moz-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
.text-amount {
  position: absolute;
  top: 20px;
  right: 18px;
  line-height: 15px;
  font-weight: 700;
  text-align: center;
  -moz-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
}

.promocode-two {
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}

.use-promo {
  color: #a5dbf4;
  font-size: 16px;
  -moz-transform: rotate(-2.5deg);
  -webkit-transform: rotate(-2.5deg);
  -o-transform: rotate(-2.5deg);
  -ms-transform: rotate(-2.5deg);
  transform: rotate(-2.5deg);
}

.trapezoid {
  background: url("../img/promo_trapezoid.png") no-repeat;
  width: 223px;
  height: 48px;
  text-align: center;
  line-height: 52px;
}

.coupon {
  font-size: 28px;
  color: #fff;
}

.promo-left {
  font-size: 16px;
}

.promo-left span {
  font-size: 17px;
  font-weight: bold;
}

.pointer {
  background: url("../img/bg_pointer.png") no-repeat;
  width: 240px;
  height: 44px;
  text-align: center;
  line-height: 44px;
}

/* Адаптивность */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 20px;
  }

  .hero h2 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1.2em;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta,
  .secondary-btn {
    padding: 12px 30px;
    font-size: 1em;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }
}
