.hero-stats__mini-stat-icon {
    max-width: 100px !important;

}

/* ===== HERO FEATURES COMPONENT ===== */
.hero-features__icon-img {
    width: 3.5em;
    height: 3.5em;
    object-fit: contain;
    vertical-align: middle;
}
.hero-features {
    position: relative;
    padding: 2rem;
    overflow: hidden;
    border-radius: .5rem;
    box-shadow: 4px 4px 9.9px 0px rgba(0, 0, 0, 0.25);    
    margin-bottom: 3.75rem;
} 


/* ===== ЦВЕТОВЫЕ СХЕМЫ ===== */
.hero-features--light {
    background: #fff;
    color: #2d3748;
}

.hero-features--dark {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #f7fafc;
}
.hero-features--gradient:before {
  content: "";
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 182px;
  opacity: 0.15;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-features--gradient {
    background: linear-gradient(145deg,rgba(24, 187, 68, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
}

.hero-features--minimal {
    background: #ffffff;
    color: #374151;
}

.hero-features__container {
    position: relative;
    z-index: 2;
}

.hero-features--light .hero-features__list-item {
background: linear-gradient(145deg,rgba(24, 187, 68, 1) 0%, rgba(0, 0, 0, 0.8) 100%);

}
.hero-features--light .hero-features__list-title {

    color: #fff;
}

.hero-features--light .hero-features__list-icon {

    background: rgba(255, 255, 255, 0.2);
}
/* ===== ЗАГОЛОВОК ===== */
.hero-features__header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-features__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-features--gradient .hero-features__title {
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features__subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-features--gradient .hero-features__subtitle {
    color: #fff;
}

.hero-features--dark .hero-features__subtitle {
    color: #fff;
}

.hero-features__description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== СЕТКА КАРТОЧЕК ===== */
.hero-features__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Настройка количества карточек в ряду */
.hero-features[data-cards-per-row="2"] .hero-features__grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.hero-features[data-cards-per-row="3"] .hero-features__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.hero-features[data-cards-per-row="4"] .hero-features__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Сетка 2x3 */
.hero-features--grid .hero-features__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

/* Масонри */
.hero-features--masonry .hero-features__grid {
    column-count: 3;
    column-gap: 2rem;
}

.hero-features--masonry .hero-features__card {
    break-inside: avoid;
    margin-bottom: 2rem;
}

/* ===== КАРТОЧКИ ===== */
.hero-features__card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.hero-features--light .hero-features__card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-features--dark .hero-features__card {
    background: rgba(45, 55, 72, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-features--minimal .hero-features__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-features--gradient .hero-features__card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Hover эффекты для карточек */
.hero-features--hover .hero-features__card:hover {
    transform: translateY(-10px) scale(1.02);
}

.hero-features--light.hero-features--hover .hero-features__card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-features--dark.hero-features--hover .hero-features__card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-features--gradient.hero-features--hover .hero-features__card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ===== ИКОНКИ ===== */
.hero-features__card-icon {
    margin-bottom: 1.5rem;
}

.hero-features__icon-wrapper {
    position: relative;
    display: inline-block;
}

.hero-features__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
 
    border-radius: 50%;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-features--gradient .hero-features__icon {
    background: #18bb44;
}

.hero-features--minimal .hero-features__icon {
    background: #18bb44;
}


  .hero-features__icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(243, 111, 32, 0.9);
    box-shadow: 4px 4px 9.9px 0px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    opacity: 1 !important;
    z-index: -1 !important;
}

.hero-features__icon-pulse {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
}

.hero-features--animated .hero-features__icon-pulse {
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ===== КОНТЕНТ КАРТОЧЕК ===== */
.hero-features__card-content {
    position: relative;
    z-index: 2;
}

.hero-features__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: inherit;
}

.hero-features__card-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* ===== ДЕКОРАТИВНЫЕ ЭЛЕМЕНТЫ ===== */
.hero-features__card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1));
    border-radius: 0 1.5rem 0 1.5rem;
}

/* ===== СПИСОК (АЛЬТЕРНАТИВНЫЙ МАКЕТ) ===== */
.hero-features__list {
    max-width: 800px;
    margin: 0 auto;
}

.hero-features__list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid  #18bb44;
}

.hero-features--dark .hero-features__list-item {
    background: rgba(45, 55, 72, 0.8);
    border-left-color:   #18bb44;
}

.hero-features--gradient .hero-features__list-item {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #18bb44;
}

.hero-features--hover .hero-features__list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-features__list-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background:  #18bb44;
    border-radius: 50%;
    color: white;
}

.hero-features--gradient .hero-features__list-icon {
    background:  #18bb44;
}

.hero-features__list-content {
    flex: 1;
}

.hero-features__list-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: inherit;
}

.hero-features__list-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* ===== АНИМАЦИИ ПОЯВЛЕНИЯ ===== */
.hero-features--animated .hero-features__card,
.hero-features--animated .hero-features__list-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.hero-features--animated .hero-features__card:nth-child(1),
.hero-features--animated .hero-features__list-item:nth-child(1) { animation-delay: 0.1s; }
.hero-features--animated .hero-features__card:nth-child(2),
.hero-features--animated .hero-features__list-item:nth-child(2) { animation-delay: 0.2s; }
.hero-features--animated .hero-features__card:nth-child(3),
.hero-features--animated .hero-features__list-item:nth-child(3) { animation-delay: 0.3s; }
.hero-features--animated .hero-features__card:nth-child(4),
.hero-features--animated .hero-features__list-item:nth-child(4) { animation-delay: 0.4s; }
.hero-features--animated .hero-features__card:nth-child(5),
.hero-features--animated .hero-features__list-item:nth-child(5) { animation-delay: 0.5s; }
.hero-features--animated .hero-features__card:nth-child(6),
.hero-features--animated .hero-features__list-item:nth-child(6) { animation-delay: 0.6s; }
.hero-features--animated .hero-features__card:nth-child(7),
.hero-features--animated .hero-features__list-item:nth-child(7) { animation-delay: 0.7s; }
.hero-features--animated .hero-features__card:nth-child(8),
.hero-features--animated .hero-features__list-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ИЗОБРАЖЕНИЕ СНИЗУ ===== */
.hero-features__bottom-image {
    position: relative;
    text-align: center;
    margin-top: 4rem;
}

.hero-features__image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-features--gradient .hero-features__image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-features__image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background:  #18bb44;
    border-radius: 1.5rem;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

/* ===== CTA СЕКЦИЯ ===== */
.hero-features__cta-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-features--dark .hero-features__cta-section,
.hero-features--gradient .hero-features__cta-section {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.hero-features__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background:  #18bb44;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-features--gradient .hero-features__cta {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.hero-features__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-features__cta:hover::before {
    left: 100%;
}

.hero-features__cta:hover {
    transform: translateY(-3px) scale(1.05);
   
    text-decoration: none;
    color: white;
}

.hero-features--gradient .hero-features__cta:hover {
    color: #1f2937;
}

.hero-features__cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-features__cta:hover .hero-features__cta-arrow {
    transform: translateX(5px);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .hero-features[data-cards-per-row="4"] .hero-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-features--grid .hero-features__grid,
    .hero-features--masonry .hero-features__grid {
        grid-template-columns: repeat(2, 1fr);
        column-count: 2;
    }
    
    .hero-features[data-cards-per-row="4"] .hero-features__grid,
    .hero-features[data-cards-per-row="3"] .hero-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

.hero-stats__mini-stat-icon {
    margin: 30px;
    max-width: 100px !important;
}
 .hero-features[data-cards-per-row="4"] .hero-features__grid,
    .hero-features[data-cards-per-row="3"] .hero-features__grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .hero-features {
        padding: 3rem;
    }
    
    .hero-features__header {
        margin-bottom: 3rem;
    }
    
    .hero-features__title {
        font-size: 2rem;
    }
    
    .hero-features__subtitle {
        font-size: 1.125rem;
    }
    
    .hero-features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-features--grid .hero-features__grid,
    .hero-features--masonry .hero-features__grid {
        grid-template-columns: 1fr;
        column-count: 1;
    }
    
    .hero-features__card {
        padding: 1.5rem;
    }
    
    .hero-features__icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .hero-features__list-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-features__list-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-features__card {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .hero-features__icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .hero-features__card-title {
        font-size: 1.125rem;
    }
    
    .hero-features__card-text {
        font-size: 0.875rem;
    }
}