/* agents.css - Specific to Agents Page */

.page-header {
    text-align: center;
    padding: 56px 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.agents-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.agent-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 56px;
}

.agent-profile {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--radius-xl);
    display: flex;
    gap: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.agent-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.drew-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.alex-bg {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.agent-info h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.agent-role {
    display: block;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.agent-info p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.agent-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.agent-tags span {
    padding: 4px 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.agent-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-blue);
    margin-right: 10px;
    font-weight: bold;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.integration-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.integration-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.bottom-cta {
    padding: 70px 0;
    text-align: center;
    background: #0f172a;
    color: #ffffff;
}

.bottom-cta h2 {
    font-size: 30px;
    margin-bottom: 14px;
    color: #ffffff;
}

.bottom-cta p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto 32px;
}

@media (max-width: 768px) {
    .agent-profile {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .agent-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .agent-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .agent-profile {
        padding: 24px;
    }

    .agent-avatar {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .agent-info h3 {
        font-size: 20px;
    }
}