/* =========================
   OPSDECK PAGE STYLING
========================= */

.opsdeck-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.opsdeck-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.opsdeck-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.stat-box h3 {
    font-size: 28px;
    color: #10b981;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    color: #b7c7d8;
}

.opsdeck-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.ops-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ops-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
}

.ops-card i {
    font-size: 45px;
    color: #10b981;
    margin-bottom: 25px;
    display: block;
}

.ops-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.ops-card p {
    color: #b7c7d8;
    line-height: 1.7;
    font-size: 15px;
}

.arch-container {
    background: #0f172a;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin: 60px 0;
}

.arch-container img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    margin-top: 30px;
}

/* Update atau tambahkan bagian ini */

.arch-container {
    background: #0f172a;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 30px;
    padding: 50px;
    text-align: center; /* Menengahkan teks title & p */
    margin: 60px 0;
}

/* Wrapper baru untuk memastikan gambar di tengah */
.arch-image-wrapper {
    display: flex;
    justify-content: center; /* Menengahkan secara horizontal */
    align-items: center;     /* Menengahkan secara vertikal jika ada tinggi sisa */
    width: 100%;
    margin-top: 40px;        /* Memberi jarak yang cukup dari teks di atasnya */
}

.arch-container img {
    display: block;          /* Menghilangkan whitespace default di bawah gambar */
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    /* margin: 0 auto; */    /* Tidak wajib jika sudah pakai flex di wrapper, tapi aman untuk ditambahkan */
}