/* Detailed Tech Tools for Slide 19 */
.tech-stack-detailed {
    margin-top: 40px;
}

/* Main tech categories grid */
.tech-categories-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.tech-category-detailed {
    background: var(--background-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tech-category-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--artemed-blue);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tech-icon-large {
    font-size: 48px;
    line-height: 1;
}

.tech-category-title h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.tech-category-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Tool examples */
.tool-examples {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--background-secondary);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tool-item:hover {
    background: rgba(123, 167, 204, 0.1);
    transform: translateX(4px);
}

.tool-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
    color: var(--artemed-blue);
    flex-shrink: 0;
}

.tool-info {
    flex: 1;
}

.tool-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.tool-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Bottom highlight section */
.ai-speed-highlight {
    background: linear-gradient(135deg, rgba(123, 167, 204, 0.05) 0%, rgba(123, 167, 204, 0.1) 100%);
    border: 2px solid var(--artemed-blue);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.speed-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 24px;
}

.speed-item {
    text-align: center;
}

.speed-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--artemed-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.speed-label {
    font-size: 16px;
    color: var(--text-primary);
}

/* Additional tool badges */
.tool-badges {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.tool-badge {
    font-size: 11px;
    padding: 4px 8px;
    background: rgba(123, 167, 204, 0.1);
    color: var(--artemed-blue);
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tech-categories-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .speed-metrics {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .tech-category-detailed {
        padding: 24px 20px;
    }
    
    .tech-icon-large {
        font-size: 40px;
    }
    
    .tech-category-title h4 {
        font-size: 20px;
    }
    
    .tool-item {
        padding: 10px 12px;
    }
    
    .tool-logo {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .tool-name {
        font-size: 15px;
    }
    
    .tool-description {
        font-size: 13px;
    }
    
    .speed-metrics {
        flex-direction: column;
        gap: 24px;
    }
    
    .speed-number {
        font-size: 36px;
    }
}