:root {
	--bg: rgba(242, 242, 242, 1);
	--bg-secondary: #14141f;
	--text: rgba(34, 34, 34, 1);
	--text-muted: rgba(255, 255, 255, 0.5);
	--primary: rgba(232, 71, 58, 1);
	--primary-grad: linear-gradient(
		90deg,
		var(--primary) 28%,
		rgba(249, 134, 20, 1) 100%
	);
	--primary-hover: var(--primary-grad);
	--border: rgba(34, 34, 34, 1);
	--card-bg: rgba(255, 255, 255, 0.05);
	--accent: var(--primary);
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	color: var(--text);
}

html {
	overflow-x: hidden;
}

body {
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
}

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

ul {
	list-style: none;
}

img {
	display: block;
}

.container {
	max-width: 1340px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

/* Glass effect */
.glass-1 {
	backdrop-filter: blur(3px) saturate(110%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow:
		-5px -5px 5.4px 0 rgba(0, 0, 0, 0.1) inset,
		5px 5px 5.4px 0 rgba(0, 0, 0, 0.05) inset;
}

.glass-2 {
	box-shadow:
		-5px -5px 5.4px 0 rgba(0, 0, 0, 0.1) inset,
		5px 5px 5.5px 0 rgba(0, 0, 0, 0.05) inset;
	backdrop-filter: blur(3px) saturate(110%);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-3 {
	box-shadow:
		-5px -5px 5.4px 0 rgba(0, 0, 0, 0.1) inset,
		5px 5px 5.5px 0 rgba(255, 255, 255, 0.25) inset;
	backdrop-filter: blur(3px) saturate(110%);
	background-color: #222222;
}

/* Header */
.header {
	position: fixed;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 60px);
	max-width: 1300px;
	z-index: 1000;
	padding: 22px 30px;
	border-radius: 16px;
	background: var(--bg);
	box-shadow:
		-5px -5px 5.4px 0 rgba(0, 0, 0, 0.1) inset,
		5px 5px 5.5px 0 rgba(255, 255, 255, 0.25) inset;
	transition:
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
}

.header-logo img {
	height: 51px;
	width: auto;
	display: block;
}

.header-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	max-width: 620px;
	width: 100%;
}

.nav-link {
	color: var(--text);
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: var(--primary);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 40px;
}

.social-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-phone {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--text);
	font-size: 16px;
	font-weight: 600;
	transition: transform 0.3s ease;
}

.header-phone:hover {
	transform: translateY(-2px);
}

.header-phone img {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	transition: scale 0.3s ease;
}

.header-phone:hover img {
	scale: 1.1;
}

.header-phone span {
	white-space: nowrap;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(168, 85, 247, 0.25);
	background: rgba(255, 255, 255, 0.05);
	transition:
		transform 0.3s ease,
		opacity 0.3s ease,
		border-color 0.3s ease,
		background 0.3s ease;
}

.social-link:hover {
	transform: translateY(-2px) scale(1.05);
	opacity: 0.9;
	border-color: rgba(168, 85, 247, 0.45);
	background: rgba(168, 85, 247, 0.12);
}

.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
}

.burger-menu span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--text);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
	transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 1150px) {
	.header-actions {
		gap: 16px;
	}
	.header-phone span {
		display: none;
	}
}

@media (max-width: 1024px) {
	.header {
		top: 20px;
		padding: 18px 24px;
	}

	.header-inner {
		gap: 30px;
	}

	.header-nav {
		gap: 30px;
	}
}

@media (max-width: 950px) {
	.header {
		top: 10px;
		padding: 15px 20px;
	}

	.header-inner {
		gap: 20px;
	}

	.burger-menu {
		display: flex;
		order: 2;
	}

	.header-nav {
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		width: 100%;
		background: var(--bg);
		border-radius: 16px;
		flex-direction: column;
		align-items: center;
		gap: 0;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition:
			max-height 0.3s ease,
			opacity 0.3s ease,
			padding 0.3s ease;
		box-shadow:
			0 10px 30px rgba(0, 0, 0, 0.3),
			-5px -5px 5.4px 0 rgba(0, 0, 0, 0.1) inset,
			5px 5px 5.5px 0 rgba(255, 255, 255, 0.25) inset;
		max-width: 100%;
	}

	.header-nav.active {
		max-height: 300px;
		opacity: 1;
		padding: 20px 0;
	}

	.nav-link {
		font-size: 16px;
		padding: 12px 20px;
		width: 100%;
		text-align: center;
		opacity: 0;
		transform: translateY(-10px);
		transition:
			opacity 0.3s ease,
			transform 0.3s ease;
	}

	.header-nav.active .nav-link {
		opacity: 1;
		transform: translateY(0);
	}
	.header-actions {
		gap: 12px;
		order: 3;
	}

	.header-logo {
		order: 1;
	}
}

@media (max-width: 480px) {
	.header {
		width: calc(100% - 20px);
		padding: 10px 15px;
	}

	.header-logo img {
		height: 40px;
	}
}

/* Hero Section */
.hero {
	min-height: 843px;
	padding: 190px 0 88px;
	margin-top: 70px;
	display: flex;
	flex-direction: column;
}

.hero .container {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	height: auto;
	max-width: 1197px;
	width: 100%;
}

.hero-text {
	position: relative;
	opacity: 0;
	transform: translateX(-140px);
	transition:
		opacity 0.3s ease-in-out,
		transform 1s ease-in-out 0.1s;
}

.hero.is-loaded .hero-text {
	opacity: 1;
	transform: translateX(0);
}

.hero-title {
	font-family: 'Dela Gothic One', sans-serif;
	font-size: clamp(40px, 5vw, 70px);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 18px;
	color: rgba(34, 34, 34, 0.5);
	max-width: 537px;
	position: relative;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 30px;
}

.hero .hero-btn {
	padding: 60px 150px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	background: var(--primary);
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 100%;
	opacity: 0;
	transform: translateY(200px) rotate(0deg);
	transition:
		transform 1s ease-in-out,
		opacity 0.3s ease;
}

.hero.is-loaded .hero-btn {
	opacity: 1;
	transform: translateY(0) rotate(0deg);
}

.hero .hero-btn:hover {
	transform: rotate(-10deg);
	animation: pulse-btn 1s ease-in-out infinite;
}

@keyframes pulse-btn {
	0%,
	100% {
		scale: 1;
	}
	50% {
		scale: 1.04;
	}
}

.link-arrow {
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	transition:
		color 0.3s ease,
		opacity 0.3s ease 0.7s;
	opacity: 0;
}

.hero.is-loaded .link-arrow {
	opacity: 1;
}

.link-arrow:hover {
	color: var(--primary);
}

.link-arrow span {
	font-size: 18px;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.link-arrow:hover span {
	opacity: 1;
}

.link-arrow img {
	width: 37px;
	height: 37px;
}

.hero-image {
	position: absolute;
	top: -150px;
	right: -200px;
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.3s ease 0.5s,
		transform 1s ease-in-out 0.5s;
}

.hero.is-loaded .hero-image {
	opacity: 1;
	transform: translateY(0);
}

.hero.is-loaded .hero-image img {
	width: 90%;
	max-width: 765px;
	height: auto;
	display: block;
	animation: hero-image-anim 20s ease-in-out infinite;
}

@keyframes hero-image-anim {
	0% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.16) rotate(7deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
	}
}

.hero-badge {
	position: absolute;
	bottom: 250px;
	right: 319px;
	background: white;
	padding: 23px;
	border-radius: 16px;
	rotate: -60deg;
	opacity: 0;
	transform: scale(0.9);
	transition:
		opacity 0.3s ease 0.3s,
		bottom 1s ease-in-out 0.3s,
		transform 1s ease-in-out 0.3s,
		rotate 1s ease-in-out 0.3s;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.hero-badge span {
	background: var(--primary-grad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: 'Dela Gothic One', sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.hero.is-loaded .hero-badge {
	opacity: 1;
	rotate: -8.3deg;
	bottom: 7px;
	transform: scale(1);
	animation: pulse 2s ease-in-out infinite 1.6s;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.06);
	}
}

@media (max-width: 1200px) {
	.hero-image {
		right: 100px;
		top: 0;
	}

	.hero.is-loaded .hero-image img {
		max-width: 500px;
	}

	.hero.is-loaded .hero-badge {
		right: 250px;
		bottom: 200px;
	}
}

@media (max-width: 1080px) {
	.hero {
		min-height: 700px;
		padding: 150px 0 80px;
	}

	.hero-content {
		gap: 40px;
	}

	.hero-text {
		max-width: 100%;
	}

	.hero-title {
		font-size: clamp(36px, 5vw, 60px);
	}

	.hero-subtitle {
		max-width: 350px;
		width: 100%;
	}

	.hero-subtitle br {
		display: none;
	}

	.hero-actions {
		flex-wrap: wrap;
		gap: 20px;
	}

	.hero .hero-btn {
		padding: 50px 120px;
		font-size: 16px;
	}

	.hero.is-loaded .hero-badge {
		bottom: -70px;
	}

	.hero-image {
		right: -100px;
		top: -100px;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: 600px;
		padding: 120px 0 60px;
		margin-top: 50px;
	}

	.hero-title {
		font-size: clamp(32px, 6vw, 48px);
		margin-bottom: 16px;
	}

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

	.hero-actions {
		gap: 20px;
	}

	.hero .hero-btn {
		padding: 40px 100px;
		font-size: 14px;
	}

	.hero-image {
		top: -210px;
		right: -200px;
	}

	.hero.is-loaded .hero-image img {
		max-width: 500px;
	}

	.hero-badge {
		position: static;
		width: fit-content;
		margin-top: 10px;
		margin-left: auto;
		margin-right: 150px;
		padding: 10px;
	}

	.hero-badge span {
		font-size: 14px;
	}

	.link-arrow span {
		font-size: 16px;
	}

	.link-arrow img {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 510px) {
	.hero {
		min-height: 500px;
		padding: 70px 0 40px;
		margin-top: 40px;
	}

	.hero-title {
		font-size: clamp(28px, 7vw, 36px);
		margin-bottom: 12px;
	}

	.hero-subtitle {
		font-size: 14px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: start;
		gap: 16px;
		width: 100%;
	}

	.hero .hero-btn {
		padding: 30px 80px;
		font-size: 12px;
	}

	.hero-image {
		right: -150px;
		top: 130px;
	}

	.hero.is-loaded .hero-image img {
		max-width: 350px;
	}

	.hero-badge {
		margin-right: 0;
	}

	.link-arrow {
		font-size: 12px;
	}

	.link-arrow span {
		font-size: 14px;
	}

	.link-arrow img {
		width: 24px;
		height: 24px;
	}
}

/* Section Title */
.section-title {
	font-family: 'Dela Gothic One', sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	text-transform: uppercase;
	margin-bottom: 15px;
	opacity: 0;
	transform: translateY(-100px);
	transition:
		opacity 0.3s ease,
		transform 1s ease;
	text-align: center;
	position: relative;
	z-index: 1;
}

.section-subtitle {
	font-size: 18px;
	color: var(--text);
	opacity: 0;
	margin-bottom: 50px;
	opacity: 0;
	transform: translateY(-100px);
	transition:
		opacity 0.3s ease,
		transform 1s ease;
	text-align: center;
	position: relative;
	z-index: 1;
}

section.is-visible .section-subtitle {
	opacity: 0.5;
	transform: translateY(0);
}

section.is-visible .section-title {
	opacity: 1;
	transform: translateY(0);
}

.text-accent {
	font-family: inherit;
	font-size: inherit;
	background: var(--primary-grad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.text-accent-primary {
	color: var(--primary);
}

.link-accent {
	color: var(--accent);
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.link-accent:hover {
	opacity: 0.8;
}

@media (max-width: 768px) {
	.section-title {
		margin-bottom: 15px;
		font-size: 32px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.section-title {
		font-size: 20px;
	}

	.section-subtitle {
		margin-bottom: 30px;
		font-size: 16px;
	}

	.btn-primary {
		padding: 10px 20px;
		font-size: 14px;
	}
}

/* Niches Section */
.niches {
	padding: 80px 0 159px;
	background: var(--bg);
}

.niches-content {
	position: relative;
}

.niches-bubble {
	position: absolute;
	bottom: -200px;
	left: -220px;
	max-width: 460px;
	max-height: 460px;
	animation: niches-bubble-anim 20s ease-in-out infinite;
}

@keyframes niches-bubble-anim {
	0% {
		transform: translateX(0) rotate(0deg);
	}
	50% {
		transform: translateX(-30px) rotate(7deg);
	}
	100% {
		transform: translateX(0) rotate(0deg);
	}
}

.niches-bubble img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.niches-text {
	text-align: center;
}

.niches-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	gap: 60px;
	margin-bottom: 80px;
}

.niche-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	width: 100%;
	position: relative;
	z-index: 1;
	opacity: 0;
	transition:
		opacity 1s ease,
		transform 1s ease;
}

.niche-row:nth-child(1),
.niche-row:nth-child(3) {
	transform: translateX(400px);
}

.niche-row:nth-child(2) {
	transform: translateX(-400px);
}

.niches.is-visible .niche-row {
	opacity: 1;
	transform: translateX(0);
}

.niche-row.row-2 {
	max-width: 640px;
}

.niche-row.row-3 {
	max-width: 1080px;
}

.niche-line {
	display: block;
	min-height: 1px;
	flex: 1;
	background: linear-gradient(
		270deg,
		var(--primary) 0%,
		rgba(249, 134, 20, 1) 100%
	);
	flex-shrink: 0;
}

.niche-btn {
	background: rgba(242, 242, 242, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid var(--primary);
	border-radius: 50px;
	color: var(--text);
	padding: 16px 40px;
	min-width: 200px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.niche-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-grad);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.niche-btn:hover::before {
	opacity: 1;
}

.niche-btn:hover {
	color: white;
}

.niches-note {
	font-size: 18px;
	color: var(--text);
	text-align: center;
	opacity: 0;
	transition: opacity 0.8s ease 0.8s;
	position: relative;
	z-index: 1;
}

.niches.is-visible .niches-note {
	opacity: 1;
}

@media (max-width: 1024px) {
	.niches {
		padding: 60px 0 100px;
	}

	.niches-grid {
		gap: 40px;
		margin-bottom: 60px;
	}

	.niche-btn {
		min-width: 180px;
		font-size: 16px;
		padding: 14px 32px;
	}

	.niche-row.row-2 {
		max-width: 500px;
	}

	.niches-bubble {
		max-width: 360px;
		max-height: 360px;
		left: -160px;
		bottom: -60px;
	}
}

@media (max-width: 768px) {
	.niches {
		padding: 60px 0 80px;
	}

	.niches-grid {
		gap: 32px;
		margin-bottom: 50px;
	}

	.niche-row {
		flex-direction: column;
		max-width: 100% !important;
	}

	.niche-line {
		min-height: 16px;
		width: 1px;
	}

	.niche-btn {
		width: 100%;
		max-width: 400px;
		min-width: unset;
		font-size: 16px;
		padding: 16px 24px;
	}

	.niches-note {
		font-size: 16px;
		padding: 0 20px;
	}

	.niches-bubble {
		max-width: 300px;
		max-height: 300px;
		left: -130px;
		bottom: 50px;
	}
}

@media (max-width: 480px) {
	.niches {
		padding: 40px 0 60px;
	}

	.niches-grid {
		gap: 24px;
		margin-bottom: 40px;
	}

	.niche-btn {
		padding: 14px 20px;
		font-size: 14px;
		max-width: 100%;
	}

	.niches-note {
		font-size: 14px;
	}
}

/* Quiz Section */
.quiz {
	background: var(--bg);
	padding: 100px 0;
}

.quiz .section-title {
	margin-bottom: 40px;
}

.quiz .container {
	position: relative;
}

.quiz-form {
	position: relative;
	opacity: 0;
	transform: translateX(-500px);
	transition:
		opacity 1s ease,
		transform 1s ease;
	z-index: 1;
	min-height: 555px;
	display: flex;
	flex-direction: column;
	border-radius: 60px;
	padding: 40px 50px;
}

.quiz.is-visible .quiz-form {
	opacity: 1;
	transform: translateX(0);
}

.quiz-question {
	display: none;
	flex-direction: column;
	flex: 1;
}

.quiz-question.active {
	display: flex;
}

.quiz-question-title {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
	font-family: 'Open Sans', sans-serif;
}

.quiz-step {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
}

.quiz-progress {
	display: flex;
	gap: 8px;
	margin-bottom: 40px;
}

.quiz-progress-bar {
	height: 6px;
	max-width: 60px;
	width: 100%;
	flex: 1;
	background: rgba(34, 34, 34, 0.15);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.quiz-progress-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: var(--primary);
	border-radius: inherit;
	transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-progress-bar:nth-child(1)::after {
	transition-delay: 0s;
}

.quiz-progress-bar:nth-child(2)::after {
	transition-delay: 0.08s;
}

.quiz-progress-bar:nth-child(3)::after {
	transition-delay: 0.16s;
}

.quiz-progress-bar:nth-child(4)::after {
	transition-delay: 0.24s;
}

.quiz-progress-bar:nth-child(5)::after {
	transition-delay: 0.32s;
}

.quiz-progress-bar:nth-child(6)::after {
	transition-delay: 0.4s;
}

.quiz-progress-bar.active::after {
	width: 100%;
}

.quiz-progress-bar.active:last-of-type::after,
.quiz-progress-bar.active:not(:has(~ .quiz-progress-bar.active))::after {
	background: var(--primary-grad);
}

.quiz-options {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 36px;
	margin-bottom: 20px;
}

.quiz-options-1 {
	max-width: 680px;
}

.quiz-options-2 {
	max-width: 310px;
}

.quiz-options-3 {
	max-width: 930px;
}

.quiz-options-4 {
	max-width: 530px;
}

.quiz-options-5 {
	max-width: 630px;
}

.quiz-option {
	display: flex;
	align-items: center;
	padding: 10px 16px;
	background: transparent;
	border: 1px solid var(--primary);
	border-radius: 100px;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.quiz-option::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-grad);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
	border-radius: inherit;
}

.quiz-option:hover::before {
	opacity: 1;
}

.quiz-option:hover span {
	color: white;
}

.quiz-option.active,
.quiz-option:has(input:checked) {
	background: var(--primary-grad);
	border-color: var(--primary);
}

.quiz-option.active span,
.quiz-option:has(input:checked) span {
	color: white;
}

.quiz-option input[type='checkbox'],
.quiz-option input[type='radio'] {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}

.quiz-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-top: auto;
}

.quiz-note {
	font-size: 15px;
	color: var(--text);
	opacity: 0.5;
	margin-bottom: 20px;
}

.quiz-note.error {
	color: #ff9e9e;
}

.quiz-note.hidden {
	display: hidden;
}

.quiz-actions {
	display: flex;
	gap: 16px;
	justify-content: flex-end;
}

.quiz-inputs {
	display: flex;
	flex-direction: column;
	margin-bottom: 45px;
}

.quiz-inputs > p {
	margin-bottom: 43px;
	font-size: 18px;
}

.quiz-input-group {
	position: relative;
	margin-bottom: 36px;
}

.quiz-input-group:last-child {
	margin-bottom: 0;
}

.quiz-input-label {
	position: absolute;
	top: -16px;
	left: 26px;
	font-size: 14px;
	font-weight: 400;
	color: var(--text);
	padding: 6px 4px;
	background-color: var(--bg);
	z-index: 1;
}

.quiz-input-phone {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
}

.quiz-phone-dropdown {
	position: relative;
	z-index: 10;
}

.quiz-phone-dropdown-btn {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: none;
	color: var(--text);
	cursor: pointer;
	padding: 4px;
	transition: opacity 0.2s ease;
}

.quiz-phone-dropdown-btn:hover {
	opacity: 0.7;
}

.quiz-phone-dropdown-btn svg {
	transition: transform 0.2s ease;
}

.quiz-phone-dropdown-btn svg path {
	fill: var(--text);
}

.quiz-phone-dropdown.active .quiz-phone-dropdown-btn svg {
	transform: rotate(180deg);
}

.quiz-phone-flag {
	display: inline-flex;
	width: 24px;
	height: 18px;
	overflow: hidden;
}

.quiz-phone-flag img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.quiz-phone-dropdown-menu {
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	background: rgba(242, 242, 242, 0.95);
	border-radius: 12px;
	padding: 8px;
	min-width: 140px;
	display: none;
	flex-direction: column;
	gap: 4px;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.quiz-phone-dropdown.active .quiz-phone-dropdown-menu {
	display: flex;
}

.quiz-phone-dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: transparent;
	border: none;
	border-radius: 8px;
	color: var(--text);
	font-size: 16px;
	cursor: pointer;
	transition: background 0.2s;
	text-align: left;
	width: 100%;
}

.quiz-phone-dropdown-item:hover {
	background: color-mix(in srgb, var(--primary) 10%, transparent);
}

.quiz-input-phone .quiz-input {
	padding-left: 74px;
}

.quiz-input {
	width: 100%;
	padding: 20px 30px;
	border: 1px solid var(--primary);
	border-radius: 100px;
	background: transparent;
	color: var(--text);
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	transition: all 0.3s ease;
	max-width: 700px;
}

.quiz-input::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.quiz-input:focus {
	outline: none;
	border-color: var(--primary);
}

.quiz-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	background: var(--primary);
	border: 1px solid var(--primary);
	color: white;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 100px;
	text-transform: uppercase;
}

.quiz-btn:hover {
	background: var(--primary-hover);
}

.quiz-btn-secondary {
	background: transparent;
	border: 1px solid var(--border);
	opacity: 0.5;
	color: var(--text);
}

.quiz-btn-secondary svg path {
	fill: var(--text);
}

.quiz-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
}

.quiz-btn svg {
	display: block;
}

.quiz-success {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	text-align: center;

	font-size: 32px;
	font-weight: 600;
	max-width: 360px;
}

.quiz-shape {
	position: absolute;
	width: 570px;
	height: auto;
	top: 50px;
	right: -260px;
}

.quiz-shape img {
	width: 100%;
	height: 100%;
	animation: quiz-shape-rotate 20s ease-in-out infinite;
}

@keyframes quiz-shape-rotate {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(41deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@media (max-width: 1024px) {
	.quiz-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.quiz-left {
		max-width: 100%;
	}

	.quiz-left .section-title {
		text-align: center;
	}

	.quiz-shape {
		width: 300px;
		right: -120px;
	}
}

@media (max-width: 768px) {
	.quiz {
		padding: 0 0 30px;
	}

	.quiz-form {
		padding: 24px;
		border-radius: 30px;
		background-color: rgba(242, 242, 242, 0.7);
	}

	.quiz-options {
		gap: 15px;
	}

	.quiz-footer {
		flex-direction: column;
		align-items: start;
	}

	.quiz-actions {
		align-self: flex-end;
	}

	.quiz-btn {
		width: 100%;
	}

	.quiz-option {
		font-size: 16px;
		border-radius: 20px;
	}

	.quiz-question-title {
		font-size: 24px;
	}

	.quiz-step {
		font-size: 16px;
	}
}

/* AI Employee Section */
.ai-employee {
	padding: 100px 0;
	background: var(--bg);
}

.ai-employee .container {
	position: relative;
}

.ai-employee-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
	z-index: 1;
}

.ai-card {
	border-radius: 40px;
	padding: 40px 40px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
	gap: 24px;
	transition:
		transform 1s ease-in-out,
		opacity 0.3s ease-in-out,
		translate 0.3s ease,
		box-shadow 0.3s ease;
	min-height: 412px;
}

.ai-card:nth-child(1),
.ai-card:nth-child(2),
.ai-card:nth-child(3) {
	opacity: 0;
	transform: translateX(1200px);
}

.ai-card:nth-child(4),
.ai-card:nth-child(5),
.ai-card:nth-child(6) {
	opacity: 0;
	transform: translateX(-1200px);
}

.ai-employee.is-visible .ai-card {
	opacity: 1;
	transform: translateX(0);
}

.ai-card:hover {
	translate: 0 -3px;
}

.ai-card-icon {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ai-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.ai-card-title {
	text-align: left;
	font-size: 30px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
}

.ai-card-title .text-accent-white {
	color: white;
}

@media (max-width: 1024px) {
	.ai-employee-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ai-employee {
		padding: 50px 0;
	}

	.ai-card {
		padding: 24px;
		border-radius: 20px;
		min-height: 200px;
		gap: 18px;
	}

	.ai-card-title {
		font-size: 20px;
		line-height: 1.1;
	}

	.ai-card-title br {
		display: none;
	}

	.ai-card-icon {
		height: 100px;
	}
}

@media (max-width: 480px) {
	.ai-employee-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* ROI */
.roi {
	margin-top: 96px;
	padding: 4px 0 78px;
	background: var(--bg);
}

.roi .container {
	position: relative;
}

.roi-title {
	text-align: center;
	margin-bottom: 12px;
}

.roi-subtitle {
	text-align: center;
	color: var(--text-muted);
	margin-bottom: 28px;
}

.roi-list {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	z-index: 1;
	transition:
		transform 1s ease-in-out,
		opacity 0.3s ease-in-out,
		translate 0.3s ease;
}

.roi-item {
	border-radius: 24px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition:
		transform 1s ease-in-out,
		opacity 0.3s ease-in-out,
		translate 0.3s ease;
}

.roi-item:nth-child(2n + 1) {
	transform: translateX(-300px);
	opacity: 0;
}

.roi-item:nth-child(2n) {
	transform: translateX(300px);
	opacity: 0;
}

.roi.is-visible .roi-item {
	transform: translateX(0);
	opacity: 1;
}

.roi-icon {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
}

.roi-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.roi-text {
	font-size: 30px;
	font-weight: 600;
	color: var(--text);
}

.roi-img-1,
.roi-img-2 {
	position: absolute;
	height: auto;
}

.roi-img-1 {
	width: 584px;
	left: -318px;
	top: -14px;

	animation: roi-img-1 20s ease-in-out infinite;
}

.roi-img-2 {
	width: 522px;
	height: auto;
	right: -310px;
	bottom: -78px;

	animation: roi-img-2 20s ease-in-out infinite;
}

.roi-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@keyframes roi-img-1 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(-12.5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@keyframes roi-img-2 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(22deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@media (max-width: 768px) {
	.roi {
		margin-top: 50px;
	}
	.roi-item {
		padding: 16px 18px;
		border-radius: 18px;
	}
	.roi-icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}
	.roi-text {
		font-size: 18px;
	}
	.roi-img-1 {
		width: 400px;
		left: -200px;
		top: 44px;
	}
	.roi-img-2 {
		width: 360px;
		right: -200px;
		bottom: -28px;
	}
}

/* Process */
.process {
	margin-top: 22px;
}

.process .container {
	position: relative;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.process-card {
	position: relative;
	min-height: 300px;
	border-radius: 30px;
	padding: 30px;
	transition:
		transform 1s ease-in-out,
		box-shadow 0.3s ease,
		opacity 0.3s ease-in-out;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.process-card:nth-child(1),
.process-card:nth-child(2),
.process-card:nth-child(3) {
	transform: translateX(700px);
	opacity: 0;
}

.process-card:nth-child(4),
.process-card:nth-child(5),
.process-card:nth-child(6) {
	transform: translateX(-700px);
	opacity: 0;
}

.process.is-visible .process-card {
	transform: translateX(0);
	opacity: 1;
}

.process-card:hover {
	transform: translateY(-2px);
}

.process-card-text {
	color: white;
	font-size: 30px;
	font-weight: 700;
}

.process-card-text span.text-opacity {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
}

@media (max-width: 1024px) {
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.process {
		margin-top: 0;
	}
	.process-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.process-card {
		padding: 20px;
		border-radius: 18px;
		min-height: 100px;
	}
	.process-card-text {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.process-card-text {
		font-size: 18px;
	}

	.process-card {
		min-height: 60px;
	}
}

/* Fit */
.fit {
	margin-top: 100px;
	background: var(--bg);
}

.fit-title {
	margin-bottom: 90px;
}

.fit-content {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.fit-content .container {
	display: flex;
	justify-content: end;
	position: relative;
}

.fit-visual {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.fit.is-visible .fit-visual {
	opacity: 1;
}

.fit-visual img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.fit-list {
	display: flex;
	flex-direction: column;
	gap: 60px;
	max-width: 750px;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.fit-item {
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
	border-radius: 30px;
	padding: 22px 40px;
	transform: translateX(-700px);
	transition:
		transform 1s ease-in-out,
		opacity 0.3s ease-in-out;
	background: linear-gradient(
		90deg,
		rgba(242, 242, 242, 0.7) 30%,
		rgba(242, 242, 242, 0.2) 100%
	);
}

.fit-check {
	width: 95px;
	height: 95px;
	flex-shrink: 0;
}

.fit-check img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fit-text {
	font-size: 30px;
	font-weight: 700;
	color: var(--text);
}

.fit-message {
	position: absolute;
	width: 540px;
	height: 540px;
	right: -314px;
	bottom: -200px;

	animation: fit-message 20s ease-in-out infinite;
}

.fit-message img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.fit.is-visible .fit-message img {
	opacity: 1;
}

@keyframes fit-message {
	0% {
		transform: translateX(0) rotate(0deg);
	}
	50% {
		transform: translateX(-10px) rotate(-7deg);
	}
	100% {
		transform: translateX(0) rotate(0deg);
	}
}

.fit.is-visible .fit-item {
	transform: translateX(0);
	opacity: 1;
}

@media (max-width: 1024px) {
	.fit-content {
		grid-template-columns: 1fr;
	}
	.fit-visual {
		order: -1;
	}
	.fit.is-visible .fit-visual {
		opacity: 0.5;
	}
	.fit-item {
		background-color: rgba(242, 242, 242, 0.3);
	}
}

@media (max-width: 768px) {
	.fit {
		margin-top: 50px;
	}
	.fit-item {
		padding: 16px 18px;
		border-radius: 16px;
	}

	.fit-list {
		gap: 20px;
	}

	.fit-check {
		width: 55px;
		height: 55px;
	}

	.fit-text {
		font-size: clamp(18px, 1vw, 24px);
	}

	.fit-title {
		margin-bottom: 30px;
	}

	.fit-visual {
		transform: scale(0.7) translateY(-50%);
		transform-origin: left center;
		top: 30%;
	}
}

/* Testimonials */
.testimonials {
	padding: 90px 0;
}

.testimonials-title {
	text-align: center;
	margin-bottom: 12px;
}

.testimonials-title .text-accent {
	text-wrap: nowrap;
}

.testimonials-slider {
	position: relative;
	width: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.testimonials.is-visible .testimonials-slider {
	opacity: 1;
}

.testimonials-wrapper {
	overflow: hidden;
	width: 100%;
}

.testimonials-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	align-items: stretch;
}

.testimonial-card {
	width: 100%;
	max-width: 1300px;
	flex-shrink: 0;
	border-radius: 30px;
	padding: 40px 50px;
	margin: 0 auto;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	box-sizing: border-box;
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-bottom: 30px;
	padding-bottom: 0;
	border-bottom: none;
}

.testimonial-logo {
	width: 126px;
	height: auto;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.testimonial-company {
	flex: 1;
	display: flex;
	align-items: center;
}

.testimonial-company-name {
	font-size: 30px;
	font-weight: 600;
	color: white;
	margin: 0;
}

.testimonial-contact {
	display: flex;
	align-items: center;
	gap: 12px;
	color: white;
	text-decoration: underline;
	font-size: 18px;
	transition: transform 0.3s ease;
}

.testimonial-contact span {
	color: inherit;
}

.testimonial-contact:hover {
	transform: translateY(-2px);
}

.testimonial-contact img {
	width: 40px;
	height: 40px;
}

.testimonial-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.testimonial-problem,
.testimonial-solution {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 24px 28px;
}

.testimonial-section-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 15px;
}

.testimonial-problem .testimonial-section-title {
	color: #d95050;
}

.testimonial-solution .testimonial-section-title {
	color: #24693d;
}

.testimonial-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.testimonial-list li {
	position: relative;
	padding-left: 21px;
	color: white;
	font-size: 18px;
	max-width: 757px;
}

.testimonial-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 14px;
	height: 13px;
	background-image: url('./img/testimonials/cross.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.testimonial-solution .testimonial-list li::before {
	width: 13px;
	height: 11px;
	background-image: url('./img/testimonials/check.svg');
}

/* Testimonials Controls */
.testimonials-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	border: none;
	background: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.testimonials-arrow:hover {
	transform: translateY(-50%) scale(1.05);
}

.testimonials-arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.testimonials-arrow-prev {
	left: -90px;
}

.testimonials-arrow-prev img {
	transform: rotate(180deg);
}

.testimonials-arrow-next {
	right: -90px;
}

.testimonials-arrow img {
	width: 60%;
	height: 60%;
	object-fit: contain;
}

@media (max-width: 1500px) {
	.testimonials-slider {
		width: 85%;
		margin: 0 auto;
	}
}

@media (max-width: 1024px) {
	.testimonial-header {
		flex-wrap: wrap;
		gap: 16px;
	}

	.testimonial-contact {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.testimonials {
		padding: 60px 0;
	}

	.testimonial-card {
		padding: 28px 20px;
		border-radius: 20px;
	}

	.testimonial-header {
		flex-direction: column;
		gap: 16px;
		text-align: center;
		margin-bottom: 24px;
	}

	.testimonial-logo {
		margin: 0 auto;
	}

	.testimonial-company-name {
		font-size: 18px;
	}

	.testimonial-contact {
		justify-content: center;
		padding: 10px 16px;
		font-size: 13px;
	}

	.testimonial-contact img {
		width: 18px;
		height: 18px;
	}

	.testimonial-problem,
	.testimonial-solution {
		padding: 20px 22px;
		border-radius: 16px;
	}

	.testimonial-content {
		gap: 16px;
	}

	.testimonial-section-title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.testimonial-list {
		gap: 10px;
	}

	.testimonial-list li {
		font-size: 14px;
		padding-left: 20px;
	}

	.testimonials-arrow {
		width: 60px;
		height: 60px;
	}

	.testimonials-arrow-prev {
		left: -60px;
	}

	.testimonials-arrow-next {
		right: -60px;
	}
}

@media (max-width: 600px) {
	.testimonials {
		padding-bottom: 120px;
	}
	.testimonials-arrow {
		top: auto;
		bottom: -90px;
		transform: translateY(0);
		width: 80px;
		height: 80px;
	}

	.testimonials-slider {
		width: 100%;
	}

	.testimonials-arrow:hover {
		transform: scale(1.05);
	}

	.testimonials-arrow-prev {
		left: 50%;
		margin-left: -80px;
	}

	.testimonials-arrow-next {
		right: 50%;
		margin-right: -80px;
	}
}

/* Competitors */
.competitors {
	margin: 100px 0;
	background: var(--bg);
	position: relative;
}

.competitors .container {
	position: relative;
}

.competitors-title {
	text-align: center;
	margin-bottom: 12px;
}

.competitors-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.competitor-card {
	max-width: 970px;
	width: 100%;
	border-radius: 30px;
	padding: 36px 100px;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	gap: 35px;
	min-height: 200px;
	transition:
		transform 1s ease-out,
		box-shadow 0.3s ease,
		translate 0.3s ease;
}

.competitor-card:nth-child(2n + 1) {
	align-self: flex-start;
	transform: translateX(1200px);
}

.competitor-card:nth-child(2n) {
	align-self: flex-end;
	flex-direction: row-reverse;
	transform: translateX(-1200px);
}

.competitors.is-visible .competitor-card {
	transform: translateX(0);
}

.competitor-card:hover {
	translate: 0 -2px;
}

.competitor-number {
	font-family: 'Dela Gothic One', sans-serif;
	font-size: 140px;
	line-height: 1;
	font-weight: 700;
	color: var(--primary);
	flex-shrink: 0;
	margin-top: -0.1em;
}

.competitor-text {
	font-size: 30px;
	font-weight: 600;
	color: var(--text);
}

.competitors-bottom {
	margin-top: 60px;
	max-width: 970px;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 34px;
	position: relative;
	z-index: 1;
}

.competitors-note {
	color: var(--text);
	font-size: 16px;
	margin: 0;
	max-width: 516px;
}

.competitors-note .text-accent-primary {
	font-weight: 700;
}

.competitors-cta {
	flex-shrink: 0;
	padding: 16px 30px;
	max-width: 420px;
	width: 100%;
	font-size: 18px;
	font-weight: 600;
	background-color: var(--primary);
	color: white;
	border: none;
	border-radius: 100px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.competitors-cta:hover {
	transform: translateY(-2px);
}

.competitors-pointer {
	position: absolute;
	bottom: -280px;
	left: -304px;
	width: 700px;
	height: auto;
	opacity: 0;
	transition: opacity 1s ease;
	animation: pointer 20s ease-in-out infinite;
}

@keyframes pointer {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(7deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

.competitors.is-visible .competitors-pointer {
	opacity: 1;
}

.competitors-pointer img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.competitors-bottom {
		flex-direction: column;
		text-align: center;
	}

	.competitors-cta {
		width: 100%;
	}

	.competitors.is-visible .competitors-pointer {
		opacity: 0.3;
		bottom: -100px;
	}
}

@media (max-width: 768px) {
	.competitors {
		margin-bottom: 50px;
	}
	.competitor-card {
		padding: 24px 28px;
		border-radius: 20px;
		gap: 20px;
		min-height: 100px;
	}

	.competitor-card:nth-child(2n + 1),
	.competitor-card:nth-child(2n) {
		align-self: stretch;
	}

	.competitor-number {
		font-size: 60px;
	}

	.competitor-text {
		font-size: 18px;
	}

	.competitors-bottom {
		padding: 24px;
		gap: 20px;
		margin-top: 15px;
	}

	.competitors-note {
		font-size: 14px;
	}

	.competitors-cta {
		padding: 14px 32px;
		font-size: 16px;
	}
}

/* FAQ Section */
.faq {
	margin-top: 100px;
	position: relative;
	background: var(--bg);
}

.faq-title {
	text-align: left;
	margin-bottom: 15px;
}

.faq .section-subtitle {
	text-align: left;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-item {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.faq.is-visible .faq-item {
	opacity: 1;
	transform: translateY(0);
}

.faq.is-visible .faq-item:nth-child(1) {
	transition-delay: 0.1s;
}

.faq.is-visible .faq-item:nth-child(2) {
	transition-delay: 0.2s;
}

.faq.is-visible .faq-item:nth-child(3) {
	transition-delay: 0.3s;
}

.faq.is-visible .faq-item:nth-child(4) {
	transition-delay: 0.4s;
}

.faq.is-visible .faq-item:nth-child(5) {
	transition-delay: 0.5s;
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 24px 40px;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 40px;
	color: var(--text);
	font-size: 30px;
	line-height: 41px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-item.active .faq-question,
.faq-question:hover {
	background-color: white;
}

.faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	margin-left: 40px;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.2s ease,
		opacity 0.4s ease,
		margin-top 0.2s ease,
		margin-bottom 0.2s ease;
	opacity: 0;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	opacity: 1;
	margin-top: 30px;
	margin-bottom: 20px;
}

.faq-answer p {
	color: var(--text);
	font-size: 18px;
	line-height: 25px;
}

@media (max-width: 768px) {
	.faq {
		margin-top: 40px;
	}
	.faq-question {
		padding: 20px 24px;
		font-size: 16px;
		line-height: 1.1;
	}

	.faq-answer {
		margin-left: 24px;
	}
	.faq-item.active .faq-answer {
		margin-top: 10px;
	}

	.faq-answer p {
		font-size: 14px;
	}

	.faq-icon {
		width: 30px;
	}
}

/* Footer */
.footer {
	margin: 100px 0 90px;
	position: relative;
}

.footer .container {
	position: relative;
}

.footer-wrapper {
	padding: 50px;
	border-radius: 40px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.footer-logo {
	margin-bottom: 40px;
	width: 96px;
	height: auto;
}

.footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-left {
	display: flex;
	flex-direction: column;
}

.footer-text {
	color: var(--text);
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-contact {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text);
	font-size: 18px;
	line-height: 25px;
	transition: color 0.3s ease;
}

.footer-contact img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.footer-contact:hover {
	color: var(--accent);
}

.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 32px;
}

.footer-social-link {
	width: 40px;
	height: 40px;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}

.footer-social-link svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-social-link:hover {
	transform: scale(1.1);
	opacity: 0.8;
}

.footer-legal {
	color: var(--text);
	opacity: 0.5;
	font-size: 12px;
	margin-top: 60px;
}

.footer-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start;
}

.footer-nav-link {
	color: var(--text);
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
}

.footer-nav-link:hover {
	color: var(--accent);
}

.footer-shape {
	position: absolute;
	top: 29px;
	right: -210px;
	width: 546px;
	height: 546px;
	pointer-events: none;
	animation: footer-shape 20s ease-in-out infinite;
}

@keyframes footer-shape {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(-10deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

.footer-shape img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-right {
		align-items: flex-start;
	}

	.footer-nav {
		align-items: flex-start;
	}

	.footer-nav-link {
		text-align: left;
	}

	.footer-shape {
		width: 300px;
		height: 300px;
		right: 140px;
	}
}

@media (max-width: 768px) {
	.footer-wrapper {
		padding: 32px 24px;
	}

	.footer-text {
		font-size: 14px;
	}

	.footer-contact {
		font-size: 13px;
	}

	.footer-nav-link {
		font-size: 14px;
	}

	.footer-shape {
		right: -80px;
		bottom: unset;
		top: 0;
	}

	.footer {
		margin-top: 50px;
		margin-bottom: 50px;
	}
}

/* Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal.active {
	display: flex;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-content {
	position: relative;
	max-width: 662px;
	width: 100%;
	padding: 60px;
	border-radius: 60px;
	z-index: 20;
	animation: slideUp 0.4s ease;
	background-color: var(--bg);
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal-close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	color: var(--text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
	z-index: 2;
}

.modal-close:hover {
	transform: rotate(90deg);
	opacity: 0.7;
}

.modal-header {
	text-align: center;
}

.modal-subtitle {
	font-size: 18px;
	color: var(--text);
	opacity: 0.5;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.modal-title {
	font-family: 'Dela Gothic One', sans-serif;
	font-size: 24px;
	line-height: 35px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 30px;
	padding-bottom: 0;
}

.modal-input-group {
	position: relative;
	margin-top: 16px;
}

.modal-input-group:last-child {
	margin-bottom: 0;
}

.modal-label {
	position: absolute;
	top: -16px;
	left: 26px;
	font-size: 14px;
	font-weight: 400;
	color: var(--text);
	padding: 6px 4px;
	background-color: var(--bg);
	z-index: 1;
}

.modal-input {
	width: 100%;
	padding: 20px 30px;
	border: 1px solid var(--primary);
	border-radius: 100px;
	background: transparent;
	color: var(--text);
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	transition: all 0.3s ease;
}

.modal-input:focus {
	outline: none;
	border-color: var(--primary);
}

.modal-input::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.modal-phone-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
}

.modal-phone-dropdown {
	position: relative;
	z-index: 10;
}

.modal-phone-input {
	padding-left: 74px;
}

.modal-submit {
	width: 100%;
	padding: 18px 40px;
	margin-top: 16px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	background-color: var(--accent);
	color: white;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.modal-submit:hover {
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.modal-content {
		padding: 40px 32px;
		border-radius: 30px;
	}

	.modal-close {
		top: 20px;
		right: 20px;
		width: 32px;
		height: 32px;
	}

	.modal-title {
		font-size: 22px;
		line-height: 32px;
	}

	.modal-form {
		gap: 20px;
	}

	.modal-input {
		padding: 14px 20px;
		font-size: 14px;
	}

	.modal-phone-input {
		padding-left: 74px;
	}

	.modal-submit {
		padding: 16px 32px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.modal {
		padding: 15px;
	}

	.modal-content {
		padding: 32px 24px;
		border-radius: 24px;
	}

	.modal-title {
		font-size: 18px;
		line-height: 28px;
	}

	.modal-subtitle {
		font-size: 12px;
	}

	.modal-form {
		padding-left: 0;
		padding-right: 0;
		padding-top: 15px;
	}
}
