* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #0b0b0f;
  color: #fff;
}

.lp-ladder {
  overflow: hidden;
}

/* HEADER */
.lp-header {
  position: sticky;
  top: 0;
  padding: 16px 8%;
  background: rgba(11, 11, 15, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  transition: background 0.3s;
}

.lp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-header__logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.lp-header__nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-header__nav a {
  color: #d1d1d6;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.lp-header__nav a:hover {
  color: #fff;
}

/* HEADER RESPONSIVE */
@media (max-width: 900px) {
  .lp-header__nav {
    display: none; /* Скрываем навигацию на мобильных устройствах */
  }

  .lp-header {
    padding: 16px 6%;
  }

  .lp-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* HERO */
.lp-hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, #ff7a18 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, #6a11cb 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, #00c6ff 0%, transparent 40%);
  opacity: 0.45;
  z-index: 0;
}

.lp-hero__content,
.lp-hero__visual {
  position: relative;
  z-index: 1;
}

/* TEXT */
.lp-hero__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
  font-size: 14px;
}

.lp-hero__title {
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 20px;
}

.lp-hero__subtitle {
  font-size: 20px;
  color: #d1d1d6;
  max-width: 520px;
}

.lp-hero__features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.lp-hero__features li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* BUTTONS */
.lp-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.lp-btn {
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.lp-btn--header {
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.7);
  animation: pulse 2s infinite;
}

.lp-btn--primary {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #000;
  font-weight: 600;
}

.lp-btn--secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* VISUAL STEPS */
.lp-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-hero__gifts-preview {
  padding: 20px 24px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #d1d1d6;
  min-height: 105px;
  width: 380px;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(5, 64px);
  gap: 16px;
  margin-bottom: 14px;
}

.lp-step {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  font-weight: 600;
  font-size: 22px;
  transition: 0.3s;
}

.lp-step.active {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 0 20px rgba(0,198,255,0.6);
}

.lp-steps__label {
  font-size: 14px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lp-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .lp-hero__visual {
    margin-top: 50px;
  }
}
/* ABOUT */
.lp-about {
  padding: 120px 8%;
  background: linear-gradient(180deg, #0b0b0f 0%, #111118 100%);
}

.lp-about__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-section__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #bbb;
}

.lp-about__title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 24px;
}

.lp-about__desc {
  font-size: 18px;
  color: #d0d0d5;
  margin-bottom: 18px;
  max-width: 520px;
}

/* CARDS */
.lp-about__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp-about__card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.lp-about__card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}

.lp-card__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}

.lp-about__card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.lp-about__card p {
  margin: 0;
  font-size: 15px;
  color: #cfcfd6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lp-about__inner {
    grid-template-columns: 1fr;
  }

  .lp-about {
    padding: 90px 6%;
    text-align: center;
  }

  .lp-about__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 122, 24, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 122, 24, 0);
  }
}
/* HOW IT WORKS */
.lp-steps-work {
  padding: 120px 8%;
  background: #0f0f15;
}

.lp-steps-work__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-steps-work__header {
  text-align: center;
  margin-bottom: 70px;
}

.lp-steps-work__title {
  font-size: 46px;
  margin: 20px 0 16px;
}

.lp-steps-work__subtitle {
  font-size: 18px;
  color: #bdbdc7;
}

/* STEPS */
.lp-steps-work__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lp-work-step {
  position: relative;
  padding: 40px 32px;
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: 0.35s;
}

.lp-work-step:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}

.lp-work-step__num {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.lp-work-step h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.lp-work-step p {
  font-size: 16px;
  color: #d0d0d8;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lp-steps-work__list {
    grid-template-columns: 1fr;
  }

  .lp-work-step {
    text-align: center;
  }

  .lp-work-step__num {
    margin-left: auto;
    margin-right: auto;
  }
}
/* LEVELS */
.lp-levels {
  padding: 130px 8%;
  background: linear-gradient(180deg, #111118 0%, #0b0b0f 100%);
}

.lp-levels__header {
  text-align: center;
  margin-bottom: 80px;
}

.lp-levels__title {
  font-size: 48px;
  margin: 20px 0 14px;
}

.lp-levels__subtitle {
  font-size: 18px;
  color: #bdbdc7;
}

/* GRID */
.lp-levels__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

/* CARD */
.lp-level {
  position: relative;
  padding: 34px 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: 0.35s;
}

.lp-level:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}

.lp-level__num {
  font-size: 42px;
  font-weight: 700;
  color: #ffb347;
  margin-bottom: 10px;
}

.lp-level__title {
  font-size: 20px;
  margin-bottom: 14px;
}

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

.lp-level__gifts li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #d7d7df;
}

/* ACCENTS */
.lp-level.highlight {
  border: 1px solid rgba(255,183,71,0.6);
  box-shadow: 0 0 30px rgba(255,183,71,0.25);
}

.lp-level.final {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #000;
}

.lp-level.final .lp-level__gifts li {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .lp-levels__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .lp-levels__list {
    grid-template-columns: 1fr;
  }

  .lp-level {
    text-align: center;
  }
}
/* BENEFITS */
.lp-benefits {
  padding: 130px 8%;
  background: #0f0f15;
}

.lp-benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-benefits__header {
  text-align: center;
  margin-bottom: 80px;
}

.lp-benefits__title {
  font-size: 46px;
  margin: 20px 0 14px;
}

.lp-benefits__subtitle {
  font-size: 18px;
  color: #bdbdc7;
}

/* GRID */
.lp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.lp-benefit {
  padding: 36px 30px;
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: 0.35s;
}

.lp-benefit:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}

.lp-benefit__icon {
  font-size: 30px;
  display: block;
  margin-bottom: 16px;
}

.lp-benefit h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.lp-benefit p {
  font-size: 16px;
  color: #d0d0d8;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .lp-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lp-benefits__grid {
    grid-template-columns: 1fr;
  }

  .lp-benefit {
    text-align: center;
  }
}
/* FAQ */
.lp-faq {
  padding: 130px 8%;
  background: linear-gradient(180deg, #0b0b0f 0%, #111118 100%);
}

.lp-faq__inner {
  max-width: 900px;
  margin: 0 auto;
}

.lp-faq__header {
  text-align: center;
  margin-bottom: 70px;
}

.lp-faq__title {
  font-size: 46px;
  margin: 20px 0 14px;
}

.lp-faq__subtitle {
  font-size: 18px;
  color: #bdbdc7;
}

/* ITEMS */
.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-faq__item {
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.lp-faq__question {
  width: 100%;
  padding: 26px 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-faq__icon {
  font-size: 26px;
  transition: 0.3s;
}

.lp-faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  font-size: 16px;
  color: #d0d0d8;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.lp-faq__item.active .lp-faq__answer {
  max-height: 300px;
  padding: 0 30px 26px;
}

.lp-faq__item.active .lp-faq__icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .lp-faq__question {
    font-size: 16px;
  }
}
/* TRUST */
.lp-trust {
  padding: 130px 8%;
  background: #0f0f15;
}

.lp-trust__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-trust__header {
  text-align: center;
  margin-bottom: 80px;
}

.lp-trust__title {
  font-size: 46px;
  margin: 20px 0 14px;
}

.lp-trust__subtitle {
  font-size: 18px;
  color: #bdbdc7;
}

/* STATS */
.lp-trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 90px;
}

.lp-stat {
  padding: 36px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  text-align: center;
}

.lp-stat__value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.lp-stat__label {
  font-size: 15px;
  color: #cfcfd6;
}

/* LOGOS */
.lp-trust__logos {
  text-align: center;
}

.lp-trust__logos span {
  display: block;
  margin-bottom: 30px;
  font-size: 14px;
  color: #aaa;
}

.lp-trust__logos-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.lp-logo {
  width: 120px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .lp-trust__stats { grid-template-columns: repeat(2, 1fr); }
}
/* FINAL CTA */
.lp-final-cta {
  padding: 160px 8%;
  background:
    radial-gradient(circle at 30% 40%, #ff7a18 0%, transparent 45%),
    radial-gradient(circle at 70% 30%, #6a11cb 0%, transparent 45%),
    #0b0b0f;
}

.lp-final-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.lp-final-cta__title {
  font-size: 52px;
  line-height: 1.1;
  margin: 20px 0;
}

.lp-final-cta__subtitle {
  font-size: 20px;
  color: #d0d0d8;
  margin-bottom: 40px;
}

.lp-btn--large {
  padding: 20px 36px;
  font-size: 18px;
}

.lp-final-cta__note {
  margin-top: 16px;
  font-size: 14px;
  color: #bdbdc7;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .lp-final-cta {
    padding: 120px 6%;
  }

  .lp-final-cta__title {
    font-size: 38px;
  }
}

/* FORM */
.lp-form {
  max-width: 700px;
  margin: 50px auto 0;
}

.lp-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.lp-form__field--full {
  grid-column: 1 / -1;
}

.lp-form__label {
  display: block;
  font-size: 14px;
  color: #d1d1d6;
  margin-bottom: 8px;
  text-align: left;
}

.lp-form__input {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
}

.lp-form__input::placeholder {
  color: #888;
}

.lp-form__input:focus {
  outline: none;
  border-color: #ffb347;
  box-shadow: 0 0 10px rgba(255,183,71,0.3);
}

.lp-form__checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.lp-form__checkbox-label {
  font-size: 14px;
  color: #bdbdc7;
}

.lp-form__checkbox-label a {
  color: #ffb347;
  text-decoration: none;
}

.lp-btn:disabled {
  background: #555;
  cursor: not-allowed;
  opacity: 0.6;
}
