.project-top{
	padding: 45px 70px 30px;
	background: var(--light-blue-color);
	box-shadow: var(--shadow-inset);
	border-radius: var(--border-radius-xl);
	margin-bottom: 40px;
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out;
}

.project-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	pointer-events: none;
}
.project-top__head{
	display: flex;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-light);
	border-radius: var(--border-radius-md);
	font-weight: 600;
	font-size: var(--font-size-xs);
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.project-top__head li:nth-child(1){
	width: calc(28.8% - 45px);
	padding: 0 0 0 45px;
	margin-left: 35px;
}
.project-top__head li:nth-child(2){
	width: 66px;
	text-align: center;
}
.project-top__head li:nth-child(3){
	width: calc(21.5% - 50px);
	text-align: center;
}
.project-top__item{
	display: flex;
	align-items: center;
	padding: 24px 20px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-card);
	position: relative;
	border-radius: var(--border-radius-lg);
	margin-bottom: 18px;
	transition: all var(--transition-normal);
	transform: translateY(0);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: fadeInUp 0.6s ease-out;
	backface-visibility: hidden;
	will-change: transform;
}

/* Анимации появления с задержкой для топ-10 */
.project-top__item:nth-child(1) { animation-delay: 0.1s; }
.project-top__item:nth-child(2) { animation-delay: 0.2s; }
.project-top__item:nth-child(3) { animation-delay: 0.3s; }
.project-top__item:nth-child(4) { animation-delay: 0.4s; }
.project-top__item:nth-child(5) { animation-delay: 0.5s; }
.project-top__item:nth-child(6) { animation-delay: 0.6s; }
.project-top__item:nth-child(7) { animation-delay: 0.7s; }
.project-top__item:nth-child(8) { animation-delay: 0.8s; }
.project-top__item:nth-child(9) { animation-delay: 0.9s; }
.project-top__item:nth-child(10) { animation-delay: 1.0s; }

.project-top__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	background: rgba(255, 255, 255, 0.98);
	z-index: 10;
}
.project-top__item:after{
	content: '';
	display: block;
	height: 50px;
	border-radius: 10px;
	background: linear-gradient(104.12deg, rgba(255, 255, 255, 0.48) 10.05%, rgba(255, 255, 255, 0.126) 89.95%);
	box-shadow: 0px 0px 50px -25px rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(100px);
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: -5px;
	clip-path: polygon(0 calc(100% - 5px), 100% calc(100% - 5px), 100% 100%, 0 100%);
	opacity: 0.6;
}
.project-top__col-1{
	width: 35px;
	padding-right: 10px;
}
.project-top__col-2{
	display: flex;
	align-items: center;
	width: calc(28.8% - 35px);
	padding-right: 30px;
}
.project-top__col-3{
	width: 50px;
}
.project-top__col-4{
	width: calc(21.5% - 50px);
	padding: 0 20px 0 30px;
}
.project-top__col-5{
	width: 22%;
}
.project-top__col-6{
	display: flex;
	width: 27.7%;
	padding-left: 13px;
}
.project-top__number{
	font-family: 'Tomorrow';
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	background: var(--gradient-warning);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all var(--transition-fast);
}

.project-top__item:hover .project-top__number {
	transform: scale(1.1);
}
.project-top__image{
	width: 35px;
	height: 35px;
	flex-shrink: 0;
	margin-right: 15px;
	transition: all var(--transition-normal);
}

.project-top__image img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: var(--shadow-light);
	transition: all var(--transition-normal);
}

.project-top__item:hover .project-top__image img {
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.project-top__image img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.project-top__name{
	font-weight: 700;
	font-size: var(--font-size-xl);
	line-height: 1.3;
	color: var(--text-primary);
}

.project-top__name a{
	text-decoration: none;
	color: inherit;
	transition: all var(--transition-fast);
}

.project-top__name a:hover {
	color: var(--blue-title-color);
	transform: translateX(2px);
}
.project-top__rating{
	width: 56px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--gradient-success);
	box-shadow: var(--shadow-button);
	border-radius: 50%;
	font-family: 'Tomorrow';
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	text-align: center;
	color: #fff;
	position: relative;
	transition: all var(--transition-normal);
}

.project-top__item:hover .project-top__rating {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}
.project-top__rating:before{
	content: '';
	display: block;
	border: 2px solid#EEF1F3;
	border-radius: 50%;
	position: absolute;
	top: -5px;
	right: -5px;
	bottom: -5px;
	left: -5px;
	pointer-events: none;
}
.project-top__rating:after{
	content: '';
	display: block;
	border: 1.68015px solid rgba(231,234,236,0.3);
	border-radius: 50%;
	position: absolute;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
	pointer-events: none;
}
.project-top__status {
	font-weight: 700;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
	color: #616E77;
	transition: all var(--transition-normal);
	animation: fadeInUp 0.6s ease-out;
}

.project-top__item:hover .project-top__status {
	color: var(--blue-title-color);
	transform: scale(1.05);
}
.project-top__list{
	font-size: 14px;
	line-height: 16px;
	color: rgba(17 17 17 / 90%);
	animation: fadeInUp 0.6s ease-out;
	animation-delay: 0.2s;
}

.project-top__item:hover .project-top__list {
	color: var(--text-primary);
}
.project-top__list li{
	position: relative;
	padding-left: 22px;
	margin-bottom: 14px;
	transition: all var(--transition-normal);
}

.project-top__list li:hover {
	transform: translateX(3px);
	color: var(--blue-title-color);
}
.project-top__list li:last-child{
	margin-bottom: 0;
}
.project-top__list li:before{
	content: '';
	display: block;
	width: 11px;
	height: 8px;
	background: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.73609 7.84288L0.161085 4.35628C-0.0536949 4.14681 -0.0536949 3.80718 0.161085 3.59769L0.938884 2.8391C1.15366 2.62961 1.50193 2.62961 1.71671 2.8391L4.125 5.18782L9.28329 0.157101C9.49807 -0.0523671 9.84634 -0.0523671 10.0611 0.157101L10.8389 0.915689C11.0537 1.12516 11.0537 1.46479 10.8389 1.67428L4.51391 7.8429C4.29911 8.05237 3.95087 8.05237 3.73609 7.84288Z' fill='%23437B94'/%3E%3C/svg%3E%0A") no-repeat 0 0 / 100% auto;
	position: absolute;
	top: 4px;
	left: 0;
}
.project-top__reviews{
	width: 50%;
	padding-right: 8px;
}
.project-top__reviews a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0 16px;
	background: var(--gradient-primary);
	box-shadow: var(--shadow-button);
	border-radius: var(--border-radius-md);
	font-weight: 600;
	font-size: var(--font-size-sm);
	line-height: 1.2;
	color: #fff;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.project-top__reviews a:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left var(--transition-slow);
}

.project-top__reviews a:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.project-top__reviews a:hover:before {
	left: 100%;
}
.project-top__reviews a span{
	display: block;
	font-family: 'Tomorrow';
	font-weight: 500;
	font-size: 11px;
	line-height: 20px;
	position: relative;
	margin-left: 15px;
}
.project-top__reviews a span:before{
	content: '';
	display: block;
	background: linear-gradient(104.12deg, rgba(255, 255, 255, 0.48) 10.05%, rgba(255, 255, 255, 0.126) 89.95%);
	opacity: 0.5;
	border-radius: 50%;
	position: absolute;
	top: -3px;
	right: -3px;
	bottom: -3px;
	left: -3px;
}
.project-top__reviews a i{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: relative;
	width: 26px;
	height: 26px;
	background: var(--blue-title-color);
}
.project-top__social{
	width: 50%;
	padding: 0 5px 0 13px;
}
.project-top__social span{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0 10px;
	background: linear-gradient(135deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	box-shadow: var(--shadow-button);
	border-radius: var(--border-radius-md);
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.project-top__social span:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left var(--transition-slow);
}

.project-top__social span:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(67, 123, 148, 0.4);
}

.project-top__social span:hover:before {
	left: 100%;
}
.project-top__social span i{
	display: block;
	line-height: 0;
	margin-left: 10px;
}

.project-top__social span i svg{
	fill: #fff;
}
.project-top__item_profit .project-top__rating{
	background: linear-gradient(126.67deg, #437B94 17.09%, #32ABA4 86.89%);
	box-shadow: inset 0px 0px 10px rgba(21, 57, 79, 0.15);
	color: #fff;
}
.project-top__item_profit .project-top__rating:before{
	border: 2px solid rgba(50,171,164,0.2);
}
.project-top__item_profit .project-top__rating:after{
	border: 2px solid rgba(50,171,164,0.05);
}
.project-top__item_profit .project-top__status{
	color: #32ABA4;
}


/* Responsive
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 1310px){
	.project-top {
		padding: 45px 30px 30px;
	}
}
@media only screen and (max-width: 1190px){
	
}
@media (min-width:992px) and (max-width:1025px){
    .project-top__col-2 {
    width: calc(28.8% - 50px);
    padding-right: 15px;
}
.project-top__item {
    padding: 20px 5px;
}

.project-top__col-4 {
    width: calc(21.5% - 42px);
}

.project-top__head li:nth-child(1) {
    width: calc(28.8% - 55px);
}
}
@media only screen and (max-width: 992px){
	.project-top{
		padding: 15px 15px 10px;
		margin: 0 -15px;
		border-radius: 0;
	}
	.project-top__head{
		display: none;
	}
	.project-top__container{
		margin: 0 14px;
	}
	.project-top__col-1{
		order: 1;
		padding: 0 0 0 6px;
	}
	.project-top__col-2{
		width: 100%;
		order: 3;
		padding: 8px 80px 12px 0;
	}
	.project-top__col-3{
		position: absolute;
		top: 30px;
		right: 25px;
	}
	.project-top__col-4{
		width: calc(100% - 35px);
		order: 2;
		padding: 1px 70px 0 5px;
	}
	.project-top__col-5{
		width: 100%;
		order: 4;
	}
	.project-top__col-6{
		width: 100%;
		padding: 0;
		order: 5;
	}
	.project-top__item{
		width: 425px;
		max-width: 100%;
		flex-wrap: wrap;
		padding: 9px 15px 16px;
		box-shadow: inset 0px 0px 10px rgba(21, 57, 79, 0.1);
		margin: 0 auto 15px;
	}
	.project-top__number{
		transform: translateY(-2px);
	}
	.project-top__status{
		text-align: left;
	}
	.project-top__image{
		margin: 2px 11px 0 0;
	}
	.project-top__name{
		font-size: 21px;
		line-height: 30px;
	}
	.project-top__list {
		font-size: 17px;
		line-height: 25px;
		margin-bottom: 13px;
	}
	.project-top__list li{
		margin-bottom: 0;
	}
	.project-top__list li:before{
		top: 10px;
		left: 1px;
	}
	.project-top__reviews{
		width: 50%;
		padding-right: 5px;
	}
	.project-top__reviews a{
		height: 44px;
	}
	.project-top__reviews a span{
		margin-left: 14px;
	}
	.project-top__social{
		padding: 0 5px;
	}
	.project-top__social span{
		height: 44px;
		box-shadow: 0px 5px 10px rgba(6, 6, 6, 0.2);
	}
	





	


	
}
@media only screen and (max-width: 767px){
	
}
@media only screen and (max-width: 640px){
	
}
@media only screen and (max-width: 480px){
	
}
@media only screen and (max-width: 411px){
	.project-top__container{
		margin: 0;
	}
	.project-top__col-2{
		padding: 5px 80px 12px 0;
	}
	.project-top__item{
		padding: 9px 10px 16px 15px;
	}
	.project-top__image{
		margin: 5px 11px 0 0;
	}
	.project-top__reviews {
		padding-right: 8px;
	}
	
	
	
}
@media only screen and (max-width: 383px){
	.project-top__item{
		padding: 9px 10px 16px 15px;
	}
	.project-top__col-3{
		right: 20px;
	}
	.project-top__name {
		font-size: 20px;
		line-height: 28px;
	}
	.project-top__list {
		font-size: 16px;
	}
	.project-top__reviews {
		padding-right: 10px;
	}
	
}
@media only screen and (max-width: 359px){
	.project-top__container{
		margin: 0 -5px;
	}
	.project-top__item{
		padding: 9px 5px 16px 10px;
	}
	.project-top__name{
		font-size: 19px;
		line-height: 30px;
	}
	.project-top__image {
		margin: 5px 10px 0 0;
	}
	.project-top__list li{
		padding-left: 26px;
	}
	.project-top__list li:before{
		top: 9px;
		left: 5px;
	}
	.project-top__reviews{
		padding-right: 8px;
	}
}

/* Современные анимации для топ-10 проектов 2025 года */
@keyframes slideInTopItem {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInTopItem {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Улучшенные переходы для мобильных устройств */
@media (hover: none) {
	.project-top__item:hover {
		transform: none;
	}
	
	.project-top__item:hover .project-top__image img {
		transform: none;
	}
	
	.project-top__item:hover .project-top__number {
		transform: none;
	}
	
	.project-top__item:hover .project-top__rating {
		transform: none;
	}
	
	.project-top__item:hover .project-top__status {
		transform: none;
	}
	
	.project-top__list li:hover {
		transform: none;
	}
	
	.project-top__social span:hover {
		transform: none;
	}
	
	.project-top__reviews a:hover {
		transform: none;
	}
}

/* Анимации появления элементов */
.project-top__item {
	animation: fadeInTopItem 0.6s ease-out;
}

.project-top__item:nth-child(1) { animation-delay: 0.1s; }
.project-top__item:nth-child(2) { animation-delay: 0.2s; }
.project-top__item:nth-child(3) { animation-delay: 0.3s; }
.project-top__item:nth-child(4) { animation-delay: 0.4s; }
.project-top__item:nth-child(5) { animation-delay: 0.5s; }

.project-top__number {
	animation: slideInTopItem 0.4s ease-out;
}

.project-top__rating {
	animation: slideInTopItem 0.4s ease-out 0.2s both;
}

/* Hover эффекты для интерактивности */
.project-top__item {
	backface-visibility: hidden;
	will-change: transform;
}

.project-top__item:hover {
	z-index: 10;
}

/* Улучшенные переходы для мобильных устройств */
@media (hover: none) {
	.project-top__item:hover {
		transform: none;
	}
	
	.project-top__item:hover .project-top__number {
		transform: none;
	}
	
	.project-top__item:hover .project-top__rating {
		transform: none;
	}
	
	.project-top__item:hover .project-top__image img {
		transform: none;
	}
	
	.project-top__reviews a:hover {
		transform: none;
	}
}
