/* AI Demo Section Styles */
.ai-demo-section {
    background: linear-gradient(135deg, #2d3561 0%, #5b4b8a 50%, #2d3561 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-content {
    color: white;
}

.demo-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
}

.demo-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.demo-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-demo-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-demo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-demo-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-demo-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
}

.feature-badge svg {
    flex-shrink: 0;
}

.demo-visual {
    position: relative;
}

.demo-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.demo-screenshot:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 968px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-title {
        font-size: 36px;
    }
    
    .demo-description {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .ai-demo-section {
        padding: 60px 20px;
    }
    
    .demo-title {
        font-size: 32px;
    }
    
    .demo-buttons {
        flex-direction: column;
    }
    
    .btn-demo-primary,
    .btn-demo-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .demo-features {
        gap: 12px;
    }
    
    .feature-badge {
        font-size: 14px;
    }
}
