/* AI Technology Section */
.ai-highlight-card {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-stats {
    margin-top: 2rem;
}

.ai-stat-item {
    text-align: center;
    padding: 1rem;
}

.ai-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color, #2D7EBD);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ai-stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.ai-tech-grid {
    display: grid;
    gap: 1rem;
}

.ai-tech-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(45, 126, 189, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(45, 126, 189, 0.1);
    transition: all 0.3s ease;
}

.ai-tech-item:hover {
    background: rgba(45, 126, 189, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 126, 189, 0.1);
}

.ai-tech-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color, #2D7EBD);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.ai-tech-content h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #333;
}

.ai-tech-content small {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* 반응형 */
@media (max-width: 768px) {
    .ai-highlight-card {
        padding: 2rem 1.5rem;
    }

    .ai-tech-item {
        padding: 0.75rem;
    }

    .ai-tech-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .ai-stat-number {
        font-size: 1.75rem;
    }
}