/* Карточка услуги */
.service-card {
	position: relative;
	padding: 33.5px 32.32px 35px 32.32px;
	border-radius: 25px;

	box-shadow: inset 0px 4px 10px 0px rgba(255, 255, 255, 0.25);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	transition: all 0.3s ease;
	border-radius: 25px;
		background: linear-gradient(180deg, #DCCEF7 -155.41%, rgba(220, 206, 247, 0.00) 123.65%);
		box-shadow: 0 4px 10px 0 rgba(255, 255, 255, 0.25) inset;
}

.service-card:hover {
	border-color: var(--yellow-brand);
	transform: translateY(-5px);
}

/* Фоновая цифра */
.service-card__number {
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 150px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.05);
	/* Очень низкая прозрачность */
	line-height: 1;
	z-index: 1;
	pointer-events: none;
}

.service-card__content {
	position: relative;
	z-index: 2;
}

.service-card__title {
	color: var(--yellow-brand);
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: -2px;
}

.service-card__desc {
	color: #FFF;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

}

/* Ссылка внизу */
.service-card__link {
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	transition: 0.3s;
	position: relative;
	z-index: 2;
}

.service-card__link:hover {
	color: var(--yellow-brand);
	padding-left: 5px;
}

/* Адаптивность */
@media (max-width: 1200px) {


	.service-card__title {
		font-size: 45px;
	}

	.service-card__number {
		font-size: 120px;
	}
}

@media (max-width: 768px) {


	.service-card {
		padding: 40px 25px 30px 25px;
	}
}


/* 000000000000000000000000000000000000000000000000000000000000000000000000000 ВВЕРХ блока */
.cl-tags-section {
	padding: 60px 0;
	background: transparent;
	/* Или ваш цвет фона */
	color: #ffffff;
}

.cl-tags-label {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #ebe1ff;
	font-size: 25px;
	font-weight: 400;
	margin-top: 10px;
}

.cl-tags-content-wrap {
	padding-left: 20px;
}

.cl-tags-main-title {
	color: #ebe1ff;
	font-family: 'Mulish', sans-serif;
	font-size: clamp(40px, 8vw, 90px);
	line-height: 0.95;
	letter-spacing: -4px;
	font-weight: 600;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.cl-tags-description {
	max-width: 1023px;
	font-size: 25px;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 40px;
	color: #ffffff;
}

/* Облако тегов */
.cl-tags-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 10px;
}

.cl-tags-pill {
	padding: 5px 20px;
	border-radius: 50px;
	border: 1px solid #f2eeff;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	cursor: default;
	transition: all 0.3s ease;
	white-space: nowrap;
}

/* Первый элемент (активный) */
.cl-tags-pill.is-active {
	background: #fbe122;
	border-color: #fbe122;
	color: #7e57c5;
	box-shadow: 0px 4px 4px 0px rgba(126, 87, 197, 0.30);
}

.cl-tags-pill:hover:not(.is-active) {
	background: rgba(242, 238, 255, 0.1);
}

/* Адаптивность */
@media (max-width: 1199px) {
	.cl-tags-content-wrap {
		padding-left: 15px;
		padding-right: 15px;
	}

	.cl-tags-main-title {
		letter-spacing: -2px;
	}

	.cl-tags-description {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.cl-tags-main-title {
		font-size: 40px;
	}

	.cl-tags-pill {
		font-size: 14px;
		padding: 4px 15px;
	}
}