/* Battery Life Section Styles */
.battery-life {
    padding: 80px 0;
    background-color: #fff;
}

.accent-color {
    color: #00C08B;
    font-size: 32px;
    font-weight: 700;
}

.battery-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.battery-item {
    width: 1064px;
    height: 211px;
    border: 1px solid #BABCC1;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
}

.solum-logo-container {
    width: 144px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 36px;
    flex-shrink: 0;
}

.competitor-logo-container {
    width: 144px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 36px;
    flex-shrink: 0;
}

.competitor-logo-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
    text-align: center;
}

.battery-chart-group {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    height: 171px;
}

.battery-chart {
    width: 824px;
    height: 171px;
    object-fit: contain;
}

.chart-labels {
    position: absolute;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 100px;
    z-index: 10;
}

.label-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 4px;
}

.label-icon {
    width: 20px;
    height: 20px;
    border-radius: 2px;
}

.blue-label .label-icon {
    background: #002040;
}

.red-label .label-icon {
    background: #E62832;
}

.label-text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.battery-benefits {
    margin-top: 40px;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #FAFAFA;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    flex: 1;
    max-width: 350px;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon img {
    filter: hue-rotate(150deg) saturate(2);
}

.benefit-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #00C08B;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1200px) {
    .battery-comparison {
        align-items: center;
        gap: 30px;
    }
    
    .battery-item {
        width: 100%;
        max-width: 800px;
        height: auto;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .solum-logo-container,
    .competitor-logo-container {
        margin-left: 0;
        width: 100%;
    }
    
    .battery-chart-group {
        width: 100%;
        height: auto;
    }
    
    .battery-chart {
        width: 100%;
        height: auto;
        max-width: 600px;
    }
    
    .chart-labels {
        position: relative;
        top: 10px;
        left: auto;
        transform: none;
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .battery-item {
        max-width: 100%;
        padding: 15px;
    }
    
    .battery-chart {
        max-width: 100%;
    }
    
    .chart-labels {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
