:root {
	--primary-color: #6366f1;
	--primary-light: #818cf8;
	--primary-dark: #4f46e5;
	--secondary-color: #0f172a;
	--accent-color: #f472b6;
	--accent-gradient: linear-gradient(135deg, #f472b6 0%, #6366f1 100%);
	--success-color: #10b981;
	--text-color: #1e293b;
	--text-light: #64748b;
	--bg-light: #f8fafc;
	--white: #ffffff;
	--glass: rgba(255, 255, 255, 0.85);
	--glass-dark: rgba(15, 23, 42, 0.8);
	--shadow:
		0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-md:
		0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-lg:
		0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
}

html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:
		'Inter',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	line-height: 1.7;
	color: var(--text-color);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Анимированный фон */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(
			circle at 20% 50%,
			rgba(255, 255, 255, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		);
	animation: float 20s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-20px) scale(1.05);
	}
}

/* Плавающие частицы */
.particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.particle {
	position: absolute;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	animation: particleFloat 15s infinite;
	opacity: 0;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.particle:nth-child(1) {
	width: 60px;
	height: 60px;
	left: 10%;
	animation-delay: 0s;
}
.particle:nth-child(2) {
	width: 40px;
	height: 40px;
	left: 30%;
	animation-delay: 2s;
}
.particle:nth-child(3) {
	width: 80px;
	height: 80px;
	left: 50%;
	animation-delay: 4s;
}
.particle:nth-child(4) {
	width: 50px;
	height: 50px;
	left: 70%;
	animation-delay: 6s;
}
.particle:nth-child(5) {
	width: 70px;
	height: 70px;
	left: 90%;
	animation-delay: 8s;
}

@keyframes particleFloat {
	0% {
		bottom: -100px;
		opacity: 0;
		transform: translateX(0);
	}
	10% {
		opacity: 0.6;
	}
	90% {
		opacity: 0.6;
	}
	100% {
		bottom: 100%;
		opacity: 0;
		transform: translateX(100px);
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}

/* Header */
header {
	background: var(--glass);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: var(--shadow-md);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

header.scrolled {
	padding: 0.75rem 0;
	background: rgba(255, 255, 255, 0.95);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.025em;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 3px;
	bottom: 0;
	left: 0;
	background: var(--accent-gradient);
	transition: width 0.3s ease;
	border-radius: 2px;
}

.nav-links a:hover {
	color: var(--primary-dark);
}

.nav-links a:hover::after {
	width: 100%;
}

/* Мобильное меню */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
	background:
		linear-gradient(
			135deg,
			rgba(99, 102, 241, 0.9) 0%,
			rgba(168, 85, 247, 0.85) 100%
		),
		url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--white);
	padding: 160px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		transparent 0%,
		rgba(0, 0, 0, 0.2) 100%
	);
	pointer-events: none;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	letter-spacing: -0.05em;
	line-height: 1.1;
	animation: fadeInUp 0.8s ease-out;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
	font-size: 1.35rem;
	margin-bottom: 2.5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.95;
	animation: fadeInUp 0.8s ease-out 0.2s backwards;
	line-height: 1.6;
}

.btn {
	display: inline-block;
	background: var(--accent-gradient);
	color: var(--white);
	padding: 16px 40px;
	border-radius: var(--radius-lg);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05rem;
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.8s ease-out 0.4s backwards;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn:hover::before {
	left: 100%;
}

.section {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

.bg-light {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
}

h2 {
	text-align: center;
	font-size: 2.75rem;
	font-weight: 900;
	margin-bottom: 4rem;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.025em;
}

/* Инфографика */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

.info-card {
	background: var(--white);
	padding: 2.5rem 2rem;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(255, 255, 255, 0.8);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent-gradient);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.info-card:hover::before {
	transform: scaleX(1);
}

.info-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: var(--shadow-xl);
}

.info-card .icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	display: block;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
	animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.info-card h3 {
	margin-bottom: 1rem;
	color: var(--secondary-color);
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 700;
}

.info-card p {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* Алгоритм */
.steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.step {
	background: var(--white);
	padding: 2.5rem;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 6px solid transparent;
	position: relative;
	overflow: hidden;
}

.step::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 0;
	background: var(--accent-gradient);
	transition: height 0.4s ease;
}

.step:hover::before {
	height: 100%;
}

.step:hover {
	transform: translateX(15px);
	box-shadow: var(--shadow-xl);
}

.step-number {
	background: var(--accent-gradient);
	color: var(--white);
	width: 56px;
	height: 56px;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1.4rem;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
	position: relative;
	z-index: 1;
}

.step-content h4 {
	margin-bottom: 0.75rem;
	color: var(--secondary-color);
	font-size: 1.4rem;
	font-weight: 700;
}

.step-content p {
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.download-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 10px 18px;
	background: rgba(99, 102, 241, 0.1);
	border-radius: var(--radius-md);
	transition: all 0.3s ease;
}

.download-link:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateX(5px);
}

/* FAQ */
.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1.5rem;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(99, 102, 241, 0.1);
}

.faq-item:hover {
	box-shadow: var(--shadow-lg);
	transform: translateX(5px);
}

.faq-question {
	padding: 1.5rem 2rem;
	font-weight: 700;
	color: var(--secondary-color);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.15rem;
	gap: 1rem;
}

.faq-question-text {
	flex: 1;
	line-height: 1.5;
}

.faq-question span {
	font-size: 1.8rem;
	color: var(--primary-color);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(99, 102, 241, 0.1);
	border-radius: 50%;
	flex-shrink: 0;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		padding 0.4s ease;
	background: linear-gradient(to bottom, rgba(99, 102, 241, 0.03), transparent);
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-question span {
	transform: rotate(135deg);
	background: var(--primary-color);
	color: var(--white);
}

.faq-item.active {
	border-color: var(--primary-color);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.faq-answer p {
	color: var(--text-light);
	line-height: 1.8;
	padding-top: 1rem;
}

/* FAQ Form */
.faq-form {
	margin-top: 4rem;
	background: var(--white);
	padding: 3rem;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	border: 1px solid rgba(99, 102, 241, 0.1);
}

.faq-form h4 {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--secondary-color);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--secondary-color);
	font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	font-size: 1rem;
	border: 2px solid #e2e8f0;
	border-radius: var(--radius-md);
	transition: all 0.3s ease;
	font-family: inherit;
	background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.btn-submit {
	width: 100%;
	background: var(--accent-gradient);
	color: var(--white);
	padding: 16px;
	border: none;
	border-radius: var(--radius-md);
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* Quiz */
#quiz-container {
	max-width: 850px;
	margin: 0 auto;
	background: var(--white);
	padding: 3rem;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	border: 1px solid rgba(99, 102, 241, 0.1);
}

.quiz-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid #f1f5f9;
	margin-bottom: 2rem;
}

.quiz-question {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 2rem;
	line-height: 1.4;
}

.quiz-options {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.quiz-option {
	padding: 18px 24px;
	border: 2px solid #e2e8f0;
	border-radius: var(--radius-lg);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 600;
	font-size: 1.05rem;
	position: relative;
	overflow: hidden;
}

.quiz-option::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--accent-gradient);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.quiz-option:hover {
	background: #f8fafc;
	border-color: var(--primary-color);
	transform: translateX(8px);
}

.quiz-option:hover::before {
	transform: scaleY(1);
}

.quiz-option.selected {
	background: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.quiz-option.selected::before {
	transform: scaleY(1);
}

/* Quiz Result */
.quiz-result {
	text-align: center;
	padding: 2rem 0;
}

.quiz-result h3 {
	font-size: 1.8rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.quiz-result p {
	color: var(--text-light);
	font-size: 1.1rem;
}

/* Links Section */
.links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.link-card {
	background: var(--white);
	padding: 2.5rem 2rem;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	text-decoration: none;
	color: var(--text-color);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.link-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-gradient);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.link-card:hover::before {
	opacity: 0.05;
}

.link-card > * {
	position: relative;
	z-index: 1;
}

.link-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-xl);
}

.link-card h4 {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--primary-dark);
	transition: color 0.3s ease;
}

.link-card:hover h4 {
	color: var(--primary-color);
}

.link-card p {
	color: var(--text-light);
	line-height: 1.6;
	font-size: 1rem;
}

.link-card::after {
	content: '→';
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 1.5rem;
	color: var(--primary-color);
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
}

.link-card:hover::after {
	opacity: 1;
	transform: translateX(0);
}

/* Results Table */
.results-table-container {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	max-width: 850px;
	margin: 0 auto;
	overflow-x: auto;
}

.results-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 500px;
}

.results-table th,
.results-table td {
	padding: 16px;
	text-align: left;
	border-bottom: 1px solid #f1f5f9;
}

.results-table th {
	color: var(--secondary-color);
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: rgba(99, 102, 241, 0.05);
}

.results-table tr:last-child td {
	border-bottom: none;
}

.results-table tr:hover td {
	background: rgba(99, 102, 241, 0.03);
}

.score-badge {
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 700;
	display: inline-block;
}

.score-high {
	background: linear-gradient(135deg, #dcfce7 0%, #86efac 100%);
	color: #166534;
}

.score-low {
	background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 100%);
	color: #991b1b;
}

/* Animations on scroll */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Footer */
footer {
	background: var(--glass-dark);
	backdrop-filter: blur(20px);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
	position: relative;
	z-index: 1;
}

footer p {
	opacity: 0.8;
	font-size: 0.95rem;
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--glass);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 1.5rem;
		gap: 1rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		display: flex;
		animation: slideDown 0.3s ease;
	}

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.nav-links a {
		padding: 0.75rem;
		text-align: center;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.hero {
		padding: 120px 0;
	}

	.hero h1 {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}

	.hero p {
		font-size: 1.1rem;
		margin-bottom: 2rem;
		padding: 0 1rem;
	}

	.btn {
		padding: 14px 32px;
		font-size: 1rem;
	}

	.section {
		padding: 70px 0;
	}

	h2 {
		font-size: 2rem;
		margin-bottom: 2.5rem;
	}

	.info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.info-card {
		padding: 2rem 1.5rem;
	}

	.info-card .icon {
		font-size: 3rem;
	}

	.step {
		flex-direction: column;
		gap: 1.5rem;
		padding: 2rem 1.5rem;
	}

	.step-number {
		width: 48px;
		height: 48px;
		font-size: 1.2rem;
	}

	#quiz-container,
	.faq-form {
		padding: 2rem 1.5rem;
		margin: 0 1rem;
	}

	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
	}

	.faq-answer {
		padding: 0 1.5rem 1.25rem;
	}

	.links-grid {
		grid-template-columns: 1fr;
	}

	.container {
		padding: 0 16px;
	}

	.quiz-header {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.quiz-question {
		font-size: 1.15rem;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.step-content h4 {
		font-size: 1.2rem;
	}

	.info-card h3 {
		font-size: 1.15rem;
	}

	.particle {
		display: none;
	}

	.link-card {
		padding: 2rem 1.5rem;
	}

	.results-table-container {
		padding: 1rem;
	}
}

/* Отключаем параллакс на мобильных */
@media (max-width: 768px) {
	.hero {
		background-attachment: scroll;
	}

	body::before {
		animation: none;
	}
}
