/* ============================================================
   AUTH & HALAMAN STATIS - CSS GABUNGAN
   Dipakai bersama oleh 6 halaman yang selama ini banyak
   copy-paste CSS yang sama persis:
     - auth/login.php
     - auth/register.php
     - page/faq.php
     - page/tos.php
     - page/contact.php
     - price_list/index.php

   Semua halaman ini di-load lewat landing/header.php +
   landing/footer.php, jadi file ini cukup di-link sekali di
   landing/header.php (setelah variables.css).

   UPDATE: selain CSS yang memang sama persis di banyak halaman
   (bagian 1-6 di bawah), file ini sekarang JUGA menampung CSS
   yang sebelumnya ditulis inline lewat <style> di masing-masing
   login.php / register.php / price_list/index.php / contact.php
   (bagian 7-10). Isinya TIDAK diubah sama sekali, cuma dipindah
   dari inline <style> ke sini - supaya browser cache filenya
   sekali dan tidak perlu download ulang CSS yang sama setiap
   pindah halaman. Google Fonts "Inter" juga sudah disatukan jadi
   1 link di landing/header.php, jadi @import/<link> font yang
   tadinya beda-beda tiap halaman sudah dihapus dari sana.
============================================================ */

/* ------------------------------------------------------------
   1. NAVBAR OVERRIDE
   Sama persis di keenam halaman: navbar dipaksa putih solid
   (tidak transparan seperti di landing page).
------------------------------------------------------------ */
#mp-navbar { background: rgba(255,255,255,0.98) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; }
#mp-navbar .mp-brand { color: #1e293b !important; }
#mp-navbar .mp-brand img { filter: none !important; }
#mp-navbar .navbar-toggler { color: #1e293b !important; border-color: rgba(0,0,0,0.15) !important; }
#mp-navbar .nav-menu a:not(.btn-login) { color: #475569 !important; }
#mp-navbar .nav-menu a:not(.btn-login):hover { color: #0d6efd !important; }
#mp-navbar .btn-login { background: #0d6efd !important; color: #fff !important; }
#mp-navbar .btn-login:hover { background: #0b5ed7 !important; }
@media (max-width: 991px) {
    #mp-navbar .nav-menu { background: #fff !important; box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important; }
    #mp-navbar .nav-menu a:not(.btn-login) { color: #1e293b !important; }
    #mp-navbar .nav-menu a.btn-login { background: #0d6efd !important; color: #fff !important; }
}

/* ------------------------------------------------------------
   2. BACKGROUND DOT-GRID + EFEK GLOW DEKORATIF
   Pola background titik-titik + 2 lingkaran glow biru di pojok,
   dipakai di semua "section" utama keenam halaman. Ukuran/posisi
   layout (min-height, padding, justify-content, dst) TETAP beda
   per halaman, jadi itu tetap didefinisikan lokal di masing-masing
   file (lihat komentar di tiap file).
------------------------------------------------------------ */
.login-page-section,
.saas-reg-section,
.saas-faq-section,
.saas-tos-section,
.contact-section,
.saas-price-section {
    background-color: var(--bg-canvas);
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}
.login-page-section::before,
.saas-reg-section::before,
.saas-faq-section::before,
.saas-tos-section::before,
.contact-section::before,
.saas-price-section::before {
    content: ''; position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(13,110,253,0.08) 0%, transparent 70%);
    top: -100px; left: -100px; border-radius: 50%; pointer-events: none; z-index: 0;
}
.login-page-section::after,
.saas-reg-section::after,
.saas-faq-section::after,
.saas-tos-section::after,
.contact-section::after,
.saas-price-section::after {
    content: ''; position: absolute; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(13,110,253,0.06) 0%, transparent 70%);
    bottom: -50px; right: -50px; border-radius: 50%; pointer-events: none; z-index: 0;
}

/* ------------------------------------------------------------
   3. TOMBOL WHATSAPP FLOATING
   Sama persis di: register, faq, tos, price_list.
   (contact.php TIDAK pakai ini - dia punya tombol WA sendiri
   yang nempel di dalam card, bukan floating.)
------------------------------------------------------------ */
.wa-floating-btn {
    position: fixed; bottom: 25px; right: 25px;
    background-color: #25d366; color: #ffffff;
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    z-index: 9999; text-decoration: none; transition: transform 0.2s;
}
.wa-floating-btn:hover { transform: scale(1.05); background-color: #20ba5a; color: white; }

/* ------------------------------------------------------------
   4. KARTU "CARD" DASAR
   Sama persis di: register (.saas-card), price_list (.saas-card).
   Bedanya cuma padding vertikal - price_list sedikit lebih rapat,
   makanya di-override khusus lewat parent section-nya.
------------------------------------------------------------ */
.saas-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.05);
    padding: 40px 32px;
    border: 1px solid #f1f5f9;
}
.saas-price-section .saas-card {
    padding: 30px 32px;
}

/* ------------------------------------------------------------
   5. STYLING KONTEN DARI DATABASE (faq.php & tos.php)
   Kedua halaman ini nampilin konten dari database via nl2br(),
   jadi perlu styling tag-tag umum yang mungkin muncul (p, strong,
   heading, list, link, hr, table). Class-nya beda prefix
   (saas-faq-card-content / saas-tos-card-content) tapi isinya
   sama persis.
------------------------------------------------------------ */
.saas-faq-card-content,
.saas-tos-card-content {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.8;
}
.saas-faq-card-content p,
.saas-tos-card-content p {
    margin: 0 0 16px 0;
}
.saas-faq-card-content p:last-child,
.saas-tos-card-content p:last-child {
    margin-bottom: 0;
}
.saas-faq-card-content strong, .saas-faq-card-content b,
.saas-tos-card-content strong, .saas-tos-card-content b {
    color: var(--text-heading);
    font-weight: 700;
}
.saas-faq-card-content h2, .saas-faq-card-content h3, .saas-faq-card-content h4,
.saas-tos-card-content h2, .saas-tos-card-content h3, .saas-tos-card-content h4 {
    color: var(--text-heading);
    margin: 28px 0 12px 0;
    font-weight: 700;
}
.saas-faq-card-content h2, .saas-tos-card-content h2 { font-size: 20px; }
.saas-faq-card-content h3, .saas-tos-card-content h3 { font-size: 17px; }
.saas-faq-card-content h4, .saas-tos-card-content h4 { font-size: 15px; }
.saas-faq-card-content ul, .saas-faq-card-content ol,
.saas-tos-card-content ul, .saas-tos-card-content ol {
    padding-left: 24px;
    margin: 0 0 16px 0;
}
.saas-faq-card-content li,
.saas-tos-card-content li {
    margin-bottom: 6px;
}
.saas-faq-card-content a,
.saas-tos-card-content a {
    color: var(--mp-primary);
    text-decoration: none;
    font-weight: 500;
}
.saas-faq-card-content a:hover,
.saas-tos-card-content a:hover {
    text-decoration: underline;
}
.saas-faq-card-content hr,
.saas-tos-card-content hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 24px 0;
}
.saas-faq-card-content table,
.saas-tos-card-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13.5px;
}
.saas-faq-card-content table th, .saas-faq-card-content table td,
.saas-tos-card-content table th, .saas-tos-card-content table td {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.saas-faq-card-content table th,
.saas-tos-card-content table th {
    background: #f8fafc;
    font-weight: 700;
    color: var(--text-heading);
}

/* ------------------------------------------------------------
   6. HEADER HALAMAN (ikon + judul) - faq.php, tos.php, price_list
   Pola: ikon bulat + h1 + paragraf deskripsi, sama persis di 3
   halaman ini (class prefix beda: faq-icon/tos-icon/price-icon,
   tapi propertinya sama).
------------------------------------------------------------ */
.saas-faq-header .faq-icon,
.saas-tos-header .tos-icon,
.saas-price-header .price-icon {
    width: 64px; height: 64px;
    background: rgba(13,110,253,0.1);
    color: var(--mp-primary);
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
}
.saas-faq-header h1, .saas-tos-header h1, .saas-price-header h1 {
    font-size: 32px; font-weight: 800;
    color: var(--text-heading);
    margin: 0 0 10px 0;
    line-height: 1.2; letter-spacing: -0.5px;
}
.saas-faq-header h1 span, .saas-tos-header h1 span, .saas-price-header h1 span { color: var(--mp-primary); }
.saas-faq-header p, .saas-tos-header p, .saas-price-header p {
    font-size: 15px; color: var(--text-body);
    margin: 0 auto; line-height: 1.6; max-width: 600px;
}


/* ------------------------------------------------------------
   7. LOGIN.PHP - LAYOUT & KOMPONEN FORM KHUSUS
------------------------------------------------------------ */
:root {
    /* --mp-primary/--mp-primary-hover, warna teks & bg sudah datang dari
       assets/css/variables.css. Sisa 2 ini khusus dipakai di login.php saja. */
    --mp-white: #ffffff;
    --mp-border: #e2e8f0;
}

/* Navbar override & background dot-grid+glow sudah pindah ke
   assets/css/auth-pages.css. Di sini cukup override layout yang
   beda dari halaman lain (login full 100vh, tanpa gap). */
.login-page-section {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 120px 20px 60px 20px;
}
.login-wrapper { width: 100%; max-width: 440px; position: relative; z-index: 10; margin: 0 auto; }
.login-card {
    background: var(--mp-white); border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8); padding: 45px 40px; position: relative;
}
.login-brand { text-align: center; margin-bottom: 35px; }
.login-brand h2 { font-size: 26px; font-weight: 800; color: var(--text-heading); letter-spacing: -0.5px; margin-bottom: 8px; }
.login-brand p { font-size: 14.5px; color: var(--text-body); }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-heading); margin-bottom: 8px; }
.input-box { position: relative; }
.input-box .fa-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 15px; transition: 0.3s; pointer-events: none; }
.input-box .eye-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 15px; cursor: pointer; transition: 0.2s; border: none; background: none; padding: 0; }
.input-box .eye-icon:hover { color: var(--mp-primary); }
.form-control-saas {
    width: 100%; padding: 14px 16px 14px 44px; border: 1.5px solid var(--mp-border);
    border-radius: 12px; font-size: 14.5px; font-weight: 500; color: var(--text-heading);
    background: var(--mp-white); outline: none; transition: all 0.2s ease;
}
.form-control-saas:focus { border-color: var(--mp-primary); box-shadow: 0 0 0 4px rgba(13,110,253,0.12); }

.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.remember-checkbox { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-body); cursor: pointer; user-select: none; }
.remember-checkbox input[type="checkbox"] { width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--mp-border); accent-color: var(--mp-primary); cursor: pointer; margin: 0; }
.forgot-link { font-size: 13.5px; font-weight: 600; color: var(--mp-primary); text-decoration: none; transition: 0.2s; }
.forgot-link:hover { color: var(--mp-primary-hover); text-decoration: underline; }

.btn-submit-saas {
    width: 100%; background: var(--mp-primary); color: var(--mp-white); border: none; padding: 15px;
    border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer;
    box-shadow: 0 4px 12px rgba(13,110,253,0.25);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-submit-saas:hover { background: var(--mp-primary-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13,110,253,0.3); }

.alert-wrapper { padding: 14px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.alert-danger-custom { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success-custom { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert-wrapper i { margin-top: 2px; font-size: 16px; }

.login-footer { margin-top: 30px; text-align: center; font-size: 14px; color: var(--text-body); border-top: 1px solid var(--mp-border); padding-top: 25px; line-height: 1.8; }
.login-footer a { color: var(--mp-primary); font-weight: 600; text-decoration: none; }
.login-footer a:hover { text-decoration: underline; }
.copyright-text { margin-top: 15px; font-size: 12px; color: #94a3b8; }

@media (max-width: 575px) {
    .login-card { padding: 35px 25px; }
    .login-page-section { padding-top: 100px; }
}

/* ------------------------------------------------------------
   8. REGISTER.PHP - LAYOUT & KOMPONEN FORM KHUSUS
------------------------------------------------------------ */
/* Navbar override, background dot-grid+glow, .saas-card dasar, dan
   .wa-floating-btn sudah pindah ke assets/css/auth-pages.css.
   Di sini cukup override layout unik register.php. */
.saas-reg-section {
    min-height: calc(100vh - 200px);
    padding: 120px 20px 60px 20px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 50px;
}
.saas-reg-container, .saas-reg-price-preview { position: relative; z-index: 10; }
.saas-reg-container { max-width: 1100px; width: 100%; display: flex; gap: 60px; align-items: center; }

.saas-benefits-col { flex: 1.1; }
.saas-benefits-col h1 { font-size: 36px; font-weight: 800; color: var(--text-heading); margin-bottom: 16px; line-height: 1.2; letter-spacing: -1px; }
.saas-benefits-col h1 span { color: var(--mp-primary); }
.saas-benefits-col > p { font-size: 16px; color: var(--text-body); margin-bottom: 25px; line-height: 1.6; }

.saas-promo-box { display: inline-flex; align-items: center; background: #ffffff; border: 2px solid var(--mp-primary); border-radius: 12px; padding: 14px 24px; margin-bottom: 35px; position: relative; box-shadow: 0 8px 20px rgba(13,110,253,0.15); }
.promo-badge { position: absolute; top: -12px; left: 20px; background: #ef4444; color: #ffffff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px; }
.promo-content { display: flex; flex-direction: column; }
.promo-text { font-size: 13px; font-weight: 600; color: var(--text-body); margin-bottom: 4px; }
.promo-prices { display: flex; align-items: center; gap: 12px; }
.old-price { font-size: 17px; color: #94a3b8; text-decoration: line-through; font-weight: 500; }
.new-price { font-size: 28px; font-weight: 800; color: var(--mp-primary); line-height: 1; }

.benefit-list { display: flex; flex-direction: column; gap: 20px; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; }
.benefit-icon { width: 48px; height: 48px; background: rgba(13,110,253,0.1); color: var(--mp-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.benefit-text h4 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin: 0 0 4px 0; }
.benefit-text p { font-size: 14px; color: var(--text-body); margin: 0; line-height: 1.5; }

.saas-form-col { flex: 0.9; }
.saas-card h2 { font-size: 22px; font-weight: 700; color: var(--text-heading); margin-top: 0; margin-bottom: 25px; text-align: center; }

.saas-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.saas-form-group { display: flex; flex-direction: column; }
.saas-form-group.full-width { grid-column: span 2; }
.saas-label { font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 8px; }
.saas-input-wrapper { position: relative; }
.saas-input-wrapper i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 15px; }
.saas-input { width: 100%; padding: 12px 16px 12px 40px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 14px; color: #0f172a; transition: all 0.2s ease; box-sizing: border-box; }
.saas-input:focus { outline: none; background: #ffffff; border-color: var(--mp-primary); box-shadow: 0 0 0 4px rgba(13,110,253,0.1); }

.saas-btn { grid-column: span 2; background: var(--mp-primary); color: #ffffff; border: none; padding: 14px; border-radius: 10px; font-size: 14.5px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s ease; box-shadow: 0 4px 12px rgba(13,110,253,0.2); margin-top: 10px; }
.saas-btn:hover { background: var(--mp-primary-hover); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(13,110,253,0.3); }

.saas-footer { grid-column: span 2; text-align: center; margin-top: 15px; font-size: 13.5px; color: #64748b; }
.saas-footer a { color: var(--mp-primary); font-weight: 600; text-decoration: none; }
.saas-footer a:hover { text-decoration: underline; }

.saas-alert { grid-column: span 2; padding: 12px 16px; border-radius: 10px; font-size: 13.5px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.saas-alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.saas-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

.saas-reg-price-preview { max-width: 1100px; width: 100%; border-top: 1px dashed #cbd5e1; padding-top: 40px; margin-bottom: 20px; }
.price-section-title { text-align: center; margin-bottom: 30px; }
.price-section-title h3 { font-size: 22px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.price-section-title p { font-size: 14px; color: var(--text-body); margin: 0; }

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.price-card { background: #ffffff; border-radius: 16px; padding: 20px; border: 1px solid #e2e8f0; box-shadow: 0 4px 10px rgba(0,0,0,0.02); display: flex; align-items: center; gap: 16px; transition: transform 0.2s, box-shadow 0.2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.platform-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.icon-instagram { background: rgba(225,48,108,0.1); color: #e1306c; }
.icon-tiktok { background: rgba(0,0,0,0.08); color: #000000; }
.icon-youtube { background: rgba(255,0,0,0.1); color: #ff0000; }
.icon-facebook { background: rgba(24,119,242,0.1); color: #1877f2; }

.price-info h5 { font-size: 15px; font-weight: 700; color: var(--text-heading); margin: 0 0 3px 0; }
.price-info p { font-size: 13px; color: var(--text-body); margin: 0; }
.price-info .tag-price { display: inline-block; margin-top: 5px; font-size: 12px; font-weight: 700; color: #166534; background: #f0fdf4; padding: 2px 8px; border-radius: 6px; }

@media (max-width: 991px) {
    .saas-reg-section { padding-top: 100px; padding-bottom: 40px; gap: 35px; }
    .saas-reg-container { flex-direction: column; gap: 40px; }
    .saas-form-grid { grid-template-columns: 1fr; }
    .saas-form-group { grid-column: span 2; }
    .saas-promo-box { width: 100%; justify-content: center; }
}

/* ------------------------------------------------------------
   9. PRICE_LIST/INDEX.PHP - LAYOUT & TABEL HARGA KHUSUS
   (font Inter sekarang dimuat sekali lewat landing/header.php,
   jadi @import font di halaman ini sudah dihapus)
------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Navbar override, background dot-grid+glow, .saas-card dasar
   (padding di-override lewat auth-pages.css via .saas-price-section
   .saas-card), dan .wa-floating-btn sudah pindah ke
   assets/css/auth-pages.css. Di sini cukup override layout unik
   price_list. */
.saas-price-section {
    background-position: 0 0;
    min-height: calc(100vh - 200px);
    padding: 120px 20px 60px 20px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
}

/* ========== CONTAINER ========== */
.saas-price-container {
    position: relative; z-index: 10;
    max-width: 1100px; width: 100%;
}

/* ========== HEADER HALAMAN ========== */
.saas-price-header {
    text-align: center; margin-bottom: 30px;
}

/* ========== JUDUL CARD ========== */
.saas-header {
    font-size: 18px; font-weight: 700; color: var(--text-heading);
    margin: 0 0 25px 0; display: flex; align-items: center; gap: 10px;
    padding-bottom: 16px; border-bottom: 1px solid #f1f5f9;
    letter-spacing: -0.3px;
}
.saas-header i { color: var(--mp-primary); font-size: 18px; }

/* ========== FORM FILTER ========== */
.filter-form { margin-bottom: 24px; }
.filter-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.filter-group { display: flex; flex-direction: column; }
.filter-label { font-size: 13px; font-weight: 600; color: var(--text-heading); margin-bottom: 6px; }
.filter-input {
    width: 100%; padding: 11px 14px; background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 10px; font-size: 13.5px; color: #0f172a; transition: all 0.2s ease; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
.filter-input:focus { outline: none; background: #ffffff; border-color: var(--mp-primary); box-shadow: 0 0 0 4px rgba(13,110,253,0.1); }
select.filter-input {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 14px;
    padding-right: 32px; cursor: pointer;
}
.btn-filter {
    background: var(--mp-primary); border: none; border-radius: 10px;
    color: #ffffff; font-weight: 600; font-size: 13.5px; font-family: 'Inter', sans-serif;
    height: 44px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s ease; box-shadow: 0 4px 12px rgba(13,110,253,0.2); cursor: pointer; white-space: nowrap;
}
.btn-filter:hover { background: var(--mp-primary-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(13,110,253,0.3); }

/* ========== TABEL HARGA ========== */
.table-responsive { overflow-x: auto; }
.saas-table { width: 100%; border-collapse: collapse; }
.saas-table thead th {
    text-align: left; padding: 12px 14px; font-size: 11px; text-transform: uppercase;
    color: #94a3b8; border-bottom: 1px solid #e2e8f0; background: #f8fafc;
    font-weight: 700; letter-spacing: 0.8px;
}
.saas-table tbody td {
    padding: 14px 14px; font-size: 13.5px; color: var(--text-heading);
    border-bottom: 1px solid #f1f5f9; vertical-align: middle; line-height: 1.5;
}
.saas-table tbody tr:hover { background-color: #f8fafc; }

/* ========== BADGES ========== */
.badge-id {
    background: rgba(13,110,253,0.08); color: var(--mp-primary);
    padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600;
    border: 1px solid rgba(13,110,253,0.12);
}
.badge-price {
    background: rgba(13,110,253,0.08); color: var(--mp-primary);
    font-weight: 700; padding: 5px 12px; border-radius: 8px; font-size: 13px;
    border: 1px solid rgba(13,110,253,0.12); display: inline-block;
}

/* ========== PAGINASI ========== */
.pagination { display: flex; padding-left: 0; list-style: none; border-radius: 10px; gap: 6px; margin-top: 24px; justify-content: center; }
.page-item .page-link {
    border: 1px solid #e2e8f0 !important; border-radius: 8px !important;
    color: var(--text-heading) !important; background-color: #ffffff !important;
    padding: 8px 14px !important; font-size: 13px !important; font-weight: 600 !important;
    transition: all 0.2s ease !important; text-decoration: none;
}
.page-item.active .page-link {
    background-color: var(--mp-primary) !important; border-color: var(--mp-primary) !important;
    color: #ffffff !important; box-shadow: 0 4px 10px rgba(13,110,253,0.15) !important;
}
.page-item .page-link:hover { background-color: #f8fafc !important; border-color: #cbd5e1 !important; }

/* ========== RESPONSIF MOBILE ========== */
@media (max-width: 991px) {
    .saas-price-section { padding-top: 100px; padding-bottom: 40px; }
    .saas-price-header h1 { font-size: 26px; }
    .saas-card { padding: 20px 16px; }
    .filter-row { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   10. PAGE/CONTACT.PHP - LAYOUT & KOMPONEN KONTAK KHUSUS
------------------------------------------------------------ */
/* Navbar override & background dot-grid+glow sudah pindah ke
   assets/css/auth-pages.css. Di sini cukup override layout unik
   contact.php (bukan .wa-floating-btn - contact pakai .btn-wa
   sendiri yang nempel di dalam card). */
.contact-section {
    min-height: 100vh;
    padding: 120px 20px 70px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-wrapper {
    width: 100%;
    max-width: 960px;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ===== KOLOM KIRI ===== */
.contact-info-col { flex: 1; }

.contact-info-col h1 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 14px;
}
.contact-info-col h1 span { color: var(--mp-primary); }
.contact-info-col > p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}
.ci-blue   { background: rgba(13,110,253,0.1);  color: #0d6efd; }
.ci-green  { background: rgba(37,211,102,0.1);  color: #25d366; }
.ci-orange { background: rgba(245,158,11,0.1);  color: #f59e0b; }
.ci-pink   { background: rgba(225,48,108,0.1);  color: #e1306c; }

.contact-item-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 4px 0;
}
.contact-item-text p {
    font-size: 13.5px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}
.contact-item-text a {
    color: var(--mp-primary);
    font-weight: 600;
    text-decoration: none;
}
.contact-item-text a:hover { text-decoration: underline; }

/* ===== KOLOM KANAN ===== */
.contact-card-col { flex: 1; }

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    padding: 36px 32px;
}

.contact-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}
.contact-card-head .head-icon {
    width: 44px; height: 44px;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.contact-card-head h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}
.contact-card-head p {
    font-size: 13px;
    color: var(--text-body);
    margin: 3px 0 0 0;
}

.db-content {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 2;
}

.contact-divider {
    border: none;
    border-top: 1px dashed #e2e8f0;
    margin: 22px 0;
}

.btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px;
    background: #25d366;
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37,211,102,0.25);
    margin-top: 22px;
}
.btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    color: #fff;
}

.card-footer-note {
    text-align: center;
    margin-top: 16px;
    font-size: 12.5px;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .contact-wrapper { flex-direction: column; gap: 35px; }
    .contact-section { padding-top: 100px; justify-content: flex-start; }
}
