/* ========================================
	 Pika Landing Page Styles (БЭМ)
	 ======================================== */



/* =========================
   HERO HEADER (BEM, isolated)
   ========================= */

.hero-header {
    background: radial-gradient(
        80% 80% at 70% 20%,
        rgba(227, 6, 19, 0.15),
        transparent 60%
    ),
    #1a1a1a;
    padding: 40px 0;
    overflow: hidden;
}

.hero-header__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-header__content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
	margin-top: 40px;
}

/* TEXT */

.hero-header__badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    background: rgba(227, 6, 19, 0.15);
    color: var(--krasnyy);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

.hero-header__title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--belyy);
    margin-bottom: 20px;
}

.hero-header__title span {
    color: var(--zheltyy);
}

.hero-header__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--seryy);
    max-width: 520px;
    margin-bottom: 36px;
}

/* ACTIONS */

.hero-header__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-header__btn--primary {
    background: var(--krasnyy);
    color: var(--belyy);
}

.hero-header__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.4);
}

.hero-header__btn--secondary {
    background: transparent;
    color: var(--belyy);
    border: 1px solid var(--temnyy-seryy);
}

.hero-header__btn--secondary:hover {
    border-color: var(--krasnyy);
    color: var(--krasnyy);
}

/* VISUAL */

.hero-header__visual {
    display: flex;
    justify-content: center;
}

.hero-header__mockup {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(
        180deg,
        #2a2a2a,
        #1f1f1f
    );
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px var(--temnyy-seryy);
}

.hero-header__mockup-line {
    height: 14px;
    background: linear-gradient(
        90deg,
        var(--krasnyy),
        var(--zheltyy)
    );
    border-radius: 8px;
    margin-bottom: 16px;
    opacity: 0.85;
}

.hero-header__mockup-line--short {
    width: 60%;
}



.pika-hero__visual {
	position: relative;
	height: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pika-hero__video-placeholder {
	width: 100%;
	height: 400px;
	background: var(--svetlyy-chernyy);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--temnyy-seryy);
	position: relative;
	overflow: hidden;
}

.pika-hero__video-placeholder::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent 30%, rgba(227, 6, 19, 0.05) 50%, transparent 70%);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
	transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
	transform: translate(-50%, -50%) rotate(360deg);
	}
}

.pika-hero__play-icon {
	position: relative;
	z-index: 1;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.pika-hero__play-icon:hover {
	transform: scale(1.1);
}

/* Video Link */
.pika-hero__video-link {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.pika-hero__video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.pika-hero__play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.pika-hero__video-link:hover .pika-hero__play-icon {
  transform: scale(1.1);
}

.pika-hero__video-link:hover .pika-hero__video-placeholder::after {
  opacity: 1;
}

.pika-hero__video-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(227, 6, 19, 0.2);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}


/* Buttons */
.pika-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-family: inherit;
}

.pika-button--primary {
	background: var(--krasnyy);
	color: var(--belyy);
}

.pika-button--primary:hover {
	background: #c4050f;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(227, 6, 19, 0.3);
}

.pika-button--secondary {
	background: transparent;
	color: var(--belyy);
	border: 2px solid var(--temnyy-seryy);
}

.pika-button--secondary:hover {
	border-color: var(--krasnyy);
	color: var(--krasnyy);
}

.pika-button--outline {
	background: transparent;
	color: var(--belyy);
	border: 2px solid var(--temnyy-seryy);
}

.pika-button--outline:hover {
	background: var(--svetlyy-chernyy);
	border-color: var(--krasnyy);
}

.pika-button--large {
	padding: 18px 48px;
	font-size: 18px;
}

/* Features Section */
.pika-features {
	padding: 100px 0;
	background: var(--chernyy);
}

.pika-features__container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 15px;
}

.pika-features__title {
	font-size: 42px;
	font-weight: 700;
	color: var(--belyy);
	text-align: center;
	margin: 0 0 16px 0;
}

.pika-features__subtitle,
.section-subtitle {
	font-size: 18px;
	color: var(--seryy);
	text-align: center;
	margin: 0 0 64px 0;
}
.pika-cta__note {
    font-size: 14px;
    color: var(--zheltyy, #fffc0d);
    font-weight: 600;
	margin-top: 24px;
}
.pika-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.pika-feature-card {
	background: var(--svetlyy-chernyy);
	border-radius: 16px;
	padding: 32px;
	border: 1px solid var(--temnyy-seryy);
	transition: all 0.3s ease;
}

.pika-feature-card:hover {
	border-color: var(--krasnyy);
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.pika-feature-card__icon {
	width: 48px;
	height: 48px;
    background: lab(48.59 73.67 58.17 / 0.1);
    padding: 10px;
    border-radius: 12px;
	margin-bottom: 24px;
	color: var(--krasnyy);
}
.pika-feature-card__icon svg {
}

.pika-feature-card__title {
	font-size: 22px;
	font-weight: 600;
	color: var(--belyy);
	margin: 0 0 12px 0;
}

.pika-feature-card__description {
	font-size: 15px;
	line-height: 1.6;
	color: var(--seryy);
	margin: 0;
}

/* Use Cases Section */
.pika-cases {
	position: relative;
	padding: 100px 0;
	background: var(--svetlyy-chernyy);
}

.pika-cases__container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
}

.pika-cases__title {
	font-size: 42px;
	font-weight: 700;
	color: var(--belyy);
	text-align: center;
	margin: 0 0 64px 0;
}

.pika-cases__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.pika-case {
	background: var(--chernyy);
	border-radius: 16px;
	padding: 40px;
	border: 1px solid var(--temnyy-seryy);
	position: relative;
}

.pika-case__number {
	position: absolute;
	top: 32px;
	right: 32px;
	font-size: 64px;
	font-weight: 700;
	color: var(--temnyy-seryy);
	line-height: 1;
	opacity: 0.3;
}

.pika-case__title {
	font-size: 26px;
	font-weight: 600;
	color: var(--belyy);
	margin: 0 0 16px 0;
}

.pika-case__description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--seryy);
	margin: 0 0 24px 0;
}

.pika-case__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pika-case__list li {
	font-size: 15px;
	color: var(--seryy);
	padding: 8px 0 8px 28px;
	position: relative;
}

.pika-case__list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--krasnyy);
	font-weight: 600;
}


/* ========================================
   How It Works Section
   ======================================== */

.pika-how-works {
  padding: 60px 0;
}

.pika-how__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--belyy);
  text-align: center;
  margin: 0 0 16px 0;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 15px;
}

.step-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 30px 0;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--krasnyy, #e30613);
  color: var(--belyy, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--belyy, #fff);
}

.step-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--seryy, #e5e5e5);
}

.step-divider {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--krasnyy, #e30613), transparent);
  margin-left: 29px;
}

.how-works-cta {
  text-align: center;
  margin: 0 20px;
}

/* CTA Section */
.pika-cta {
	padding: 120px 0;
	background: linear-gradient(135deg, var(--chernyy) 0%, var(--svetlyy-chernyy) 100%);
	position: relative;
	overflow: hidden;
}

.pika-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(227, 6, 19, 0.2) 0%, transparent 70%);
	pointer-events: none;
}

.pika-cta__container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
	z-index: 1;
}

.pika-cta__content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.pika-cta__title {
	font-size: 48px;
	font-weight: 700;
	color: var(--belyy);
	margin: 0 0 24px 0;
	line-height: 1.2;
}

.pika-cta__description {
	font-size: 20px;
	line-height: 1.6;
	color: var(--seryy);
	margin: 0 0 40px 0;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 992px) {
    .hero-header__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-header__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-header__actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-header__title {
        font-size: 36px;
    }

    .hero-header__subtitle {
        font-size: 16px;
    }

    .hero-header__btn {
        width: 100%;
    }
}


@media screen and (max-width: 1024px) {
	.pika-hero__container {
	gap: 40px;
	}

	.pika-hero__title {
	font-size: 42px;
	}

	.pika-features__grid {
	grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.pika-hero {
	padding: 60px 0;
	}

	.pika-hero__container {
	grid-template-columns: 1fr;
	gap: 40px;
	}

	.pika-hero__title {
	font-size: 36px;
	}

	.pika-hero__description {
	font-size: 16px;
	}

	.pika-hero__actions {
	flex-direction: column;
	}

	.pika-hero__stats {
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	}

	.pika-hero__stat-number {
	font-size: 24px;
	}

	.pika-hero__stat-label {
	font-size: 12px;
	}

	.pika-hero__visual {
	min-height: 300px;
	}

	.pika-hero__video-placeholder {
	height: 300px;
	}

	.pika-features,
	.pika-cases,
	.pika-how {
	padding: 60px 0;
	}

	.pika-features__title,
	.pika-cases__title,
	.pika-how__title {
	font-size: 32px;
	}

	.pika-features__grid {
	grid-template-columns: 1fr;
	gap: 24px;
	}

	.pika-cases__grid {
	grid-template-columns: 1fr;
	gap: 24px;
	}

	.pika-cta {
	padding: 80px 0;
	}

	.pika-cta__title {
	font-size: 32px;
	}

	.pika-cta__description {
	font-size: 16px;
	}


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

}

@media screen and (max-width: 480px) {
	.pika-hero__title {
	font-size: 28px;
	}

	.pika-hero__stats {
	grid-template-columns: 1fr;
	text-align: center;
	}

	.pika-button {
	width: 100%;
	padding: 14px 24px;
	}

	.pika-features__title,
	.pika-cases__title,
	.pika-how__title {
	font-size: 26px;
	}

	.pika-feature-card,
	.pika-case {
	padding: 24px;
	}

	.pika-case__number {
	font-size: 48px;
	top: 20px;
	right: 20px;
	}
}