body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: #0d1718;
      color: #ffffff;
    }

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0d1718;
  box-shadow: 0 2px 6px rgba(0,0,0,0.7);
  z-index: 9999;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  box-sizing: border-box;
}

.logo img {
  height: 40px;
  display: block;
	border-radius: 10px;
}

.nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #d5be04;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-list li a:hover,
.nav-list li a:focus {
  color: #f2d94e;
}

/* Бургер (скрыт по умолчанию) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  z-index: 10001; /* выше меню */
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #d5be04;
  border-radius: 2px;
  transition: 0.3s;
}

/* Анимация бургер-иконки */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Мобильное меню — fullscreen оверлей */
@media (max-width: 1024px) {
  .nav-list {
    flex-direction: column;
    gap: 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(13, 23, 24, 0.95);
    padding-top: 80px; /* отступ вниз чтобы не перекрывать шапку */
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 10000;
    overflow-y: auto;
  }

  /* При активном меню */
  .nav.active .nav-list {
    transform: translateY(0);
  }

  .burger {
    display: flex;
  }
}

/* Кнопка "вверх" */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #d5be04;
  color: #0d1718;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

main{
	padding-top: 80px;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

    a.button {
      display: inline-block;
      background-color: #d5be04;
      color: #0d1718;
      padding: 16px 36px;
      border-radius: 10px;
      font-weight: 700;
      text-decoration: none;
      margin-top: 30px;
      transition: background 0.3s;
      font-size: 18px;
		text-align: center;
    }

    a.button:hover {
      background-color: #c1aa03;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 10px;
    }

    .section {
      padding: 20px 20px 0 20px;
    }

    .title {
      font-size: 32px;
      color: #d5be04;
      font-weight: 700;
      margin-bottom: 20px;
    }

.center {
	text-align: center;
}

    .subtitle {
      font-size: 20px;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .features {
      list-style: none;
      padding-left: 0;
      margin-top: 20px;
    }

    .features li::before {
      content: "• ";
      color: #d5be04;
      font-weight: bold;
    }

    .card {
      background: linear-gradient(135deg, #046a3a 0%, #05884a 100%);
      padding: 30px;
      border-radius: 20px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .video-wrapper {
      max-width: 720px;
      margin: 0 auto;
      position: relative;
      padding-bottom: 40%;
      height: 0;
      overflow: hidden;
      border-radius: 16px;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .centered-button {
      text-align: center;
    }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.persona.card {
  margin: 0;
  padding: 25px;
  border-radius: 16px;
  background: linear-gradient(135deg, #046a3a, #05884a);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.persona.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.persona.card .result {
  margin-top: 10px;
  background-color: #ffffff10;
  padding: 10px 15px;
  border-left: 4px solid #d5be04;
  border-radius: 10px;
  font-style: italic;
}

.skills-grid-alt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  @media (max-width: 768px) {
    .skills-grid-alt {
      grid-template-columns: 1fr;
    }
  }

  .card-alt {
    background-color: #ffffff08;
    border: 1px solid #ffffff15;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
  }

  .card-alt:hover {
    transform: translateY(-4px);
  }

  .number-circle {
    width: 42px;
    height: 42px;
    background-color: #d5be04;
    color: #0d1718;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .card-alt p {
    font-size: 20px;
    line-height: 1.6;
    color: #eee
  }



    @media (max-width: 768px) {
      .title {
        font-size: 24px;
      }

      .subtitle {
        font-size: 16px;
      }

      .video-wrapper {
        padding-bottom: 56.25%;
      }
    }

.swiper {
      width: 100%;
      max-width: 800px;
      border-radius: 12px;
	height: 500px;
    }
.swiper-wrapper {
      height: 100%;
    }


    .swiper-slide {
      display: flex;
      justify-content: center;
			align-items: center;
		height: 100%;
    }
.swiper-slide a {
  display: flex; /* обязательно flex */
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}
    .swiper-button-prev,
    .swiper-button-next {
      color: #d5be04;
    }

.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slide-caption {
  background-color: #ffffff08;
    border: 1px solid #ffffff15;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  max-width: 90%;
}

.slide-caption p {
  margin: 4px 0;
}


    .price {
      font-size: 18px;
      color: #d5be04;
		margin-top: 0;
    }
.red{
	font-size: 20px;
	color: red;
	text-decoration: line-through;
}
    .button {
      display: inline-block;
      background-color: #d5be04;
      color: #0d1718;
      padding: 16px 36px;
      border-radius: 10px;
      font-weight: 700;
      text-decoration: none;
      margin-top: 20px;
    }
    .faq-q {
  position: relative;
  width: 100%;
  background: #0d1718; /* темный фон, чтобы не как кнопка */
  color: #eee;
  border: 1.5px solid #046a3a;
  padding: 14px 48px 14px 20px; /* справа место под стрелку */
  font-size: 16px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-q:hover {
  background-color: #064f2a;
}

/* Стрелочка */
.faq-q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #d5be04;
  border-bottom: 2.5px solid #d5be04;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* При активном состоянии поворачиваем стрелку вверх */
.faq-item.active .faq-q::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #ffffff10;
  padding: 0 20px;
  border-radius: 0 0 8px 8px;
  color: #eee;
  font-size: 15px;
  line-height: 1.5;
}

/* Активный ответ */
.faq-item.active .faq-a {
  max-height: 500px; /* достаточная высота для текста */
  padding: 10px 20px 14px 20px;
}
    @media (max-width: 768px) {
      .title { font-size: 24px; }
    }
@media (max-width: 768px) {
      .title { font-size: 24px; }
      .swiper {
        height: 400px;
      }
	.slide-caption {
    font-size: 12px;
		padding: 8px 10px;
  }
    }

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
  /* Можно добавить чтобы сетка не сжималась слишком сильно */
  width: 100%;
  box-sizing: border-box;
}

.module-card {
  background: linear-gradient(135deg, #046a3a 0%, #05884a 100%);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: #fff;
  display: flex;
  flex-direction: column;
  /* Чтобы карточки тянулись по высоте и сетка была ровной */
  height: 100%;
  box-sizing: border-box;
}

.module-card h3 {
  font-weight: 700;
  font-size: 22px;
  color: #d5be04;
  margin-bottom: 12px;
}

.module-card .result {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 16px;
  color: #f2d94e;
}

.lesson-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px 0;
  flex-grow: 1; /* чтобы занять доступное пространство */
}

.lesson-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.4;
}

.lesson-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d5be04;
  font-weight: 700;
}

.homework {
  background-color: #ffffff20;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 12px;
  font-size: 15px;
  color: #d5be04;
  border-left: 4px solid #d5be04;
}

/* Адаптивность */
@media (max-width: 768px) {
  .training-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .module-card {
    padding: 16px 14px;
  }
  .module-card h3 {
    font-size: 20px;
  }
  .module-card .result,
  .lesson-list li,
  .homework {
    font-size: 14px;
  }
}

.footer {
  background-color: #0d1718; /* темный фон */
  padding: 20px 0;
  color: #eee; /* жёлтый текст */
  font-size: 14px;
  margin-top: 40px;
  border-top: 1px solid #2a4d36; /* лёгкая граница сверху для разделения */
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-container p {
  margin: 0;
  flex: 1 1 100%;
	font-weight: 700;
}

.footer-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1 1 auto;
}

.socials-link {
  color: #d5be04;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.socials-link:hover,
.socials-link:focus {
  color: #f2d94e;
}

.question-button {
  background-color: #0d1718; /* темный фон */
  color: #d5be04;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
  border: 2px solid #d5be04;
}

.question-button:hover,
.question-button:focus {
  background-color: #d5be04;
  color: #0d1718;
  border-color: #c1aa03;
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-container p {
    flex: unset;
    margin-bottom: 12px;
  }
  .footer-actions {
    justify-content: center;
  }
}