/* Етап 0: Глобальні стилі та налаштування */
:root {
	--primary-color: #0a2540;
	--secondary-color: #4fc3f7;
	--text-color: #222222;
	--text-light: #6b7280;
	--background-color: #ffffff;
	--light-gray-bg: #f8f9fa;
	--header-height: 70px;

	--font-family-heading: 'Manrope', sans-serif;
	--font-family-body: 'Inter', sans-serif;

	--transition-main: all 0.3s ease-in-out;
}

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

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

body {
	font-family: var(--font-family-body);
	color: var(--text-color);
	background-color: var(--background-color);
	line-height: 1.6;
	overflow-x: hidden; /* Запобігання горизонтальному скролу */
}

/* Блокування скролу при відкритому мобільному меню */
body.body--nav-open {
	overflow: hidden;
}

ul {
	list-style: none;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-heading);
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1.3;
}

/* Допоміжні класи */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem; /* 24px */
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem; /* 12px 24px */
	font-family: var(--font-family-heading);
	font-weight: 600;
	font-size: 1rem;
	border-radius: 8px;
	cursor: pointer;
	text-align: center;
	transition: var(--transition-main);
	border: 2px solid transparent;
	background-color: var(--primary-color);
	color: #fff;
}

.btn:hover {
	background-color: #000;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn--secondary {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.btn--secondary:hover {
	background-color: var(--primary-color);
	color: #fff;
}

/*-----------------------------------*/
/* Етап 1: Стилі Хедера */
/*-----------------------------------*/
.header {
	width: 100%;
	height: var(--header-height);
	background-color: var(--background-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
}

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

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem; /* 8px */
	font-family: var(--font-family-heading);
	font-weight: 800;
	font-size: 1.5rem; /* 24px */
	color: var(--primary-color);
}

.logo:hover {
	color: var(--primary-color); /* Логотип не змінює колір при hover */
}

.logo__svg {
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

.logo:hover .logo__svg {
	transform: rotate(15deg);
}

/* Мобільна навігація (Mobile-First) */
.header__nav {
	position: fixed;
	top: 0;
	left: -100%; /* Сховано за замовчуванням */
	width: 100%;
	height: 100vh;
	background-color: var(--background-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: calc(var(--header-height) + 2rem);
	transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
	z-index: 998;
}

.header__nav--active {
	left: 0;
}

.header__menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem; /* 24px */
}

.header__menu-link {
	font-size: 1.25rem; /* 20px */
	font-weight: 600;
	font-family: var(--font-family-heading);
	color: var(--primary-color);
}

.header__menu-link:hover,
.header__menu-link:focus {
	color: var(--secondary-color);
}

/* Кнопка "Связаться" у мобільному меню */
.header__menu-item--mobile-btn {
	display: block;
	margin-top: 1.5rem;
}
.header__menu-cta {
	width: 200px;
}

/* Кнопка "Связаться" у хедері (десктоп) */
.header__cta-btn {
	display: none; /* Схована на мобілках */
}

/* Іконки Бургера / Закриття */
.header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 999;
}

.header__burger,
.header__close {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--primary-color);
	padding: 0.25rem;
}

.header__burger i,
.header__close i {
	width: 28px;
	height: 28px;
}

/* Адаптація хедера (Desktop) */
@media (min-width: 992px) {
	.header__nav {
		position: static;
		height: auto;
		width: auto;
		flex-direction: row;
		background-color: transparent;
		padding-top: 0;
		transition: none;
	}

	.header__menu {
		flex-direction: row;
		gap: 2rem; /* 32px */
	}

	.header__menu-link {
		font-size: 1rem; /* 16px */
		font-weight: 500;
		font-family: var(--font-family-body);
	}

	.header__menu-item--mobile-btn {
		display: none; /* Ховаємо мобільну кнопку */
	}

	.header__cta-btn {
		display: inline-block; /* Показуємо десктопну кнопку */
	}

	.header__burger,
	.header__close {
		display: none !important; /* Повністю ховаємо іконки меню */
	}
}

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

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

.footer__col--logo .logo {
	color: #fff;
	font-size: 1.75rem; /* 28px */
}
.footer__col--logo .logo__svg {
	color: #fff;
}
.footer__col--logo .logo__svg path:last-child {
	stroke: var(--secondary-color); /* Зберігаємо акцентний колір */
}

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

.footer__title {
	font-size: 1.2rem; /* 18px */
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem; /* 12px */
}

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

.footer__link:hover {
	color: #fff;
	padding-left: 5px;
}

.footer__list--contact {
	gap: 1rem;
}

.footer__list--contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer__icon {
	width: 18px;
	height: 18px;
	color: var(--secondary-color);
	flex-shrink: 0;
	margin-top: 3px;
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	padding: 1.5rem 0;
	margin-top: 3rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

/* Адаптація футера (Tablet & Desktop) */
@media (min-width: 600px) {
	.footer__container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.footer__container {
		/* Лого | Нав | Юр | Контакти */
		grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
	}
}

/*-----------------------------------*/
/* Етап 5: Стилі Cookie Pop-up */
/*-----------------------------------*/
.cookie-popup {
	position: fixed;
	bottom: -100%; /* Сховано */
	left: 0;
	width: 100%;
	background-color: var(--primary-color);
	color: #fff;
	padding: 1.5rem;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	transition: bottom 0.5s ease-in-out;
}

.cookie-popup--show {
	bottom: 0;
}

.cookie-popup__content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.cookie-popup p {
	margin: 0;
	font-size: 0.9rem;
}

.cookie-popup__link {
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight: 500;
}

.cookie-popup__link:hover {
	color: #fff;
}

.cookie-popup__btn {
	background-color: #fff;
	color: var(--primary-color);
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	width: 100%;
}

.cookie-popup__btn:hover {
	background-color: var(--secondary-color);
}

@media (min-width: 768px) {
	.cookie-popup__content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.cookie-popup__btn {
		width: auto;
		flex-shrink: 0;
	}
}

/*-----------------------------------*/
/* Етап 5: Стилі для сторінок політик (.pages) */
/*-----------------------------------*/
.pages {
	padding-top: calc(
		var(--header-height) + 3rem
	); /* Відступ від фіксованого хедера */
	padding-bottom: 4rem;
	min-height: 70vh;
}

.pages .container {
	max-width: 800px; /* Вузький контейнер для читабельності */
}

.pages h1 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

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

.pages p,
.pages li {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 1rem;
}

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

.pages a {
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight: 500;
}

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

.pages strong {
	color: var(--primary-color);
	font-weight: 700;
}

/* Глобальний відступ для main через фіксований хедер */
.main {
	padding-top: var(--header-height);
}

/* Оновлення стилів .pages (з Етапу 2) */
.pages {
	padding-top: calc(var(--header-height) + 3rem);
	padding-bottom: 4rem;
	min-height: 70vh;
}

/*-----------------------------------*/
/* Етап 3: Секція Hero */
/*-----------------------------------*/
.hero {
	display: flex;
	align-items: center;
	min-height: 90vh;
	padding-top: 4rem; /* Чистий відступ зверху */
	padding-bottom: 4rem;
	background-color: var(--background-color);
	overflow: hidden;
	position: relative;
}

.hero__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero__content {
	text-align: center;
	max-width: 650px;
	margin: 0 auto; /* Центрування контенту */
}

.hero__title {
	font-size: 2.5rem; /* 40px */
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.hero__title--highlight {
	color: var(--secondary-color);
}

.hero__description {
	font-size: 1.125rem; /* 18px */
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.hero__description--bold {
	color: var(--text-color);
	font-weight: 500;
}

.hero__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.hero__btn {
	padding: 1rem 2rem; /* 16px 32px */
	font-size: 1.1rem;
	min-width: 220px;
}

.hero__note {
	font-size: 0.85rem;
	color: var(--text-light);
	font-style: italic;
}

/* Візуальна частина (анімація) */
.hero__visual {
	display: none; /* Сховано на мобільних */
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 50%;
	height: 100%;
	z-index: -1; /* Позаду контенту */
	pointer-events: none;
}

.hero__shape {
	position: absolute;
	border-radius: 50%;
	background-color: var(--secondary-color);
	opacity: 0.1;
	animation: float 10s infinite ease-in-out alternate;
}

.hero__shape--1 {
	width: 150px;
	height: 150px;
	top: 10%;
	left: 20%;
	animation-duration: 8s;
	animation-delay: -2s;
}

.hero__shape--2 {
	width: 80px;
	height: 80px;
	top: 40%;
	left: 60%;
	background-color: var(--primary-color);
	animation-duration: 12s;
}

.hero__shape--3 {
	width: 200px;
	height: 200px;
	top: 60%;
	left: 10%;
	animation-duration: 10s;
	animation-delay: -5s;
}

.hero__shape--4 {
	width: 50px;
	height: 50px;
	top: 80%;
	left: 70%;
	background-color: var(--primary-color);
	animation-duration: 7s;
}

/* Анімація "плавання" */
@keyframes float {
	0% {
		transform: translateY(0px) scale(1);
		opacity: 0.1;
	}
	50% {
		transform: translateY(30px) scale(1.1);
		opacity: 0.2;
	}
	100% {
		transform: translateY(0px) scale(1);
		opacity: 0.1;
	}
}

/* Адаптація Hero (Desktop) */
@media (min-width: 992px) {
	.hero {
		min-height: 90vh;
	}
	.hero__container {
		grid-template-columns: 1.2fr 1fr; /* 55% тексту, 45% візуал */
		gap: 2rem;
	}

	.hero__content {
		text-align: left;
		margin: 0;
		max-width: none;
	}

	.hero__title {
		font-size: 3rem; /* 56px */
	}

	.hero__actions {
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
	}

	.hero__visual {
		display: block; /* Показуємо на десктопі */
		position: relative; /* Повертаємо в потік гріда */
		top: 0;
		right: 0;
		transform: none;
		width: 100%;
		min-height: 400px;
		z-index: 1;
	}
}

@media (min-width: 1200px) {
	.hero__title {
		font-size: 3.5rem; /* 64px */
	}
}

/*-----------------------------------*/
/* Етап 3: Секція Інновації */
/*-----------------------------------*/
.innovations {
	padding: 4rem 0;
	background-color: var(--light-gray-bg);
}

.innovations__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem auto;
}

.innovations__title {
	font-size: 2.25rem; /* 36px */
	margin-bottom: 1rem;
}

.innovations__subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.7;
}

.innovations__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem; /* 24px */
}

.innovations__card {
	background-color: var(--background-color);
	border-radius: 12px;
	padding: 2rem; /* 32px */
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	transition: var(--transition-main);
}

.innovations__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.innovations__card-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	margin-bottom: 1.5rem;
}

.innovations__card-icon i {
	width: 28px;
	height: 28px;
	stroke-width: 2;
}

.innovations__card-title {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
}

.innovations__card-description {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* Адаптація Інновацій (Tablet & Desktop) */
@media (min-width: 768px) {
	.innovations {
		padding: 5rem 0;
	}

	.innovations__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem; /* 32px */
	}

	.innovations__title {
		font-size: 2.5rem; /* 40px */
	}
}

/*-----------------------------------*/
/* Етап 3: Секція Стратегії */
/*-----------------------------------*/
.strategies {
	padding: 4rem 0;
	background-color: var(--background-color);
}

.strategies__container {
	display: flex;
	flex-direction: column;
	gap: 4rem; /* 64px */
}

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

.strategies__image-wrapper {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.strategies__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 10; /* Сучасний аспект-раціо */
}

.strategies__tag {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: var(--font-family-heading);
	color: var(--secondary-color);
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.strategies__title {
	font-size: 2.25rem; /* 36px */
	margin-bottom: 1rem;
}

.strategies__description {
	font-size: 1.05rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.strategies__description--bold {
	color: var(--text-color);
	font-weight: 500;
}

.strategies__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

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

.strategies__list-item i {
	width: 20px;
	height: 20px;
	color: var(--secondary-color);
	flex-shrink: 0;
}

.strategies__btn {
	background-color: var(--primary-color);
	color: #fff;
}

/* Адаптація Стратегій (Tablet & Desktop) */
@media (min-width: 768px) {
	.strategies {
		padding: 5rem 0;
	}

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

	/* Змінюємо порядок для другого блоку */
	.strategies__block--reversed {
		grid-template-columns: 1fr 1fr;
	}

	.strategies__block--reversed .strategies__content {
		order: 2;
	}

	.strategies__block--reversed .strategies__image-wrapper {
		order: 1;
	}

	.strategies__title {
		font-size: 2.5rem; /* 40px */
	}
}

/*-----------------------------------*/
/* Етап 3: Секція Аналитика */
/*-----------------------------------*/
.analytics {
	padding: 4rem 0;
	background-color: var(--light-gray-bg);
}

.analytics__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem auto;
}

.analytics__title {
	font-size: 2.25rem; /* 36px */
	margin-bottom: 1rem;
}

.analytics__subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.7;
}

.analytics__stats-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem; /* 24px */
	margin-bottom: 3rem;
}

.analytics__stat-item {
	background-color: var(--background-color);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	transition: var(--transition-main);
}

.analytics__stat-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.analytics__stat-icon {
	width: 32px;
	height: 32px;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.analytics__stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	font-family: var(--font-family-heading);
	color: var(--primary-color);
	line-height: 1.2;
}

.analytics__stat-label {
	font-size: 1rem;
	color: var(--text-light);
	margin-top: 0.5rem;
}

/* Блок CTA */
.analytics__cta {
	background-color: var(--primary-color);
	color: #fff;
	border-radius: 12px;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
	box-shadow: 0 10px 25px rgba(10, 37, 64, 0.2);
	/* Градієнтний акцент */
	background-image: linear-gradient(
		135deg,
		var(--primary-color) 70%,
		#1a4a7c 100%
	);
}

.analytics__cta-title {
	font-size: 1.75rem;
	color: #fff;
}

.analytics__cta-description {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	max-width: 600px;
}

.analytics__cta-highlight {
	color: var(--secondary-color);
	font-weight: 600;
}

.analytics__cta-btn {
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-size: 1rem;
	padding: 0.75rem 1.75rem;
}

.analytics__cta-btn:hover {
	background-color: #fff;
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Адаптація */
@media (min-width: 768px) {
	.analytics {
		padding: 5rem 0;
	}

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

	.analytics__title {
		font-size: 2.5rem; /* 40px */
	}

	.analytics__cta {
		flex-direction: row;
		align-items: center;
		padding: 3rem;
	}

	.analytics__cta-btn {
		flex-shrink: 0;
	}
}

/*-----------------------------------*/
/* Етап 3: Секція Кейсы */
/*-----------------------------------*/
.cases {
	padding: 4rem 0;
	background-color: var(--background-color);
	overflow-x: hidden; /* Важливо для слайдера */
}

.cases__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem auto;
}

.cases__title {
	font-size: 2.25rem; /* 36px */
	margin-bottom: 1rem;
}

.cases__subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.7;
}

.cases__subtitle--highlight {
	color: var(--primary-color);
	font-weight: 500;
}

/* Swiper container */
.cases__slider {
	width: 100%;
	/* Падінг для пагінації */
	padding-bottom: 3.5rem !important;
	/* Невеликий "вихід" за краї на мобілках */
	padding-left: 10px;
	padding-right: 10px;
}

/* Card styles */
.case-card {
	background-color: var(--background-color);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	transition: var(--transition-main);
	display: flex;
	flex-direction: column;
	height: 100%; /* Вирівнювання висоти карток */
}

.case-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transform: translateY(-5px);
}

.case-card__image-wrapper {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.case-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.case-card:hover .case-card__image {
	transform: scale(1.05);
}

.case-card__content {
	padding: 1.5rem; /* 24px */
	display: flex;
	flex-direction: column;
	flex-grow: 1; /* Дозволяє футеру картки бути внизу */
}

.case-card__tag {
	display: inline-block;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	margin-bottom: 1rem;
	align-self: flex-start; /* Не розтягувати тег */
}

.case-card__title {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
}

.case-card__description {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1; /* Займає вільне місце, відсуваючи посилання вниз */
}

.case-card__link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-family: var(--font-family-heading);
	color: var(--primary-color);
}

.case-card__link i {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.case-card__link:hover {
	color: var(--secondary-color);
}

.case-card__link:hover i {
	transform: translateX(3px);
}

/* Swiper Customization */
.cases__pagination {
	bottom: 0px !important; /* Розміщення пагінації */
}

.cases__pagination .swiper-pagination-bullet {
	background-color: var(--primary-color);
	opacity: 0.4;
	transition: var(--transition-main);
}

.cases__pagination .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
	opacity: 1;
	width: 20px;
	border-radius: 5px;
}

.cases__nav {
	display: none; /* Сховані на мобілках за замовчуванням */
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background-color: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	cursor: pointer;
	transition: var(--transition-main);
	z-index: 10;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cases__nav:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.cases__nav.swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	background-color: #f0f0f0;
}

.cases__nav--prev {
	left: 1rem;
}

.cases__nav--next {
	right: 1rem;
}

/* Адаптація Слайдера */
@media (min-width: 768px) {
	.cases {
		padding: 5rem 0;
	}
	.cases__title {
		font-size: 2.5rem; /* 40px */
	}
	.cases__nav {
		display: flex; /* Показуємо стрілки на десктопі */
	}
	.cases__slider {
		padding-left: 4rem; /* Місце для стрілок */
		padding-right: 4rem;
	}
}

/*-----------------------------------*/
/* Етап 4: Секція Контактів */
/*-----------------------------------*/
.contact {
	padding: 4rem 0;
	background-color: var(--light-gray-bg);
}

.contact__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	background-color: var(--background-color);
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.contact__content {
	padding: 2rem; /* 32px */
}

.contact__title {
	font-size: 2.25rem; /* 36px */
	margin-bottom: 1rem;
}

.contact__description {
	font-size: 1.05rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.contact__highlight {
	color: var(--primary-color);
	font-weight: 600;
}

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

.contact__info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact__info-item i {
	width: 24px;
	height: 24px;
	color: var(--secondary-color);
	flex-shrink: 0;
}

.contact__info-item span {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 0.25rem;
}

.contact__info-item a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--primary-color);
	word-break: break-all;
}

.contact__info-item a:hover {
	text-decoration: underline;
}

/* Форма */
.contact__form-wrapper {
	background-color: var(--primary-color);
	padding: 2rem; /* 32px */
}

.contact__form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem; /* 20px */
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group__label {
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0.5rem;
}

.form-group__input {
	width: 100%;
	padding: 0.85rem 1rem; /* 14px 16px */
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	font-size: 1rem;
	color: #fff;
	font-family: var(--font-family-body);
	transition: var(--transition-main);
}

.form-group__input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-group__input:focus {
	outline: none;
	border-color: var(--secondary-color);
	background-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.3);
}

/* Чекбокс */
.form-group--checkbox {
	flex-direction: row;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.form-group__checkbox {
	width: 1.15em;
	height: 1.15em;
	margin-top: 0.2em;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: var(--secondary-color);
}

.form-group__checkbox-label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

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

.form-group__checkbox-label a:hover {
	color: #fff;
}

/* Кнопка */
.contact__form-btn {
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-size: 1.1rem;
	margin-top: 1rem;
}

.contact__form-btn:hover {
	background-color: #fff;
	color: var(--primary-color);
}

.contact__form-btn:disabled {
	background-color: var(--text-light);
	color: #fff;
	cursor: wait;
}

/* Повідомлення про успіх */
.contact__success-msg {
	color: #fff;
	text-align: center;
	padding: 3rem 1rem;
}

.contact__success-msg i {
	width: 48px;
	height: 48px;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.contact__success-msg h4 {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 0.5rem;
}

.contact__success-msg p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
}

/* Адаптація Контактів */
@media (min-width: 992px) {
	.contact {
		padding: 5rem 0;
	}
	.contact__container {
		grid-template-columns: 1fr 1fr;
	}
	.contact__content {
		padding: 3rem; /* 48px */
	}
	.contact__form-wrapper {
		padding: 3rem; /* 48px */
	}
	.contact__title {
		font-size: 2.5rem; /* 40px */
	}
}
