/* Етап 0: Глобальні стилі, шрифти, змінні */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
	/* Кольори */
	--bg-dark: #0f0f1a;
	--bg-secondary: #1a1a2e;
	--primary-accent: #00d1ff;
	--primary-hover: #00a3cc;
	--text-light: #e0e0e0;
	--text-muted: #a0a0b0;
	--white: #ffffff;

	/* Типографіка */
	--font-main: 'Inter', sans-serif;

	/* Інше */
	--container-width: 1200px;
	--container-padding: 1.5rem;
	--border-radius: 8px;
	--transition-main: all 0.3s ease;
}

/* Скидання стилів */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

body {
	font-family: var(--font-main);
	background-color: var(--bg-dark);
	color: var(--text-light);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* Утиліти */
.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

a {
	color: var(--primary-accent);
	text-decoration: none;
	transition: var(--transition-main);
}

a:hover {
	color: var(--primary-hover);
}

ul {
	list-style: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	font-family: var(--font-main);
	cursor: pointer;
	border: none;
	background: none;
	color: inherit;
}

/* Логотип (загальний) */
.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
}

.logo:hover {
	color: var(--white);
}

.logo__img {
	width: 40px;
	height: 40px;
}

/* Етап 1: Стилі Хедера (Mobile-First) */
.header {
	width: 100%;
	padding: 1.5rem 0;
	background-color: rgba(15, 15, 26, 0.8); /* Напівпрозорий фон */
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--bg-secondary);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__toggle {
	display: block;
	color: var(--primary-accent);
	z-index: 1001;
	padding: 0.25rem;
}

.header__nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 85%;
	height: 100vh;
	background-color: var(--bg-secondary);
	padding: 6rem 2rem 2rem;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.header__nav.is-active {
	transform: translateX(0);
}

.header__nav-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.header__nav-link {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-light);
}

.header__nav-link--cta {
	background-color: var(--primary-accent);
	color: var(--bg-dark);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
	text-align: center;
}

.header__nav-link--cta:hover {
	background-color: var(--primary-hover);
	color: var(--bg-dark);
}

/* Адаптивність Хедера (Desktop) */
@media (min-width: 1024px) {
	.header__toggle {
		display: none;
	}

	.header__nav {
		position: static;
		width: auto;
		height: auto;
		background-color: transparent;
		padding: 0;
		transform: none;
		box-shadow: none;
	}

	.header__nav-list {
		flex-direction: row;
		align-items: center;
		gap: 2rem;
	}

	.header__nav-link {
		font-size: 1rem;
		font-weight: 400;
		position: relative;
	}

	/* Ефект підкреслення для desktop */
	.header__nav-link:not(.header__nav-link--cta)::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0;
		height: 2px;
		background-color: var(--primary-accent);
		transition: width 0.3s ease;
	}

	.header__nav-link:not(.header__nav-link--cta):hover::after {
		width: 100%;
	}

	.header__nav-link--cta {
		padding: 0.6rem 1.25rem;
		margin-left: 1rem;
	}
}

/* Етап 3: Стилі Main (поки тільки відступ) */
.main {
	padding-top: 85px; /* Висота хедера + відступ */
}

/* Етап 2: Стилі Футера (Mobile-First) */
.footer {
	background-color: var(--bg-secondary);
	padding: 4rem 0 0;
	margin-top: 4rem; /* Відступ від останньої секції */
	border-top: 1px solid var(--primary-accent);
}

.footer__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

.footer__column--about .logo {
	margin-bottom: 1rem;
}

.footer__description {
	color: var(--text-muted);
	font-size: 0.9rem;
	max-width: 300px;
}

.footer__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 1rem;
}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer__link,
.footer__text {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.footer__link:hover {
	color: var(--primary-accent);
	padding-left: 5px; /* Легкий hover-ефект */
}

.footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer__contact-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--primary-accent);
	margin-top: 3px;
}

.footer__copyright {
	background-color: var(--bg-dark);
	padding: 1.5rem 0;
	margin-top: 3rem;
	text-align: center;
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Адаптивність Футера */
@media (min-width: 640px) {
	.footer__container {
		grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
	}
}

@media (min-width: 1024px) {
	.footer__container {
		/* 4 колонки з різною шириною */
		grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
		gap: 3rem;
	}
}

/* ... (попередні стилі) ... */

/* Етап 3: Стилі Hero Секції */

/* Загальний стиль для кнопок */
.button {
	display: inline-block;
	padding: 0.9rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border-radius: var(--border-radius);
	transition: var(--transition-main);
	cursor: pointer;
	background-color: var(--primary-accent);
	color: var(--bg-dark);
}

.button:hover {
	background-color: var(--primary-hover);
	color: var(--bg-dark);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 209, 255, 0.2);
}

/* Стилі Hero */
.hero {
	padding: 4rem 0;
	overflow: hidden; /* Важливо для анімації */
	position: relative;
	background: linear-gradient(
		180deg,
		var(--bg-dark) 0%,
		var(--bg-secondary) 100%
	);
}

.hero__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.hero__content {
	text-align: center;
	z-index: 2; /* Вище анімації */
}

.hero__title {
	font-size: 2rem; /* 36px */
	font-weight: 700;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero__description {
	font-size: 1.125rem; /* 18px */
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

.hero__description strong {
	color: var(--primary-accent);
	font-weight: 600;
}

.hero__animation {
	position: relative;
	width: 100%;
	min-height: 300px;
}

.hero__canvas {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	max-width: 500px; /* Обмеження розміру на моб */
	opacity: 0.5;
}

/* Адаптивність Hero (Desktop) */
@media (min-width: 768px) {
	.hero__title {
		font-size: 2.75rem; /* 44px */
	}
}

@media (min-width: 1024px) {
	.hero {
		padding: 6rem 0;
	}

	.hero__container {
		grid-template-columns: 1fr 1fr; /* Дві колонки */
		gap: 4rem;
	}

	.hero__content {
		text-align: left; /* Вирівнювання по лівому краю */
	}

	.hero__title,
	.hero__description {
		margin-left: 0;
		margin-right: 0;
	}

	.hero__title {
		font-size: 3.25rem; /* 52px */
	}

	.hero__animation {
		min-height: 400px;
	}

	.hero__canvas {
		max-width: none;
		opacity: 0.6;
	}
}

/* ... (попередні стилі) ... */

/* Загальні стилі для секцій */
.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.section-header__subtitle {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}

.section-header__title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1.3;
	margin-bottom: 1rem;
}

.section-header__description {
	font-size: 1.1rem;
	color: var(--text-muted);
}

/* Модифікатор кнопки (прозора) */
.button--outline {
	background-color: transparent;
	color: var(--primary-accent);
	border: 2px solid var(--primary-accent);
}

.button--outline:hover {
	background-color: var(--primary-accent);
	color: var(--bg-dark);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 209, 255, 0.2);
}

/* Етап 3: Стилі "Возможности" (Features) */
.features {
	padding: 4rem 0;
	background-color: var(--bg-secondary);
}

.features__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.features__card {
	background-color: var(--bg-dark);
	padding: 2.5rem 2rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--bg-secondary);
	transition: var(--transition-main);
	border-bottom: 3px solid var(--primary-accent);
}

.features__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	border-color: var(--primary-accent);
}

.features__card-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(0, 209, 255, 0.1);
	margin-bottom: 1.5rem;
}

.features__card-icon i {
	width: 24px;
	height: 24px;
	color: var(--primary-accent);
}

.features__card-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.features__card-text {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.features__footer {
	text-align: center;
	margin-top: 3rem;
}

/* Адаптивність Features (Desktop) */
@media (min-width: 768px) {
	.features {
		padding: 6rem 0;
	}

	.features__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.section-header__title {
		font-size: 2.5rem;
	}
}

/* ... (попередні стилі) ... */

/* Етап 3: Стилі "Разработка" (Development) */
.development {
	padding: 4rem 0;
	background-color: var(--bg-dark); /* Чергуємо фон секцій */
}

.development__timeline {
	position: relative;
	max-width: 600px;
	margin: 3rem auto 0;
	padding-left: 2.5rem; /* Відступ для лінії */
}

/* Вертикальна лінія таймлайну */
.development__timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	bottom: 10px;
	width: 3px;
	background-color: var(--bg-secondary);
	border-radius: 3px;
}

.timeline-item {
	position: relative;
	margin-bottom: 2.5rem;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-item__marker {
	position: absolute;
	left: -2.5rem; /* Позиціонуємо на лінії */
	top: 0;
	transform: translateX(-45%);
	width: 45px;
	height: 45px;
	background-color: var(--primary-accent);
	color: var(--bg-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid var(--bg-dark);
}

.timeline-item__marker i {
	width: 22px;
	height: 22px;
}

.timeline-item__content {
	background-color: var(--bg-secondary);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--bg-secondary);
	transition: var(--transition-main);
}

.timeline-item__content:hover {
	border-color: var(--primary-accent);
}

.timeline-item__step {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary-accent);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.timeline-item__title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.timeline-item__text {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* Адаптивність Development (Desktop) */
@media (min-width: 768px) {
	.development {
		padding: 6rem 0;
	}

	.development__timeline {
		padding-left: 3rem;
	}

	.timeline-item__marker {
		left: -3rem;
		width: 50px;
		height: 50px;
	}
}

/* ... (попередні стилі) ... */

/* Етап 3: Стилі "AI-Интеграции" */
.ai-integration {
	padding: 4rem 0;
	background-color: var(--bg-secondary); /* Чергуємо фон */
}

.ai-integration__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.ai-integration__content-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 1.5rem;
}

.ai-integration__content-text {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.ai-integration__content-text strong {
	color: var(--primary-accent);
	font-weight: 600;
}

.ai-integration__cta {
	margin-top: 1rem;
}

/* Список можливостей */
.features-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.features-list__item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.features-list__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	color: var(--primary-accent);
	margin-top: 5px;
}

.features-list__title {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.25rem;
}

.features-list__description {
	font-size: 0.95rem;
	color: var(--text-muted);
}

/* Адаптивність AI-Интеграции (Desktop) */
@media (min-width: 768px) {
	.ai-integration {
		padding: 6rem 0;
	}
}

@media (min-width: 1024px) {
	.ai-integration__grid {
		grid-template-columns: 1fr 1fr; /* Дві колонки */
		gap: 4rem;
		align-items: center;
	}
}

/* ... (попередні стилі) ... */

/* Етап 3: Стилі "Кейсы" (Cases) */
.cases {
	padding: 4rem 0;
	background-color: var(--bg-dark); /* Чергуємо фон */
}

.cases__slider {
	width: 100%;
	overflow: hidden; /* Важливо для Swiper */
	margin-top: 3rem;
	position: relative;
	padding: 0 1rem; /* Відступ, щоб картки не прилипали по краях */
}

.cases__slide {
	background-color: var(--bg-secondary);
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: var(--transition-main);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--bg-secondary);
}

.cases__slide:hover {
	transform: translateY(-5px);
	border-color: var(--primary-accent);
}

.cases__slide-image {
	width: 100%;
	height: 200px;
	background-color: #333; /* Колір плейсхолдера */
}

.cases__slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7; /* Легка прозорість для плейсхолдера */
}

.cases__slide-content {
	padding: 1.5rem;
}

.cases__slide-category {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--primary-accent);
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.cases__slide-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.cases__slide-text {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Кнопки навігації Swiper */
.cases__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	background-color: rgba(15, 15, 26, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid var(--bg-secondary);
	color: var(--primary-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition-main);
	z-index: 10;
}

.cases__nav:hover {
	background-color: var(--primary-accent);
	color: var(--bg-dark);
}

.cases__nav--prev {
	left: -10px; /* Виносимо за межі */
}

.cases__nav--next {
	right: -10px; /* Виносимо за межі */
}

.cases__footer {
	text-align: center;
	margin-top: 3rem;
	font-size: 1.1rem;
	color: var(--text-muted);
}

.cases__footer strong {
	color: var(--text-light);
	font-weight: 600;
}

.cases__footer-link {
	color: var(--primary-accent);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}

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

/* Адаптивність Cases */
@media (min-width: 768px) {
	.cases {
		padding: 6rem 0;
	}

	.cases__slider {
		padding: 0 2rem; /* Більший відступ для стрілок */
	}

	.cases__nav--prev {
		left: 0;
	}

	.cases__nav--next {
		right: 0;
	}
}

/* ... (попередні стилі) ... */

/* Етап 4: Стилі "Связаться" (Contact) */
.contact {
	padding: 4rem 0;
	background-color: var(--bg-secondary);
}

.contact__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

/* Ліва колонка - інфо */
.contact__content .section-header {
	text-align: left;
	max-width: none;
	margin-bottom: 2rem;
}

.contact__info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}

.contact__info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1rem;
	color: var(--text-muted);
}

.contact__info-item i {
	width: 22px;
	height: 22px;
	color: var(--primary-accent);
	flex-shrink: 0;
}

.contact__info-item a {
	color: var(--text-muted);
}

.contact__info-item a:hover {
	color: var(--primary-accent);
}

/* Права колонка - форма */
.contact__form-wrapper {
	background-color: var(--bg-dark);
	padding: 2.5rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--bg-secondary);
}

.contact__form-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 2rem;
	text-align: center;
}

.contact__form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	position: relative;
}

.form-group__label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 0.5rem;
}

.form-group__input {
	width: 100%;
	padding: 0.9rem 1rem;
	padding-left: 3rem; /* Місце для іконки */
	font-size: 1rem;
	font-family: var(--font-main);
	color: var(--text-light);
	background-color: var(--bg-secondary);
	border: 1px solid var(--bg-secondary);
	border-radius: var(--border-radius);
	transition: var(--transition-main);
}

.form-group__input::placeholder {
	color: var(--text-muted);
}

.form-group__input:focus {
	outline: none;
	border-color: var(--primary-accent);
	box-shadow: 0 0 0 2px rgba(0, 209, 255, 0.3);
}

.form-group__icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(25%); /* Вирівнюємо з полем вводу */
	color: var(--text-muted);
	width: 20px;
	height: 20px;
}

/* Стилі для чекбокса */
.form-group--checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.form-group__checkbox {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	accent-color: var(--primary-accent);
}

.form-group__checkbox-label {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.form-group__checkbox-label a {
	color: var(--primary-accent);
	text-decoration: underline;
}

.contact__form-button {
	width: 100%;
	margin-top: 1rem;
	font-size: 1.1rem;
	padding: 1rem;
}

/* Повідомлення про успіх */
.form-message {
	display: none; /* Приховано за замовчуванням */
	margin-top: 1.5rem;
	padding: 1rem;
	background-color: rgba(0, 209, 255, 0.1);
	border: 1px solid var(--primary-accent);
	border-radius: var(--border-radius);
	color: var(--text-light);
	text-align: center;

	display: flex;
	align-items: center;
	gap: 1rem;

	/* Початковий стан для анімації */
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
}

.form-message.is-visible {
	display: flex; /* Робимо видимим */
	opacity: 1;
	transform: translateY(0);
}

.form-message i {
	color: var(--primary-accent);
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

/* Адаптивність Contact */
@media (min-width: 768px) {
	.contact {
		padding: 6rem 0;
	}
}

@media (min-width: 1024px) {
	.contact__container {
		grid-template-columns: 1fr 1.1fr; /* Дві колонки */
		gap: 5rem;
		align-items: center;
	}
}

/* ... (попередні стилі) ... */

/* Етап 5.1: Стилі Cookie Pop-up */
.cookie-popup {
	position: fixed;
	bottom: -100%; /* Початково сховано */
	left: 0;
	width: 100%;
	background-color: var(--bg-secondary);
	padding: 1.5rem;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
	border-top: 1px solid var(--primary-accent);
	z-index: 1100;
	transition: bottom 0.5s ease-in-out;
}

.cookie-popup.is-visible {
	bottom: 0; /* Показати */
}

.cookie-popup__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	max-width: var(--container-width);
	margin: 0 auto;
}

.cookie-popup__text {
	font-size: 0.9rem;
	color: var(--text-muted);
	text-align: center;
}

.cookie-popup__link {
	color: var(--primary-accent);
	text-decoration: underline;
}

.cookie-popup__button {
	padding: 0.6rem 1.5rem;
	flex-shrink: 0;
}

/* Адаптивність Cookie Pop-up */
@media (min-width: 768px) {
	.cookie-popup__content {
		flex-direction: row;
		gap: 2rem;
	}
	.cookie-popup__text {
		font-size: 1rem;
		text-align: left;
	}
}

/* ... (попередні стилі) ... */

/* Етап 5.2: Стилі для сторінок політик (.pages) */
.pages {
	padding: 6rem 0;
	background-color: var(--bg-dark);
	min-height: 60vh; /* Щоб футер не прилипав */
}

.pages .container {
	max-width: 800px; /* Вузький контейнер для читабельності */
	background-color: var(--bg-secondary);
	padding: 2rem;
	border-radius: var(--border-radius);
}

.pages h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1.5rem;
	border-bottom: 2px solid var(--primary-accent);
	padding-bottom: 0.5rem;
}

.pages h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-light);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.pages p {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

.pages ul {
	list-style: disc;
	margin-left: 1.5rem;
	margin-bottom: 1.25rem;
}

.pages li {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 0.75rem;
}

.pages strong {
	color: var(--text-light);
	font-weight: 600;
}

.pages a {
	color: var(--primary-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pages a:hover {
	color: var(--primary-hover);
}
