

/* Start:/local/components/custom/content.block/templates/tasks/style.css?17760232192516*/
.tasks-section {
	padding: 110px 0;
	background: var(--gray-50);
	overflow: hidden;
}

.tasks-section__head {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: end;
	margin-bottom: 48px;
}

.tasks-section__label {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    display: block;
}

@media (min-width: 1024px) {
    .tasks-section__label {
        font-size: 18px;
        line-height: 133%;
    }
}


.tasks-section__title {
	margin: 0;
	max-width: 760px;
	font-size: 42px;
	line-height: 1.12;
	font-weight: 700;
	color: #111;
}

.tasks-section__desc {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #5c5c5c;
}

.tasks-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.task-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 250px;
	padding: 28px;
	border: 1px solid #e8e8e874;
	border-radius: 28px;
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.task-card:hover {
	border-color: #d9d9d9;
}

.task-card--accent {
	grid-column: span 2;
	min-height: 290px;
	padding: 34px;
	background:
		linear-gradient(135deg, rgba(79, 0, 255, 0.04) 0%, rgba(207, 115, 255, 0.05) 100%),
		#fff;
	border-color: rgba(79, 0, 255, 0.12);
}

.task-card__num {
	margin-bottom: 26px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #8f3cf5;
}

.task-card__title {
	margin: 0 0 14px;
	max-width: 520px;
	font-size: 24px;
	line-height: 1.22;
	font-weight: 700;
	color: #111;
}

.task-card__text {
	margin: 0;
	max-width: 560px;
	font-size: 16px;
	line-height: 1.7;
	color: #5b5b5b;
}

@media (max-width: 1200px) {

	.tasks-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.task-card--accent {
		grid-column: span 2;
	}
}

@media (max-width: 767px) {
	.tasks-section {
		padding: 80px 0;
	}

	.tasks-section__head {
		margin-bottom: 32px;
	}

	.tasks-section__title {
		font-size: 30px;
	}

	.tasks-section__desc {
		font-size: 16px;
		line-height: 1.65;
	}

	.tasks-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.task-card,
	.task-card--accent {
		grid-column: span 1;
		min-height: auto;
		padding: 22px;
		border-radius: 22px;
	}

	.task-card__num {
		margin-bottom: 18px;
	}

	.task-card__title {
		font-size: 20px;
	}

	.task-card__text {
		font-size: 15px;
		line-height: 1.65;
	}
}
/* End */


/* Start:/local/templates/agstudio/components/bitrix/news.list/services_list/style.css?17766279687704*/


/* ===== Общая обёртка страницы услуг ===== */

/*
.services-page {
    padding: 48px 0 80px;
}

@media (max-width: 1199px) {
    .services-page {
        padding: 32px 0 64px;
    }
}

@media (max-width: 767px) {
    .services-page {
        padding: 24px 0 48px;
    }
}*/


@media (max-width: 767px) {
    .services-page .text-left{
        font-size: 16px;
    }
}

/* ===== Группа услуг (секция) ===== */

.service-group {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-group:last-of-type {
    border-bottom: none;
}

@media (max-width: 1199px) {
    .service-group {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .service-group {
        padding: 32px 0;
    }
}

.service-group__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .service-group__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }
}

.service-group__title {
    font-size: 22px;
    font-weight: 600;
    position: relative;
	color: #3b4352;
	margin: 0;
}


/* ===== Стрелки ===== */

.service-group__arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-group__arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #161626;
}

.service-group__arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

/*
.service-group__arrow {
    border: 1px solid rgba(148, 156, 183, 0.4);
    background: #ffffff;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #161626;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.service-group__arrow svg {
    display: block;
}

.service-group__arrow:hover:not(:disabled) {
    background: linear-gradient(135deg, #4f00ff, #cf73ff);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-1px);
}

.service-group__arrow:disabled {
    opacity: 0.4;
    cursor: default;
}
*/

.service-group__arrow-stick {
    width: 1px;
    height: 20px;
    background: rgba(148, 156, 183, 0.4);
}

/* ===== Описание группы ===== */

.service-group__description {
    max-width: 640px;
    margin-bottom: 32px;
    color: #3a3c4d;
}

@media (max-width: 1199px) {
    .service-group__description {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .service-group__description {
        margin-bottom: 16px;
        font-size: 14px;
    }
}

/* ===== Swiper-слайдер ===== */

.services-slider.swiper {
    width: 100%;
    overflow: visible;
    padding-bottom: 8px;
}

.services-slider .swiper-wrapper {
    /* без gap, отступы за счёт width/spaceBetween */
	padding-bottom: 20px;
}

.services-slider .swiper-slide,
.services-slider__slide {
    width: 280px;
}

@media (max-width: 1199px) {
    .services-slider .swiper-slide,
    .services-slider__slide {
        width: 240px;
    }
}

@media (max-width: 767px) {
}

/* ===== Карточка услуги ===== */

.service-card {
    position: relative;
    height: 320px;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    background-color: #101120;
    color: #ffffff;
    overflow: hidden;
	transition: all .4s ease;
}

.service-card:hover {
	text-decoration: none;
	color: #fff;
}

.service-card:before{
	opacity: 0.4;
}

@media (max-width: 1199px) {
    .service-card {
        height: 300px;
    }
}



/* главная карточка блока */
.service-card--primary {
    background: radial-gradient(circle at 0% 0%, #cf73ff 0%, #4f00ff 36%, #161626 100%);
}

/* карточки с фоновым изображением — образ менять, но уже по-другому, чем в оригинале */

.service-card--with-image {
    background-color: #080814;
}

a.service-card--with-image:visited{
    color: #fff;
}


.service-card--with-image{
  position: relative;
  overflow: hidden;      /* чтобы "зум" не вылазил за края */
  border-radius: 16px;
}

/* фон */
.service-card--with-image::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--service-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: saturate(1.1);
  z-index: 1;
  transition: transform .4s ease, filter .4s ease, opacity .4s ease;
  transform: scale(1);   /* база */
}

/* мягкий градиент для нижней части карточки */
.service-card--with-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to top, #101120 0%, rgba(16, 17, 32, 0.0) 100%);
    z-index: 1;
}


/* зум при наведении */
.service-card--with-image:hover::before{
  transform: scale(1.05);
}

/* чтобы текст/контент был выше фона */
.service-card--with-image > *{
  position: relative;
  z-index: 2;
}

/* карточка "Показать ещё" — светлая, без фона */

.service-card--more {
    background-color: #f5f5fb;
    color: #181828;
    border: 1px dashed rgba(79, 0, 255, 0.4);
    box-shadow: none;
    align-items: flex-start;
    justify-content: flex-end;
}

.service-card--more:hover {
    background-color: #ececff;
    border-style: solid;
    transform: translateY(-2px);
}

.service-card--with-image:hover img{
    transform: scale(1.05);
}

/* ===== Контент карточки ===== */

.service-card__title,
.service-card__meta {
    position: relative;
    z-index: 2;
}

.service-card__title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 12px;
	text-shadow: 0px 1px 1px black;
}

@media (max-width: 1199px) {
    .service-card__title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}


.service-card__meta {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(230, 232, 240, 0.9);
    padding-top: 10px;
    border-top: 1px solid rgba(148, 156, 183, 0.6);
    max-width: 220px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card__meta ul{
    margin: 0;
}

.service-card__meta ul li{
    margin-top: 0;
}

@media (max-width: 1199px) {
    .service-card__meta {
        font-size: 12px;
        max-width: 200px;
    }
}

/* Для карточек с картинкой — сдвигаем текст вниз, чтобы он не залезал на мини-превью */

.service-card--with-image .service-card__title,
.service-card--with-image .service-card__meta {
    margin-top: 85px;
}

@media (max-width: 1199px) {
    .service-card--with-image .service-card__meta {
        margin-top: 5px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


/* Скроллбар Swiper для услуг */
.services-scrollbar {
    max-width: 1180px;
    margin: 0 auto 0;
    height: 6px;
    background: #eeeeee;
    border-radius: 999px;
}

.services-scrollbar .swiper-scrollbar-drag {
    background: linear-gradient(90deg, #4f00ff, #cf73ff);
    border-radius: 999px;
}


/* End */


/* Start:/local/components/custom/content.block/templates/steps/style.css?17761179143356*/
.work-steps {
	padding: 110px 0;
	background: var(--gray-50);
}

.work-steps__head {
	max-width: 860px;
	margin-bottom: 40px;
}

.work-steps__label  {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    display: block;
}

@media (min-width: 1024px) {
    .work-steps__label  {
        font-size: 18px;
        line-height: 133%;
    }
}

.work-steps__title {
	margin: 0 0 14px;
	font-size: 42px;
	line-height: 1.12;
	font-weight: 700;
	color: #111;
}

.work-steps__desc {
	margin: 0;
	max-width: 720px;
	font-size: 17px;
	line-height: 1.65;
	color: #5c5c5c;
}

.work-steps__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	align-items: start;
}

.work-step-card {
	position: relative;
}

.work-step-card__main {
	position: relative;
	z-index: 2;
	min-height: 120px;
	padding: 22px 20px;
	border: 1px solid #fff;
	border-radius: 22px;
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.work-step-card__extra {
	position: absolute;
	top: 95px;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 0 20px 20px;
	border: 1px solid #fff;
	border-top: 0;
	border-radius: 0 0 22px 22px;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease, border-color .25s ease;
}

.work-step-card__num {
	margin-bottom: 18px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #8f3cf5;
}

.work-step-card__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #111;
	transition: color .25s ease;
}

.work-step-card__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #5b5b5b;
}

.work-step-card:hover .work-step-card__main,
.work-step-card:focus-within .work-step-card__main {
	transform: translateY(-4px);
	border-color: rgba(79, 0, 255, 0.16);
}

.work-step-card:hover .work-step-card__title,
.work-step-card:focus-within .work-step-card__title {
	color: #4f00ff;
}

.work-step-card:hover .work-step-card__extra,
.work-step-card:focus-within .work-step-card__extra {
	opacity: 1;
	transform: translateY(0);
	border-color: rgba(79, 0, 255, 0.16);
	pointer-events: auto;
}

@media (max-width: 1200px) {
	.work-steps__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 30px;
	}
}

@media (max-width: 767px) {
	.work-steps {
		padding: 80px 0;
	}

	.work-steps__title {
		font-size: 30px;
	}

	.work-steps__desc {
		font-size: 16px;
	}

	.work-steps__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

    .work-step-card{
        background: #fff;
		border-radius: 18px;
        overflow: hidden;

        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .work-step-card:last-child {
		grid-column: 1 / -1;
	}

	.work-step-card__main {
		min-height: auto;
		padding: 20px 18px 10px;
        border: 0!important;
        transform: none!important;
	}

	.work-step-card__extra {
		position: static;
		opacity: 1;
		transform: none;
		pointer-events: auto;
		padding: 0 18px 18px;
        margin-top: 0;
		border-radius: 0;
		box-shadow: none;
        border: 0!important;
	}

	.work-step-card__title {
		font-size: 18px;
	}

	.work-step-card__text {
		font-size: 14px;
		line-height: 1.6;
	}
}
/* End */


/* Start:/local/templates/agstudio/components/bitrix/news.list/cases/style.css?17716994423693*/
/* Cases */

.case__title {
	margin: 0 0 20px 0;
	font-weight: 600;
	font-size: 32px;
	line-height: 43px;
	color: var(--text-main);
}

.case__meta {
	font-size: 16px;
	margin-bottom: 25px;
}

/* Обёртка карточки */
.case-card {
	position: relative;
	border: none !important;
	padding: 0;
	/* фон уже в картинке */
	border-radius: 15px;
	box-shadow: none;
	overflow: visible;
}

/* Только IMG внутри */
.image-container {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	min-height: 240px;
	/* можно заменить на 300/360 */
	background: #f1f3f5;
}

.image-container img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.02);
	transition: transform .4s ease, filter .4s ease;
	z-index: 0;
}

/* Градиент для читаемости */
.image-container::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .28) 45%, rgba(0, 0, 0, 0) 70%);
	z-index: 1;
}

/* Контент поверх изображения (НЕ внутри .image-container) */
.case-content {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
	color: #fff;
	pointer-events: none;
	min-height: 105px;
}

.case-content h3 {
	margin: 0 0 8px 0;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}

.case-content p {
	margin: 0;
	font: 400 16px/24px var(--font);
	color: rgba(255, 255, 255, .88);
}

/* Hover-эффект */
.case-card:hover .image-container img {
	transform: scale(1.06);
	filter: saturate(1) contrast(1.05) brightness(1.02);
}


/* Модификаторы высоты по желанию */
.image-container--h200 {
	min-height: 200px;
}

.image-container--h300 {
	min-height: 300px;
}

.image-container--h360 {
	min-height: 360px;
}

.image-container--h370 {
	min-height: 370px;
}

@media (max-width: 1199px) {
	.image-container--h370 {
		min-height: 350px;
	}
}


/* Пагинация */
.cases-pagination {
	position: relative;
	margin: 16px auto 0;
	text-align: center;
}

.cases-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #d0c7ff;
	opacity: 1;
	margin: 0 6px !important;
	border-radius: 999px;
}

.cases-pagination .swiper-pagination-bullet-active {
	width: 20px;
	background: linear-gradient(90deg, #4f00ff, #cf73ff);
}


/* Адаптив */
@media (max-width: 767px) {
	.case-content {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.case-content h3 {
		font-size: 18px;
		line-height: 24px;
	}

	.case-content p {
		font-size: 14px;
		line-height: 20px;
	}
}



/* Контейнер слайдера */
.cases-swiper {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 0 25px !important;
	/* нижний отступ под скроллбар */
}

/* Слайды фиксированной ширины */
.cases-swiper .swiper-wrapper {
	align-items: stretch;
}

.cases-swiper .swiper-slide {
	width: 280px;
	/* ← фиксируем ширину */
	height: auto;
}

@media (max-width: 1199px) {
	.cases-swiper .swiper-slide {
		width: 240px;
	}
}


/* Ползунок-скролл Swiper */
.cases-scrollbar {
	height: 6px;
	background: #eee;
	border-radius: 999px;
}

.cases-scrollbar .swiper-scrollbar-drag {
	background: linear-gradient(90deg, #4f00ff, #cf73ff);
	border-radius: 999px;
}


.case-card__link {
	position: absolute;
	inset: 0;
	/* top:0; right:0; bottom:0; left:0 */
	z-index: 3;
	display: block;
	text-indent: -9999px;
	/* текст только для читающих экран */
	overflow: hidden;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
/* End */


/* Start:/local/components/custom/form/templates/phone_cta/style.css?17775518271592*/

.about-cta {
	padding: 0 0 50px;
	background: #fff;
}

.about-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	gap: 28px;
	align-items: center;
	padding: 36px;
	border: 1px solid rgba(79, 0, 255, 0.08);
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(79, 0, 255, 0.03) 0%, rgba(207, 115, 255, 0.04) 100%), #fff;
}

.about-cta__content {
	max-width: 720px;
}

.about-cta__title {
	margin: 0 0 14px;
	font-size: 36px;
	line-height: 1.12;
	font-weight: 700;
	color: #111;
}

.about-cta__text {
	margin: 0;
	font-size: 17px;
	line-height: 1.65;
	color: #5c5c5c;
}

.about-cta__form {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    gap: 20px;
    row-gap: 12px;
}

.about-cta__captcha-wrap{
    width: 100%;
}

.about-cta__field {
	display: block;
    width: auto;
    flex: 1;
}

.about-cta__field input {
}

.about-cta__field input:focus {
	border-color: rgba(79, 0, 255, 0.28);
}

.about-cta__field input::placeholder {
	color: #8a8a8a;
}

.about-cta__btn {
}

.about-cta__btn:hover {
}

.about-cta__btn.btn--lg {
    height: 50px;
}


.is-success{
	color: green;
}

@media (max-width: 1024px) {
	.about-cta__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.about-cta {
		padding: 80px 0;
	}

	.about-cta__inner {
		padding: 24px;
		border-radius: 20px;
	}

	.about-cta__title {
		font-size: 28px;
	}

	.about-cta__text {
		font-size: 15px;
		line-height: 1.6;
	}

	.about-cta__form {
		grid-template-columns: 1fr;
	}

	.about-cta__field input,
	.about-cta__btn {
		border-radius: 14px;
	}
}
/* End */


/* Start:/local/components/custom/content.block/templates/advantages/style.css?17760021821375*/

.advantages__header {
	margin-bottom: 70px;
}

@media (min-width: 1024px) {
	.advantages__header {
		margin-bottom: 90px;
	}
}

.advantages__items {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -20px;
}



.advantages-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	padding: 0 20px;
	margin-bottom: 30px;
}


@media (min-width: 768px) {
	.advantages-item {
		width: 25%;
	}
}

.advantages-item__icon-wrapper {
	margin-bottom: 24px;
	width: 70px;
	height: 70px;
	padding: 15px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
}

.advantages-item__icon {
	width: 100%;
}

@media (min-width: 1024px) {
	.advantages-item__icon-wrapper {
		margin-bottom: 30px;
	}
}

.advantages-item__title {
	margin: 0;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

.advantages-item__title:not(:last-child) {
	margin-bottom: 12px;
}

@media (min-width: 1024px) {


	.advantages-item__title:not(:last-child) {
		margin-bottom: 14px;
	}
}

.advantages-item__desc {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: rgba(0, 0, 0, 0.6);
}
/* End */


/* Start:/local/templates/agstudio/components/bitrix/news.list/reviews/style.css?17761014155269*/

.reviews-section {
    padding: 110px 0;
    color: #000;
    position: relative;
    overflow: hidden;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}



.reviews-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 48px;
}


.reviews-label {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    display: block;
}

@media (min-width: 1024px) {
    .reviews-label {
        font-size: 18px;
        line-height: 133%;
    }
}

.reviews-title {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 760px;
}

.reviews-text {
    margin: 0;
    max-width: 680px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(29, 28, 28, 0.72);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.reviews-stat {
    padding: 22px 20px;
    border-radius: 22px;
    background: var(--gray-50);
}

.reviews-stat__value {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    color: #000000ff;
    margin-bottom: 10px;
}

.reviews-stat__label {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(29, 28, 28, 0.72);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: var(--gray-50);
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(16px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.review-card__person {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.review-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #000000ff;
    background: linear-gradient(135deg, #4f00ff 0%, #8f3cf5 55%, #cf73ff 100%);
}

.review-card__name {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.review-card__meta {
    font-size: 13px;
    color: rgba(255,255,255,0.56);
    line-height: 1.4;
}

.review-card__source {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 999px;

    width: 45px;
    height: 45px;
    background: #fff;
}

.review-card__source a{
    display: inline-flex;
}

.review-card__source img{
    max-width: 100%;
}

.review-card__rating {
    font-size: 18px;
    letter-spacing: 2px;
    color: #ffd76a;
    margin-bottom: 18px;
}

.review-card__content {
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 22px;
}

.review-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.review-card__tags span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255,255,255,0.72);
}

.reviews-section__bottom {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.reviews-btn {
    
}

.reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(111, 49, 228, 0.42);
}

.reviews-section + .cta.section{
    background: var(--gray-50);
}

.field--textarea textarea{
    background: #fff!important;
}
.reviews-section + .cta.section
.field input:not(:focus), 
.reviews-section + .cta.section
.field--textarea textarea:not(:focus) {
    background: #fff!important;
    border-color: #fff!important;
}

@media (max-width: 1200px) {
    .reviews-head {
        grid-template-columns: 1fr;
    }

    .reviews-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-title {
        font-size: 30px;
    }

    .reviews-text {
        font-size: 15px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-stat:last-child{
        grid-column: 1 / -1;
    }

    .reviews-stat__value{
        font-size: 16px;
    }

    .review-card {
        padding: 22px;
        border-radius: 22px;
    }

    .review-card__top {
        align-items: center;
    }

    .reviews-btn {
        width: 100%;
    }
}

.reviews-stat__sources {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.reviews-stat__sources a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	transition: .2s ease;
}

.reviews-stat__sources a:hover {
    text-decoration: none;
	border-color: rgba(0, 0, 0, 0.7);
}
/* End */
/* /local/components/custom/content.block/templates/tasks/style.css?17760232192516 */
/* /local/templates/agstudio/components/bitrix/news.list/services_list/style.css?17766279687704 */
/* /local/components/custom/content.block/templates/steps/style.css?17761179143356 */
/* /local/templates/agstudio/components/bitrix/news.list/cases/style.css?17716994423693 */
/* /local/components/custom/form/templates/phone_cta/style.css?17775518271592 */
/* /local/components/custom/content.block/templates/advantages/style.css?17760021821375 */
/* /local/templates/agstudio/components/bitrix/news.list/reviews/style.css?17761014155269 */
