
.jnled-roi-container {
    margin: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.roi-calculator-trigger {
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e8 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 2px solid #e8f5e8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.roi-calculator-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #3d6b2a;
}

.trigger-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.trigger-content h3 {
    color: #3d6b2a;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.trigger-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.roi-trigger-btn {
    background: linear-gradient(135deg, #3d6b2a 0%, #2d5220 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.roi-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(61, 107, 42, 0.4);
}

.btn-icon {
    font-size: 1.1rem;
}

.quick-benefits {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-item {
    color: #3d6b2a;
    font-size: 0.95rem;
    font-weight: 500;
}

.roi-quick-link {
    display: inline-block;
    margin-top: 10px;
    color: #3d6b2a !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.roi-quick-link:hover {
    opacity: 0.8;
}

/* Loading State */
.loading-state {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e8f5e8;
    border-top: 4px solid #3d6b2a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #3d6b2a;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Error State */
.error-state {
    background: #fff5f5;
    border: 2px solid #fed7d7;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #c53030;
}

.error-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.retry-btn {
    background: #c53030;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.retry-btn:hover {
    background: #9c2626;
}

/* Responsive */
@media (max-width: 768px) {
    .roi-calculator-trigger {
        padding: 30px 20px;
    }
    
    .trigger-content h3 {
        font-size: 1.5rem;
    }
    
    .trigger-content p {
        font-size: 1rem;
    }
    
    .roi-trigger-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .quick-benefits {
        flex-direction: column;
        gap: 10px;
    }
}
        