/* AX Overview page styles */
.ax-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 980px;
    margin: 20px auto 0;
}

.ax-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,212,255,0.06);
    border-radius: 12px;
    padding: 20px;
    color: #dcdcdc;
}
.ax-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.05rem;
}
.ax-card p {
    margin: 0;
    color: #bbbbbb;
    line-height: 1.6;
}

.ax-steps {
    max-width: 920px;
    margin: 10px auto 0;
    padding-left: 0;
    list-style: none;
}
.ax-steps li {
    padding: 14px 16px;
    border-left: 4px solid rgba(0,212,255,0.12);
    margin-bottom: 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
}
.ax-steps strong { display:block; margin-bottom:6px; color:#fff; }
.ax-steps p { margin:0; color:#cfcfcf; line-height:1.6; }

.ax-example-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    max-width: 700px;
    margin: 10px auto 0;
}
.ax-example-list span {
    padding: 6px 12px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    color: #e0e0e0;
}

.ax-service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1000px;
    margin: 20px auto 0;
}
.ax-service-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0,212,255,0.04);
    border: 1px solid rgba(0,212,255,0.12);
    border-radius: 12px;
    color:#eaeaea;
    text-decoration: none;
    font-weight:600;
}

@media (max-width: 992px) {
    .ax-cards { grid-template-columns: repeat(2, 1fr); }
    .ax-service-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ax-cards { grid-template-columns: 1fr; }
    .ax-service-cards { grid-template-columns: 1fr; }
}

