/* Stats Icon Card */
.stats { position: relative; z-index: 1; }
.stats-card {
    background: var(--skin-white);
    border-radius: 12px;
    box-shadow: 0 4px 9px rgba(35,31,32,0.12);
    display: flex;
    padding: 48px 0;
}
.stats-item {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
    text-align: center;
    border-right: 2px solid rgba(35,31,32,0.1);
}
.stats-item:last-child { border-right: none; }
.stats-item img { width: 120px; height: 110px; }
.stats-number { display: flex; align-items: baseline; gap: 6px; color: var(--skin-red); font-family: var(--font-heading); font-weight: 600; }
.stats-number .big  { font-size: 56px; line-height: 68px; }
.stats-number .plus { font-size: 36px; }
.stats-label { font-size: 19px; line-height: 29px; color: var(--skin-black); }
@media (max-width: 1024px) {
	.stats-item img { height: 90px; }
}

@media (max-width: 767px) {
    .stats-card { flex-direction: column; gap: 32px; padding: 32px 0; }
    .stats-item { border-right: none; border-bottom: 2px solid rgba(35,31,32,0.1); padding-bottom: 10px; }
	.stats-item img { height: 60px; }
    .stats-item:last-child { border-bottom: none; padding-bottom: 0; }
}
