/* assets/css/pages/ai.css */

/* Page Header Styles moved to global.css */
/* Section Typography moved to global.css */


.reveal h2,
.reveal h3 {
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

/* --- Feature Lists --- */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: "•";
    color: var(--brand-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    top: -4px;
}

/* --- Step List (How it works) --- */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item h4 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* --- Process Diagram (Visual Placeholder) --- */
.process-diagram {
    background: var(--bg-alt);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.process-diagram-title {
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    opacity: 0.9;
}

.process-node {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 99px;
    box-shadow: var(--shadow-sm);
    width: 80%;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--border);
}

.process-connector {
    width: 2px;
    height: 16px;
    background: var(--brand-primary);
    opacity: 0.5;
}

.process-node.final {
    background: var(--brand-primary);
    color: var(--white);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

/* --- Impact Cards --- */
.impact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.impact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--brand-accent);
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.impact-card h4 {
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.impact-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Alternate Background --- */
/* --- Alternate Background --- */
.alt-bg {
    background-color: #F8FAFC;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    background-image: linear-gradient(rgba(248, 250, 252, 0.8), rgba(248, 250, 252, 0.8)), url('../../images/ai-neural.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-node {
        width: 100%;
    }
}