@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background-image: url('../assets/images/background.webp');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-color: #0a0a0a;
	min-height: 100vh;
	overflow-x: hidden;
}

header,
.site-header {
	align-self: center;
	max-width: 1180px;
	width: 100%;
	padding: 24px 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

.header-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.logo--default {
	display: block;
	height: auto;
	max-height: 32px;
	width: auto;
}

.logo-text {
	display: none;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
}

.logo-text-white {
	color: #FFFFFF;
}

.logo-text-accent {
	color: #D4FF00;
}

.header-consult-pill {
	display: none;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(212, 255, 0, 0.2);
	background: rgba(212, 255, 0, 0.08);
	color: #D4FF00;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.header-consult-pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #D4FF00;
	flex-shrink: 0;
}

.site-content {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: clip;
}

.call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 129px;
	height: 45px;
	border-radius: 10px;
	border: none;
	background: #DE1929;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.call:hover {
	background: #c41424;
	transform: translateY(-2px);
}

.call-floating {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 12px;
	z-index: 1000;
	width: min(440px, calc(100% - 24px));
	max-width: 440px;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 12px);
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		transform 0.25s ease,
		background 0.25s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.call-floating.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.call-floating.is-visible:hover {
	background: #c41424;
	transform: translate(-50%, -2px);
}

.devider {
	width: 100%;
	height: 1px;
	background-color: #1F1F1F;
}

main {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-container,
.metrict-container,
.do-you-know-title-container,
.do-you-know-container,
.tarif-title-main-container,
.tarif-container,
.why-container,
.call-container,
.social-container {
	width: 100%;
	max-width: 1180px;
	min-width: 0;
	box-sizing: border-box;
}

.hero-container {
	margin: 30px 0;
	padding: 0 12px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.eyebrow-container {
	width: fit-content;
	padding: 6px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: rgba(212, 255, 0, 0.08);
	border: 1px solid rgba(212, 255, 0, 0.2);
	border-radius: 40px;
}

.punkt {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #D4FF00;
}

.punkt-text {
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #D4FF00;
}

.hero-title {
	width: 100%;
	max-width: 1100px;
	min-width: 0;
	font-size: clamp(32px, 8vw, 56px);
	font-weight: 800;
	line-height: 1.1;
	color: #D4FF00;
}

.white-text {
	color: #FFFFFF;
}

.gray-text {
	color: #5A5A5A;
	font-weight: 500;
}

.hero-description {
	width: 100%;
	max-width: 641px;
	min-width: 0;
	font-size: clamp(17px, 4vw, 22px);
	font-weight: 400;
	line-height: 1.5;
	color: #8A8A8A;
}

.buttons-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.call-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 251px;
	height: 63px;
	background-color: #DE1929;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #FFFFFF;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.call-button:hover {
	background: #c41424;
	transform: translateY(-2px);
}

.btn-arrow {
	width: 18px;
	height: 27px;
	flex-shrink: 0;
}

.what-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 210px;
	height: 63px;
	border: 1px solid #2A2A2A;
	border-radius: 12px;
	background-color: #050505;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #FFFFFF;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.what-button:hover {
	background-color: #111111;
	border-color: #444444;
	transform: translateY(-2px);
}

.hero-benefits-container {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	align-items: center;
}

.metrict-container {
	position: relative;
	max-width: none;
	width: 100%;
	padding: 24px 12px;
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 60px;
	background-color: #050505;
	border-top: 1px solid #1F1F1F;
	border-bottom: 1px solid #1F1F1F;
}

.profit-image {
	width: 26vw;
	position: absolute;
	bottom: 150px;
	right: 10%;
	z-index: -1;
}

.designs-image {
	width: 26vw;
	position: absolute;
	top: 100px;
	left: 0%;
	z-index: -1;
}

.metric {
	width: 165px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.metric-number {
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	color: #D4FF00;
}

.metric-description {
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	color: #8A8A8A;
}

.creatives-slider {
	display: none;
	width: 100%;
	overflow: hidden;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 40px;
	margin-top: 15vw;
}

.creatives-slider__row {
	overflow: hidden;
	width: 100%;
}

.creatives-slider__track {
	display: flex;
	width: max-content;
	will-change: transform;
}

.creatives-slider__set {
	display: flex;
	flex-shrink: 0;
	gap: 10px;
	padding-right: 12px;
}

.creatives-slider__slide {
	--slide-size: max(22vw, 97px);
	flex: 0 0 var(--slide-size);
	width: var(--slide-size);
	height: var(--slide-size);
	min-width: 97px;
	min-height: 97px;
	border-radius: max(1.6vw, 7.5px);
	overflow: hidden;
}

.creatives-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.creatives-slider__row--left .creatives-slider__track {
	animation: creatives-marquee-left 50s linear infinite;
}

.creatives-slider__row--right .creatives-slider__track {
	animation: creatives-marquee-right 50s linear infinite;
}

@keyframes creatives-marquee-left {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@keyframes creatives-marquee-right {
	from {
		transform: translate3d(-50%, 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.creatives-slider__track {
		animation: none;
	}
}

.do-you-know-title-container {
	padding: 0 12px;
	margin-top: 30px;
	margin-bottom: -20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.do-you-know-container {
	margin-bottom: 30px;
	padding: 0 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: clip;
}

.do-you-know-text--desktop {
	display: inline;
}

.do-you-know-text--mobile {
	display: none;
}

.do-you-know-title {
	width: 100%;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #D4FF00;
	text-align: center;
}

.do-you-know-description {
	width: 100%;
	max-width: 570px;
	min-width: 0;
	margin-top: 24px;
	font-size: clamp(28px, 8vw, 44px);
	font-weight: 700;
	line-height: 1.1;
	color: #FFFFFF;
	text-align: center;
}

.do-you-know-title2 {
	width: 100%;
	max-width: 650px;
	min-width: 0;
	margin-top: 24px;
	font-size: clamp(15px, 4vw, 18px);
	font-weight: 400;
	line-height: 1.4;
	color: #8A8A8A;
	text-align: center;
}

.table-slider {
	width: 100%;
	min-width: 0;
	max-width: 100%;
}

.table-slider-viewport {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.table-slider-controls {
	display: none;
}

.table-slider-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #2A2A2A;
	border-radius: 10px;
	background: #131313;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.table-slider-icon {
	width: 16px;
	height: 11px;
	flex-shrink: 0;
	object-fit: contain;
}

.table-slider-btn:hover:not(:disabled) {
	background: #1a1a1a;
	border-color: #444444;
}

.table-slider-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.pain-slider-track {
	display: none;
}

.table-container {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.table-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid #1F1F1F;
	border-radius: 16px;
	overflow: hidden;
}

.table-cell1 {
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: #131313;
	color: #FF4D4D;
}

.table-cell2 {
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: #131313;
	color: #8A8A8A;
	border-right: 1px solid #1F1F1F;
	border-left: 1px solid #1F1F1F;
}

.table-cell3 {
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: rgba(212, 255, 0, 0.03);
	color: #D4FF00;
}

.cell-title {
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.cell-description {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: #FFFFFF;
}

.table-cell1 .cell-description {
	color: #FF4D4D;
}

.gray-label {
	font-style: italic;
	color: #D4D4D4;
}

.tarif-title-main-container {
	position: relative;
	margin-top: 30px;
	padding: 0 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.designs-image2 {
	display: none;
}

.tarif-title-main {
	width: fit-content;
	margin: 0 auto;
 	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #D4FF00;
}

.tarif-title-description {
	width: 100%;
	max-width: 760px;
	min-width: 0;
	font-size: clamp(28px, 8vw, 44px);
	font-weight: 700;
	line-height: 1.1;
	color: #FFFFFF;
	text-align: center;
}

.tarif-title2 {
	width: 100%;
	max-width: 760px;
	min-width: 0;
	font-size: clamp(15px, 4vw, 18px);
	font-weight: 400;
	line-height: 1.4;
	color: #8A8A8A;
	text-align: center;
}

.tarif-container {
	position: relative;
	isolation: isolate;
	margin: 30px 0;
	padding: 0 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: visible;
}

.hours-image {
	position: absolute;
	z-index: -1;
	width: 26vw;
	top: -380px;
	right: 0%;
}

.ticket-image {
	position: absolute;
	top: 50%;
	left: calc(50% - 50vw);
	z-index: 0;
	width: 100vw;
	max-width: 100vw;
	height: auto;
	transform: translateY(-50%);
	pointer-events: none;
	user-select: none;
}

.ticket-image-2 {
	display: none;
}

.card-container {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(55vw, 100%);
	max-width: 100%;
	height: 31vw;
	min-width: 0;
	border-radius: 24px;
	background-color: #131313;
	overflow: hidden;
}

.tarif-title-container {
	flex-shrink: 0;
	padding: 1.5vw;
	display: flex;
}

.tarif-text-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tarif-name {
	width: fit-content;
	padding: 8px 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	background: rgba(212, 255, 0, 0.1);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #D4FF00;
}

.tarif-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	color: #FFFFFF;
}

.tarif-description {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: #8A8A8A;
}

.tarif-benefits-container {
	flex: 1 1 auto;
	min-height: 0;
	padding: 1.5vw;
	display: flex;
	flex-direction: column;
	gap: 14px;
	border-top: 1px solid #1F1F1F;
	border-bottom: 1px solid #1F1F1F;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: #D4FF00 #0D0D0D;
}

.tarif-benefits-container::-webkit-scrollbar {
	width: 10px;
}

.tarif-benefits-container::-webkit-scrollbar-track {
	background: #0D0D0D;
}

.tarif-benefits-container::-webkit-scrollbar-thumb {
	background: #D4FF00;
	border-radius: 5px;
}

.tarif-benefits-container::-webkit-scrollbar-thumb:hover {
	background: #e5ff33;
}

.tarif-benefits-container::-webkit-scrollbar-button:vertical:decrement,
.tarif-benefits-container::-webkit-scrollbar-button:vertical:increment {
	display: block;
	height: 14px;
	background-color: #0D0D0D;
	background-repeat: no-repeat;
	background-position: center;
}

.tarif-benefits-container::-webkit-scrollbar-button:vertical:decrement {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23D4FF00' d='M5 0 10 6H0z'/%3E%3C/svg%3E");
}

.tarif-benefits-container::-webkit-scrollbar-button:vertical:increment {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23D4FF00' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
}

.tarif--benefits-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.tarif-benefit {
	max-width: 509px;
	width: 100%;
	display: flex;
	gap: 12px;
}

.check-box {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background-color: rgba(212, 255, 0, 0.10);
}

.check-icon--desktop {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.tarif-benefit-ben {
	display: none;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.tarif-benefit-text {
	max-width: 440px;
	width: 100%;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: #FFFFFF;
}

.bold-text {
	font-weight: 700;
	color: #FFFFFF;
}

.card-footer {
	flex-shrink: 0;
	padding: 1.5vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	background-color: #0D0D0D;
}

.footer-text {
 font-size: 14px;
 font-weight: 400;
 line-height: 1.5;
 color: #8A8A8A;
}

.why-container {
	margin: 30px 0;
	padding: 0 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.why-title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #D4FF00;
}

.why-description {
	width: 100%;
	max-width: 710px;
	min-width: 0;
	margin-top: 24px;
	font-size: clamp(28px, 8vw, 44px);
	font-weight: 700;
	line-height: 1.1;
	color: #FFFFFF;
	text-align: center;
}

.why-title2 {
	width: 100%;
	max-width: 710px;
	min-width: 0;
	margin-top: 24px;
	font-size: clamp(15px, 4vw, 18px);
	font-weight: 400;
	line-height: 1.4;
	color: #8A8A8A;
	text-align: center;
}

.why-text--desktop,
.tarif-text--desktop {
	display: inline;
}

.why-text--mobile,
.tarif-text--mobile {
	display: none;
}

.why-reviews {
	display: none;
	width: 100%;
	max-width: 360px;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.why-review-img {
	display: block;
	width: 100%;
	max-width: 360px;
	height: auto;
}

.why-benefits {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.benefit-container {
	min-height: 176px;
	padding: 20px;
	display: flex;
	gap: 25px;
	background: #131313;
	border: 1px solid #1F1F1F;
	border-radius: 16px;
}

.why-icon {
	width: 44px;
	height: 44px;
}

.benefit-text-container {
	max-width: 440px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.benefit-text-title {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.25;
	color: #FFFFFF;
}

.benefit-text-description {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	color: #8A8A8A;
}

.call-container {
	margin: 30px 0;
	padding: 0 12px;
	display: flex;
	justify-content: center;
}

.call-window {
	position: relative;
	overflow: hidden;
	max-width: 880px;
	width: 100%;
	min-height: 488px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	border: 1px solid #2A2A2A;
	border-radius: 24px;
	background:
		radial-gradient(
			circle 140px at 50% -25px,
			rgba(212, 255, 0, 0.14) 0%,
			rgba(212, 255, 0, 0.05) 45%,
			transparent 70%
		),
		linear-gradient(180deg, #131313 0%, #0D0D0D 100%);
}

.call-window::before {
	content: '';
	position: absolute;
	top: -85px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 200px;
	background: #d4ff00;
	border-radius: 50%;
	filter: blur(50px);
	opacity: 0.07;
	pointer-events: none;
}

.call-window > * {
	position: relative;
	z-index: 1;
}

.order-call {
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #D4FF00;
}

.window-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	color: #FFFFFF;
	text-align: center;
}

.window-description {
	max-width: 525px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.35;
	color: #8A8A8A;
	text-align: center;
}

.window-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 338px;
	width: 100%;
	height: 67px;
	border: none;
	border-radius: 12px;
	background: #DE1929;
	font-size: 17px;
	font-weight: 600;
	line-height: 1;
	color: #FFFFFF;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.window-button:hover {
	background: #c41424;
	transform: translateY(-2px);
}

body.is-form-open {
	background-color: #0a0a0a;
}

body.is-form-open .devider {
	display: none;
}

body.is-form-open .site-header {
	position: relative;
	z-index: 10;
	background-color: transparent;
}

body.is-form-open .site-header::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 100vw;
	transform: translateX(-50%);
	background-color: #000000;
	z-index: -1;
}

body.is-form-open .logo--default {
	display: none;
}

body.is-form-open .logo-text {
	display: inline;
}

body.is-form-open .header-call {
	display: none;
}

body.is-form-open .header-consult-pill {
	display: inline-flex;
}

body.is-form-open .site-content {
	display: none;
}

body.is-form-open .call-floating {
	display: none !important;
}

.form-page {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	padding: 32px 12px 48px;
	box-sizing: border-box;
}

.form-page-layout {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.form-page-header {
	width: 100%;
	max-width: 652px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-page-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-page-eyebrow-line {
	width: 28px;
	height: 2px;
	background: #D4FF00;
	flex-shrink: 0;
}

.form-page-eyebrow-text {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #D4FF00;
}

.form-page-heading {
	font-size: clamp(32px, 7vw, 40px);
	font-weight: 700;
	line-height: 1.08;
	color: #FFFFFF;
}

.form-page-heading-accent {
	color: #D4FF00;
}

.form-page-card {
	width: 100%;
	max-width: 652px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	border: 1px solid #2A2A2A;
	border-radius: 20px;
	background: #131313;
	box-sizing: border-box;
}

.form-page-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.form-page-badge {
	padding: 8px 12px;
	border-radius: 100px;
	background: rgba(212, 255, 0, 0.1);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #D4FF00;
}

.form-page-card-note {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #FFFFFF;
}

.application-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.form-label {
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #8A8A8A;
}

.form-required {
	color: #D4FF00;
}

.form-input,
.form-select {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	border: 1px solid #2A2A2A;
	border-radius: 12px;
	background: #0a0a0a;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	color: #FFFFFF;
	outline: none;
	transition: border-color 0.25s ease;
}

.form-input::placeholder {
	color: #5A5A5A;
}

.form-input:focus,
.form-select:focus {
	border-color: #444444;
}

.form-select-wrap {
	position: relative;
	display: block;
}

.form-select {
	appearance: none;
	cursor: pointer;
	padding-right: 40px;
}

.form-select-wrap::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 18px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #8A8A8A;
	border-bottom: 2px solid #8A8A8A;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.form-select option {
	background: #131313;
	color: #FFFFFF;
}

.form-segmented {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.form-segment {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 8px;
	border: 1px solid #2A2A2A;
	border-radius: 12px;
	background: #0a0a0a;
	cursor: pointer;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.form-segment input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.form-segment span {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #8A8A8A;
	text-align: center;
	transition: color 0.25s ease;
}

.form-segment:has(input:checked) {
	border-color: #D4FF00;
	background: rgba(212, 255, 0, 0.06);
}

.form-segment:has(input:checked) span {
	color: #FFFFFF;
}

.form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 60px;
	border: none;
	border-radius: 12px;
	background: #DE1929;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	color: #FFFFFF;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.form-submit:hover {
	background: #c41424;
	transform: translateY(-2px);
}

.form-submit-arrow {
	width: 18px;
	height: 27px;
	flex-shrink: 0;
}

.form-disclaimer {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #5A5A5A;
	text-align: center;
}

.form-submit-status {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #D4FF00;
	text-align: center;
}

.form-success-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	box-sizing: border-box;
}

.form-success-modal[hidden] {
	display: none;
}

.form-success-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

.form-success-modal__dialog {
	position: relative;
	width: 872.42px;
	max-width: 100%;
	height: 314px;
	padding: 40px 48px 36px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	border-radius: 36px;
	background: #D4FF00;
	text-align: center;
}

.form-success-modal__close {
	position: absolute;
	top: 16px;
	right: 22px;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: transparent;
	color: #000000;
	font-size: 36px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.form-success-modal__text {
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.1;
	color: #000000;
}

.form-success-modal__ok {
	max-width: 300px;
	width: 100%;
	height: 78px;
	padding: 0 40px;
	border: none;
	border-radius: 14px;
	background: #000000;
	color: #D4FF00;
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
	transition: transform 0.2s ease, background 0.2s ease;
}

.form-success-modal__ok:hover {
	transform: translateY(-1px);
	background: #1a1a1a;
}

body.is-success-modal-open {
	overflow: hidden;
}

@media (max-width: 640px) {
	.form-success-modal__dialog {
		max-width: 294px;
		height: auto;
		min-height: 135px;
		padding: 26px 14px 18px;
		border-radius: 12px;
	}

	.form-success-modal__text {
		max-width: 277px;
		font-size: 17px;
	}

	.form-success-modal__close {
		top: 4px;
		right: 4px;
		width: 20px;
		height: 20px;
		font-size: 14px;
	}

	.form-success-modal__ok {
		max-width: 100px;
		width: 100%;
		height: 26px;
		border-radius: 5px;
		font-size: 14px;
	}
}

.form-submit-status.is-error {
	color: #FF4D4D;
}

.form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.form-page-stats {
	width: 100%;
	max-width: 652px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.form-stat {
	padding: 20px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border: 1px solid #2A2A2A;
	border-radius: 16px;
	background: #131313;
}

.form-stat-number {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	color: #D4FF00;
}

.form-stat-label {
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #8A8A8A;
	text-align: center;
}

.form-page-back {
	padding: 0;
	border: none;
	background: transparent;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #8A8A8A;
	cursor: pointer;
	transition: color 0.25s ease;
}

.form-page-back:hover {
	color: #D4FF00;
}

.benefits-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.benefit {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #8A8A8A;
	display: flex;
	align-items: center;
	gap: 6px;
}

.social-container {
	margin: 30px 0;
	margin-bottom: 60px;
	padding: 0 12px;
	display: flex;
	justify-content: center;
	gap: 14px;
}

.social-item {
	width: 187px;
	height: 69px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #000000;
	text-align: left;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-item span {
	width: 100%;
}

.telegram {
	background: #D4FF00;
	cursor: pointer;
}

.telegram:hover {
	background: #e5ff33;
	transform: translateY(-2px);
}

.instagram {
	background: rgba(212, 255, 0, 0.08);
	border: 0.6px solid rgba(212, 255, 0, 0.2);
	color: #D4FF00;
	cursor: pointer;
}

.instagram:hover {
	background: rgba(212, 255, 0, 0.16);
	border-color: rgba(212, 255, 0, 0.45);
	transform: translateY(-2px);
}

.arrow {
	width: 14px;
	height: 14px;
}

footer {
	width: 100%;
	max-width: 1180px;
	min-width: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 36px 12px;
	box-sizing: border-box;
	color: #5A5A5A;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}

@media (max-width: 1400px) {
	.hours-image {
		top: -320px;
		right: 0%;
	}
}

@media (max-width: 1040px) {
	.why-text--desktop,
	.tarif-text--desktop {
		display: none;
	}

	.why-text--mobile,
	.tarif-text--mobile {
		display: inline;
	}

	.why-title2 {
		max-width: 360px;
		margin-top: 16px;
		font-size: 15px;
		line-height: 1.35;
		color: #8A8A8A;
	}

	.why-description {
		max-width: 460px;
	}

	.why-reviews {
		display: flex;
		margin-top: 32px;
	}

	.why-benefits {
		display: none;
	}

	.social-container {
		display: none;
	}

	.designs-image2 {
		display: block;
		position: absolute;
		width: 26vw;
		bottom: 200px;
		left: 50%;
		transform: translateX(-50%);
	}

	.designs-image {
		display: none;
	}

	.creatives-slider {
		display: flex;
	}

	.do-you-know-text--desktop {
		display: none;
	}

	.do-you-know-text--mobile {
		display: block;
	}

	.do-you-know-container {
		padding-inline: 0;
		max-width: 100%;
		margin-bottom: 15vw;
	}

	.table-slider {
		display: flex;
		flex-direction: column;
		margin-top: 28px;
		width: 100%;
		max-width: 100%;
	}

	.table-slider-controls {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 300px;
		order: 0;
		width: 100%;
		padding: 0 8px;
		margin: 10px 0 30px 0;
	}

	.table-slider-btn {
		width: 16px;
		height: 11px;
		min-width: 16px;
		min-height: 11px;
		padding: 0;
		border: none;
		border-radius: 0;
		background: transparent;
	}

	.table-slider-icon {
		width: 16px;
		height: 11px;
	}

	.table-slider-viewport {
		order: 1;
		width: 100%;
		max-width: 100%;
		padding-bottom: 3px;
		box-sizing: border-box;
	}

	.table-container--desktop {
		display: none;
	}

	.pain-slider-track {
		--pain-slide-width: 229px;
		--pain-slide-gap: 16px;
		display: flex;
		margin-top: 0;
		flex-direction: row;
		gap: var(--pain-slide-gap);
		width: max-content;
		max-width: none;
		padding-inline: 0;
		transition: transform 0.35s ease;
		will-change: transform;
	}

	.pain-slide {
		flex: 0 0 var(--pain-slide-width);
		width: var(--pain-slide-width);
		min-width: var(--pain-slide-width);
		min-height: 66px;
		height: auto;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 12px;
		border: 1px solid #2A2A2A;
		border-radius: 12px;
		background-color: #131313;
		transition: border-color 0.25s ease;
	}

	.pain-slide.is-active {
		border-color: #D4FF00;
	}

	.pain-slide__text {
		margin: 0;
		font-size: 9px;
		font-weight: 400;
		font-style: italic;
		line-height: 1.25;
		text-align: center;
		color: #FFFFFF;
	}

	.call-floating {
		display: flex;
		width: min(440px, calc(100vw - 24px));
	}

	.hours-image {
		width: 20vw;
		top: 111%;
		right: 50%;
		transform: translateX(50%);
	}

	.ticket-image {
		display: none;
	}

	.tarif-container {
		margin: 260px 0;
		margin-top: 170px;
		overflow-x: clip;
	}

 .ticket-image-2 {
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 0;
		transform: translate(-50%, -50%);
		display: block;
		pointer-events: none;
		user-select: none;
	}

 .card-container {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		max-width: 402px;
		width: 100%;
		height: auto;
		border-radius: 24px;
		background-color: #131313;
		overflow: hidden;
	}

	.tarif-title-container {
		padding: 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.tarif-price-container {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.tarif-price {
		font-size: 48px;
		font-weight: 800;
		line-height: 1;
		color: #D4FF00;
	}

	.tarif-price-description {
		font-size: 14px;
		font-weight: 400;
		line-height: 1.5;
		color: #8A8A8A;
	}

	.tarif-benefits-container {
		flex: none;
		min-height: auto;
		padding: 20px;
		display: flex;
		flex-direction: column;
		gap: 14px;
		border-top: 1px solid #1F1F1F;
		border-bottom: 1px solid #1F1F1F;
		overflow: visible;
	}

	.tarif--benefits-row {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.tarif-benefit {
		max-width: 509px;
		width: 100%;
		display: flex;
		gap: 12px;
	}

	.check-box {
		background-color: transparent;
	}

	.check-icon--desktop {
		display: none;
	}

	.tarif-benefit-ben {
		display: block;
	}

	.card-footer {
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px;
		background-color: #0D0D0D;
	}

	.card-footer .call-button {
		width: 100%;
	}

	.profit-image {
		bottom: -190px;
		right: 50%;
		transform: translateX(50%);
	}
}

@media (max-width: 860px) {

	.hours-image {
		top: 112%;
	}

	.tarif-container {
		margin: 250px 0;
		margin-top: 170px;
		overflow-x: clip;
	}

	.hero-title {
		font-size: 40px;
	}

	.hero-description {
		font-size: 20px;
	}

	.profit-image {
		bottom: -150px;
		right: 50%;
		transform: translateX(50%);
	}

	.designs-image {
		top: 220px;
		left: 0%;
	}
}

@media (max-width: 750px) {
	.why-benefits {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 440px) {

	.designs-image2 {
		width: 32vw;
		bottom: 200px;
	}

	.form-page-card {
		padding: 20px 16px;
	}

	.form-segmented {
		grid-template-columns: 1fr;
	}

	.form-page-stats {
		grid-template-columns: 1fr;
	}

	.form-stat-number {
		font-size: 32px;
	}

	.hours-image {
		width: 33vw;
		top: 111%;
	}

	.profit-image {
		bottom: -90px;
		right: 50%;
		transform: translateX(50%);
	}

	.designs-image {
		top: 240px;
		left: 0%;
	}

	.punkt-text {
		line-height: 1.4;
	}

	.hero-title {
		font-size: 30px;
	}

	.hero-description {
		font-size: 17px;
		max-width: 330px;
	}

	.do-you-know-description {
		font-size: 28px;
	}
	
	.why-description {
		font-size: 28px;
	}

	.tarif-container {
		margin: 220px 0;
		margin-top: 160px;
	}

	.window-title {
		font-size: 28px;
	}

	.social-item {
		width: 168px;
		height: 62px;
		border-radius: 5.6px;
	}

	.window-button {
		font-size: 14px;
		height: 62px;
		border-radius: 10;
	}

	footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 26px;
	}
}

@media (max-width: 422px) {
	.ticket-image-2 {
		width: 100vw;
		max-width: 100vw;
		height: auto;
	}

	.metrict-container {
		gap: 25px;
	}
}

@media (max-width: 424px) {
	.hero-title {
		font-size: 28px;
	}
}

@media (max-width: 414px) {
	.profit-image {
		width: 35vw;
		bottom: -100px;
		right: 50%;
		transform: translateX(50%);
	}

	.designs-image {
		width: 35vw;
		top: 480px;
		left: 0%;
	}
}

@media (max-width: 410px) {

	.metrict-container {
		gap: 20px;
	}
	
	.hours-image {
		width: 32vw;
		top: 107%;
	}

	.tarif-container {
		overflow-x: clip;
		margin: 170px 0;
		margin-top: 100px;
	}

	.ticket-image-2 {
		width: 410px;
		max-width: 410px;
		min-width: 410px;
		height: auto;
		left: 50%;
		transform: translate(-50%, -50%);
		pointer-events: none;
		user-select: none;
	}
}

@media (max-width: 520px) {
	body.is-form-open .logo-text {
		font-size: 17px;
	}

	body.is-form-open .header-consult-pill {
		padding: 8px 12px;
		font-size: 9px;
		gap: 6px;
	}
}

@media (max-width: 400px) {
	.hero-title {
		font-size: 26px;
	}

	.hero-description {
		font-size: 16px;
		max-width: 310px;
	}
}