/* AI Automation page */
.automation-hero .rag-hero-title {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

.automation-flow-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 20px 0 0;
    font-size: 0.9rem;
    color: #999999;
}

.automation-flow-hint span {
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 999px;
    color: #cccccc;
}

.automation-flow-hint i {
    font-size: 0.7rem;
    color: rgba(0, 212, 255, 0.5);
}

.automation-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
}

.automation-examples span {
    padding: 12px 18px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 999px;
    font-size: 0.9rem;
    color: #dddddd;
}

.automation-process {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 4px;
    max-width: 1100px;
    margin: 0 auto;
}

.automation-process-step {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 140px;
    padding: 16px 12px;
    text-align: center;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
}

.automation-process-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(102, 126, 234, 0.6);
    margin-bottom: 6px;
}

.automation-process-step p {
    margin: 0;
    font-size: 0.82rem;
    color: #cccccc;
    line-height: 1.4;
}

.automation-process-arrow {
    color: rgba(0, 212, 255, 0.45);
    font-size: 0.75rem;
    padding: 0 2px;
}

.automation-pricing-summary {
    max-width: 480px;
    margin: 0 auto 28px;
}

.automation-pricing-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin-bottom: 10px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 12px;
}

.automation-pricing-line strong {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.automation-pricing-line span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #00d4ff;
    white-space: nowrap;
}

.automation-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .automation-process {
        flex-direction: column;
        gap: 10px;
    }

    .automation-process-arrow {
        transform: rotate(90deg);
    }

    .automation-process-step {
        max-width: 100%;
        width: 100%;
    }
}
