@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* ==========================================================================
   1. RESET & VARIABLE UTAMA (FONDASI)
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
    font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
}
.header-spacer{
    padding-top: 6rem;
}
.header{
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px 0 10px 0;
    background-color: #fff;
}
.header.fixed{
    position: fixed;
    top: 0;
    left: 0;
}
.header-container{
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.homeUrl{
    text-decoration: none;
    transition: ease-in-out 0.5s;
}
.header-brand{
    width: auto;
    height: 40px;
}
.nav-menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.nav-item{
    display: inline-block;
}
.nav-link{
    text-decoration: none;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 5px;
    transition: ease-in-out 0.3s;
}
.nav-link.active,
.nav-link:hover{
    color: #EE5447;
    border-bottom: 2px solid #EE5447;
}
.menu_open{
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid #EE5447;
    cursor: pointer;
}
.menu_open i{
    font-size: 14px;
    color: #EE5447;
}


/* ==========================================================================
   Home Page Css
========================================================================== */
.homepage-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.hero-intro {
    text-align: center;
    margin-bottom: 45px;
}
.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.75px;
    margin-bottom: 12px;
    line-height: 1.3;
}
.hero-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}
.main-content-area {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
.main-tool-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 2px 4px -2px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.main-tool-card:hover {
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.06);
}
.tool-card-body {
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.tool-icon-circle {
    min-width: 64px;
    height: 64px;
    background-color: #fff1f0;
    color: #EE5447;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid #fee2e2;
}
.tool-info-text {
    flex: 1;
}
.tool-badge {
    display: inline-block;
    background-color: #fef2f2;
    color: #EE5447;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    border: 1px solid #fee2e2;
}
.tool-info-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.tool-info-text p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
}
.tool-card-footer {
    background-color: #fafafa;
    border-top: 1px solid #f1f5f9;
    padding: 20px 32px;
    text-align: right;
}
.btn-launch-tool {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #EE5447;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.2s;
}
.btn-launch-tool:hover {
    background-color: #d44337;
}

/* GRID LAYOUT UNTUK BARIS QR TOOLS */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.secondary-tool-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column; /* Ditumpuk ke bawah agar ruang teks lega */
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
}
.sec-tool-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.sec-icon {
    font-size: 22px;
    color: #EE5447;
    background: #fdf2f2;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fee2e2;
}
.sec-info {
    flex: 1;
}
.sec-info h3 {
    font-size: 16px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 6px;
}
.sec-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}
.sec-tool-bottom {
    text-align: right;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}
.btn-sec-tool {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background-color: #f8fafc;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s;
}
.btn-sec-tool:hover {
    background-color: #ffebe9;
    color: #EE5447;
    border-color: #fca5a5;
}

/* STYLE ARTIKEL SEO HOMEPAGE */
.homepage-seo-article {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
}
.article-body {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.75;
}
.article-body h2 { font-size: 19px; color: #0f172a; margin: 24px 0 10px 0; font-weight: 700; }
.article-body h3 { font-size: 16px; color: #0f172a; margin: 20px 0 8px 0; font-weight: 600; }
.article-body p { margin-bottom: 12px; }
.article-body ul { margin-bottom: 14px; padding-left: 20px; }
.article-body li { margin-bottom: 4px; }

/* STYLE SECTION LOOP BLOG */
.home-blog-section {
    margin-top: 60px;
    border-top: 1px solid #e2e8f0;
    padding-top: 50px;
}
.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}
.blog-section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.blog-section-header p {
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}
.btn-view-all-blog {
    color: #EE5447;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.btn-view-all-blog:hover {
    color: #d44337;
}
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
    transition: all 0.2s ease-in-out;
}
.blog-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.04);
}
.blog-card-thumb {
    width: 100%;
    height: 160px;
    background-color: #f1f5f9;
}
.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 24px;
}
.blog-card-content {
    padding: 20px;
}
.blog-card-date {
    font-size: 11.5px;
    color: #94a3b8;
    display: block;
    margin-bottom: 6px;
}
.blog-card-content h3 {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.blog-card-content h3 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-content h3 a:hover {
    color: #EE5447;
}
.blog-card-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}


/* ==========================================================================
   13. STYLE HALAMAN LIST SUB-TOOLS CONVERTER
   ========================================================================== */
   .tools-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Membentuk 3 kolom sejajar yang rapi */
    gap: 24px;
    width: 100%;
}

.sub-tool-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sub-tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05);
}

.sub-tool-body {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sub-tool-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background-color: #fef2f2; /* Tint merah tipis */
    color: #EE5447; /* Coral andalan */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid #fee2e2;
}

.sub-tool-info {
    flex: 1;
}

.sub-tool-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.4;
}

.sub-tool-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.sub-tool-footer {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
    padding: 14px 24px;
    text-align: right;
}

.btn-open-subtool {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

/* Hover tombol meluncurkan alat */
.sub-tool-card:hover .btn-open-subtool {
    color: #EE5447; /* Otomatis teks footer berubah menjadi coral saat card di-hover */
}

.btn-open-subtool i {
    font-size: 11px;
    transition: transform 0.2s;
}

.sub-tool-card:hover .btn-open-subtool i {
    transform: translateX(3px); /* Efek panah maju sedikit */
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .tools-list-grid {
        grid-template-columns: repeat(2, 1fr); /* Menjadi 2 kolom di tablet */
    }
}

@media (max-width: 600px) {
    .tools-list-grid {
        grid-template-columns: 1fr; /* 1 Kolom vertikal penuh di layar HP */
        gap: 16px;
    }
}

/* ==========================================================================
   14. WORKSPACE UPLOAD DROPZONE
   ========================================================================== */
   .upload-dropzone {
    width: 100%;
    background: #fff8f7; /* Pancaran coral tipis super soft */
    border: 2px dashed #fca5a5; /* Garis putus-putus pembatas */
    border-radius: 12px;
    padding: 40px 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.upload-dropzone:hover {
    background: #fff1f0;
    border-color: #EE5447;
}
.dropzone-inside h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}
.dropzone-inside p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
}
.badge-target-format {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-target-format strong {
    color: #EE5447;
}
/* ==========================================================================
   15. STYLE WORKSPACE PREVIEW & DRAG OVER STATE
   ========================================================================== */
/* Efek saat gambar diseret tepat di atas dropzone area */
.upload-dropzone.drag-active {
    background: #ffebe9;
    border-color: #EE5447;
    transform: scale(0.99);
}

/* Container Pembungkus Preview List */
.preview-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}
.preview-header h4 {
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}
.preview-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.preview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 8px;
}
.pv-file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pv-img-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
}
.pv-text {
    display: flex;
    flex-direction: column;
}
.pv-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pv-size {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 1px;
}
.pv-status-badge {
    background: #f0fdf4;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid #bbf7d0;
}






/* ==========================================================================
   5. RESPONSIVE MOBILE & TABLET (MAX-WIDTH: 768px)
   ========================================================================== */
   @media (max-width: 768px) {
    /* Tampilkan tombol hamburger menu */
    .menu_open {
        display: flex; /* Mengaktifkan tombol dari state 'none' desktop */
    }

    /* Ubah navigasi menu menjadi melayang drop-down di bawah header */
    .nav-menu {
        position: absolute;
        top: 100%; /* Pas di bawah batas header */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-top: 1px solid #f1f5f9;
        border-bottom: 2px solid #e2e8f0;
        padding: 15px 20px;
        flex-direction: column; /* Menu berjejer vertikal ke bawah */
        align-items: flex-start; /* Teks menu rata kiri */
        gap: 1.2rem;
        
        /* State Awal: Sembunyikan menu & kunci animasi transisi */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    /* Setiap item menu mengambil lebar penuh */
    .nav-item {
        width: 100%;
    }

    /* Link menu disesuaikan agar nyaman di-tap jari pada layar HP */
    .nav-link {
        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 15px; /* Sedikit diperbesar agar ramah mobile */
    }

    /* Modifikasi border bottom aktif di mobile agar tidak memanjang aneh */
    .nav-link.active,
    .nav-link:hover {
        border-bottom: none;
        color: #EE5447;
        padding-left: 8px;
        border-left: 3px solid #EE5447; /* Berubah jadi border kiri vertikal */
    }

    /* STATE AKTIF (TRIGGER JAVASCRIPT): Ketika menu dibuka admin/user */
    .nav-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}




/* ==========================================================================
   11. STYLE FOOTER FRONTEND (PREMIUM DARK SLATE)
   ========================================================================== */
   .site-footer {
    width: 100%;
    background-color: #0f172a; /* Slate 900 */
    border-top: 1px solid #1e293b;
    padding: 60px 0 0 0; /* Padding bawah di-set 0 karena ditutup footer-bottom */
    margin-top: 80px;
    color: #94a3b8;
    display: block;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px 20px; /* Jarak aman sebelum menyentuh baris hitam */
    display: block;
}
.footer-container::after {
    content: "";
    display: table;
    clear: both;
}

.footer-brand-block {
    width: 50%;
    float: left;
    display: block;
}
.footer-brand-img {
    height: 38px;
    width: auto;
    display: block;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 420px;
}

.footer-nav-block {
    width: 35%;
    float: right;
    display: block;
}
.footer-widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f1f5f9;
    letter-spacing: 0.75px;
    margin-bottom: 20px;
}
.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu-list li {
    margin-bottom: 12px;
}
.footer-link {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}
.footer-link:hover {
    color: #EE5447;
    transform: translateX(4px);
}

/* BARU: CSS UNTUK BARIS HAK CIPTA PALING BAWAH (BG HITAM) */
.footer-bottom {
    width: 100%;
    background-color: #020617; /* Hitam pekat / Jet Black */
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    display: block;
}
.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; /* Teks copyright otomatis rata tengah */
}
.footer-copyright {
    font-size: 13px;
    color: #64748b; /* Slate 500 */
    margin: 0;
}
.footer-copyright a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-copyright a:hover {
    color: #EE5447; /* Menyala coral khas Silohon */
}

/* RESPONSIVE TABLET & MOBILE */
@media (max-width: 768px) {
    .footer-brand-block,
    .footer-nav-block {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .footer-nav-block {
        margin-bottom: 0;
    }
    .footer-link:hover {
        transform: none;
    }
}

/* ==========================================================================
   12. STYLE HALAMAN ERROR 404 (NOT FOUND)
   ========================================================================== */
   .error-404-wrapper {
    width: 100%;
    min-height: 65vh; /* Memastikan halaman cukup tinggi agar footer terdorong ke bawah */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.error-404-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    display: block;
}

/* GAYA VISUAL ANGKA */
.error-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.error-code {
    font-size: 110px;
    font-weight: 900;
    color: #0f172a; /* Slate 900 */
    line-height: 1;
    letter-spacing: -4px;
    margin: 0;
}

.error-code span {
    color: #EE5447; /* Warna coral andalanmu */
}

/* Animasi Ikon Melayang Halus */
.error-icon-bounce {
    font-size: 32px;
    color: #EE5447;
    margin-top: -10px;
    margin-bottom: 15px;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* KONTEN TEKS */
.error-text-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.error-text-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 35px auto;
}

/* TOMBOL AKSI ACCORDION */
.btn-error-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #EE5447;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(238, 84, 71, 0.2);
    transition: all 0.2s ease-in-out;
}

.btn-error-primary:hover {
    background-color: #d44337;
    box-shadow: 0 10px 15px -3px rgba(238, 84, 71, 0.3);
    transform: translateY(-1px);
}

/* LINK REKOMENDASI DI BAWAH */
.error-suggested-links {
    margin-top: 40px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 25px;
}

.error-suggested-links p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 500;
}

.suggested-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.suggested-buttons a {
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.suggested-buttons a:hover {
    background-color: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
}

/* RESPONSIVE MOBILE KECIL */
@media (max-width: 480px) {
    .error-code { font-size: 85px; }
    .suggested-buttons { flex-direction: column; gap: 8px; }
    .suggested-buttons a { width: 100%; justify-content: center; }
}

/* ==========================================================================
   0. CUSTOM PREMIUM SCROLLBAR
   ========================================================================== */
/* Kontainer Scrollbar Utama (Lebar & Tinggi) */
::-webkit-scrollbar {
    width: 10px;  /* Lebar scrollbar vertikal */
    height: 10px; /* Tinggi scrollbar horizontal jika ada */
}

/* Area Lintasan GULIRAN (Track/Background) */
::-webkit-scrollbar-track {
    background: #f1f5f9; /* Abu-abu ultra soft (Slate 100) biar keliatan bersih */
}

/* Batang Penggeser (Thumb/Grip) */
::-webkit-scrollbar-thumb {
    background-color: #cbd5e1; /* Warna awal abu-abu netral (Slate 300) */
    border-radius: 100px;      /* Membuat ujungnya melingkar kapsul premium */
    border: 2px solid #f1f5f9;  /* Trik padding palsu agar thumb tidak menempel ke dinding luar */
    transition: background-color 0.3s ease;
}

/* EFEK HOVER: Begitu kursor mendekat atau menyentuh scrollbar */
::-webkit-scrollbar-thumb:hover {
    background-color: #EE5447; /* Berubah menyala coral khas website kamu! 🔥 */
}

/* Saat scrollbar sedang diklik aktif oleh user */
::-webkit-scrollbar-thumb:active {
    background-color: #d44337; /* Sedikit menggelap saat digeser paksa */
}

@media(max-width:780px){
    .home-blog-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .btn-view-all-blog{
        display: none;
    }
}
@media(max-width:560px){
    .grid-2,
    .home-blog-grid{
        grid-template-columns: 1fr;
    }
    .main-tool-card{
        text-align: center;
    }
    .tool-card-body,
    .btn-launch-tool{
        display: block;
    }
    .tool-icon-circle{
        margin-bottom: 15px;
    }
    .btn-launch-tool{
        text-align: center;
    }
    .qr-preview-card,
    .blog-sidebar{
        width: 100% !important;
    }
}