*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background-color: #000;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}



.page {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}



.page__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.page__bg-photo {
	position: absolute;
	top: -117px;
	right: 0;
	width: 88.56%;
	max-width: 1700px;
	height: auto;
	object-fit: cover;
	object-position: top right;
}

.page__bg-photo--mobile {
	display: none;
}

.page__bg-glow {
	position: absolute;
	width: 1407px;
	height: 1407px;
	left: -229px;
	top: 383px;
	border-radius: 50%;
	background: radial-gradient(ellipse 45.79% 45.79% at 50% 50%,
			rgba(228, 40, 96, 0.60) 0%,
			rgba(126, 22, 53, 0) 100%);
}

.page__bg-fade {
	position: absolute;
	inset: auto 0 0 0;
	height: 675px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}



.main {
	position: relative;
	z-index: 1;
	flex: 1;
}



.hero {
	padding: 112px 90px 60px;
}

.hero__inner {
	max-width: 835px;
}

.hero__title {
	font-family: "Triumvirate CG Inserat", "Impact", sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 100px;
	line-height: 1;
	text-align: center;
	color: #FF4179;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.hero__subtitle-group {
	position: relative;
	text-align: center;
	margin-bottom: 24px;
}

.hero__underline {
	width: 445px;
	height: 22px;
	margin: 0 auto 8px;
}

.hero__subtitle {
	font-family: "Triumvirate CG Inserat", "Impact", sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 75px;
	line-height: 1;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
}

.hero__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: #fff;
	max-width: 627px;
	margin: 0 auto 60px;
}



.hero__actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 17px;
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	width: 379px;
	padding: 24px 16px;
	background: linear-gradient(90deg, #A00D3B 0%, #F4185D 100%);
	border-radius: 12px;
	outline: 2px solid #EF3F76;
	outline-offset: -2px;
	cursor: pointer;
	transition: filter 0.2s ease, transform 0.15s ease;
}

.btn:hover {
	filter: brightness(1.15);
	transform: translateY(-2px);
}

.btn:active {
	transform: translateY(0);
	filter: brightness(0.95);
}

.btn__icon {
	width: 44px;
	height: 45px;
	flex-shrink: 0;
	object-fit: contain;
}

.btn__label {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}



.footer {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.77);
	border-top: 2px solid #E11555;
	padding: 32px 24px;
	min-height: 181px;
}

.footer__inner {
	max-width: 498px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 21px;
}

.footer__social {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease, transform 0.15s ease;
	padding-inline: 20px;
}

.footer__social-link:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

.footer__social-icon {
	width: auto;
	height: 43px;
	object-fit: contain;
}

.footer__contact {
	text-align: center;
	line-height: 1.5;
}

.footer__contact-text {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}

.footer__contact-email {
	font-size: 20px;
	font-weight: 600;
	color: #EC175A;
	transition: opacity 0.2s ease;
}

.footer__contact-email:hover {
	opacity: 0.8;
}

@media (max-width: 1475px) {
	.hero__inner {
		max-width: 100%;
	}

	.page__bg-photo--desktop {
		display: none;
	}

	.hero__actions {
		justify-content: center;
	}
}



@media (max-width: 768px) {

	.page__bg-photo--desktop {
		display: none;
	}

	.page__bg-photo--mobile {
		display: block;
		top: -35px;
		right: 0;
		width: 100vw;
		max-width: none;
	}

	.page__bg-glow {
		left: -496px;
		top: 772px;
	}

	.hero {
		padding: 364px 28px 60px;
	}

	.hero__inner {
		max-width: 100%;
	}

	.hero__title {
		font-size: 52px;
		max-width: 358px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__underline {
		width: 270px;
	}

	.hero__subtitle {
		font-size: 43px;
	}

	.hero__text {
		font-size: 15px;
		max-width: 358px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__actions {
		flex-direction: column;
		align-items: flex-start;
		max-width: 363px;
		margin: 0 auto;
	}

	.btn {
		width: 363px;
		max-width: 100%;
		padding: 8px 16px;
	}

	.footer {
		min-height: 231px;
	}

	.footer__inner {
		max-width: 296px;
	}

	.footer__contact-text,
	.footer__contact-email {
		font-size: 15px;
	}
}



@media (max-width: 414px) {
	.btn {
		width: 100%;
	}
}