/* ===== БЛОК "О КОМПАНИИ" ===== */
.about-company {
	background: #fff;
	border-radius: 24px;
	padding: 20px;
	margin-bottom: 20px;
}

.about-company__content {
	display: flex;
	flex-direction: column;
}

.about-company__text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
}

.about-company__text p {
	margin-bottom: 20px;
}

.about-company__text p:last-child {
	margin-bottom: 0;
}

.about-company__text strong {
	font-weight: 700;
	color: #0855E5;
}

/* ===== НАШИ ПРЕИМУЩЕСТВА ===== */
.advantages-about {
	background: #fff;
	border-radius: 24px;
	padding: 20px;
	margin-bottom: 20px;
}

.advantages-about__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 10px;
}

.advantage-about-card {
	background: #f2f4f5;
	border-radius: 20px;
	padding: 24px 20px;
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
	height: 100%;
}

.advantage-about-card__icon {
	width: 64px;
	height: 64px;
	background: #fff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.advantage-about-card__icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	transition: all 0.3s ease;
}

.advantage-about-card__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 12px;
	color: var(--text);
}

.advantage-about-card__desc {
	font-size: 14px;
	line-height: 1.5;
	color: #65717f;
	margin: 0;
}

/* ===== МИССИЯ И ЦЕННОСТИ ===== */
.mission-values {
	background: #fff;
	border-radius: 24px;
	padding: 20px;
	margin-bottom: 20px;
}

.mission-values__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.mission-block {
	background: linear-gradient(135deg, #0855E5 0%, #0A4DCC 100%);
	border-radius: 24px;
	padding: 20px;
	color: #fff;
}

.mission-block .section__title {
	color: #fff;
	margin-bottom: 20px;
}

.mission-block__content p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.mission-block__content p:last-child {
	margin-bottom: 0;
}

.mission-block__content strong {
	font-weight: 700;
}

.values-block {
	background: #f2f4f5;
	border-radius: 24px;
	padding: 30px;
}

.values-block .section__title {
	margin-bottom: 20px;
}

.values-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.values-list__item {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text);
	padding-left: 28px;
	position: relative;
}

.values-list__item::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #0855E5;
	font-weight: 700;
	font-size: 18px;
}

.values-list__item strong {
	font-weight: 700;
	color: #0855E5;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ КОМАНДЫ ===== */
.team {
	background: #fff;
}

.team__content {
	width: 100%;
}

.team__subtitle {
	font-size: 16px;
	color: #65717f;
	margin-bottom: 30px;
	text-align: center;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ОТЗЫВОВ ===== */
.foto-clients {
	background: #fff;
}

.foto-clients-gallery__desc {
	font-size: 14px;
	line-height: 1.5;
	color: #65717f;
	margin-top: 8px;
}

/* ===== СТАТИСТИКА / ЦИФРЫ ===== */
.stats-section {
	background: #fff;
	border-radius: 24px;
	padding: 20px;
	margin-bottom: 20px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 20px;
}

.stat-card {
	text-align: center;
	padding: 30px 20px;
	background: #f2f4f5;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
	font-size: 42px;
	font-weight: 800;
	color: #0855E5;
	line-height: 1;
	margin-bottom: 12px;
}

.stat-label {
	font-size: 14px;
	color: #65717f;
	line-height: 1.4;
}

/* ===== ОТЗЫВЫ (КАРУСЕЛЬ) ===== */
.foto-clients__wrap {
	position: relative;
}

.swiper {
	overflow: hidden;
	padding-bottom: 40px;
}

.foto-clients__swiper-wrapper {
	display: flex;
}

.foto-clients-gallery__card {
	padding: 10px;
}

.foto-clients-gallery__name {
	font-size: 18px;
	font-weight: 600;
	margin-top: 12px;
	margin-bottom: 4px;
}

.foto-clients-gallery__date {
	font-size: 12px;
	color: #8996a3;
	display: block;
	margin-bottom: 8px;
}

.foto-clients-gallery__desc {
	font-size: 14px;
	line-height: 1.5;
	color: #65717f;
	margin-top: 8px;
}

.foto-clients__pagination {
	position: relative;
	bottom: 0;
	margin-top: 20px;
}

.foto-clients__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #cbd5e1;
	opacity: 1;
}

.foto-clients__pagination .swiper-pagination-bullet-active {
	background: #0855E5;
	width: 24px;
	border-radius: 4px;
}

/* ===== КНОПКИ ===== */

.traid-in__button {
	background: #0855E5;
}

.traid-in__button:hover {
	background: #0A4DCC;
	transform: translateY(-2px);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
	.advantages-about__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.mission-values__grid {
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.advantages-about__grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.mission-values__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.mission-block,
	.values-block {
		padding: 25px 20px;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.stat-card {
		padding: 20px 15px;
	}
	
	.stat-number {
		font-size: 32px;
	}
	
	.stat-label {
		font-size: 12px;
	}
	
	.question__wrap {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.question__item__heading {
		font-size: 16px;
	}
	
	.question__item__header {
		padding: 15px 60px 15px 15px;
	}
	
	.about-company__text {
		font-size: 15px;
	}
	
	.values-list__item {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.advantage-about-card {
		padding: 20px 16px;
	}
	
	.advantage-about-card__title {
		font-size: 16px;
	}
	
	.advantage-about-card__desc {
		font-size: 13px;
	}
	
	.mission-block .section__title,
	.values-block .section__title {
		font-size: 22px;
	}
	
	.mission-block__content p,
	.values-list__item {
		font-size: 14px;
	}
	
	.stat-number {
		font-size: 28px;
	}
}

@media (max-width: 375px) {
	.about-company__text {
		font-size: 14px;
	}
	
	.section {
		padding-inline: 15px;
	}
}