/* ============================================
   TABEL PERBANDINGAN PBG EXPRESS
   ============================================ */

/* Container utama */
.pbg-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

/* Header */
.pbg-header {
    padding: 20px 24px 0 24px;
}

.pbg-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2c3e;
    letter-spacing: -0.3px;
    margin: 0 0 6px 0;
}

.pbg-header p {
    color: #4a627a;
    margin-top: 6px;
    font-size: 0.95rem;
}

/* Wrapper tabel untuk scroll horizontal */
.pbg-table-wrapper {
    padding: 0 24px 24px 24px;
    overflow-x: auto;
}

/* Tabel utama */
.pbg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 480px;
}

/* Header tabel */
.pbg-table thead tr {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.pbg-table th {
    text-align: left;
    padding: 18px 16px;
    font-weight: 700;
    color: #0f3b5c;
    font-size: 1rem;
}

/* Cell tabel */
.pbg-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e9edf2;
    vertical-align: middle;
    color: #1e2f3e;
}

/* Baris terakhir tanpa border */
.pbg-table tr:last-child td {
    border-bottom: none;
}

/* Highlight kolom PBG Express (kolom ke-3) */
.pbg-table td:last-child,
.pbg-table th:last-child {
    background-color: #fefce8;
    border-left: 1px solid #fde68a;
}

/* Warna hijau untuk keunggulan */
.pbg-highlight {
    color: #15803d;
    font-weight: 700;
}

/* Badge hijau */
.pbg-badge {
    background: #dcfce7;
    color: #15803d;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 6px;
}

/* Badge emas untuk premium */
.pbg-badge-gold {
    background: #fef3c7;
    color: #b45309;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 6px;
}

/* Teks hijau tebal */
.pbg-success-text {
    color: #15803d;
    font-weight: 700;
}

/* Footer tabel */
.pbg-footer {
    padding: 12px 24px 24px 24px;
    font-size: 0.7rem;
    color: #6c86a3;
    border-top: 1px solid #eef2f8;
    margin-top: 4px;
}

/* Hover efek */
.pbg-table tbody tr:hover {
    background-color: #faf9fe;
    transition: 0.1s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .pbg-table th,
    .pbg-table td {
        padding: 12px 12px;
        font-size: 0.85rem;
    }
    .pbg-header h2 {
        font-size: 1.3rem;
    }
    .pbg-table-wrapper {
        padding: 0 16px 20px 16px;
    }
    .pbg-badge,
    .pbg-badge-gold {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

/* ============================================
   ALUR PROSES PBG EXPRESS
   Responsive - Rapi di Desktop & Mobile
   ============================================ */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
    padding: 20px;
    margin: 0;
    min-height: 100vh;
}

/* CONTAINER UTAMA */
.alur-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: transparent;
}

/* HEADER */
.alur-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 16px;
}

.alur-header h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1a2c3e 0%, #2d4a6e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.alur-header p {
    color: #4a627a;
    font-size: clamp(0.85rem, 3vw, 1rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* GRID 4 LANGKAH UTAMA - RESPONSIVE */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 16px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2c3e;
    margin-bottom: 8px;
}

.step-card p {
    color: #5b6e8c;
    font-size: 0.85rem;
    line-height: 1.45;
}

/* BAGIAN CONTOH JASA LAIN */
.other-services {
    background: white;
    border-radius: 24px;
    padding: 24px 20px;
    margin: 0 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.other-services h3 {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    font-weight: 700;
    color: #1a2c3e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.other-services h3 span {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 40px;
    font-weight: 500;
}

/* GRID CONTOH LAYANAN */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.service-item {
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px;
    border-left: 4px solid #fbbf24;
    transition: all 0.2s;
}

.service-item:hover {
    background: #fefce8;
    border-left-color: #f59e0b;
}

.service-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a2c3e;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.service-title .emoji {
    font-size: 1.2rem;
}

.service-desc {
    color: #5b6e8c;
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 12px;
}

.service-example {
    background: #e6f7e6;
    color: #15803d;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
}

.service-example.orange {
    background: #fff3e0;
    color: #c2410c;
}

.service-example.blue {
    background: #e0f2fe;
    color: #0369a1;
}

/* FOOTER PERBANDINGAN */
.compare-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.compare-badge {
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b45309;
}

.cta-text {
    color: #2d4a6e;
    font-size: 0.8rem;
    font-weight: 500;
}

/* MOBILE KHUSUS - TAMBAHAN PENYESUAIAN */
@media (max-width: 640px) {
    body {
        padding: 12px;
    }
    
    .steps-grid {
        gap: 14px;
        padding: 0 8px;
    }
    
    .step-card {
        padding: 18px 12px;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .step-card h3 {
        font-size: 1rem;
    }
    
    .step-card p {
        font-size: 0.75rem;
    }
    
    .other-services {
        padding: 18px 14px;
        margin: 0 8px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-item {
        padding: 14px;
    }
    
    .compare-note {
        flex-direction: column;
        text-align: center;
    }
}

/* TABLET (641px - 900px) */
@media (min-width: 641px) and (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP (> 900px) */
@media (min-width: 901px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}