body {
	background-color: #e6eaf0;
	overflow-x: hidden;
	position: relative;
}
        
        /* Сетка "тетрадный лист" на фоне */
.notebook-grid {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	background-size: 30px 30px;
	background-image: linear-gradient(to right, rgba(37, 99, 235, 0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
}

.hero-gradient {
	background: linear-gradient(135deg, #2563eb 0%, #6366f1 100%);
}
        
        /* Убираем "тетрадный лист" только в футере */
.footer-clean {
	position: relative;
	background-color: #e6eaf0;
	z-index: 1;
}

.footer-clean::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #e6eaf0;
	z-index: -1;
}

        /* Анимация парения для персонажей */
.floating {
	animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
	0%, 100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-15px);
	}
}

html {
	scroll-behavior: smooth;
}

.section-title {
	font-size: 2.25rem;
	font-weight: 900;
	color: #1e293b;
	line-height: 1.1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	word-spacing: 0.2em;
 /* ← добавляем пространство между словами */;
}

@media (min-width: 768px) {
	.section-title {
		font-size: 3.75rem;
	}
}

.grid-container {
	max-width: 1260px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
}

        /* Анимация мобильного меню */
        

.price-card {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
	transform: translateY(-10px);
}

.price-card-popular {
	box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.feature-list li {
	position: relative;
	padding-left: 2rem;
	font-size: 1.05rem;
	line-height: 1.5;
	font-weight: 600;
}

.feature-list li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: #2563eb;
	font-weight: 900;
}

#mobile-menu {
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s linear 0.4s;
	transform: translateX(100%);
	visibility: hidden;
	pointer-events: none;
	z-index: 9999;
}

#mobile-menu.active {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

#mobile-menu::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.05);
 /* едва заметная тень */
	box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

        /* Аккордеон FAQ */
.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

        /* Стили клавиши в логотипе */
.key-logo {
	background: linear-gradient(145deg, #f8fafc, #e2e8f0);
	box-shadow: 0 4px 0 #cbd5e1, 
                0 6px 10px rgba(0,0,0,0.1),
                inset 0 1px 0 #ffffff;
	border: 1px solid #cbd5e1;
}

.group:hover .key-logo {
	transform: translateY(2px);
	box-shadow: 0 2px 0 #cbd5e1, 
                0 4px 6px rgba(0,0,0,0.1),
                inset 0 1px 0 #ffffff;
}

        /* Эффект для шапки при скролле */
nav.scrolled {
	background: rgba(230, 234, 240, 0.8);
	backdrop-filter: blur(12px);
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}
        /* Стили для кнопок в вопросах */
.chevron-icon {
	transition: transform 0.3s ease;
	width: 2rem;
	height: 2rem;
	font-size: 1rem;
	min-width: 2rem;
	min-height: 2rem;
	border-radius: 9999px;
	background-color: rgba(37, 99, 235, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
}

.cookie-notice {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background: #ffffff;
	color: #000;
	padding: 15px 20px;
	max-width: 520px;
	font-size: 14px;
	line-height: 1.5;
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.cookie-notice .cookie-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.cookie-notice span {
	flex: 1;
}

.cookie-notice a {
	color: #000;
	text-decoration: underline;
}

.cookie-notice a:hover {
	color: #000;
	text-decoration: none;
}

.cookie-notice button.ok-btn {
	border: none;
	padding: 6px 14px;
	font-size: 13px;
	cursor: pointer;
	border-radius: 4px;
	background: #2563eb;
	color: #fff;
	white-space: nowrap;
}

.cookie-notice button.ok-btn:hover {
	background: #333;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
	.cookie-notice {
		left: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		flex-direction: column;
		align-items: flex-start;
		padding: 12px 16px;
		font-size: 13px;
		gap: 12px;
	}

	.cookie-notice .cookie-icon {
		display: none;
	}

	.cookie-notice button.ok-btn {
		align-self: center;
	}
}