*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--brand-dark: #050322;
	--brand-purple: #9170ff;
	--brand-light: #ccc3eb;
	--white: #ffffff;
	--brand-blue: #5e13df;
}

:focus {
	outline: none !important;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: var(--brand-dark);
	color: var(--white);
	line-height: 1.4;
	min-height: 100vh;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #1a1545;
}

::-webkit-scrollbar-thumb {
	background: var(--brand-purple);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #7c3aed;
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
	0%, 100% { transform: translateY(0) translateX(-50%); }
	50% { transform: translateY(-10px) translateX(-50%); }
}

.animate-fade-in {
	animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
	animation: slideUp 0.6s ease-out forwards;
}

.animate-bounce {
	animation: bounce 2s infinite;
}

.gradient-text {
	background: linear-gradient(135deg, #ffffff 0%, #ccc3eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(5, 3, 34, 0.2);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(94, 19, 224, 0.2);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-main img {
	width: 112.5px;
	height: 45.75px;
}

@media (min-width: 768px) {
	.logo-main img {
		width: 150px;
		height: 61px;
	}
}


.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
@media (min-width: 768px) {
	.hero {
		align-items: flex-start;
		justify-content: flex-start;
	}
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(5, 3, 34, 0.1), rgba(5, 3, 34, 0.2), var(--brand-dark));
}


.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 0 1rem;
	max-width: 64rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.hero-content {
		text-align: left;
		margin: 21rem 12rem;
	}
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--white);
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.hero-subtitle {
		font-size: 1.5rem;
	}
}
.hero-buttons {
}
.section {
	padding: 1rem 0;
	height: 100vh;
	width: 100%;
}
@media (min-width: 768px) {
	.section {
		padding: 5rem 0;
	}
}

.stats-section {
	background: #0c0931;
}
@media (min-width: 768px) {
	.stats-section {
		background: url('../img/fon_002.jpg') top center no-repeat;
		-webkit-background-size: auto 100%;
		background-size: auto 100%;
	}
}
@media (max-width: 768px) {
	.stats-section {
		height: auto;
	}
}

@media (min-width: 768px) {
	.stats-image {
		display: none;
	}
}
.stats-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.future-section {
	background: #0c0931;
}

@media (min-width: 768px) {
	.future-section {
		background: url('../img/fon_003.jpg') top center no-repeat;
		-webkit-background-size: auto 100%;
		background-size: auto 100%;
	}
}
@media (max-width: 768px) {
	.future-section {
		height: auto;
	}
}

.future-content {
	position: relative;
	padding: 0 1rem;
	max-width: 30rem;
	margin: 0 auto;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.future-content {
		margin: 3rem 12rem;
	}
}

.future-number {
	font-size: 4rem;
	font-weight: 700;
}
@media (min-width: 768px) {
	.future-number {
		font-size: 7rem;
	}
}

.future-text {
	font-size: 1.5rem;
}
@media (min-width: 768px) {
	.future-text {
		font-size: 2rem;
	}
}
.future-strong {
	font-weight: 900;
}

@media (min-width: 768px) {
	.future-number {
		font-size: 6rem;
	}
}
@media (min-width: 768px) {
	.future-image {
		display: none;
	}
}
.future-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonials-section {
	background: var(--brand-dark);
}
@media (max-width: 768px) {
	.testimonials-section {
		height: auto;
	}
}

.testimonial-card {
	background: url('../img/fon_otztv.jpg') top center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	border: 1px solid rgba(94, 19, 224, 0.2);
	border-radius: 0.75rem;
	padding: 2rem;
	max-width: 36rem;
	margin: 7.5rem auto;
}

@media (min-width: 768px) {
	.testimonial-card {
		padding: 3rem;
	}
}

.testimonial-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}


.testimonial-image {
	flex-shrink: 0;
	margin-top: -7.5rem;
}

.testimonial-image img {
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--brand-purple);
}

@media (min-width: 768px) {
	.testimonial-image img {
		width: 15rem;
		height: 15rem;
	}
}

.testimonial-text-wrapper {
	text-align: center;
}

@media (min-width: 768px) {
	.testimonial-text-wrapper {
		text-align: left;
	}
}

.testimonial-quote {
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.testimonial-quote {
	margin-bottom: 2rem;
}
}


.testimonial-text {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	max-width: 70vw;
	line-height: 1.2;

}

@media (min-width: 768px) {
	.testimonial-text {
		font-size: 1.25rem;
		max-width: auto;
		line-height: 1.4;
	}
}

.testimonial-name {
	color: var(--white);
	font-weight: 700;
	font-size: 1.75rem;
}
@media (min-width: 768px) {
	.testimonial-name {
		font-size: 2.5rem;
	}
}

.testimonial-more {
	color: var(--brand-purple);
	font-weight: 700;
	font-size: 1.125rem;
}

.testimonial-more a {
	color: var(--brand-purple);
	text-decoration: none;
}
.testimonials-section .carousel-inner {
	min-height: 80vh;
	height: auto;
}

@media (min-width: 768px) {
	.testimonials-section .carousel-inner {
		height: 95vh;
	}
}


.wingallery-section {
	background: #ccc3eb;
}
@media (max-width: 768px) {
	.wingallery-section, .wingallery-section .container {
		padding: 0;
		height: auto;
	}
}
.wingallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(5, 3, 34, 0), rgba(5, 3, 34, 0), rgba(5, 3, 34, 0.9));
}

@media (min-width: 768px) {
	.wingallery-section .carousel-control-prev, .wingallery-section .carousel-control-next {
		width: 3%;
	}
}


.wingallery-section .carousel-caption {
	left: 5%;
	right: 5%;
	bottom: 0.5rem;
	padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
	.wingallery-section .carousel-caption {
		bottom: 1rem;
		padding-bottom: 1rem;
	}
}


.wingallery-section img {
	margin: 0 auto;
}

.cta-section {
	background: var(--brand-blue);
	position: relative;
	overflow: hidden;
	height: auto;
}

.cta-bg {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 100%;
	pointer-events: none;
}

@media (min-width: 768px) {
	.cta-bg {
		right: 5rem;
		height: 100%;
	}
}

.cta-bg img {
	width: 80%;
	height: 80%;
	object-fit: cover;
}

@media (min-width: 768px) {
	.cta-bg img {
		width: 100%;
		height: 100%;
	}
}

.cta-content {
	position: relative;
	z-index: 10;
	max-width: 48rem;
}
@media (max-width: 768px) {
	.cta-content {
		max-width: 70vw;
	}
}
.cta-title {
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.cta-title {
		font-size: 2.5rem;
	}
}

h5 {
	font-size: 1rem;
	color: var(--brand-light);
}
@media (min-width: 768px) {
	h5 {
		font-size: 1.8rem;
	}
}

.btn-primary {
	background: var(--brand-purple);
	color: var(--white);
}
.btn-primary:hover {
	background: rgba(94, 19, 224, 0.8);
}

.btn-outline {
	background: transparent;
	border: 1px solid rgba(204, 195, 235, 1);
	color: var(--white);
	border-radius: none;
}

.btn-outline:hover {
	background: rgba(145, 112, 255, 0.8);
}

.btn-lg {
	padding: 0.5rem 1rem;
	font-size: 1rem;
}
@media (min-width: 768px) {
	.btn-lg {
		padding: 1rem 2rem;
	}
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
}

.scroll-indicator-inner {
	width: 1.5rem;
	height: 2.5rem;
	border: 2px solid rgba(204, 195, 235, 0.5);
	border-radius: 9999px;
	display: flex;
	justify-content: center;
}

.scroll-indicator-dot {
	width: 0.25rem;
	height: 0.75rem;
	background: var(--brand-light);
	border-radius: 9999px;
	margin-top: 0.5rem;
}

.footer {
	background: #4f12bb;
	padding: 0 0 1.5rem;
	margin-top: auto;
}

.footer-bottom {
	border-top: 1px solid rgba(94, 19, 224, 0.5);
	padding-top: 2rem;
	text-align: center;
}

.footer-copyright {
	color: var(--brand-light);
	font-size: 0.875rem;
}
