.kling-lp {
  --lp-red: var(--krasnyy, #e30613);
  --lp-bg: var(--chernyy, #1a1a1a);
  --lp-card-bg: var(--svetlyy-chernyy, #313131);
  --lp-text-main: var(--belyy, #fff);
  --lp-text-sec: var(--seryy, #e5e5e5);
  --lp-border: var(--temnyy-seryy, #464646);
  --lp-accent: var(--zheltyy, #fffc0d);
  
  font-family: inherit;
  color: var(--lp-text-main);
  background-color: var(--lp-bg);
  width: 100%;
  max-width: 1180px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}
.kling-lp *, .kling-lp *::before, .kling-lp *::after {
  box-sizing: border-box;
}
/* --- Hero Section --- */
.kling-lp__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: radial-gradient(60% 60% at 50% 0%, rgba(227, 6, 19, 0.15), transparent 70%);
  gap: 40px;
  padding: 40px 0;
}
.kling-lp__hero-content {
  flex: 1;
  min-width: 300px;
}
.kling-lp__hero-visual {
  flex: 1;
  min-width: 300px;
}
.kling-lp__badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zheltyy);
    background: rgba(255, 252, 13, 0.08);
    border-radius: 999px;
    margin-top: 40px;
}
.kling-lp__title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}
.kling-lp__text-highlight {
  color: var(--lp-red);
  position: relative;
  white-space: nowrap;
}
.kling-lp__subtitle {
  font-size: 1.125rem;
  color: var(--lp-text-sec);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 500px;
}
/* Buttons */
.kling-lp__cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}
.kling-lp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.kling-lp__btn--primary {
  background-color: var(--lp-red);
  color: #fff;
  border: 2px solid var(--lp-red);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}
.kling-lp__btn--primary:hover {
  background-color: #c2000b;
  border-color: #c2000b;
  transform: translateY(-2px);
}
.kling-lp__btn--secondary {
  background-color: transparent;
  color: var(--lp-text-main);
  border: 2px solid var(--lp-border);
}
.kling-lp__btn--secondary:hover {
  border-color: var(--lp-text-main);
  background-color: rgba(255,255,255,0.05);
}
.kling-lp__btn--large {
  padding: 18px 40px;
  font-size: 1.2rem;
}
/* Tech Specs */
.kling-lp__tech-specs {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--lp-text-sec);
}
.kling-lp__tech-specs span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kling-lp__icon {
  color: var(--lp-accent);
  font-style: normal;
  font-weight: bold;
}
/* Video Placeholder (Visual) */
.kling-lp__video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  background-image: linear-gradient(45deg, #222 25%, #2a2a2a 25%, #2a2a2a 50%, #222 50%, #222 75%, #2a2a2a 75%, #2a2a2a 100%);
  background-size: 20px 20px;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lp-border);
  overflow: hidden;
}
.kling-lp__play-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.kling-lp__play-btn::after {
  content: '';
  display: block;
  width: 0; 
  height: 0; 
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 4px;
}
.kling-lp__video-placeholder:hover .kling-lp__play-btn {
  transform: scale(1.1);
  background: var(--lp-red);
}
.kling-lp__caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.7);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #fff;
}
/* --- Features Section --- */
.kling-lp__features {
  padding: 80px 0;
}
.kling-lp__section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.kling-lp__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--lp-red);
  margin: 15px auto 0;
}
.kling-lp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.kling-lp__card {
  background-color: var(--lp-card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.kling-lp__card:hover {
  border-color: var(--lp-border);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.kling-lp__card-icon {
    width: 48px;
    height: 48px;
    background: lab(48.59 73.67 58.17 / 0.1);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--krasnyy);
}
.kling-lp__card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--lp-text-main);
}
.kling-lp__card-text {
  font-size: 0.95rem;
  color: var(--lp-text-sec);
  line-height: 1.5;
}
/* --- Gallery Section --- */
.kling-lp__gallery {
  padding: 60px 0;
}
.kling-lp__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kling-lp__video-placeholder--small {
  aspect-ratio: 16/9;
  margin-bottom: 12px;
}
.kling-lp__prompt {
  font-size: 0.85rem;
  color: var(--lp-text-sec);
  font-style: italic;
  background: rgba(0,0,0,0.2);
  padding: 10px;
  border-radius: 6px;
  border-left: 2px solid var(--lp-accent);
}
/* --- Steps Section --- */
.kling-lp__steps {
  padding: 80px 0;
}
.kling-lp__steps-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.kling-lp__step {
  flex: 1;
  background: var(--lp-card-bg);
  padding: 30px;
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--lp-border);
}
.kling-lp__step-num {
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--lp-red);
  color: #fff;
  font-weight: 800;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.kling-lp__step p {
  margin-top: 15px;
  color: var(--lp-text-sec);
  font-size: 1.05rem;
}

/* --- Bottom CTA --- */
.final-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.final-cta__container {
  max-width: 1180px;
  margin: 0 auto;
}

.final-cta__content {
  position: relative;
  background: linear-gradient(135deg, #313131 0%, #252525 100%);
  border-radius: 24px;
  padding: 80px 60px;
  border: 1px solid rgba(229, 229, 229, 0.1);
  overflow: hidden;
}

/* Декоративные элементы */
.final-cta__decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.final-cta__decoration--top-left {
  width: 400px;
  height: 400px;
  background: #e30613;
  top: -200px;
  left: -200px;
}

.final-cta__decoration--bottom-right {
  width: 350px;
  height: 350px;
  background: #fffc0d;
  bottom: -175px;
  right: -175px;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.final-cta__highlight {
    color: #fffc0d;
    position: relative;
    display: inline-block;
}

.final-cta__highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fffc0d;
  opacity: 0.3;
}

.final-cta__description {
  font-size: 20px;
  line-height: 1.6;
  color: #e5e5e5;
  margin: 0 0 48px 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__action {
  margin-bottom: 40px;
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e30613;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 48px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.3);
}

.final-cta__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.final-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(227, 6, 19, 0.4);
  background: #ff0715;
}

.final-cta__button:hover::before {
  opacity: 1;
}

.final-cta__button:active {
  transform: translateY(0);
}

.final-cta__button-text {
  position: relative;
  z-index: 1;
}

.final-cta__button-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.final-cta__button:hover .final-cta__button-icon {
  transform: translateX(4px);
}

.final-cta__features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.final-cta__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-cta__feature-icon {
  color: #fffc0d;
  flex-shrink: 0;
}

.final-cta__feature-text {
  font-size: 16px;
  color: #e5e5e5;
  font-weight: 500;
}







/* --- Responsive (Адаптив) --- */
@media (max-width: 992px) {
  .kling-lp__title {
    font-size: 2.5rem;
  }
  .kling-lp__gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta {
    padding: 80px 0;
  }

  .final-cta__content {
    padding: 60px 40px;
  }

  .final-cta__title {
    font-size: 40px;
  }

  .final-cta__description {
    font-size: 18px;
  }
  .kling-lp__hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }
  
    .kling-lp__hero-visual {
        width: 100%;
        min-width: auto;
    }
    .kling-lp__hero-content {
        min-width: auto;
    }
    .kling-lp__video-placeholder img {
        object-fit: cover;
        width: 100%;
    }
    .kling-lp__subtitle {
        max-width: none;
    }
    .kling-lp__cta-group,
    .kling-lp__tech-specs {
        justify-content: center;
    }

}
@media (max-width: 768px) {

  .kling-lp__title {
    font-size: 2rem;
  }
  .kling-lp__cta-group {
    justify-content: center;
  }
  
  .kling-lp__tech-specs {
    justify-content: center;
    text-align: left;
  }
  .kling-lp__steps-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .kling-lp__gallery-grid {
    grid-template-columns: 1fr;
  }
  .final-cta {
    padding: 60px 0;
  }

  .final-cta__content {
    padding: 48px 32px;
    border-radius: 16px;
  }

  .final-cta__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .final-cta__description {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .final-cta__button {
    font-size: 16px;
    padding: 18px 36px;
    width: 100%;
    justify-content: center;
  }

  .final-cta__features {
    gap: 24px;
  }

  .final-cta__feature-text {
    font-size: 14px;
  }

  .final-cta__decoration--top-left {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
  }

  .final-cta__decoration--bottom-right {
    width: 250px;
    height: 250px;
    bottom: -125px;
    right: -125px;
  }

    .breadcrumbs {
        padding: 0;
        justify-content: center;
    }

}
@media (max-width: 480px) {
  .kling-lp__cta-group {
    flex-direction: column;
  }
  
  .kling-lp__btn {
    width: 100%;
  }
  
  .kling-lp__title {
    font-size: 1.8rem;
  }
  .final-cta {
    padding: 40px 0;
  }

  .final-cta__content {
    padding: 36px 24px;
  }

  .final-cta__title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .final-cta__description {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .final-cta__button {
    padding: 16px 32px;
    font-size: 15px;
  }

  .final-cta__action {
    margin-bottom: 32px;
  }

  .final-cta__features {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .final-cta__feature {
    width: 100%;
  }
    .kling-lp__tech-specs {
        display: none;
    }
}
