@import url("default.css");

/* Шапка сайту */
.cligora-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	display: flex;
	align-items: center;
	z-index: 1000;

	background-color: transparent;
	transition:
		background-color 1s ease,
		box-shadow 1s ease,
		backdrop-filter 2s ease;
}

/* Шапка при скролі */
.cligora-header.is-scrolled {
	background-color: var(--primary-default);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
	border-bottom: 1px solid var(--primary-3);
	backdrop-filter: blur(10px);
}

.cligora-header .navbar {
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
}

.cligora-header .logo-img {
	height: 40px;
	max-height: 48px;
	width: auto;
	transition: transform 0.25s ease;
}

.cligora-header .logo-img:hover {
	transform: scale(1.05);
}

/* Головне меню */
.navbar .dropdown-toggle:not(.dropdown-toggle-split)::after { display: none !important; }

.main-nav .parent-link {
    display: inline-flex;
    align-items: center;
}

.nav-item.dropdown { position: relative; }

.nav-item.dropdown .dropdown-toggle-split {
    border: 0;
    background: transparent;
    padding-inline: 0.25rem;
    padding-block: 0.5rem;
    margin-left: -0.25rem;
    cursor: pointer;
}

.nav-item.dropdown .dropdown-toggle-split::after {
    content: "";
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    border-left: 2px solid var(--white-2);
    border-bottom: 2px solid var(--white-2);
    transform: rotate(-45deg);
    margin-left: 0.2rem;
    margin-bottom: 0.1rem;
}

.nav-item.dropdown .dropdown-toggle-split:hover::after { border-color: var(--secondary-default); }

@media (min-width: 992px) {

    .nav-item.dropdown .dropdown-toggle-split { display: none; }
    .navbar .nav-item.dropdown:hover > .dropdown-menu { display: block; }

}

@media (max-width: 992px) {

	.nav-item.dropdown .dropdown-toggle,
	.nav-item.dropdown .dropdown-toggle-split,
	.nav-item.dropdown .dropdown-menu {
		display: none !important;
	}

	.nav-item.dropdown .parent-link,
	.nav-item.dropdown > .nav-link {
		padding-right: 0 !important;
	}

}

.main-nav .nav-link {
	font-weight: 500;
	padding-inline: 1rem;
	padding-block: 0.5rem;
	font-size: 16px;
	color: var(--white-2);
	text-transform: uppercase;
	margin-right: 6px;
}

.main-nav .nav-link:hover { color: var(--secondary-default); }

.main-nav .nav-link.active { color: var(--secondary-default) !important; }

.main-nav .nav-link.active::after { width: 100%; }

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background-color: var(--white-1) !important; 
    color: var(--secondary-default) !important;
}

.main-nav .nav-link {
	position: relative;
	transition: color 0.2s ease;
}

.main-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: var(--secondary-default);
	transition: width 0.2s ease;
}

.navbar .dropdown-toggle::after { display: none !important; }

.main-nav .nav-link:hover::after { width: 100%; }

.navbar .dropdown-menu {
	border-radius: 8px;
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	padding: 0.5rem 0;
}

.navbar .dropdown-menu .dropdown-item {
	font-size: 15px;
	padding: 0.45rem 1.25rem;
	transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
	background-color: var(--secondary-default);
	color: var(--white-default);
	padding-left: 1.5rem;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show { color: var(--secondary-default); }
/* Кінець Головне меню */

/* Вибір мови */
.lang-arrow {
	display: inline-block;
	margin-left: 6px;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--white-2);
	border-bottom: 2px solid var(--white-2);
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
	transform: rotate(-135deg);
	transform: translateY(2px) rotate(-135deg);
	border-color: var(--secondary-default);
}

.lang-nav .lang-toggle {
	font-size: 14px;
	font-weight: 600;
	color: var(--white-2);
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	padding-inline: 0.5rem;
	transition: color 0.2s ease;
}

.lang-nav .dropdown-toggle::after { display: none !important; }

.lang-nav .lang-toggle:hover { color: var(--secondary-default); }

.lang-nav .lang-toggle:hover .lang-arrow { border-color: var(--secondary-default); }

@media (min-width: 992px) {
	.main-nav .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

	.main-nav .dropdown:hover > .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

}
/* Кінець Вибір мови */

/* Мобільна версія шапки сайту */
@media (max-width: 992px) {

	:root {
		--header-height: 62px; /* Висота шапки для мобільної версії */
	}

	.cligora-header {
		background-color: var(--primary-default);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
		border-bottom: 1px solid var(--primary-3);
	}

	.cligora-header .navbar { padding-block: 0.35rem; }

	.cligora-header .container {
		max-width: 100%;
		padding-inline: 16px;
	}

	.navbar-toggler {
		border: 1px solid var(--white-default);
		padding: 1rem 0.55rem;
	}

	.navbar-toggler:focus {
		outline: none;
		box-shadow: none;
	}

	.navbar-toggler-icon {
		background-image: none !important;
		position: relative;
		display: block;
		width: 20px;
		height: 2px;
		background-color: var(--white-default);
		border-radius: 999px;
	}

	.navbar-toggler-icon::before,
	.navbar-toggler-icon::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		height: 2px;
		background-color: var(--white-default);
		border-radius: 999px;
	}

	.navbar-toggler-icon::before { top: -6px; }
	.navbar-toggler-icon::after  { top:  6px; }

	/* Випадаюче меню */
	.navbar-collapse {
		position: absolute;
		top: var(--header-height);
		left: 0;
		right: 0;
		z-index: 900;
		background-color: var(--primary-default);
		padding: 0.75rem 0 1rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.main-nav {
		width: 100%;
		margin-top: 0.25rem;
	}

	.main-nav .nav-link {
		width: 100%;
		text-align: left;
		font-size: 15px;
		text-transform: none;
		padding: 0.55rem 1.25rem;
		margin-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.main-nav .nav-link::after { display: none; }

	.navbar .dropdown-menu {
		position: static;
		float: none;
		background: transparent;
		box-shadow: none;
		padding: 0;
		margin-top: 0;
	}

	.navbar .dropdown-menu .dropdown-item {
		font-size: 14px;
		padding: 0.35rem 2.25rem;
		color: var(--white-2);
	}

	.navbar .dropdown-menu .dropdown-item:hover {
		background-color: transparent;
		color: var(--secondary-default);
		padding-left: 2.25rem;
	}

	.lang-nav { padding: 0.5rem 1.25rem 0; }

	.lang-nav .lang-toggle { padding-inline: 0; }

	.header-cta {
		margin-top: 0.75rem;
		padding: 0 1.25rem;
		width: 100%;
		justify-content: flex-start;
	}

	.header-cta .btn { font-size: 14px; }
}
/* Кінець: Мобільна версія шапки сайту */

/* Hero головної сторінки */
.hero-home {
	position: relative;
    width: 100%;
    height: var(--hero-home-height);
    background: var(--primary-default);
	background: var(--bg-primary-gradient);
	padding-top: 120px;
	overflow: hidden;
}

.hero-home img {
	border-radius: 16px;
	width: 440px;
	border: 1px solid var(--secondary-default);
	box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.50);
}

.hero-home-content {
	color: var(--white-default);
	margin-top: -140px;
}

.hero-title {
	position: relative;
	display: inline-block;
	line-height: 1.2;
}

.hero-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

/* Мобільна версія: Hero головної сторінки */
@media (max-width: 992px) {

	.hero-home {
		height: auto;
		padding-top: calc(var(--header-height) + 20px); /* одразу під шапкою */
		padding-bottom: 32px;
		text-align: center;
	}

	.hero-home-content { margin-top: 0; }

	.hero-title { font-size: 24px; }

	.hero-title::after { margin: 12px auto 10px; }

	/* Скриваємо в мобільній версії */
	.hero-images-waves,
	.hero-home img,
	.hero-floating-img,
	.hero-home-waves {
		display: none !important;
	}
}
/* Кінець: Hero головної сторінки */

/* Анімація хвиль */
.hero-home-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.waves {
  position:relative;
  width: 100%;
  height: 15vh;
  min-height:100px;
  max-height:150px;
  margin-bottom: 0;
}

.parallax > use {
  animation: wave-move 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) { animation-duration: 22s; animation-delay: -2s; }
.parallax > use:nth-child(2) { animation-duration: 28s; animation-delay: -3s; }
.parallax > use:nth-child(3) { animation-duration: 35s; animation-delay: -4s; }
.parallax > use:nth-child(4) { animation-duration: 40s; animation-delay: -5s; }

@keyframes wave-move {
  0%   { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}
/* Кінець Анімація хвиль */

.hero-floating-img {
    animation: float-img 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Анімація фото */
@keyframes float-img {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* Кінець анімації фото */


/* Блок хостинг (Головна сторінка) */
.section-hosting-tabs {
	background: var(--white-1);
}

.hosting-tabs-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	color: var(--black-default);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.hosting-tabs-title::after {
	content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--secondary-default);
	margin: 18px auto 0;
    border-radius: 2px;
}

.hosting-tabs-subtitle {
	margin-top: 12px;
	color: var(--black-3);
	font-size: 15px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* Вкладки зверху (три тарифи) */
.hosting-tabs-nav .nav-link {
	background: var(--secondary-default);
	border-radius: 18px;
	border: 1px solid rgba(0, 0, 0, 0.04);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
	padding: 14px 18px;
	margin: 0 8px;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 220px;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease;
	color: var(--black-7);
}

.hosting-tabs-nav .nav-link.active {
	transform: translateY(-10px);
	background-color: var(--primary-default);
}

.hosting-tabs-nav .nav-link:focus {
	box-shadow: none;
}

/* Іконка-лейбл всередині вкладки */
.hosting-tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: var(--white-2);
	color: var(--black-default);
	font-weight: 700;
	font-size: 13px;
}

.hosting-tab-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hosting-tab-title {
	font-weight: 700;
	font-size: 15px;
	color: var(--white-1);
}

.hosting-tab-text {
	font-size: 13px;
	color: var(--white-2);
}

/* Контент вкладок */
.hosting-plan-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: var(--black-7);
	margin-bottom: 6px;
}

.hosting-plan-lead {
	color: var(--black-1);
	font-size: 15px;
	margin-bottom: 12px;
}

.hosting-plan-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 16px;
}

.hosting-plan-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 6px;
	font-size: 14px;
	color: var(--black-2);
}

.hosting-plan-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--secondary-default);
}

.hosting-tab-image {
	animation: float-img 6s ease-in-out infinite;
	text-align: center;
}

.hosting-tab-image img {
	width: 300px;
	height: auto;
}

/* Анімація зображення */
@keyframes hosting-tab-image {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hosting-plan-btn { min-width: 190px; }

@media (max-width: 992px) {

	.hosting-tabs-nav .nav-link:focus { box-shadow: none; }

	.section-hosting-tabs { padding: 0 !important; }

	.hosting-tab-image {
		display: none;
	}

	.hosting-tabs-nav {
		flex-direction: column;
		align-items: stretch;
	}

	.hosting-tabs-nav .nav-link {
		width: 100%;
		margin: 10px 0px 10px 0px;
	}

	.hosting-tab-image {
		margin-bottom: 12px;
	}
}

@media (max-width: 576px) {
	.hosting-tabs-title {
		font-size: 24px;
	}

	.hosting-tabs-nav .nav-link {
		padding: 12px 14px;
	}

	.hosting-tabs-nav .nav-link.active {
		transform: translateY(-10px);
		background-color: var(--primary-default);
		margin: 10px 0px 10px 0px;
	}
}
/* Кінець: Блок хостинг (Головна сторінка) */

/* Блок послуги (Головна сторінка) */
.cligora-services {
    background: var(--bg-primary-gradient);
}

/* Заголовок секції */
.services-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.services-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--secondary-default);
    margin: 18px auto 0;
    border-radius: 2px;
}

.services-subtitle {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 16px;
    color: var(--white-2);
    text-align: center;
}

/* Картки послуг */
.service-card {
    background: var(--white-default);
    border-radius: 20px;
    padding: 28px 24px;
    text-decoration: none;
    display: block;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

/* Контейнер іконки */
.service-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Іконки */
.service-icon i {
    font-size: 30px;
    color: var(--secondary-default);
    transition: color 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-icon i {
    color: var(--primary-default);
    transform: translateY(-2px);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Текст та картка */
.service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--black-7);
    margin: 0;
}

.service-text {
    font-size: 15px;
    color: var(--black-1);
    margin-top: 4px;
}

@media (max-width: 767.98px) {

    .services-title { font-size: 26px; }
    .service-card { padding: 24px 20px; }
    .service-header { gap: 12px; }
    .service-icon {
        width: 42px;
        height: 42px;
    }
    .service-icon i { font-size: 26px; }
    .service-title { font-size: 18px; }
}
/* Кінець: Блок послуги (Головна сторінка) */

/* Блок "Процес розробки" */
.cligora-process { color: var(--black-default); }

/* Ліва колонка */
.process-label {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black-1);
    margin-bottom: 8px;
}

.process-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.process-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

.process-subtitle {
    font-size: 15px;
    color: var(--black-default);
    max-width: 520px;
    margin-bottom: 16px;
}

.process-highlights {
    list-style: none;
    padding-left: 0;
    margin: 0 0 22px;
    font-size: 14px;
    color: var(--black-default);
}

.process-highlights li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.process-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-default);
}

.process-btn { min-width: 210px; }

/* Права колонка */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.process-step {
    background: var(--secondary-6);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.process-step-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--blacdefaultk-);
    background: var(--white-default);
}

.process-step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
	color: var(--white-1);
}

.process-step-text {
    font-size: 14px;
    color: var(--white-default);
    margin: 4px 0 0;
}

@media (max-width: 992px) {
    .cligora-process { padding: 56px 0; }
    .process-title { font-size: 26px; }
    .process-subtitle { max-width: 100%; }
    .process-steps { margin-top: 10px; }
}

@media (max-width: 576px) {
    .process-step { padding: 14px 14px; }
    .process-title { font-size: 22px; }
}
/* Кінець: Блок послуги (Головна сторінка) */

/* Блок резюме */
.section-resume {
	background: var(--white-1);
}

/* Фото */
.resume-image-wrapper {
	box-shadow: 0 26px 70px rgba(15, 23, 42, 0.35);
	border-radius: 24px;
	overflow: hidden;
	margin-right: 20px;
}

.resume-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Заголовок */
.resume-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1.25;
	color: var(--black-default);
	margin-bottom: 20px;
}

.resume-title::after {
	content: "";
	display: block;
	width: 120px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 16px 0 0;
	border-radius: 3px;
}

/* Текст */
.resume-text {
	font-size: 16px;
	line-height: 1.7;
	color: var(--black-default);
	margin-bottom: 14px;
}

/* Адаптив */
@media (max-width: 991.98px) {
	.section-resume { padding: 56px 0; }

	.resume-title { font-size: 26px; }

	.resume-title::after { margin-left: 0; }
}
/* Кінець: Блок резюме */

/* Cookies плашка */
.cookie-mini {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-default);
    color: var(--white-1);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
    z-index: 9999;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.35);
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cookie-mini-btn {
    background: var(--secondary-default);
    color: var(--black-8);
    border: 0;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s ease;
}

.cookie-mini-btn:hover { opacity: .85; }

.cookie-mini b a {
    color: var(--secondary-default);
	text-decoration: underline dotted;
	 text-underline-offset: 4px;
	 letter-spacing: 0.5px;
}

.cookie-mini b a:hover { color: var(--secondary-5); }

.cookie-mini b a:visited { color: var(--secondary-5); }
/* Кінець: Cookies плашка */

/* Секція "Досвід" */
.cligora-stats {
    background: var(--bg-primary-gradient);
    padding: 50px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--white-3);
}

.stat-label {
    margin-top: 8px;
    font-size: 16px;
    color: var(--white-4);
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.35);
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
    }
}
/* Кінець: Секція "Досвід" */

/* Слайдер технологій */
.tech-slider-section {
    text-align: center;
}

.tech-swiper {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
	height: 120px;
	padding: 0px 0 20px 0;
}

.tech-swiper .swiper-slide {
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 10px 0 0 0;
}

.swiper-wrapper {

	padding: 0px !important;
}

.tech-swiper img {
    width: 80px;
    opacity: 0.85;
    transition: 0.25s ease;
	filter: grayscale(100%);

}

.tech-swiper img:hover {
    opacity: 1;
    transform: scale(1.09);
	filter: grayscale(0%);
}
/* Кінець: Слайдер технологій */


/* Блок "Зв'язатись з нами */
.contact-cta { background: var(--white-1); }

.contact-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-primary-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
	box-shadow: 0 26px 70px rgba(15, 23, 42, 0.35);
}

/* Ліва колонка */
.contact-cta-content {
    max-width: 560px;
    color: var(--white-1);
	padding-left: 60px;
}

.contact-cta-title {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 14px;
}

.contact-cta-text {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 26px;
    opacity: 0.95;
}

/* Кнопка */
.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--white-1);
    color: var(--primary-default);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, color 0.2s;
}

.contact-cta-btn-icon {
    font-size: 16px;
    transform: translateY(1px);
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.28);
    background: var(--secondary-default);
    color: var(--black-8);
}

/* Права колонка (картинка) */
.contact-cta-image {
	position: relative;
    flex: 0 0 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.contact-cta-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .contact-cta-inner {
		width: 90%;
        flex-direction: column;
        text-align: left;
        padding: 35px;
    }

	.contact-cta-content {
		padding: 0px;
	}

    .contact-cta-image {
        order: -1;
        flex: 0 0 auto;
		display: none;
    }

    .contact-cta-title { font-size: 26px; }
}

@media (max-width: 576px) {
    .contact-cta-inner { border-radius: 18px; }

    .contact-cta-title { font-size: 22px; }

    .contact-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Кнопка на верх */
.scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;
    background: var(--white-1);
    border: 2px solid var(--primary-default);
    border-radius: 50%;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    font-size: 20px;
    color: var(--primary-default);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--secondary-default);
    color: var(--black-8);
    border-color: var(--secondary-default);
}

.scroll-top i {
    font-size: 20px;
    margin-top: -1px;
}
/* Кінець: Кнопка на верх */

/* Підвал сайту */
.cligora-footer {
    background: var(--bg-primary-gradient);
    color: var(--white-1);
    padding: 60px 0 0;
    font-family: inherit;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-brand {
    flex: 1.5;
    min-width: 300px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 18px;
	transition: .25s ease;
}

.footer-logo:hover {
    opacity: 0.90;
	filter: grayscale(100%);
	transform: translate(0, -3px);
}

.footer-desc {
    line-height: 1.5;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
	border-radius: 50%;
    justify-content: center;
    transition: .25s ease;
    color: var(--white-1);
	font-size: 20px;
	text-decoration: none;
	margin-top: 20px;
}

.social-link i { font-size: 20px; }

.social-link:hover {
    background: var(--primary-default);
    border-color: var(--primary-default);
    transform: translateY(-4px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--white-1);
}

.footer-col ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    opacity: .95;
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--white-1);
}

.footer-col ul li a {
    color: var(--white-1);
    text-decoration: none;
    opacity: .95;
    transition: .25s ease;
}

.footer-col ul li a:hover {
    color: var(--white-1);
    opacity: 1;
	padding-left: .5rem;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    margin-top: 45px;
    background: var(--primary-default);
    font-size: 14px;
	color: var(--white-1);
}

.footer-bottom p {
	margin-top: 10px;
	margin-bottom: 0 !important;
}

.footer-bottom a {
	color: var(--white-1);
    text-decoration: none;
    text-underline-offset: 6px;
    letter-spacing: 0.5px;
}

.footer-bottom a:hover {
    text-decoration: underline dotted;
	text-underline-offset: 6px;
}

/* Адаптив */
@media (max-width: 992px) {
    .footer-container {
        justify-content: flex-start;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .footer-col h4 { font-size: 16px; }
}
/* Кінець: Підвал сайту */

/* Рекламний банер */
/* Фон + позиціонування */
.promo-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .35s ease, visibility .35s ease;
}

/* Коли показуємо */
.promo-overlay.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Карточка банера */
.promo-banner {
	position: relative;
	max-width: 640px;
	width: 90%;
	background: radial-gradient(circle at top left, #f8b52f 0, #6a169e 50%, #0e0e0e 100%);
	border-radius: 24px;
	padding: 30px 28px 26px;
	box-shadow: 0 18px 55px rgba(0,0,0,.45);
	color: #fff;
	overflow: hidden;

	transform: translateY(30px) scale(.96);
	opacity: 0;
	transition: transform .4s cubic-bezier(.18,.89,.32,1.28), opacity .35s ease;
}

.promo-overlay.is-visible .promo-banner {
	transform: translateY(0) scale(1);
	opacity: 1;
}

/* Кнопка закриття */
.promo-close {
	position: absolute;
	right: 16px;
	top: 14px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 0;
	background: rgba(0,0,0,.25);
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, transform .2s ease;
}

.promo-close:hover {
	background: rgba(0,0,0,.45);
	transform: scale(1.05);
}

/* Контент */
.promo-content {
	position: relative;
	z-index: 1;
}

.promo-tag {
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 10px;
	opacity: .9;
}

.promo-title {
	font-size: 26px;
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 12px;
}

.promo-text {
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 22px;
	opacity: .95;
}

/* Кнопки */
.promo-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.promo-btn-primary,
.promo-btn-ghost {
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 22px;
	cursor: pointer;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
}

.promo-btn-primary {
	background: #ffffff;
	color: #6a169e;
	box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.promo-btn-primary:hover {
	background: #f8b52f;
	color: #0e0e0e;
	transform: translateY(-2px);
	box-shadow: 0 14px 35px rgba(0,0,0,.45);
}

.promo-btn-ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.6);
}

.promo-btn-ghost:hover {
	background: rgba(0,0,0,.25);
}

/* Декоративне світло */
.promo-banner::before {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(255,255,255,.32) 0, transparent 60%);
	opacity: .9;
}

/* Мобільна адаптація */
@media (max-width: 576px) {
	.promo-banner {
		padding: 24px 18px 20px;
		border-radius: 18px;
	}
	.promo-title {
		font-size: 20px;
	}
	.promo-text {
		font-size: 14px;
	}
	.promo-actions {
		flex-direction: column;
	}
	.promo-btn-primary,
	.promo-btn-ghost {
		width: 100%;
	}
}

/* Блок hero для внутрішніх сторінок */
.page-hero {
	position: relative;
	padding: 120px 0 20px;
	background: var(--bg-primary-gradient);
	color: var(--white-1);
	overflow: hidden;
}

.page-hero-overlay {
	position: absolute;
	inset: 0;
	mix-blend-mode: screen;
	pointer-events: none;
}

.page-hero-breadcrumb .breadcrumb {
	background: transparent;
	font-size: 0.875rem;
}

.page-hero-breadcrumb .breadcrumb-item a {
	color: var(--white-5);
	text-decoration: none;
}

.page-hero-breadcrumb .breadcrumb-item a:hover { color: var(--white-1); }

.page-hero-breadcrumb .breadcrumb-item { color: var(--secondary-default); }

.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--white-8); }

.page-hero-title {
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 0.6rem;
	text-align: center;
}

.page-hero-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--secondary-default);
    margin: 18px auto 0;
    border-radius: 2px;

}

.page-hero-subtitle {
	font-size: 1rem;
	opacity: 0.9;
	text-align: center;
}

@media (max-width: 991.98px) {
	.page-hero {
		padding: 70px 0 60px;
		text-align: left;
	}
}

@media (max-width: 575.98px) {
	.page-hero {
		padding: 60px 0 50px;
	}

	.page-hero-title {
		font-size: 1.8rem;
	}
}
/* Кінець: Блок hero для внутрішніх сторінок */

/* Блок послуги (Cторінка послуг) */
.page-services {
    background: var(--white-1);
}

/* Картки послуг */
.page-service-card {
    background: var(--white-default);
    border-radius: 20px;
    padding: 28px 24px;
    text-decoration: none;
    display: block;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.page-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.page-service-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

/* Контейнер іконки */
.page-service-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Іконки */
.page-service-icon i {
    font-size: 30px;
    color: var(--primary-default);
    transition: color 0.25s ease, transform 0.25s ease;
}

.page-service-card:hover .page-service-icon i {
    color: var(--secondary-default);
    transform: translateY(-2px);
}

.page-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Текст та картка */
.page-service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--black-7);
    margin: 0;
}

.page-service-text {
    font-size: 15px;
    color: var(--black-1);
    margin-top: 4px;
}

@media (max-width: 767.98px) {

    .page-services-title { font-size: 26px; }
    .page-service-card { padding: 24px 20px; }
    .page-service-header { gap: 12px; }
    .page-service-icon {
        width: 42px;
        height: 42px;
    }
    .page-service-icon i { font-size: 26px; }
    .page-service-title { font-size: 18px; }
}
/* Кінець: Блок послуги (Головна сторінка) */

/* Сторінка "Послуга" (Веб-розробка) */
.clg-web-service {
	background: var(--white-1);
	color: var(--black-4);
}

.clg-web-title {
	font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.clg-web-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--secondary-default);
    margin: 18px 0 12px;
    border-radius: 2px;
}

.clg-web-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 650px;
}

.clg-block-title {
	font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--black-default);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.clg-block-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--secondary-default);
    margin: 18px auto 0;
    border-radius: 2px;
}

.clg-block-subtitle {
	font-size: 0.95rem;
	color: var(--black-2);
}

/* Метадані зверху */
.clg-web-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 0.5rem;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-web-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-web-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* Карти типів сайтів */
.clg-web-type-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 1.1rem 1.15rem 1rem;
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.clg-web-type-card .tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 12px;
	border-radius: 8px;
	background: var(--primary-default);
	color: var(--white-1);
	margin-bottom: 0.55rem;
}

.clg-web-type-card .title {
	font-size: 16px;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 10px;
}

.clg-web-type-card .text {
	font-size: 0.9rem;
	color: var(--black-default);
	margin-bottom: 0.5rem;
}

.clg-web-type-card .list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.7rem;
	font-size: 0.88rem;
	color: var(--black-default);
}

.clg-web-type-card .list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.25rem;
}

.clg-web-type-card .list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--secondary-default);
}

.clg-web-type-card .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--black-3);
	margin-top: auto;
	padding-top: 0.4rem;
	border-top: 1px dashed var(--white-default);
}

.clg-web-type-card .price {
	font-weight: 600;
	color: var(--primary-default);
	font-size: 16px;
}

.clg-web-type-card .note {
	font-size: 0.78rem;
	color: var(--white-8);
}

.clg-web-type-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
	border-color: var(--primary-default);
}

/* Що входить*/
.clg-feature-box {
	height: 100%;
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	background: var(--primary-default);
	border: 1px solid var(--primary-7);
}

.clg-feature-box h4 {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--secondary-1);
	margin-bottom: 0.4rem;
}

.clg-feature-box ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	color: var(--white-default);
}

.clg-feature-box li {
	position: relative;
	padding-left: 1.3rem;
	margin-bottom: 0.3rem;
}

.clg-feature-box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--secondary-1);
}

/* Вартість */
.clg-web-bottom { margin-top: 0.5rem; }

.clg-cost-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.6rem;
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-cost-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.25rem 0;
	border-bottom: 1px dashed var(--white-5);
}

.clg-cost-list li span:first-child { flex: 1 1 auto; }

.clg-cost-list li span:last-child {
	white-space: nowrap;
	font-weight: 600;
	color: var(--primary-default);
}

.clg-pricing-small {
	font-size: 0.82rem;
	color: var(--black-2);
}

@media (max-width: 575.98px) {

	.clg-web-meta { margin-top: 1rem; }

	.clg-cost-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* Кінець: Сторінка "Послуга" (Веб-розробка) */

/* Сторінка "Послуга" (Хостинг) */
.clg-host-service {
	background: var(--white-1);
	color: var(--black-4);
}

.clg-host-title {
	font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.clg-host-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--secondary-default);
    margin: 18px 0 12px;
    border-radius: 2px;
}

.clg-host-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 650px;
}

/* Метадані зверху */
.clg-host-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-host-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-host-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* Карти тарифів хостингу */
.clg-host-plan-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 1.1rem 1.15rem 1rem;
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
	position: relative;
}

.clg-host-plan-card .tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 12px;
	border-radius: 8px;
	background: var(--primary-default);
	color: var(--white-1);
	margin-bottom: 0.55rem;
}

.clg-host-plan-card .title {
	font-size: 16px;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 10px;
}

.clg-host-plan-card .text {
	font-size: 0.9rem;
	color: var(--black-default);
	margin-bottom: 0.5rem;
}

.clg-host-plan-card .list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.7rem;
	font-size: 0.88rem;
	color: var(--black-default);
}

.clg-host-plan-card .list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.25rem;
}

.clg-host-plan-card .list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--secondary-default);
}

.clg-host-plan-card .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--black-3);
	margin-top: auto;
	padding-top: 0.4rem;
	border-top: 1px dashed var(--white-default);
}

.clg-host-plan-card .price {
	font-weight: 600;
	color: var(--primary-default);
	font-size: 16px;
}

.clg-host-plan-card .note {
	font-size: 0.78rem;
	color: var(--white-8);
}

.clg-host-plan-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
	border-color: var(--primary-default);
}

/* Хайлайтований план */
.clg-host-plan-card-highlight {
	border-color: var(--secondary-3);
	box-shadow: 0 22px 70px rgba(248, 181, 47, 0.25);
}

.clg-host-plan-card-highlight .badge {
	position: absolute;
	top: -10px;
	right: 16px;
	background-color: var(--secondary-default);
	color: var(--black-8);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 4px 10px;
	border-radius: 999px;
}

/* Фічі: що входить */
.clg-host-feature-box {
	height: 100%;
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	background: var(--primary-default);
	border: 1px solid var(--primary-7);
}

.clg-host-feature-box h4 {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--secondary-1);
	margin-bottom: 0.4rem;
}

.clg-host-feature-box ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	color: var(--white-default);
}

.clg-host-feature-box li {
	position: relative;
	padding-left: 1.3rem;
	margin-bottom: 0.3rem;
}

.clg-host-feature-box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--secondary-1);
}

/* Вартість */
.clg-host-bottom { margin-top: 0.5rem; }

.clg-host-cost-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.6rem;
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-host-cost-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.25rem 0;
	border-bottom: 1px dashed var(--white-5);
}

.clg-host-cost-list li span:first-child { flex: 1 1 auto; }

.clg-host-cost-list li span:last-child {
	white-space: nowrap;
	font-weight: 600;
	color: var(--primary-default);
}

.clg-host-pricing-small {
	font-size: 0.82rem;
	color: var(--black-2);
}

@media (max-width: 575.98px) {

	.clg-host-meta { margin-top: 1rem; }

	.clg-host-cost-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* Кінець: Сторінка "Послуга" (Хостинг) */

/* Сторінка "Послуга" (CRM & SaaS) */
.clg-crm-service {
	background: var(--white-1);
	color: var(--black-4);
}

.clg-crm-title {
	font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.clg-crm-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--secondary-default);
    margin: 18px 0 12px;
    border-radius: 2px;
}

.clg-crm-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 650px;
}

/* Метадані зверху */
.clg-crm-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-crm-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-crm-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* Карти типів CRM/SaaS */
.clg-crm-type-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 1.1rem 1.15rem 1rem;
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.clg-crm-type-card .tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 12px;
	border-radius: 8px;
	background: var(--primary-default);
	color: var(--white-1);
	margin-bottom: 0.55rem;
}

.clg-crm-type-card .title {
	font-size: 16px;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 10px;
}

.clg-crm-type-card .text {
	font-size: 0.9rem;
	color: var(--black-default);
	margin-bottom: 0.5rem;
}

.clg-crm-type-card .list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.7rem;
	font-size: 0.88rem;
	color: var(--black-default);
}

.clg-crm-type-card .list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.25rem;
}

.clg-crm-type-card .list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--secondary-default);
}

.clg-crm-type-card .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--black-3);
	margin-top: auto;
	padding-top: 0.4rem;
	border-top: 1px dashed var(--white-default);
}

.clg-crm-type-card .price {
	font-weight: 600;
	color: var(--primary-default);
	font-size: 16px;
}

.clg-crm-type-card .note {
	font-size: 0.78rem;
	color: var(--white-8);
}

.clg-crm-type-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
	border-color: var(--primary-default);
}

/* Модулі та інтеграції */
.clg-crm-feature-box {
	height: 100%;
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	background: var(--primary-default);
	border: 1px solid var(--primary-7);
}

.clg-crm-feature-box h4 {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--secondary-1);
	margin-bottom: 0.4rem;
}

.clg-crm-feature-box ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	color: var(--white-default);
}

.clg-crm-feature-box li {
	position: relative;
	padding-left: 1.3rem;
	margin-bottom: 0.3rem;
}

.clg-crm-feature-box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--secondary-1);
}

/* Вартість */
.clg-crm-bottom { margin-top: 0.5rem; }

.clg-crm-cost-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.6rem;
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-crm-cost-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.25rem 0;
	border-bottom: 1px dashed var(--white-5);
}

.clg-crm-cost-list li span:first-child { flex: 1 1 auto; }

.clg-crm-cost-list li span:last-child {
	white-space: nowrap;
	font-weight: 600;
	color: var(--primary-default);
}

.clg-crm-pricing-small {
	font-size: 0.82rem;
	color: var(--black-2);
}

/* CTA */
.clg-crm-cta-box {
	padding: 1.3rem 1.3rem 1.1rem;
	border-radius: 1.2rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.18), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.22), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
	text-align: left;
}

.clg-crm-cta-box h4 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.45rem;
}

.clg-crm-cta-box p {
	font-size: 0.9rem;
	color: var(--white-2);
	margin-bottom: 0.75rem;
}

.clg-crm-cta-box .note {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.85);
	margin-top: 0.5rem;
}

@media (max-width: 575.98px) {

	.clg-crm-meta { margin-top: 1rem; }

	.clg-crm-cost-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* Кінець: Сторінка "Послуга" (CRM & SaaS) */

/* Сторінка "Послуга" (API інтеграція) */
.clg-api-service {
	background: var(--white-1);
	color: var(--black-4);
}

.clg-api-title {
	font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.clg-api-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--secondary-default);
    margin: 18px 0 12px;
    border-radius: 2px;
}

.clg-api-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 650px;
}

/* Метадані зверху */
.clg-api-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-api-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-api-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* Карти типів інтеграцій */
.clg-api-type-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 1.1rem 1.15rem 1rem;
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.clg-api-type-card .tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 12px;
	border-radius: 8px;
	background: var(--primary-default);
	color: var(--white-1);
	margin-bottom: 0.55rem;
}

.clg-api-type-card .title {
	font-size: 16px;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 10px;
}

.clg-api-type-card .text {
	font-size: 0.9rem;
	color: var(--black-default);
	margin-bottom: 0.5rem;
}

.clg-api-type-card .list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.7rem;
	font-size: 0.88rem;
	color: var(--black-default);
}

.clg-api-type-card .list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.25rem;
}

.clg-api-type-card .list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--secondary-default);
}

.clg-api-type-card .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--black-3);
	margin-top: auto;
	padding-top: 0.4rem;
	border-top: 1px dashed var(--white-default);
}

.clg-api-type-card .price {
	font-weight: 600;
	color: var(--primary-default);
	font-size: 16px;
}

.clg-api-type-card .note {
	font-size: 0.78rem;
	color: var(--white-8);
}

.clg-api-type-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
	border-color: var(--primary-default);
}

/* Етапи / підхід */
.clg-api-feature-box {
	height: 100%;
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	background: var(--primary-default);
	border: 1px solid var(--primary-7);
}

.clg-api-feature-box h4 {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--secondary-1);
	margin-bottom: 0.4rem;
}

.clg-api-feature-box ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	color: var(--white-default);
}

.clg-api-feature-box li {
	position: relative;
	padding-left: 1.3rem;
	margin-bottom: 0.3rem;
}

.clg-api-feature-box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--secondary-1);
}

/* Вартість */
.clg-api-bottom { margin-top: 0.5rem; }

.clg-api-cost-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.6rem;
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-api-cost-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.25rem 0;
	border-bottom: 1px dashed var(--white-5);
}

.clg-api-cost-list li span:first-child { flex: 1 1 auto; }

.clg-api-cost-list li span:last-child {
	white-space: nowrap;
	font-weight: 600;
	color: var(--primary-default);
}

.clg-api-pricing-small {
	font-size: 0.82rem;
	color: var(--black-2);
}

/* CTA */
.clg-api-cta-box {
	padding: 1.3rem 1.3rem 1.1rem;
	border-radius: 1.2rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.18), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.22), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
	text-align: left;
}

.clg-api-cta-box h4 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.45rem;
}

.clg-api-cta-box p {
	font-size: 0.9rem;
	color: var(--white-2);
	margin-bottom: 0.75rem;
}

.clg-api-cta-box .note {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.85);
	margin-top: 0.5rem;
}

@media (max-width: 575.98px) {

	.clg-api-meta { margin-top: 1rem; }

	.clg-api-cost-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* Кінець: Сторінка "Послуга" (API інтеграція) */

/* Сторінка "Послуга" (Дизайн) */
.clg-design-service {
	background: var(--white-1);
	color: var(--black-4);
}

.clg-design-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.clg-design-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

.clg-design-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 650px;
}

/* Метадані зверху */
.clg-design-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-design-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-design-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* Карти напрямків дизайну */
.clg-design-type-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 1.1rem 1.15rem 1rem;
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.clg-design-type-card .tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 12px;
	border-radius: 8px;
	background: var(--primary-default);
	color: var(--white-1);
	margin-bottom: 0.55rem;
}

.clg-design-type-card .title {
	font-size: 16px;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 10px;
}

.clg-design-type-card .text {
	font-size: 0.9rem;
	color: var(--black-default);
	margin-bottom: 0.5rem;
}

.clg-design-type-card .list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.7rem;
	font-size: 0.88rem;
	color: var(--black-default);
}

.clg-design-type-card .list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.25rem;
}

.clg-design-type-card .list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--secondary-default);
}

.clg-design-type-card .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--black-3);
	margin-top: auto;
	padding-top: 0.4rem;
	border-top: 1px dashed var(--white-default);
}

.clg-design-type-card .price {
	font-weight: 600;
	color: var(--primary-default);
	font-size: 16px;
}

.clg-design-type-card .note {
	font-size: 0.78rem;
	color: var(--white-8);
}

.clg-design-type-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
	border-color: var(--primary-default);
}

/* Етапи / що входить */
.clg-design-feature-box {
	height: 100%;
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	background: var(--primary-default);
	border: 1px solid var(--primary-7);
}

.clg-design-feature-box h4 {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--secondary-1);
	margin-bottom: 0.4rem;
}

.clg-design-feature-box ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	color: var(--white-default);
}

.clg-design-feature-box li {
	position: relative;
	padding-left: 1.3rem;
	margin-bottom: 0.3rem;
}

.clg-design-feature-box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--secondary-1);
}

/* Вартість */
.clg-design-bottom { margin-top: 0.5rem; }

.clg-design-cost-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.6rem;
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-design-cost-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.25rem 0;
	border-bottom: 1px dashed var(--white-5);
}

.clg-design-cost-list li span:first-child { flex: 1 1 auto; }

.clg-design-cost-list li span:last-child {
	white-space: nowrap;
	font-weight: 600;
	color: var(--primary-default);
}

.clg-design-pricing-small {
	font-size: 0.82rem;
	color: var(--black-2);
}

/* CTA */
.clg-design-cta-box {
	padding: 1.3rem 1.3rem 1.1rem;
	border-radius: 1.2rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.18), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.22), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
	text-align: left;
}

.clg-design-cta-box h4 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.45rem;
}

.clg-design-cta-box p {
	font-size: 0.9rem;
	color: var(--white-2);
	margin-bottom: 0.75rem;
}

.clg-design-cta-box .note {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.85);
	margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
	.clg-design-meta { margin-top: 1rem; }

	.clg-design-cost-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* Кінець: Сторінка "Послуга" (Дизайн) */

/* Сторінка "Послуга" (Маркетинг) */
.clg-marketing-service {
	background: var(--white-1);
	color: var(--black-4);
}

.clg-marketing-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.clg-marketing-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

.clg-marketing-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 650px;
}

/* Метадані зверху */
.clg-marketing-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-marketing-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-marketing-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* Карти напрямків маркетингу */
.clg-marketing-type-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 1.1rem 1.15rem 1rem;
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.clg-marketing-type-card .tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 12px;
	border-radius: 8px;
	background: var(--primary-default);
	color: var(--white-1);
	margin-bottom: 0.55rem;
}

.clg-marketing-type-card .title {
	font-size: 16px;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 10px;
}

.clg-marketing-type-card .text {
	font-size: 0.9rem;
	color: var(--black-default);
	margin-bottom: 0.5rem;
}

.clg-marketing-type-card .list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.7rem;
	font-size: 0.88rem;
	color: var(--black-default);
}

.clg-marketing-type-card .list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.25rem;
}

.clg-marketing-type-card .list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--secondary-default);
}

.clg-marketing-type-card .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--black-3);
	margin-top: auto;
	padding-top: 0.4rem;
	border-top: 1px dashed var(--white-default);
}

.clg-marketing-type-card .price {
	font-weight: 600;
	color: var(--primary-default);
	font-size: 16px;
}

.clg-marketing-type-card .note {
	font-size: 0.78rem;
	color: var(--white-8);
}

.clg-marketing-type-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
	border-color: var(--primary-default);
}

/* Етапи / що входить */
.clg-marketing-feature-box {
	height: 100%;
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	background: var(--primary-default);
	border: 1px solid var(--primary-7);
}

.clg-marketing-feature-box h4 {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--secondary-1);
	margin-bottom: 0.4rem;
}

.clg-marketing-feature-box ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	color: var(--white-default);
}

.clg-marketing-feature-box li {
	position: relative;
	padding-left: 1.3rem;
	margin-bottom: 0.3rem;
}

.clg-marketing-feature-box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--secondary-1);
}

/* Вартість */
.clg-marketing-bottom { margin-top: 0.5rem; }

.clg-marketing-cost-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 0.6rem;
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-marketing-cost-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.25rem 0;
	border-bottom: 1px dashed var(--white-5);
}

.clg-marketing-cost-list li span:first-child { flex: 1 1 auto; }

.clg-marketing-cost-list li span:last-child {
	white-space: nowrap;
	font-weight: 600;
	color: var(--primary-default);
}

.clg-marketing-pricing-small {
	font-size: 0.82rem;
	color: var(--black-2);
}

/* CTA */
.clg-marketing-cta-box {
	padding: 1.3rem 1.3rem 1.1rem;
	border-radius: 1.2rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.18), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.22), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
	text-align: left;
}

.clg-marketing-cta-box h4 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.45rem;
}

.clg-marketing-cta-box p {
	font-size: 0.9rem;
	color: var(--white-2);
	margin-bottom: 0.75rem;
}

.clg-marketing-cta-box .note {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.85);
	margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
	.clg-marketing-meta { margin-top: 1rem; }

	.clg-marketing-cost-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* Кінець: Сторінка "Послуга" (Маркетинг) */

/* Сторінка: Політика конфіденційності */
.clg-privacy {
	background: var(--white-1);
	color: var(--black-4);
}

/* Заголовок */
.clg-privacy-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.clg-privacy-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

.clg-privacy-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 720px;
}

.clg-privacy-lead-small {
	font-size: 0.9rem;
	color: var(--black-3);
	max-width: 720px;
}

/* Метадані */
.clg-privacy-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-privacy-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-privacy-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* Зміст */
.clg-privacy-toc {
	padding: 1rem 1.2rem;
	border-radius: 1rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
	font-size: 0.9rem;
}

.clg-privacy-toc .toc-title {
	font-weight: 600;
	color: var(--black-6);
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.78rem;
}

.clg-privacy-toc ol {
	margin: 0;
	padding-left: 1.1rem;
}

.clg-privacy-toc li {
	margin-bottom: 0.15rem;
}

.clg-privacy-toc a {
	color: var(--black-4);
	text-decoration: none;
	border-bottom: 1px dashed transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.clg-privacy-toc a:hover {
	color: var(--primary-default);
	border-color: var(--primary-default);
}

/* Блоки контенту */
.clg-privacy-block {
	margin-bottom: 1.5rem;
	padding: 1.1rem 1.2rem;
	border-radius: 1.1rem;
	background: var(--white-1);
	border: 1px solid var(--white-4);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.clg-privacy-block h2 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--black-7);
	margin-bottom: 0.5rem;
}

.clg-privacy-block p {
	font-size: 0.9rem;
	color: var(--black-3);
	margin-bottom: 0.5rem;
}

.clg-privacy-block ul {
	font-size: 0.9rem;
	color: var(--black-3);
	padding-left: 1.1rem;
	margin-bottom: 0.4rem;
}

.clg-privacy-block li {
	margin-bottom: 0.25rem;
}

/* Контакти внизу */
.clg-privacy-contact-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-privacy-contact-list li {
	display: flex;
	gap: 0.6rem;
	padding: 0.2rem 0;
}

.clg-privacy-contact-list li span:first-child {
	min-width: 120px;
	font-weight: 500;
	color: var(--black-5);
}

.clg-privacy-contact-list li span:last-child {
	flex: 1 1 auto;
}

/* Адаптив */
@media (max-width: 575.98px) {
	.clg-privacy-meta {
		margin-top: 1rem;
	}

	.clg-privacy-contact-list li {
		flex-direction: column;
		gap: 0.1rem;
	}
}

/* Сторінка: Cookies */
.clg-cookies {
	background: var(--white-1);
	color: var(--black-4);
}

/* Заголовок */
.clg-cookies-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.clg-cookies-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

.clg-cookies-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 720px;
}

.clg-cookies-lead-small {
	font-size: 0.9rem;
	color: var(--black-3);
	max-width: 720px;
}

/* Метадані */
.clg-cookies-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-cookies-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-cookies-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* Зміст документа */
.clg-cookies-toc {
	padding: 1rem 1.2rem;
	border-radius: 1rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
	font-size: 0.9rem;
}

.clg-cookies-toc .toc-title {
	font-weight: 600;
	color: var(--black-6);
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.78rem;
}

.clg-cookies-toc ol {
	margin: 0;
	padding-left: 1.1rem;
}

.clg-cookies-toc li {
	margin-bottom: 0.15rem;
}

.clg-cookies-toc a {
	color: var(--black-4);
	text-decoration: none;
	border-bottom: 1px dashed transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.clg-cookies-toc a:hover {
	color: var(--primary-default);
	border-color: var(--primary-default);
}

/* Блоки */
.clg-cookies-block {
	margin-bottom: 1.5rem;
	padding: 1.1rem 1.2rem;
	border-radius: 1.1rem;
	background: var(--white-1);
	border: 1px solid var(--white-4);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.clg-cookies-block h2 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--black-7);
	margin-bottom: 0.5rem;
}

.clg-cookies-block p {
	font-size: 0.9rem;
	color: var(--black-3);
	margin-bottom: 0.5rem;
}

.clg-cookies-block ul {
	font-size: 0.9rem;
	color: var(--black-3);
	padding-left: 1.1rem;
	margin-bottom: 0.4rem;
}

.clg-cookies-block li {
	margin-bottom: 0.25rem;
}

/* Контакти */
.clg-cookies-contact-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-cookies-contact-list li {
	display: flex;
	gap: 0.6rem;
	padding: 0.2rem 0;
}

.clg-cookies-contact-list li span:first-child {
	min-width: 120px;
	font-weight: 500;
	color: var(--black-5);
}

.clg-cookies-contact-list li span:last-child {
	flex: 1 1 auto;
}

/* Адаптив */
@media (max-width: 575.98px) {
	.clg-cookies-meta {
		margin-top: 1rem;
	}
	.clg-cookies-contact-list li {
		flex-direction: column;
		gap: 0.1rem;
	}
}

/* Сторінка "Про нас" */
.clg-about-page {
	background: var(--white-1);
	color: var(--black-4);
}

/* HERO */
.clg-about-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.clg-about-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

.clg-about-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 720px;
	margin-bottom: 0.7rem;
}

.clg-about-lead-small {
	font-size: 0.9rem;
	color: var(--black-3);
	max-width: 720px;
}

.clg-about-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.6rem;
}

.clg-about-badges .badge-item {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--black-4);
}

.clg-about-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.3rem;
}

/* HERO META CARD */
.clg-about-hero-meta {
	border-radius: 1.4rem;
	padding: 1.5rem 1.4rem 1.2rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.16), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.32), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 22px 65px rgba(0, 0, 0, 0.35);
}

.clg-about-hero-meta .meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 0.9rem;
}

.clg-about-hero-meta .meta-item {
	flex: 1 1 45%;
	min-width: 0;
}

.clg-about-hero-meta .meta-item .label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-about-hero-meta .meta-item .value {
	font-size: 0.9rem;
	color: var(--white-2);
}

.clg-about-hero-meta .meta-stat {
	flex: 1 1 30%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.clg-about-hero-meta .meta-stat .number {
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1;
}

.clg-about-hero-meta .meta-stat .caption {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.9);
	margin-top: 0.2rem;
}

.clg-about-hero-meta .meta-footnote {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.88);
	border-top: 1px dashed rgba(255,255,255,0.25);
	margin-top: 0.8rem;
	padding-top: 0.6rem;
}

/* Базові заголовки розділів */
.overline {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--secondary-5);
	margin-bottom: 0.35rem;
}

.overline-center {
	text-align: center;
}

.clg-about-section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 24px;
	color: var(--black-default);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 0.5rem;
}

.clg-about-section-title.center {
	text-align: center;
}

.clg-about-section-subtitle {
	font-size: 0.94rem;
	color: var(--black-2);
	text-align: center;
	max-width: 680px;
	margin: 0.2rem auto 0;
}

/* Блоки тексту */
.clg-about-block {
	height: 100%;
	padding: 1.3rem 1.3rem 1.1rem;
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-about-block p {
	margin-bottom: 0.5rem;
}

.clg-about-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.clg-about-list li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.25rem;
}

.clg-about-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--secondary-default);
}

/* Пили / чіпи */
.clg-about-pill-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.clg-about-pill-grid .pill {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--white-5);
	background: var(--white-1);
	font-size: 0.8rem;
	color: var(--black-4);
}

/* Степи / процес */
.clg-about-steps {
	position: relative;
}

.clg-about-step-card {
	height: 100%;
	padding: 1.1rem 1.1rem 1rem;
	border-radius: 1.1rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
	font-size: 0.9rem;
	color: var(--black-3);
	position: relative;
	overflow: hidden;
}

.clg-about-step-card .step-badge {
	position: absolute;
	top: 0.75rem;
	right: 0.9rem;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--white-1);
	background: var(--primary-default);
	padding: 0.22rem 0.6rem;
	border-radius: 999px;
}

.clg-about-step-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 0.35rem;
	padding-right: 2.5rem;
}

.clg-about-step-card p {
	margin-bottom: 0.45rem;
}

.clg-about-step-card ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.clg-about-step-card li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.2rem;
}

.clg-about-step-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--secondary-default);
}

/* BENEFITS */
.clg-about-benefit-card {
	height: 100%;
	padding: 1.05rem 1.1rem 1rem;
	border-radius: 1.1rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
	font-size: 0.9rem;
	color: var(--black-3);
	display: flex;
	flex-direction: column;
}

.clg-about-benefit-card .icon-dot {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 600;
	background: var(--primary-default);
	color: var(--white-1);
	margin-bottom: 0.45rem;
}

.clg-about-benefit-card h3 {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 0.3rem;
}

/* AUDIENCE */
.clg-about-audience {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.1rem;
}

.clg-about-audience .audience-column {
	padding: 1rem 1.05rem;
	border-radius: 1.1rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.03);
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-about-audience h3 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 0.35rem;
}

.clg-about-audience ul {
	padding-left: 1rem;
	margin-bottom: 0;
}

/* CTA */
.clg-about-cta-box {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
	gap: 1.2rem;
	padding: 1.4rem 1.4rem 1.2rem;
	border-radius: 1.3rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.2), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.4), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
	align-items: center;
}

.clg-about-cta-box h2 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.clg-about-cta-box p {
	font-size: 0.9rem;
	color: var(--white-2);
	margin-bottom: 0.5rem;
}

.clg-about-cta-box .cta-actions {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.clg-about-cta-box .cta-note {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.9);
}

/* HOVERS */
.clg-about-step-card:hover,
.clg-about-block:hover,
.clg-about-benefit-card:hover,
.clg-about-audience .audience-column:hover {
	transform: translateY(-3px);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-default);
}

/* Адаптив */
@media (max-width: 991.98px) {
	.clg-about-hero-meta {
		margin-top: 1.4rem;
	}

	.clg-about-cta-box {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.clg-about-audience {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575.98px) {
	.clg-about-title {
		font-size: 26px;
	}

	.clg-about-section-title {
		font-size: 21px;
	}
}

/* Сторінка: FAQ */
.clg-faq-page {
	background: var(--white-1);
	color: var(--black-4);
}

/* HERO */
.clg-faq-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.clg-faq-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

.clg-faq-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 720px;
	margin-bottom: 0.6rem;
}

.clg-faq-lead-small {
	font-size: 0.9rem;
	color: var(--black-3);
	max-width: 720px;
}

.clg-faq-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.3rem;
}

/* META */
.clg-faq-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-faq-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-faq-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* TOC */
.clg-faq-toc {
	padding: 1rem 1.2rem;
	border-radius: 1rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
	font-size: 0.9rem;
}

.clg-faq-toc .toc-title {
	font-weight: 600;
	color: var(--black-6);
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.78rem;
}

.clg-faq-toc-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.clg-faq-toc .toc-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	border: 1px solid var(--white-5);
	background: var(--white-1);
	font-size: 0.82rem;
	color: var(--black-4);
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.clg-faq-toc .toc-pill:hover {
	background-color: var(--primary-default);
	color: var(--white-1);
	border-color: var(--primary-default);
}

/* Розділи FAQ */
.clg-faq-section-head {
	margin-bottom: 0.6rem;
}

.clg-faq-section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: var(--black-default);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 0.3rem;
}

.clg-faq-section-subtitle {
	font-size: 0.9rem;
	color: var(--black-2);
	max-width: 640px;
}

/* ACCORDION */
.clg-faq-accordion .accordion-item {
	border-radius: 1rem;
	border: 1px solid var(--white-4);
	overflow: hidden;
	background: var(--white-2);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
	margin-bottom: 0.7rem;
}

.clg-faq-accordion .accordion-item:last-of-type {
	margin-bottom: 0;
}

.clg-faq-accordion .accordion-button {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--black-default);
	background-color: transparent;
	padding: 0.9rem 1rem;
	box-shadow: none;
}

.clg-faq-accordion .accordion-button::after {
	filter: none;
}

.clg-faq-accordion .accordion-button:not(.collapsed) {
	color: var(--primary-default);
	background-color: rgba(106, 22, 158, 0.03);
}

.clg-faq-accordion .accordion-body {
	font-size: 0.9rem;
	color: var(--black-3);
	padding: 0.8rem 1rem 0.9rem;
}

/* CTA внизу */
.clg-faq-cta-box {
	display: grid;
	grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
	gap: 1.2rem;
	padding: 1.4rem 1.4rem 1.2rem;
	border-radius: 1.3rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.2), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.4), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
	align-items: center;
}

.clg-faq-cta-box h2 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.clg-faq-cta-box p {
	font-size: 0.9rem;
	color: var(--white-2);
	margin-bottom: 0.5rem;
}

.clg-faq-cta-box .cta-actions {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.clg-faq-cta-box .cta-note {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.9);
}

/* HOVERS */
.clg-faq-accordion .accordion-item:hover {
	transform: translateY(-2px);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-default);
}

/* Адаптив */
@media (max-width: 991.98px) {
	.clg-faq-meta {
		margin-top: 1.4rem;
	}

	.clg-faq-cta-box {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575.98px) {
	.clg-faq-title {
		font-size: 26px;
	}
	.clg-faq-section-title {
		font-size: 20px;
	}
}

/* Сторінка: Контакти */
.clg-contact-page {
	background: var(--white-1);
	color: var(--black-4);
}

/* HERO */
.clg-contact-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1.25;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.clg-contact-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--secondary-default);
	margin: 18px 0 12px;
	border-radius: 2px;
}

.clg-contact-lead {
	font-size: 0.98rem;
	color: var(--black-2);
	max-width: 720px;
	margin-bottom: 0.6rem;
}

.clg-contact-lead-small {
	font-size: 0.9rem;
	color: var(--black-3);
	max-width: 720px;
}

.clg-contact-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.3rem;
}

/* META HERO */
.clg-contact-meta {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	padding: 20px;
	border-radius: 1rem;
	background: var(--bg-primary-gradient);
	border: 1px solid var(--white-4);
}

.clg-contact-meta .item .label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--secondary-1);
	margin-bottom: 0.15rem;
}

.clg-contact-meta .item .value {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--white-default);
}

/* ЗАГОЛОВКИ РОЗДІЛІВ */
.clg-contact-section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: var(--black-default);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 0.3rem;
}

.clg-contact-section-title.center {
	text-align: center;
}

.clg-contact-section-subtitle {
	font-size: 0.9rem;
	color: var(--black-2);
	max-width: 640px;
}

.clg-contact-section-subtitle.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* КАРТКИ ТИПІВ ЗАПИТІВ */
.clg-contact-intent-card {
	height: 100%;
	padding: 1.1rem 1.15rem 1rem;
	border-radius: 1.1rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
	font-size: 0.9rem;
	color: var(--black-3);
}

.clg-contact-intent-card .intent-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.7rem;
	border-radius: 999px;
	background: var(--primary-default);
	color: var(--white-1);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.4rem;
}

.clg-contact-intent-card h3 {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--black-default);
	margin-bottom: 0.3rem;
}

.clg-contact-intent-card ul {
	padding-left: 1rem;
	margin-bottom: 0;
}

/* ФОРМА */
.clg-contact-form-card {
	height: 100%;
	padding: 1.4rem 1.35rem 1.2rem;
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
}

.clg-contact-form {
	margin-top: 0.6rem;
}

.clg-contact-form .form-label {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--black-5);
	margin-bottom: 0.15rem;
}

.clg-contact-form .form-control,
.clg-contact-form .form-select {
	font-size: 0.9rem;
	border-radius: 0.7rem;
	border: 1px solid var(--white-5);
	background-color: var(--white-1);
	color: var(--black-4);
	padding: 0.5rem 0.7rem;
}

.clg-contact-form .form-control:focus,
.clg-contact-form .form-select:focus {
	border-color: var(--primary-default);
	box-shadow: 0 0 0 0.15rem rgba(106, 22, 158, 0.15);
}

.clg-contact-consent {
	font-size: 0.82rem;
	color: var(--black-3);
}

.clg-contact-consent a {
	color: var(--primary-default);
	text-decoration: none;
	border-bottom: 1px dashed transparent;
}

.clg-contact-consent a:hover {
	border-color: var(--primary-default);
}

.clg-contact-form-note {
	font-size: 0.8rem;
	color: var(--black-3);
	margin-top: 0.6rem;
}

/* САЙД-БОКС КОНТАКТІВ */
.clg-contact-sidebox {
	height: 100%;
	padding: 1.3rem 1.2rem 1.1rem;
	border-radius: 1.2rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.22), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.42), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.clg-contact-sidebox h3 {
	font-size: 1.02rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.clg-contact-sidebox h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.clg-contact-side-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0.4rem;
	font-size: 0.9rem;
}

.clg-contact-side-list li {
	display: flex;
	justify-content: space-between;
	gap: 0.7rem;
	margin-bottom: 0.25rem;
}

.clg-contact-side-list .label {
	font-weight: 500;
	color: rgba(255,255,255,0.9);
	min-width: 110px;
}

.clg-contact-side-list .value a {
	color: var(--secondary-1);
	text-decoration: none;
	border-bottom: 1px dashed transparent;
}

.clg-contact-side-list .value a:hover {
	border-color: var(--secondary-1);
}

.clg-contact-side-text {
	font-size: 0.86rem;
	color: rgba(255,255,255,0.92);
}

.clg-contact-side-divider {
	border-bottom: 1px dashed rgba(255,255,255,0.3);
	margin: 0.7rem 0 0.5rem;
}

/* CTA ФІНАЛ */
.clg-contact-cta-box {
	display: grid;
	grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
	gap: 1.2rem;
	padding: 1.4rem 1.4rem 1.2rem;
	border-radius: 1.3rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.2), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(106, 22, 158, 0.4), transparent 55%),
		var(--primary-7);
	color: var(--white-1);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
	align-items: center;
	margin-top: 0.5rem;
}

.clg-contact-cta-box h2 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.clg-contact-cta-box p {
	font-size: 0.9rem;
	color: var(--white-2);
	margin-bottom: 0.5rem;
}

.clg-contact-cta-box .cta-actions {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.clg-contact-cta-box .cta-note {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.9);
}

/* HOVERS */
.clg-contact-intent-card:hover,
.clg-contact-form-card:hover {
	transform: translateY(-3px);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-default);
}

/* Адаптив */
@media (max-width: 991.98px) {
	.clg-contact-meta {
		margin-top: 1.4rem;
	}

	.clg-contact-cta-box {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.clg-contact-side-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 575.98px) {
	.clg-contact-title {
		font-size: 26px;
	}
	.clg-contact-section-title {
		font-size: 20px;
	}
}

/* AUTH СТОРІНКИ: login / register / password reset */
.clg-auth-page {
	min-height: calc(100vh - 120px); /* з урахуванням хедера/футера, за потреби підкрути */
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 0% 0%, rgba(106, 22, 158, 0.35), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(248, 181, 47, 0.32), transparent 55%),
		linear-gradient(135deg, var(--primary-7), var(--black-7));
	color: var(--white-1);
	padding-top: 40px;
	padding-bottom: 40px;
}

.clg-auth-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: 1.6rem;
	border-radius: 1.6rem;
	background: rgba(244, 244, 244, 0.06);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	padding: 1.6rem;
}

/* Ліва панель (бренд) */
.clg-auth-panel {
	border-radius: 1.2rem;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.5rem 1.4rem 1.3rem;
	color: var(--white-1);
	display: flex;
	align-items: center;
}

.clg-auth-panel .panel-inner {
	width: 100%;
}

.clg-auth-panel .panel-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.8rem;
	border-radius: 999px;
	background: rgba(248, 181, 47, 0.14);
	color: var(--secondary-1);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 0.6rem;
}

.clg-auth-panel .panel-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 24px;
	line-height: 1.3;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.clg-auth-panel .panel-text {
	font-size: 0.9rem;
	color: rgba(244, 244, 244, 0.9);
	margin-bottom: 0.5rem;
}

.clg-auth-panel .panel-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	font-size: 0.88rem;
	color: rgba(244, 244, 244, 0.9);
}

.clg-auth-panel .panel-list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.25rem;
}

.clg-auth-panel .panel-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--secondary-default);
}

/* Права панель (форма) */
.clg-auth-card {
	border-radius: 1.2rem;
	background: var(--white-2);
	border: 1px solid var(--white-4);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	padding: 1.5rem 1.4rem 1.3rem;
	color: var(--black-4);
}

.clg-auth-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.35rem;
	color: var(--black-default);
}

.clg-auth-subtitle {
	font-size: 0.9rem;
	color: var(--black-3);
	margin-bottom: 0.8rem;
}

/* Форма */
.clg-auth-form .form-label {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--black-5);
	margin-bottom: 0.15rem;
}

.clg-auth-form .form-control,
.clg-auth-form .form-select {
	font-size: 0.9rem;
	border-radius: 0.7rem;
	border: 1px solid var(--white-5);
	background-color: var(--white-1);
	color: var(--black-4);
	padding: 0.5rem 0.7rem;
}

.clg-auth-form .form-control:focus,
.clg-auth-form .form-select:focus {
	border-color: var(--primary-default);
	box-shadow: 0 0 0 0.15rem rgba(106, 22, 158, 0.18);
}

.clg-auth-meta-row .form-check-label {
	font-size: 0.82rem;
	color: var(--black-4);
}

.clg-auth-consent {
	font-size: 0.82rem;
	color: var(--black-3);
}

.clg-auth-consent a {
	color: var(--primary-default);
	text-decoration: none;
	border-bottom: 1px dashed transparent;
}

.clg-auth-consent a:hover {
	border-color: var(--primary-default);
}

/* Лінки, низ картки */
.clg-auth-link {
	font-size: 0.85rem;
	color: var(--primary-default);
	text-decoration: none;
	border-bottom: 1px dashed transparent;
}

.clg-auth-link:hover {
	border-color: var(--primary-default);
}

.clg-auth-bottom-text {
	font-size: 0.85rem;
	color: var(--black-3);
	margin-top: 0.4rem;
}

/* CTA кнопки (ти вже їх маєш, але на всякий) */
/* .btn-clg, .btn-clg-primary, .btn-clg-secondary, .btn-clg-ghost, .btn-clg-lg — з попереднього коду */

/* Адаптив */
@media (max-width: 991.98px) {
	.clg-auth-layout {
		grid-template-columns: 1fr;
		padding: 1.3rem;
	}

	.clg-auth-panel {
		order: 2;
		margin-top: 0.4rem;
	}

	.clg-auth-card {
		order: 1;
	}
}

@media (max-width: 575.98px) {
	.clg-auth-page {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.clg-auth-layout {
		padding: 1rem;
		border-radius: 1.2rem;
	}

	.clg-auth-panel .panel-title {
		font-size: 20px;
	}
}

/* EMAIL VERIFICATION ICON */
.clg-email-check-icon {
	display: flex;
	justify-content: center;
	margin: 1.2rem 0 0.8rem;
}

.clg-email-check-icon .circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 0% 0%, rgba(248, 181, 47, 0.25), transparent 55%),
		linear-gradient(135deg, var(--primary-default), var(--primary-7));
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 10px 28px rgba(106, 22, 158, 0.25);
	position: relative;
}

.clg-email-check-icon .dot {
	width: 22px;
	height: 22px;
	background-color: var(--white-1);
	border-radius: 50%;
	box-shadow: 0 0 0 3px var(--secondary-default);
}

/* INFO TEXT */
.clg-auth-info-text {
	text-align: center;
	font-size: 0.88rem;
	color: var(--black-3);
	margin-bottom: 1rem;
}
