/* ===== AI BUSINESS IMPACT SECTION ===== */
.ai-business-impact {
    padding: var(--section-padding);
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.ai-business-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.01) 0%, transparent 70%);
    pointer-events: none;
}

.impact-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Layout */
.impact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Left Side - Visual */
.impact-visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.business-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 24px;
}

.business-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.business-image:hover .business-photo {
    transform: scale(1.05);
}

/* Chart */
.impact-chart {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px 20px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.chart-title {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
}

.chart-container {
    position: relative;
    display: flex;
    align-items: end;
    height: 180px;
    margin-bottom: 20px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    height: 100%;
    margin-right: 16px;
    padding-top: 20px;
}

.chart-y-axis span {
    color: var(--text-primary);
    font-size: 0.8rem;
    line-height: 1;
    font-weight: 500;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 16px;
    flex: 1;
    height: 100%;
    padding-top: 20px;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.bar-fill {
    width: 100%;
    max-width: 45px;
    border-radius: 4px 4px 0 0;
    transition: all var(--transition-medium);
    position: relative;
    margin-bottom: 12px;
}

.bar-fill.blue {
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.bar-fill.purple {
    background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 100%);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.bar-fill.purple-light {
    background: linear-gradient(180deg, #c084fc 0%, #a855f7 100%);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}

.bar-fill.teal {
    background: linear-gradient(180deg, #2dd4bf 0%, #14b8a6 100%);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.bar-label {
    color: var(--text-primary);
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
    width: 80px;
    max-width: 80px;
}

.chart-bar:hover .bar-fill {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chart-source {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-align: center;
    font-style: italic;
    margin-top: 8px;
    font-weight: 500;
}

/* Right Side - Statistics */
.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stats-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
}

.stat-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-accent);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.stat-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.highlight-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.stats-cta {
    text-align: center;
    margin-top: 16px;
}

/* Chart Animation */
.impact-visual.visible .bar-fill {
    animation: barGrow 1.2s ease-out forwards;
}

@keyframes barGrow {
    from {
        height: 0%;
    }
    to {
        height: var(--target-height, 50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .impact-layout {
        gap: 40px;
    }
    
    .chart-bars {
        gap: 12px;
    }
    
    .bar-label {
        font-size: 0.65rem;
        width: 50px;
    }
}

@media (max-width: 768px) {
    .ai-business-impact {
        padding: 80px 0;
    }
    
    .impact-header {
        margin-bottom: 40px;
    }
    
    .impact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-visual {
        order: 2;
        align-items: stretch;
    }
    
    .business-image {
        width: 100%;
        aspect-ratio: 16/9;
        margin-bottom: 20px;
    }
    
    .impact-chart {
        width: 100%;
    }
    
    .impact-stats {
        order: 1;
        gap: 24px;
    }
    
    .stats-cta {
        margin-top: 16px;
    }
    
    .chart-container {
        height: 140px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .impact-title {
        font-size: 1.75rem;
    }
    
    .stats-intro {
        font-size: 1rem;
    }
    
    .business-image {
        width: 100%;
        aspect-ratio: 16/9;
        margin-bottom: 16px;
    }
    
    .impact-chart {
        width: 100%;
        padding: 18px;
    }
    
    .chart-container {
        height: 120px;
    }
    
    .chart-bars {
        gap: 8px;
    }
    
    .bar-label {
        font-size: 0.65rem;
        width: 50px;
    }
    
    .stat-card {
        padding: 14px;
        gap: 12px;
    }
    
    .stat-highlight {
        padding: 16px;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .demo-btn {
        width: 100%;
        padding: 16px 24px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .bar-fill {
        transition: none;
    }
    
    .impact-visual.visible .bar-fill {
        animation: none;
    }
    
    .business-photo {
        transition: none;
    }
    
    .business-image:hover .business-photo {
        transform: none;
    }
}