/* NEWTON Features Styles - Updated to match JSON horizontal layout */
.newton-features {
    padding: 80px 0;
}

/* Ensure initial animation trigger */
.newton-features [data-animation-direction] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.newton-features [data-animation-direction].animate-from-bottom,
.newton-features [data-animation-direction].animation-from-bottom {
    opacity: 1;
    transform: translateY(0);
}

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

.newton-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.newton-row {
    display: flex;
    width: 100%;
    height: 176px;
    background: transparent;
}

.newton-avatar {
    width: 197px;
    height: 176px;
    background: #BABCC1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newton-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.newton-avatar h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0;
}

.newton-text {
    flex: 1;
    height: 176px;
    background: #FAFAFA;
    padding: 35.5px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
}

.newton-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.newton-bullet {
    color: #00C08B;
    font-weight: bold;
    margin-top: 2px;
    min-width: 16px;
}

.newton-highlight {
    width: 305px;
    height: 176px;
    background: #00C08B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    flex-shrink: 0;
}

.newton-highlight h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
    line-height: 1.2;
}

.newton-highlight h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.2;
}

.newton-highlight p {
    font-size: 18px;
    margin: 4px 0 0 0;
    color: #000;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 1200px) {
    .newton-row {
        flex-direction: column;
        height: auto;
    }
    
    .newton-avatar {
        width: 100%;
        height: 140px;
    }
    
    .newton-text {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .newton-highlight {
        width: 100%;
        height: 140px;
        padding: 20px;
    }
}
