/* Demo Page Animated Icons */

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.benefit-icon .animated-icon {
    width: 40px;
    height: 40px;
}

/* Hover effects for benefit items */
.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.benefit-item:hover .animated-icon {
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.2));
}

/* Ensure proper spacing */
.benefit-content {
    flex: 1;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(99, 102, 241, 0.05);
}

/* Form note lock icon */
.form-note {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.form-note svg {
    margin-right: 8px;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon .animated-icon {
        width: 32px;
        height: 32px;
    }
}