/* Geolova Review Hosting — Public CSS v4.0 (Modern Tailwind-inspired) */
:root {
    --grh-blue:    #2563eb;
    --grh-blue2:   #1d4ed8;
    --grh-green:   #16a34a;
    --grh-red:     #dc2626;
    --grh-yellow:  #f59e0b;
    --grh-dark:    #0f172a;
    --grh-gray:    #64748b;
    --grh-lgray:   #f8fafc;
    --grh-border:  #e2e8f0;
    --grh-white:   #ffffff;
    --grh-shadow:  0 4px 24px rgba(15,23,42,.08);
    --grh-shadow2: 0 12px 48px rgba(15,23,42,.14);
    --grh-radius:  20px;
    --grh-radius2: 12px;
}

/* ── Card Container ──────────────────────────────────────── */
.grh-card {
    background: var(--grh-white);
    border-radius: var(--grh-radius);
    box-shadow: var(--grh-shadow);
    border: 1px solid var(--grh-border);
    margin: 32px 0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.grh-card:hover { transform: translateY(-4px); box-shadow: var(--grh-shadow2); }

/* ── Hero Header (Featured Image BG) ────────────────────── */
.grh-hero {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 28px;
}
.grh-hero-overlay {
    display: none; /* tidak ada BG image, overlay tidak diperlukan */
}
.grh-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}
.grh-hero-logo-wrap {
    flex-shrink: 0;
    background: rgba(255,255,255,.95);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 64px;
}
.grh-hero-logo {
    max-width: 120px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.grh-logo-ph {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--grh-blue), #6c63ff);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grh-hero-info { flex: 1; min-width: 0; }
.grh-hero-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.grh-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
    box-shadow: 0 2px 10px rgba(245,158,11,.4);
}
.grh-stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.grh-stars     { display: flex; gap: 1px; }
.grh-star      { font-size: 17px; line-height: 1; }
.grh-full      { color: var(--grh-yellow); }
.grh-half      { color: var(--grh-yellow); opacity: .65; }
.grh-empty     { color: rgba(255,255,255,.4); }
.grh-rating-num { font-size: 17px; font-weight: 800; color: #fff; }
.grh-rating-max { font-size: 12px; color: rgba(255,255,255,.7); }

.grh-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 12px;
}
.grh-price-from { font-size: 11px; color: rgba(255,255,255,.8); }
.grh-price-val  { font-size: 17px; font-weight: 800; color: #fff; }

.grh-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--grh-blue) !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(255,255,255,.3);
    transition: transform .25s, box-shadow .25s;
}
.grh-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.4); }

/* ── Section Block ───────────────────────────────────────── */
.grh-section-block { padding: 22px 28px; border-top: 1px solid var(--grh-border); }

/* ── Ribbon Section Title ────────────────────────────────── */
.grh-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--grh-blue), #6c63ff);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 0 20px 20px 0;
    margin: -22px -28px 18px -28px;
    letter-spacing: .3px;
    box-shadow: 0 2px 12px rgba(37,99,235,.3);
}
.grh-ribbon-sub {
    font-size: 10px;
    font-weight: 600;
    opacity: .8;
    background: rgba(255,255,255,.2);
    padding: 2px 8px;
    border-radius: 20px;
}

/* ── Gallery Grid (bukan slider) ─────────────────────────── */
.grh-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 4px;
}
.grh-gal-item {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--grh-radius2);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--grh-border);
    transition: transform .2s, border-color .2s;
}
.grh-gal-item:hover { transform: scale(1.04); border-color: var(--grh-blue); }
.grh-gal-item img   { width: 100%; height: 100%; object-fit: cover; display: block; }
.grh-gal-ov {
    position: absolute;
    inset: 0;
    background: rgba(37,99,235,.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
}
.grh-gal-item:hover .grh-gal-ov { opacity: 1; }

/* ── Lightbox ─────────────────────────────────────────────── */
/* ── Global Lightbox (dipasang di body, bebas dari overflow/transform) ── */
@keyframes grhFadeIn { from { opacity: 0; } to { opacity: 1; } }

.grh-lb-global {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2147483647; /* max z-index */
    align-items: center;
    justify-content: center;
    animation: grhFadeIn .2s ease;
}
.grh-lb-global.grh-lb-open { display: flex; }

.grh-lb-g-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.grh-lb-global .grh-lb-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 88vh;
}

.grh-lb-global .grh-lb-close {
    position: fixed;
    top: 16px; right: 18px;
    z-index: 3;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,.3);
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .15s;
    line-height: 1;
}
.grh-lb-global .grh-lb-close:hover {
    background: rgba(220,38,38,.85);
    border-color: #dc2626;
    transform: scale(1.1) rotate(90deg);
}

.grh-lb-global .grh-lb-nav {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,.25);
    width: 54px; height: 54px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.grh-lb-global .grh-lb-nav:hover { background: rgba(255,255,255,.28); }
.grh-lb-global .grh-lb-p { left: 14px; }
.grh-lb-global .grh-lb-n { right: 14px; }

.grh-lb-global .grh-lb-cnt {
    position: fixed;
    bottom: 18px; left: 50%; transform: translateX(-50%);
    z-index: 3;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
}

/* Old .grh-lightbox tidak dipakai tapi tetap disembunyikan */
.grh-lightbox { display: none !important; }

/* ── Services Chips ───────────────────────────────────────── */
.grh-svcs { display: flex; flex-wrap: wrap; gap: 8px; }
.grh-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    color: #1e40af;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s;
}
.grh-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,99,235,.15); }
.grh-chip svg   { flex-shrink: 0; }

/* ── Pros & Cons ──────────────────────────────────────────── */
.grh-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.grh-pros {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 16px 18px;
}
.grh-cons {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1px solid #fecdd3;
    border-radius: 14px;
    padding: 16px 18px;
}
.grh-pc-hd {
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.grh-pros-hd { color: #15803d; }
.grh-cons-hd { color: #b91c1c; }
.grh-pros ul, .grh-cons ul { list-style: none; margin: 0; padding: 0; }
.grh-pros ul li, .grh-cons ul li {
    font-size: 13px;
    padding: 5px 0 5px 26px;
    border-bottom: 1px dashed rgba(0,0,0,.07);
    line-height: 1.55;
    position: relative;
}
.grh-pros ul li:last-child, .grh-cons ul li:last-child { border-bottom: none; }
/* Centang bulat hijau untuk pros */
.grh-pros ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 16px; height: 16px;
    background: #16a34a;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}
/* X merah untuk cons */
.grh-cons ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 16px; height: 16px;
    background: #dc2626;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}
.grh-pros ul li { color: #166534; }
.grh-cons ul li { color: #9f1239; }

/* ── Meta Chips ───────────────────────────────────────────── */
.grh-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 28px;
    border-top: 1px solid var(--grh-border);
    background: var(--grh-lgray);
}
.grh-chip-grp   { display: contents; }
.grh-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--grh-white);
    border: 1px solid var(--grh-border);
    border-radius: 20px;
    padding: 6px 13px;
    font-size: 12px;
    color: var(--grh-dark);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.grh-meta-chip svg { flex-shrink: 0; }
.grh-srv-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border: 1px solid #c4b5fd;
    border-radius: 20px;
    padding: 6px 13px;
    font-size: 12px;
    color: #5b21b6;
    font-weight: 600;
}
.grh-cs-fast { background: linear-gradient(135deg,#eff6ff,#dbeafe); border-color:#93c5fd; color:#1d4ed8; }
.grh-cs-good { background: linear-gradient(135deg,#f0fdf4,#dcfce7); border-color:#86efac; color:#166534; }
.grh-cs-med  { background: linear-gradient(135deg,#fffbeb,#fef3c7); border-color:#fcd34d; color:#92400e; }
.grh-cs-slow { background: linear-gradient(135deg,#fff1f2,#ffe4e6); border-color:#fca5a5; color:#9f1239; }

/* ── Google Reviews Grid ──────────────────────────────────── */
.grh-rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 4px;
}
.grh-rv-card {
    background: var(--grh-white);
    border: 1px solid var(--grh-border);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
}
.grh-rv-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,99,235,.12); }
.grh-rv-head { display: flex; align-items: center; gap: 10px; }
.grh-rv-av   { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid #dbeafe; flex-shrink: 0; }
.grh-rv-av-ph {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--grh-blue), #6c63ff);
    color: #fff; font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.grh-rv-meta  { flex: 1; min-width: 0; }
.grh-rv-nm    { font-size: 13px; font-weight: 700; color: var(--grh-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.grh-rv-stars .grh-star { font-size: 12px; }
.grh-rv-stars .grh-full  { color: var(--grh-yellow); }
.grh-rv-stars .grh-empty { color: #d1d5db; }
.grh-rv-dt    { font-size: 11px; color: var(--grh-gray); margin-top: 2px; }
.grh-rv-txt   {
    font-size: 13px; color: #475569; line-height: 1.65; font-style: italic;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1; margin: 0;
}
.grh-rv-foot  { display: flex; justify-content: flex-end; }
.grh-rv-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; color: var(--grh-gray);
    background: var(--grh-lgray); padding: 3px 8px; border-radius: 20px;
}
.grh-rv-cta { margin-top: 14px; text-align: center; }
.grh-rv-cta a {
    display: inline-flex; align-items: center; gap: 6px;
    border: 2px solid var(--grh-blue); color: var(--grh-blue) !important;
    text-decoration: none !important; font-size: 13px; font-weight: 700;
    padding: 9px 22px; border-radius: 50px;
    transition: background .2s, color .2s, transform .2s;
}
.grh-rv-cta a:hover { background: var(--grh-blue); color: #fff !important; transform: translateY(-1px); }

/* ── CTA Buttons ──────────────────────────────────────────── */
.grh-cta-wrap {
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap; padding: 20px 28px;
    border-top: 1px solid var(--grh-border);
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}
.grh-clicks { font-size: 12px; color: var(--grh-gray); background: var(--grh-white); padding: 4px 10px; border-radius: 20px; border: 1px solid var(--grh-border); }
.grh-cta-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--grh-blue); color: #fff !important;
    text-decoration: none !important;
    font-weight: 800; font-size: 15px;
    padding: 15px 34px; border-radius: 50px; border: none; cursor: pointer;
    letter-spacing: .3px;
    box-shadow: 0 4px 18px rgba(37,99,235,.45);
    transition: transform .25s, box-shadow .25s, background .2s;
}
.grh-cta-btn svg { flex-shrink: 0; }
.grh-cta-btn:hover { background: var(--grh-blue2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.55); }
.grh-pulse { animation: grhPulse 2.2s infinite; }
@keyframes grhPulse {
    0%   { box-shadow: 0 4px 18px rgba(37,99,235,.45), 0 0 0 0 rgba(37,99,235,.5); }
    60%  { box-shadow: 0 4px 18px rgba(37,99,235,.45), 0 0 0 14px rgba(37,99,235,0); }
    100% { box-shadow: 0 4px 18px rgba(37,99,235,.45), 0 0 0 0 rgba(37,99,235,0); }
}

/* ── List wrapper ─────────────────────────────────────────── */
.grh-hosting-list { display: flex; flex-direction: column; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .grh-hero            { min-height: 200px; padding: 20px; }
    .grh-hero-title      { font-size: 18px; }
    .grh-hero-logo-wrap  { min-width: 80px; min-height: 50px; padding: 8px 10px; }
    .grh-hero-logo       { max-width: 90px; max-height: 42px; }
    .grh-section-block   { padding: 18px 16px; }
    .grh-ribbon          { margin: -18px -16px 16px -16px; }
    .grh-proscons        { grid-template-columns: 1fr; }
    .grh-rv-grid         { grid-template-columns: 1fr 1fr; }
    .grh-gallery         { grid-template-columns: repeat(2, 1fr); }
    .grh-cta-wrap        { padding: 16px; }
    .grh-cta-btn         { width: 100%; justify-content: center; }
    .grh-meta-chips      { padding: 14px 16px; }
}
@media (max-width: 480px) {
    .grh-hero            { min-height: 180px; }
    .grh-hero-title      { font-size: 16px; }
    .grh-hero-content    { gap: 12px; }
    .grh-rv-grid         { grid-template-columns: 1fr; }
    .grh-gallery         { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   v4.2 — New layout additions
   ═══════════════════════════════════════════════════════════════ */

/* ── Gallery TOP (paling atas, sebelum hero) ─────────────────── */
.grh-gal-top {
    position: relative;
    border-bottom: 1px solid var(--grh-border);
}
.grh-ribbon-top {
    border-radius: 0;
    margin: 0 0 0 0 !important;
    border-radius: 0 !important;
    font-size: 13px;
    padding: 10px 20px;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}
.grh-gal-top .grh-gallery {
    padding: 14px;
    background: #f8fafc;
}

/* Gallery grid override for top position */
.grh-gal-top .grh-gallery {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}

/* ── Hero setelah gallery — lebih compact ────────────────────── */
.grh-hero {
    align-items: center !important;
    min-height: unset !important;
    padding: 22px 24px !important;
}
.grh-hero-content {
    align-items: center !important;
}
.grh-hero-title {
    font-size: 20px !important;
    margin-bottom: 6px !important;
}

/* ── Perusahaan & Harga grid ─────────────────────────────────── */
.grh-company-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.grh-company-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--grh-lgray);
    border: 1px solid var(--grh-border);
    border-radius: 12px;
    padding: 12px 18px;
    flex: 1;
    min-width: 180px;
}
.grh-company-item svg { flex-shrink: 0; color: var(--grh-blue); }
.grh-company-item > div { display: flex; flex-direction: column; gap: 2px; }
.grh-company-label { font-size: 11px; color: var(--grh-gray); text-transform: uppercase; letter-spacing: .4px; }
.grh-company-item strong { font-size: 15px; font-weight: 700; color: var(--grh-dark); }
.grh-price-item { background: linear-gradient(135deg,#f0fdf4,#dcfce7); border-color: #bbf7d0; }
.grh-price-big { font-size: 18px !important; color: #15803d !important; }

/* ── Spesifikasi row ─────────────────────────────────────────── */
.grh-spec-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.grh-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--grh-lgray);
    border: 1px solid var(--grh-border);
    border-radius: 10px;
    padding: 10px 14px;
    flex: 1;
    min-width: 160px;
}
.grh-spec-item svg { flex-shrink: 0; margin-top: 3px; color: var(--grh-blue); }
.grh-spec-item > span { display: flex; flex-direction: column; gap: 2px; }
.grh-spec-item em { font-size: 11px; color: var(--grh-gray); font-style: normal; text-transform: uppercase; letter-spacing: .4px; }
.grh-spec-item strong { font-size: 13px; font-weight: 700; color: var(--grh-dark); }
.grh-srv-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }

/* ── Keunggulan full-width (tanpa kekurangan) ────────────────── */
.grh-pros-full {
    background: linear-gradient(135deg,#f0fdf4,#dcfce7) !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 14px !important;
    padding: 16px 18px !important;
}
.grh-pros-full ul {
    columns: 2;
    column-gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.grh-pros-full ul li {
    font-size: 13px;
    padding: 5px 0 5px 26px;
    border-bottom: 1px dashed rgba(0,0,0,.07);
    line-height: 1.55;
    position: relative;
    break-inside: avoid;
    color: #166534;
}
.grh-pros-full ul li:last-child { border-bottom: none; }
.grh-pros-full ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 16px; height: 16px;
    background: #16a34a;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ── CS Grid ─────────────────────────────────────────────────── */
.grh-cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.grh-cs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--grh-lgray);
    border: 1px solid var(--grh-border);
    border-radius: 10px;
    padding: 10px 14px;
}
.grh-cs-item svg { flex-shrink: 0; }
.grh-cs-item > span { display: flex; flex-direction: column; gap: 2px; }
.grh-cs-item em { font-size: 11px; color: var(--grh-gray); font-style: normal; text-transform: uppercase; letter-spacing: .4px; }
.grh-cs-item strong { font-size: 13px; font-weight: 700; color: var(--grh-dark); }
.grh-cs-item.grh-cs-fast { background: linear-gradient(135deg,#eff6ff,#dbeafe); border-color:#93c5fd; }
.grh-cs-item.grh-cs-good { background: linear-gradient(135deg,#f0fdf4,#dcfce7); border-color:#86efac; }
.grh-cs-item.grh-cs-med  { background: linear-gradient(135deg,#fffbeb,#fef3c7); border-color:#fcd34d; }
.grh-cs-item.grh-cs-slow { background: linear-gradient(135deg,#fff1f2,#ffe4e6); border-color:#fca5a5; }

/* ── Alternatif Hosting Grid ─────────────────────────────────── */
.grh-alt-section { background: #f8fafc; }
.grh-alt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.grh-alt-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--grh-white);
    border: 1px solid var(--grh-border);
    border-radius: 12px;
    padding: 12px 14px;
    text-decoration: none !important;
    color: var(--grh-dark) !important;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.grh-alt-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,99,235,.12); border-color: var(--grh-blue); }
.grh-alt-logo-wrap {
    flex-shrink: 0;
    width: 56px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--grh-lgray);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--grh-border);
}
.grh-alt-logo     { max-width: 48px; max-height: 32px; object-fit: contain; }
.grh-alt-logo-ph  {
    width: 40px; height: 40px; border-radius: 8px;
    background: linear-gradient(135deg, var(--grh-blue), #6c63ff);
    color: #fff; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.grh-alt-info     { flex: 1; min-width: 0; }
.grh-alt-name     { display: block; font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.grh-alt-meta     { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.grh-alt-meta .grh-stars .grh-star { font-size: 11px; }
.grh-alt-meta .grh-full  { color: var(--grh-yellow); }
.grh-alt-meta .grh-empty { color: #d1d5db; }
.grh-alt-rnum     { font-size: 12px; font-weight: 700; color: var(--grh-dark); }
.grh-alt-price    { font-size: 11px; color: var(--grh-green); font-weight: 600; background: #f0fdf4; padding: 1px 7px; border-radius: 20px; border: 1px solid #bbf7d0; }
.grh-alt-card svg { flex-shrink: 0; color: var(--grh-gray); transition: color .2s; }
.grh-alt-card:hover svg { color: var(--grh-blue); }

/* ── Responsive additions ────────────────────────────────────── */
@media (max-width: 768px) {
    .grh-company-grid { flex-direction: column; }
    .grh-spec-row     { flex-direction: column; }
    .grh-cs-grid      { grid-template-columns: 1fr 1fr; }
    .grh-alt-grid     { grid-template-columns: 1fr; }
    .grh-pros-full ul { columns: 1; }
}
@media (max-width: 480px) {
    .grh-cs-grid  { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   v4.5 — Alternatif Hosting Grid Redesign
   ═══════════════════════════════════════════════════════════════ */

.grh-alt-section2 { background: linear-gradient(135deg,#f8faff,#f0f4ff); }
.grh-alt2-sub {
    font-size: 13px;
    color: var(--grh-gray);
    margin: -10px 0 16px;
    padding: 0;
}

/* ── 3-kolom × 2-baris grid ────────────────────────────────── */
.grh-alt2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* ── Card ───────────────────────────────────────────────────── */
.grh-alt-card2 {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-decoration: none !important;
    color: var(--grh-dark) !important;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1),
                box-shadow .22s ease,
                border-color .22s ease;
    position: relative;
}
.grh-alt-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(37,99,235,.15);
    border-color: transparent;
}

/* Accent bar top */
.grh-alt2-bar {
    height: 5px;
    width: 100%;
    flex-shrink: 0;
}

/* Logo area */
.grh-alt2-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px 10px;
    min-height: 64px;
}
.grh-alt-logo {
    max-height: 44px;
    max-width: 120px;
    object-fit: contain;
    display: block;
}
.grh-alt-logo-ph {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#6c63ff);
    color: #fff;
    font-size: 16px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

/* Body */
.grh-alt2-body {
    flex: 1;
    padding: 0 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.grh-alt2-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--grh-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rating */
.grh-alt2-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.grh-alt2-rating .grh-stars .grh-star { font-size: 11px; }
.grh-alt2-rating .grh-full  { color: #f59e0b; }
.grh-alt2-rating .grh-half  { color: #f59e0b; }
.grh-alt2-rating .grh-empty { color: #d1d5db; }
.grh-alt2-rnum {
    font-size: 12px;
    font-weight: 700;
    color: var(--grh-dark);
}

/* Badge */
.grh-alt2-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: linear-gradient(135deg,#fef3c7,#fde68a);
    color: #92400e;
    border: 1px solid #fcd34d;
    border-radius: 20px;
    padding: 2px 8px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Harga */
.grh-alt2-price {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #15803d;
}
.grh-alt2-price svg { flex-shrink: 0; color: #16a34a; }

/* First pro */
.grh-alt2-pro {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 11px;
    color: #4b5563;
    line-height: 1.4;
    background: #f0fdf4;
    border-radius: 6px;
    padding: 5px 8px;
    margin-top: 2px;
}
.grh-alt2-pro svg { flex-shrink: 0; margin-top: 1px; }
.grh-alt2-pro span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* CTA Footer */
.grh-alt2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-top: auto;
    transition: opacity .2s;
}
.grh-alt-card2:hover .grh-alt2-footer { opacity: .9; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .grh-alt2-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 420px) {
    .grh-alt2-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .grh-alt2-name { font-size: 12px; }
    .grh-alt2-footer { font-size: 11px; padding: 8px 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   [grh_grid] — Halaman listing /hosting/
   ═══════════════════════════════════════════════════════════════ */
.grh-grid-wrap { max-width: 1080px; margin: 0 auto; }

.grh-grid-meta {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 18px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--grh-blue);
}

.grh-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Card ─────────────────────────────────────────────────── */
.grh-gc-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1),
                box-shadow .22s ease;
}
.grh-gc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(37,99,235,.13);
}

/* Top gradient area */
.grh-gc-top {
    position: relative;
    padding: 22px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80px;
}

/* Badge */
.grh-gc-badge {
    position: absolute;
    top: 10px; right: 10px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    background: rgba(255,255,255,.25);
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    padding: 3px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Logo wrap */
.grh-gc-logo-wrap {
    background: rgba(255,255,255,.95);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.grh-gc-logo {
    max-height: 40px;
    max-width: 100px;
    object-fit: contain;
    display: block;
}
.grh-gc-logo-ph {
    width: 52px; height: 42px;
    font-size: 16px; font-weight: 800;
    color: #374151;
    display: flex; align-items: center; justify-content: center;
}

/* Body */
.grh-gc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 8px;
}

.grh-gc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--grh-dark);
    margin: 0;
    line-height: 1.3;
}

/* Rating */
.grh-gc-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.grh-gc-rating .grh-stars .grh-star { font-size: 12px; }
.grh-gc-rating .grh-full  { color: #f59e0b; }
.grh-gc-rating .grh-half  { color: #f59e0b; }
.grh-gc-rating .grh-empty { color: #d1d5db; }
.grh-gc-rnum {
    font-size: 13px;
    font-weight: 700;
    color: var(--grh-dark);
}

/* Price */
.grh-gc-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 14px;
}
.grh-gc-from {
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.grh-gc-price strong {
    font-size: 16px;
    font-weight: 800;
    color: #15803d;
}

/* Pros mini list */
.grh-gc-pros {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.grh-gc-pros li {
    font-size: 12px;
    color: #374151;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.grh-gc-pros li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px;
    width: 12px; height: 12px;
    background: #16a34a;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Action buttons */
.grh-gc-actions {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}
.grh-gc-btn-review {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--grh-dark) !important;
    text-decoration: none !important;
    transition: background .2s, border-color .2s;
}
.grh-gc-btn-review:hover {
    background: #eff6ff;
    border-color: var(--grh-blue);
    color: var(--grh-blue) !important;
}
.grh-gc-btn-visit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    background: linear-gradient(135deg, var(--grh-blue), #4f46e5);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 3px 12px rgba(37,99,235,.3);
}
.grh-gc-btn-visit:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .grh-grid-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .grh-grid-list { grid-template-columns: 1fr; }
}
