/* ===== HERO STATISTICS COMPONENT ===== */
.hero-stats__mini-stat-icon img{
  width: 3.25em;          /* = размер шрифта родителя */
  height: 3.25em;
  object-fit: contain;
  vertical-align: middle;
}
.hero-stats {
    position: relative;
    padding: 2rem;
    overflow: hidden;

    display: flex;
    align-items: center;
    border-radius: .5rem;
    box-shadow: 4px 4px 9.9px 0px rgba(0, 0, 0, 0.25);    
    margin-bottom: 3.75rem;
}

/* ===== ЦВЕТОВЫЕ СХЕМЫ ===== */


.hero-stats--gradient {
  background: linear-gradient(145deg,rgba(24, 187, 68, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
}


.hero-stats--gradient:before {
pointer-events: none;
  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-stats--dark {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.hero-stats--light {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8efff 100%);
}

.hero-stats--blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero-stats--purple {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* ===== МАКЕТЫ ===== */
.hero-stats--reverse .row {
    flex-direction: row-reverse;
}

.hero-stats--center {
    text-align: center;
}

.hero-stats--center .hero-stats__content {
    text-align: center;
}

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

/* ===== ДЕКОРАТИВНЫЕ ЭЛЕМЕНТЫ ===== */
.hero-stats__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    pointer-events: none;
}


/* ===== АНИМАЦИИ ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes countUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

/* ===== КОНТЕНТ ===== */
.hero-stats__content {
    color: white;

    padding-left: 10px;
    padding-right: 10px;

}

.hero-stats--animated .hero-stats__content {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-stats--center.hero-stats--animated .hero-stats__content {
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-stats--light .hero-stats__content {
    color: #2d3748;
}

.hero-stats__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-stats__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-stats__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats__icon-svg {
    width: 100%;
    height: 100%;
    color: #fff;
}

.hero-stats__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats--light .hero-stats__title {
    background: linear-gradient(45deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
}

.hero-stats__subtitle::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
    border-radius: 2px;
}

.hero-stats--center .hero-stats__subtitle::after {
    left: 50%;
    transform: translateX(-50%);
}

.hero-stats__text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-stats--light .hero-stats__text {
    opacity: 0.8;
}






/* ===== СТАТИСТИКА ===== */
.hero-stats__statistics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-stats--animated .hero-stats__statistics {
    animation: slideInRight 1s ease-out 0.5s both;
}

.hero-stats__statistics--center {
    align-items: center;
    animation: slideInUp 1s ease-out 0.7s both;
}

.hero-stats__stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
}



.hero-stats__stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-stats__stat-card--center {
    max-width: 400px;
    margin: 0 auto;
}

.hero-stats--light .hero-stats__stat-card {
    background: rgba(255, 255, 255, 0.8);
    color: #2d3748;
}

.hero-stats__stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats--animated .hero-stats__stat-number {
    animation: countUp 1s ease-out 1s both;
}

.hero-stats__stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== КРУГОВОЙ ИНДИКАТОР ===== */
.hero-stats__progress-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.hero-stats__circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.hero-stats__circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.hero-stats__circle-progress {
    fill: none;
    stroke: #fff;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 170;
}

.hero-stats--animated .hero-stats__circle-progress {
    animation: drawCircle 2s ease-out 1.5s both;
}

/* ===== МИНИ-СТАТИСТИКА ===== */
.hero-stats__mini-stats {
    display: flex;
    gap: 1rem;
}

.hero-stats__mini-stats--center {
    justify-content: center;
    max-width: 600px;
}

.hero-stats__mini-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    min-width: 150px;
display: flex
;
    flex-direction: column;
    align-items: center;
}

.hero-stats__mini-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stats--light .hero-stats__mini-stat {
    background: rgba(255, 255, 255, 0.6);
    color: #2d3748;
}

.hero-stats__mini-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-stats__mini-stat-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero-stats__mini-stat-text span {
    opacity: 0.7;
    font-size: 0.75rem;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 992px) {
    .hero-stats--reverse .row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        padding: 1rem;
        min-height: auto;
    }
    
    .hero-stats__title {
        font-size: 2rem;
    }
    
    .hero-stats__subtitle {
        font-size: 1.25rem;
    }
    
    .hero-stats__text {
        font-size: 1rem;
    }
    
    .hero-stats__stat-number {
        font-size: 3rem;
    }
    
    .hero-stats__mini-stats {
        flex-direction: column;
    }
    
    .hero-stats__decoration--1,
    .hero-stats__decoration--2 {
        display: none;
    }
    
    .hero-stats__stat-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== БЕЗ АНИМАЦИЙ ===== */
.hero-stats:not(.hero-stats--animated) .hero-stats__content,
.hero-stats:not(.hero-stats--animated) .hero-stats__statistics {
    animation: none;
}

.hero-stats:not(.hero-stats--animated) .hero-stats__stat-number {
    animation: none;
}

.hero-stats:not(.hero-stats--animated) .hero-stats__circle-progress {
    animation: none;
    stroke-dashoffset: 0;
}/* ===== FUEL CONTROL COMPONENT ===== */

.fuel-control {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.fuel-control--gradient {
    background: #fff;
}

.fuel-control--dark {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.fuel-control--light {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8efff 100%);
}

.fuel-control__container {
    position: relative;
    z-index: 2;
}

/* Декоративные элементы */
.fuel-control__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.fuel-control__decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.fuel-control__decoration--1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.fuel-control__decoration--2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.fuel-control__decoration--3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

/* Анимации */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes countUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Контент */
.fuel-control__content {
    animation: slideInLeft 1s ease-out 0.3s both;
    color: white;
}

.fuel-control--light .fuel-control__content {
    color: #2d3748;
}

.fuel-control__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fuel-control__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fuel-control__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fuel-control__icon-svg {
    width: 100%;
    height: 100%;
    color: #fff;
}

.fuel-control__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fuel-control--light .fuel-control__title {
    background: linear-gradient(45deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fuel-control__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
}

.fuel-control__subtitle::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
    border-radius: 2px;
}

.fuel-control__text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.fuel-control--light .fuel-control__text {
    opacity: 0.8;
}



/* Статистика */
.fuel-control__statistics {
    animation: slideInRight 1s ease-out 0.5s both;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fuel-control__stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fuel-control__stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fff;
    border-radius: 2rem 2rem 0 0;
}

.fuel-control__stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.fuel-control--light .fuel-control__stat-card {
    background: rgba(255, 255, 255, 0.8);
    color: #2d3748;
}

.fuel-control__stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: #fff
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 1s ease-out 1s both;
}

.fuel-control__stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Круговой индикатор */
.fuel-control__progress-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.fuel-control__circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.fuel-control__circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.fuel-control__circle-progress {
    fill: none;
    stroke: #fff;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 170;
    animation: drawCircle 2s ease-out 1.5s both;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

/* Мини-статистика */
.fuel-control__mini-stats {
    display: flex;
    gap: 1rem;
}

.fuel-control__mini-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.fuel-control__mini-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.fuel-control--light .fuel-control__mini-stat {
    background: rgba(255, 255, 255, 0.6);
    color: #2d3748;
}

.fuel-control__mini-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.fuel-control__mini-stat-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
}

.fuel-control__mini-stat-text span {
    opacity: 0.7;
    font-size: 0.75rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .fuel-control {
        padding: 3rem;
        min-height: auto;
    }
    
    .fuel-control__title {
        font-size: 2rem;
    }
    
    .fuel-control__subtitle {
        font-size: 1.25rem;
    }
    
    .fuel-control__text {
        font-size: 1rem;
    }
    
    .fuel-control__stat-number {
        font-size: 3rem;
    }
    
    .fuel-control__mini-stats {
        flex-direction: column;
    }
    
    .fuel-control__decoration--1,
    .fuel-control__decoration--2 {
        display: none;
    }
}