/* SolusiJasa Design System v3 — Premium modern marketplace (Thumbtack/Airbnb inspired) */

:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-tint: #f0fdfa;
    --ink: #0f172a;
    --ink-2: #1e293b;
    --ink-muted: #475569;
    --ink-soft: #64748b;
    --ink-faint: #94a3b8;

    /* Brand: Teal — modern, trustworthy, distinctive */
    --primary: #0d9488;
    --primary-hover: #0f766e;
    --primary-soft: #f0fdfa;
    --primary-tint: #ccfbf1;
    --primary-ring: rgba(13, 148, 136, 0.2);

    /* Accent: Amber — warmth, local, Indonesian market */
    --accent: #d97706;
    --accent-soft: #fffbeb;
    --accent-tint: #fef3c7;
    --accent-amber: #f59e0b;

    --success: #10b981;
    --success-soft: #d1fae5;
    --border: #e2e8f0;
    --border-soft: #f1f5f9;
    --border-strong: #cbd5e1;
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 6px 20px -6px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 20px 40px -16px rgba(15, 23, 42, 0.14);
    --shadow-xl: 0 32px 60px -20px rgba(15, 23, 42, 0.18);
    --radius: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;

    /* Dark hero */
    --hero-dark: #0f172a;
    --hero-dark-2: #1e293b;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-feature-settings: "cv11", "ss01"; }
main {
    overflow-x: clip;
    max-width: 100%;
}

/* ─── Container ─── */
.wrap { max-width: 90rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .wrap { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .wrap { padding: 0 3rem; } }

.wrap-tight { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .wrap-tight { padding: 0 2.5rem; } }

/* ─── Navbar ─── */
.nav {
    --nav-h: 4rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 1024px) {
    .nav { --nav-h: 4.5rem; }
}
.nav.nav-scrolled {
    box-shadow: var(--shadow-sm);
}

/* Navbar always white */
.nav-over-dark:not(.nav-scrolled) {
    background: #fff;
    border-bottom-color: var(--border-soft);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media (min-width: 1024px) {
    .nav-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
    }
    .nav-brand { justify-self: start; min-width: 0; }
    .nav-desktop { justify-self: center; max-width: 100%; }
    .nav-actions { justify-self: end; min-width: 0; flex-shrink: 0; }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.nav-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.nav-brand-mark img {
    height: 2.25rem;
    width: auto;
}
.nav-brand:hover .nav-brand-mark {
    transform: translateY(-1px) scale(1.03);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.nav-brand-tag {
    display: none;
}

.nav-desktop { gap: 0.125rem; }
.nav-desktop-track {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    padding: 0.25rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    border-radius: 9999px;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover,
.nav-dropdown-wrap:hover > .nav-link-trigger {
    color: var(--ink);
    background: rgba(15, 23, 42, 0.04);
}
.nav-link.is-active {
    color: var(--primary);
    background: var(--primary-soft);
}
.nav-chevron {
    width: 1rem;
    height: 1rem;
    opacity: 0.45;
    transition: transform 0.2s ease;
}
.nav-dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }

.nav-mega {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 0.65rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}
.nav-dropdown-wrap:hover .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.nav-mega-hubs { min-width: 20rem; }
.nav-mega-niches { min-width: 18rem; left: -0.5rem; }
.nav-dropdown-wrap:hover .nav-mega,
.nav-mega {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.nav-mega-head {
    padding: 1rem 1.15rem 0.75rem;
    border-bottom: 1px solid var(--border-soft);
    background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
}
.nav-mega-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.nav-mega-desc {
    font-size: 0.75rem;
    color: var(--ink-soft);
    margin-top: 0.15rem;
}
.nav-mega-grid { padding: 0.5rem; }
.nav-mega-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.15s ease;
}
.nav-mega-item:hover:not(.is-disabled) { background: var(--bg-soft); }
.nav-mega-item.is-disabled { opacity: 0.55; cursor: default; }
.nav-mega-body { flex: 1; min-width: 0; }
.nav-mega-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
}
.nav-mega-item:hover .nav-mega-label { color: var(--primary); }
.nav-mega-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--ink-soft);
    margin-top: 0.1rem;
}
.nav-mega-grid-niches {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.5rem;
}

.nav-actions-divider {
    width: 1px;
    height: 1.5rem;
    background: var(--border);
    margin: 0 0.25rem;
}
.nav-search-btn {
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.nav-search-btn:hover {
    color: var(--primary);
    border-color: var(--primary-tint);
    background: var(--primary-soft);
}

/* ── Search modal ── */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: min(12vh, 6rem);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.search-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.search-modal-panel {
    position: relative;
    width: 100%;
    max-width: 28rem;
    margin: 0 1rem;
    background: white;
    border-radius: var(--radius-xl, 1rem);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transform: translateY(-1rem);
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
}
.search-modal.is-open .search-modal-panel {
    transform: translateY(0);
}
.search-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border, #e2e8f0);
}
.search-modal-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}
.search-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    color: var(--ink-soft, #64748b);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.search-modal-close:hover {
    background: var(--bg-soft, #f8fafc);
    color: var(--ink);
}
.search-modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.search-modal-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.search-modal-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft, #64748b);
}
.search-modal-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--bg-soft, #f8fafc);
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: auto;
}
.search-modal-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.search-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    margin-top: 0.25rem;
}
.search-modal-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}
.search-modal-foot {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--border, #e2e8f0);
    background: var(--bg-soft, #f8fafc);
}
.search-modal-foot-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft, #64748b);
    margin: 0 0 0.5rem;
}
.search-modal-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.search-modal-chip {
    display: inline-flex;
    padding: 0.3rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted, #475569);
    background: white;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 9999px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.search-modal-chip:hover {
    color: var(--primary);
    border-color: var(--primary-tint, #ccfbf1);
    background: var(--primary-soft, #f0fdfa);
}
.nav-btn-vendor { font-weight: 600; }

.nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-burger:hover { background: var(--bg-soft); border-color: var(--border-strong); }
.nav-burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger.is-open .nav-burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open .nav-burger-line:nth-child(2) { opacity: 0; }
.nav-burger.is-open .nav-burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1280px) {
    .nav-link { padding: 0.5rem 0.95rem; font-size: 0.875rem; }
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}
.nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-mobile {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 45;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: var(--bg);
    border-bottom: 1px solid transparent;
    box-shadow: var(--shadow-lg);
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, border-color 0.25s ease;
    pointer-events: none;
}
.nav-mobile.is-open {
    max-height: calc(100dvh - var(--nav-h));
    opacity: 1;
    border-bottom-color: var(--border-soft);
    overflow-y: auto;
    pointer-events: auto;
}
.nav-mobile-inner { padding: 1rem 0 1.5rem; }
.nav-mobile-section { margin-bottom: 1.25rem; }
.nav-mobile-label {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-faint);
    margin-bottom: 0.65rem;
    padding: 0 0.25rem;
}
.nav-mobile-hubs { display: flex; flex-direction: column; gap: 0.35rem; }
.nav-mobile-hub {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.15s ease;
}
.nav-mobile-hub:hover:not(.is-disabled) { background: var(--bg-soft); }
.nav-mobile-hub.is-disabled { opacity: 0.55; }
.nav-mobile-niches {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.nav-mobile-niche {
    display: block;
    padding: 0.65rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-muted);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
}
.nav-mobile-niche:hover:not(.is-disabled) {
    color: var(--ink);
    background: var(--bg-soft);
}
.nav-mobile-niche.is-disabled { opacity: 0.45; }
.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-soft);
}
.nav-mobile-link {
    padding: 0.65rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-muted);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
}
.nav-mobile-link:hover { color: var(--ink); background: var(--bg-soft); }
.nav-mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-soft);
}
body.nav-menu-open { overflow: hidden; }
@media (min-width: 1024px) {
    body.nav-menu-open { overflow: auto; }
}

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 600; transition: all 0.18s ease; border-radius: 9999px; white-space: nowrap; }
.btn-lg { padding: 0.95rem 1.85rem; font-size: 0.9375rem; }
.btn-md { padding: 0.7rem 1.4rem; font-size: 0.875rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; }

.btn-primary { background: var(--primary); color: white; box-shadow: 0 2px 8px -2px rgba(13, 148, 136, 0.4); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 8px 16px -4px rgba(13, 148, 136, 0.45); }

.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink); }

.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }

.btn-wa { background: #25d366; color: white; box-shadow: 0 2px 8px -2px rgba(37, 211, 102, 0.4); }
.btn-wa:hover { background: #1eb957; transform: translateY(-1px); box-shadow: 0 8px 16px -4px rgba(37, 211, 102, 0.45); }

/* ─── Cards ─── */
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card-interactive:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 3.5rem;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
@media (min-width: 1024px) {
    .hero { padding: 4rem 0 4.5rem; }
}

.hero-blob-tr {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -150px;
    right: -200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ─── Search box (hero centerpiece, Thumbtack style) ─── */
.search-bar {
    background: white;
    border: 1px solid var(--border);
    border-radius: 9999px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
    max-width: 42rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.search-bar:hover { box-shadow: var(--shadow-xl); }
.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl), 0 0 0 4px var(--primary-ring);
}
.search-field {
    flex: 1;
    min-width: 0;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: 0;
    font-size: 0.9375rem;
    color: var(--ink);
    outline: none;
}
.search-field::placeholder { color: var(--ink-faint); }
.search-divider { width: 1px; height: 28px; background: var(--border); }

/* ─── Service tiles (big illustrated category cards) ─── */
.tile {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: all 0.25s ease;
    display: block;
    text-decoration: none;
}
.tile:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.tile:hover .tile-illust { transform: scale(1.05) rotate(-2deg); }
.tile-illust {
    width: 100%;
    height: 140px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}
.tile-catering { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.tile-kontraktor { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.tile-fotografer { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); }
.tile-wo { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); }

.tile-illust svg { width: 80px; height: 80px; }
.tile-catering svg { color: #b45309; }
.tile-kontraktor svg { color: #1d4ed8; }
.tile-fotografer svg { color: #6d28d9; }
.tile-wo svg { color: #be185d; }

.tile-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tint);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ─── Hub city cards ─── */
.city-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
    box-shadow: var(--shadow-md);
}
.city-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 56px -16px rgba(10,22,40,0.28);
}
.city-card:hover .city-bg-letter {
    transform: scale(1.08) rotate(-4deg);
    opacity: 0.18;
}
.city-card:hover .city-cta-btn {
    background: white;
    color: var(--primary);
}
.city-card-soon {
    cursor: default;
}
.city-card-soon:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.city-illust {
    height: 280px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .city-illust { height: 300px; } }

.city-jogja    { background: linear-gradient(145deg, #fbbf24 0%, #d97706 40%, #92400e 100%); }
.city-solo     { background: linear-gradient(145deg, #c4b5fd 0%, #7c3aed 45%, #3b0764 100%); }
.city-semarang { background: linear-gradient(145deg, #7dd3fc 0%, #0284c7 45%, #0c4a6e 100%); }

.city-dots {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.7;
}
.city-bg-letter {
    position: absolute;
    right: -0.1em;
    bottom: -0.2em;
    font-size: 14rem;
    font-weight: 900;
    line-height: 1;
    color: white;
    opacity: 0.12;
    letter-spacing: -0.05em;
    user-select: none;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.city-bg-letter-faint { opacity: 0.07; }
.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
}
.city-overlay-strong {
    background: linear-gradient(170deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.72) 100%);
}
.city-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}
.city-badge-active {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(16, 185, 129, 0.5);
    backdrop-filter: blur(8px);
    color: #d1fae5;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.city-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.city-badge-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.75);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.city-niche-tag {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.9);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}
.city-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* ─── Vendor card (niche page) ─── */
.vendor-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    transition: all 0.25s ease;
    position: relative;
}
.vendor-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.vendor-card-featured {
    border-color: var(--primary-tint);
    box-shadow: var(--shadow-md);
}
.vendor-card-top-badge {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.vendor-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    border: 1px solid var(--primary-tint);
}

.verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--success-soft);
    color: #047857;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Stat grid ─── */
.stat-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1rem;
    position: relative;
}
/* mobile: right border separating left & right columns */
.stat-cell-left::after {
    content: '';
    position: absolute;
    right: 0; top: 15%; bottom: 15%;
    width: 1px;
    background: var(--border);
}
/* mobile: bottom border separating top & bottom rows */
.stat-cell-top::before {
    content: '';
    position: absolute;
    bottom: 0; left: 10%; right: 10%;
    height: 1px;
    background: var(--border);
}
@media (min-width: 768px) {
    .stat-cell { padding: 2rem 1.5rem; }
    /* desktop: hide mobile row-separator */
    .stat-cell-top::before { display: none; }
    /* desktop: right border for all 4 cols except last */
    .stat-cell:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0; top: 15%; bottom: 15%;
        width: 1px;
        background: var(--border);
    }
}

/* ─── Step card ─── */
.step {
    text-align: center;
    padding: 1.5rem;
}
.step-illust {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.step-num-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    border: 3px solid white;
}

/* ─── FAQ ─── */
.faq {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--ink-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}
.faq .faq-cta {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}
.faq .faq-cta:hover { text-decoration: underline; }

/* ─── Article card ─── */
.article-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.25s ease;
    display: block;
}
.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
/* Artikel — rasio 16:9 (Google Article / Discover) */
.article-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}
.article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-media.is-placeholder.article-thumb-catering { background: linear-gradient(135deg, #fef3c7, #fbbf24); }
.article-media.is-placeholder.article-thumb-kontraktor { background: linear-gradient(135deg, #dbeafe, #60a5fa); }
.article-media-fallback svg {
    width: 56px;
    height: 56px;
    opacity: 0.65;
    transition: transform 0.3s ease;
}
.site-article-card:hover .article-media-fallback svg,
.home-article-card:hover .article-media-fallback svg { transform: scale(1.08); }
.article-featured {
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.12);
}
.article-featured-figure {
    margin: 0 0 1.5rem;
}
.article-thumb-catering { background: linear-gradient(135deg, #fef3c7, #fbbf24); }
.article-thumb-kontraktor { background: linear-gradient(135deg, #dbeafe, #60a5fa); }

/* ─── Hub page (Airbnb-style marketplace) ─── */
.hub-hero {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 3rem;
    background: #0f172a;
    color: white;
}
@media (min-width: 1024px) {
    .hub-hero { padding: 3.5rem 0 4rem; }
}

.hub-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hub-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}
.hub-hero--has-img .hub-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.7) 60%, #0f172a 100%);
}
.hub-hero--has-img .hub-hero-bg-pattern,
.hub-hero--has-img .hub-hero-bg-glow { z-index: 2; }
.hub-hero > .wrap { position: relative; z-index: 3; }
.hub-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.hub-hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.hub-hero-bg-glow--1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -60px;
}
.hub-hero-bg-glow--2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    opacity: 0.3;
}

.hub-hero--jogja .hub-hero-bg { background: linear-gradient(160deg, #1a1207 0%, #1e293b 50%, #0f172a 100%); }
.hub-hero--jogja .hub-hero-bg-glow--1 { background: rgba(251,191,36,0.25); }
.hub-hero--jogja .hub-hero-bg-glow--2 { background: rgba(217,119,6,0.15); }

.hub-hero--solo .hub-hero-bg { background: linear-gradient(160deg, #1a0f2e 0%, #1e293b 50%, #0f172a 100%); }
.hub-hero--solo .hub-hero-bg-glow--1 { background: rgba(139,92,246,0.25); }
.hub-hero--solo .hub-hero-bg-glow--2 { background: rgba(196,181,253,0.15); }

.hub-hero--semarang .hub-hero-bg { background: linear-gradient(160deg, #0c1a2e 0%, #1e293b 50%, #0f172a 100%); }
.hub-hero--semarang .hub-hero-bg-glow--1 { background: rgba(14,165,233,0.25); }
.hub-hero--semarang .hub-hero-bg-glow--2 { background: rgba(56,189,248,0.15); }
.hub-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    position: relative;
}
.hub-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.15s ease; }
.hub-breadcrumb a:hover { color: white; }
.hub-breadcrumb span:last-child { color: white; font-weight: 600; }

.hub-hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hub-hero-grid { grid-template-columns: 1fr 380px; gap: 3rem; }
}
.hub-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.hub-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s infinite;
}
.hub-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: white;
    margin-bottom: 1rem;
}
.hub-hero-title .text-primary { color: #5eead4; }
.hub-hero-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    max-width: 32rem;
    margin-bottom: 1.75rem;
}
.hub-search-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 9999px;
    box-shadow: var(--shadow-lg);
    padding: 0.45rem;
    max-width: 28rem;
    margin-bottom: 1.25rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.hub-search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl), 0 0 0 4px var(--primary-ring);
}
.hub-search-field-wrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.75rem 0.5rem 1rem;
}
.hub-search-select {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    padding-right: 1.25rem;
}
.hub-search-btn { flex-shrink: 0; }
.hub-quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.hub-quick-links .text-sm { color: rgba(255,255,255,0.45); }
.hub-quick-links .pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}
.hub-quick-links .pill:hover {
    background: rgba(255,255,255,0.14);
    color: white;
}

.hub-city-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 320px;
}
.hub-city-card-body {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}
.hub-city-stats {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hub-city-stats div { display: flex; flex-direction: column; }
.hub-city-stats strong {
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.hub-city-stats span {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

.hub-stats-band {
    background: white;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.hub-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
    .hub-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.hub-stat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 768px) {
    .hub-stat {
        padding: 1.75rem 1.5rem;
        border-bottom: 0;
        border-right: 1px solid var(--border-soft);
    }
    .hub-stat:last-child { border-right: 0; }
}
.hub-stat:nth-child(odd) { border-right: 1px solid var(--border-soft); }
@media (min-width: 768px) {
    .hub-stat:nth-child(odd) { border-right: 0; }
}
.hub-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
@media (min-width: 768px) {
    .hub-stat:nth-child(-n+2) { border-bottom: 0; }
}
.hub-stat-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hub-stat-icon svg { width: 1.25rem; height: 1.25rem; }
.hub-stat-icon-blue { background: var(--primary-soft); color: var(--primary); }
.hub-stat-icon-violet { background: #ede9fe; color: #6d28d9; }
.hub-stat-icon-emerald { background: var(--success-soft); color: #047857; }
.hub-stat-icon-amber { background: #fef3c7; color: #b45309; }
.hub-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
}
.hub-stat-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 0.25rem;
}
.hub-stat-sub {
    font-size: 0.6875rem;
    color: var(--ink-faint);
    margin-top: 0.125rem;
    line-height: 1.35;
}

.hub-section { padding: 3rem 0; }
@media (min-width: 1024px) { .hub-section { padding: 4rem 0; } }
.hub-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.hub-section-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    shrink: 0;
    transition: opacity 0.15s ease;
}
.hub-section-link:hover { text-decoration: underline; }

.hub-listing-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .hub-listing-grid { grid-template-columns: repeat(2, 1fr); }
}
.hub-listing-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hub-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}
.hub-listing-thumb {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hub-listing-thumb svg { width: 72px; height: 72px; opacity: 0.85; transition: transform 0.3s ease; }
.hub-listing-card:hover .hub-listing-thumb svg { transform: scale(1.06); }
.hub-listing-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
}
.hub-listing-badge.verified-tag {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.2rem 0.4375rem;
    gap: 0.2rem;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.2;
    border: 1px solid rgba(16, 185, 129, 0.22);
    box-shadow: 0 1px 2px rgba(10, 22, 40, 0.06);
    border-radius: 9999px;
}
.hub-listing-badge.verified-tag svg {
    width: 0.6875rem;
    height: 0.6875rem;
    flex-shrink: 0;
}
.hub-listing-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.hub-listing-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}
.hub-listing-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ink);
}
.hub-listing-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.375rem;
    transition: color 0.15s ease;
}
.hub-listing-card:hover .hub-listing-title { color: var(--primary); }
.hub-listing-tagline {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.hub-listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
}
.hub-listing-area {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.hub-listing-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.hub-area-copy { min-width: 0; }

.hub-area-card {
    display: grid;
    gap: 2rem;
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}
@media (min-width: 768px) {
    .hub-area-card { grid-template-columns: 1fr 1.2fr; padding: 2.5rem; }
}
.hub-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.hub-area-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    transition: border-color 0.15s ease, color 0.15s ease;
}
.hub-area-tag:hover { border-color: var(--primary); color: var(--primary); }

.hub-steps {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .hub-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.hub-step {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
}
.hub-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.8125rem;
    font-weight: 800;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.hub-cta { border-radius: var(--radius-2xl); }

/* Legacy hub banner (kept for reference) */
.hub-banner {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
    color: white;
}
.hub-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.4) 100%);
}
.hub-banner-content { position: relative; z-index: 1; }

/* ─── Pills ─── */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}
.pill-soft { background: var(--bg-soft); color: var(--ink-muted); border: 1px solid var(--border); }
.pill-primary { background: var(--primary-soft); color: var(--primary); border: 1px solid var(--primary-tint); }
.pill-success { background: var(--success-soft); color: #047857; }
.pill-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ─── Eyebrow ─── */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* ─── Headlines ─── */
.h1-display { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--ink); }
.h2-section { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--ink); }
.h3-card { font-size: 1.125rem; font-weight: 700; color: var(--ink); }

/* ─── CTA dark ─── */
.cta-dark {
    background: var(--ink);
    color: white;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}
.cta-dark::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* ─── Footer ─── */
.footer {
    position: relative;
    background: #0b1120;
    color: #94a3b8;
}
.footer-accent {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.5) 30%, rgba(217, 119, 6, 0.3) 70%, transparent);
}
.footer-main {
    padding: 2.5rem 0 2rem;
}
@media (min-width: 1024px) {
    .footer-main { padding: 3rem 0 2.5rem; }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 2rem 2.5rem;
    }
}
.footer-about {
    grid-column: 1 / -1;
}
@media (min-width: 768px) {
    .footer-about { grid-column: auto; }
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 0.5rem;
}
.footer-brand-logo {
    height: 1.5rem;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer-brand-text {
    font-size: 1.125rem;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.025em;
}
.footer-tagline {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 1rem;
    max-width: 18rem;
}
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.15s ease, background 0.15s ease;
}
.footer-wa-btn:hover {
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.08);
    color: #fff;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.footer-col-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin: 0 0 0.25rem;
}
.footer-col a {
    font-size: 0.8125rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s ease;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.footer-col a:hover { color: #f1f5f9; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    padding: 1rem 0;
}
.footer-copy {
    margin: 0;
    font-size: 0.75rem;
    color: #334155;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-legal a {
    font-size: 0.75rem;
    color: #334155;
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-legal a:hover { color: #94a3b8; }
.footer-dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #334155;
    flex-shrink: 0;
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }
.fade-up.d3 { animation-delay: 0.3s; }

/* Marquee logos (trust) */
.trust-band { background: var(--bg-soft); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

/* ─── Niche marketplace (Airbnb-style browse listings) ─── */
.nmp {
    overflow-x: clip;
    max-width: 100%;
}
.nmp-hero {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--border-soft);
}
.nmp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}
.nmp-breadcrumb a { transition: color 0.15s ease; }
.nmp-breadcrumb a:hover { color: var(--primary); }
.nmp-breadcrumb span:last-child { color: var(--ink); }
.nmp-hero-grid {
    display: grid;
    gap: 2rem;
    align-items: end;
}
@media (min-width: 768px) {
    .nmp-hero-grid { grid-template-columns: 1fr auto; }
}
.nmp-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.nmp-desc {
    font-size: 1.0625rem;
    color: var(--ink-muted);
    line-height: 1.6;
    max-width: 36rem;
}
.nmp-hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.nmp-stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.nmp-stat strong {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
}
.nmp-stat span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.nmp-toolbar {
    position: sticky;
    top: 4rem;
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-soft);
    padding: 0.875rem 0;
}
.nmp-filters {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}
.nmp-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.nmp-filter-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
}
.nmp-filter-select {
    appearance: none;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    min-width: 10rem;
    cursor: pointer;
    transition: border-color 0.15s ease;
}
.nmp-filter-select:hover,
.nmp-filter-select:focus {
    border-color: var(--primary);
    outline: none;
}
.nmp-result-count {
    margin-left: auto;
    font-size: 0.875rem;
    color: var(--ink-muted);
    align-self: center;
}
.nmp-result-count strong { color: var(--ink); font-weight: 800; }
.nmp-listings { padding: 1.75rem 0 3rem; }
.nmp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
}
@media (min-width: 640px) {
    .nmp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem 1.125rem; }
}
@media (min-width: 768px) {
    .nmp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .nmp-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 2rem 1.25rem; }
}
.nmp-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}
.nmp-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--bg-soft);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nmp-card:hover .nmp-card-media {
    transform: scale(1.015);
}
.nmp-card-label {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.3125rem 0.625rem;
    border-radius: 9999px;
    box-shadow: 0 1px 4px rgba(10, 22, 40, 0.08);
    line-height: 1;
}
.nmp-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    padding: 0.875rem 0.25rem 0;
    min-width: 0;
}
.nmp-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}
.nmp-card-sub {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nmp-card-price {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-muted);
    line-height: 1.45;
    margin: 0.125rem 0 0;
}
.nmp-card-price strong {
    font-weight: 600;
    color: var(--ink);
}
.nmp-card-price span {
    color: var(--ink-soft);
    font-weight: 400;
}
.nmp-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    margin: 0.25rem 0 0;
}
.nmp-card-rating svg {
    width: 0.8125rem;
    height: 0.8125rem;
    flex-shrink: 0;
    color: var(--ink);
}
.nmp-card-rating-count {
    font-weight: 400;
    color: var(--ink-soft);
}
.nmp-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--ink-muted);
}
.nmp-how {
    background: var(--bg-soft);
    padding: 3rem 0;
    border-top: 1px solid var(--border-soft);
}
.nmp-h2 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.nmp-how-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .nmp-how-grid { grid-template-columns: repeat(3, 1fr); }
}
.nmp-how-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}
.nmp-how-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}
.nmp-how-step strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.375rem;
}
.nmp-how-step p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.55;
}
.nmp-guides {
    padding: 3rem 0;
    border-top: 1px solid var(--border-soft);
}
.nmp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.nmp-section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    shrink: 0;
    transition: opacity 0.15s ease;
}
.nmp-section-link:hover { text-decoration: underline; }
.nmp-related {
    padding: 2rem 0;
    border-top: 1px solid var(--border-soft);
}
.nmp-back {
    padding-bottom: 3rem;
}

/* Marketplace — rich hero */
.nmp-hero--rich {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0c1f35 0%, #123a5c 48%, #0f766e 100%);
    border-bottom: 0;
    padding: 2.25rem 0 2.75rem;
}
.nmp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 90% 10%, rgba(45, 212, 191, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 40% at 5% 90%, rgba(56, 189, 248, 0.15), transparent 50%);
    pointer-events: none;
}
.nmp-hero-inner {
    position: relative;
    z-index: 1;
}
.nmp-hero--rich .nmp-breadcrumb {
    color: rgba(255, 255, 255, 0.65);
}
.nmp-hero--rich .nmp-breadcrumb a:hover {
    color: #6ee7b7;
}
.nmp-hero--rich .nmp-breadcrumb span:last-child {
    color: #fff;
}
.nmp-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #a7f3d0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9999px;
}
.nmp-live-badge--soon {
    color: #fde68a;
}
.nmp-live-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.35);
    flex-shrink: 0;
}
.nmp-live-badge--soon .nmp-live-dot {
    background: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.35);
}
.nmp-hero--rich .nmp-title {
    color: #fff;
}
.nmp-hero--rich .nmp-desc {
    color: rgba(255, 255, 255, 0.82);
    max-width: 40rem;
}
.nmp-trust-chips {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.nmp-trust-chips li {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9999px;
}
.nmp-trust-chips li svg {
    color: #6ee7b7;
    flex-shrink: 0;
}
.nmp-hero-stats--cards {
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .nmp-hero-stats--cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(7rem, 1fr));
        gap: 0.75rem;
    }
}
.nmp-stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.125rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(6px);
    min-width: 6.5rem;
}
.nmp-stat-card strong {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.nmp-stat-card strong svg {
    color: #fbbf24;
}
.nmp-stat-card span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

/* Marketplace — spotlight (1–2 vendors) */
.nmp-listings--spotlight {
    padding: 2.5rem 0 3.5rem;
}
.nmp-listings-head {
    margin-bottom: 1.75rem;
}
.nmp-listings-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0 0 0.5rem;
}
.nmp-listings-sub {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    margin: 0;
    max-width: 36rem;
    line-height: 1.55;
}
.nmp-spotlight-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.nmp-spotlight {
    display: grid;
    gap: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 12px 40px -16px rgba(10, 22, 40, 0.12);
}
@media (min-width: 768px) {
    .nmp-spotlight {
        grid-template-columns: minmax(0, 22rem) 1fr;
    }
}
.nmp-spotlight-media {
    position: relative;
    display: block;
    min-height: 16rem;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft);
}
@media (min-width: 768px) {
    .nmp-spotlight-media {
        min-height: 100%;
    }
}
.nmp-spotlight-body {
    padding: 1.5rem 1.625rem 1.625rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}
@media (min-width: 768px) {
    .nmp-spotlight-body {
        padding: 2rem 2.25rem;
    }
}
.nmp-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}
.nmp-spotlight-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    color: var(--ink);
}
.nmp-spotlight-rating svg {
    color: #f59e0b;
}
.nmp-spotlight-rating span {
    font-weight: 500;
    color: var(--ink-soft);
}
.nmp-spotlight-area {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--ink-soft);
}
.nmp-spotlight-title {
    margin: 0 0 0.375rem;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.25;
}
.nmp-spotlight-title a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.15s ease;
}
.nmp-spotlight-title a:hover {
    color: var(--primary);
}
.nmp-spotlight-tagline {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.75rem;
    line-height: 1.45;
}
.nmp-spotlight-desc {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0 0 1rem;
}
.nmp-spotlight-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.nmp-spotlight-perks li {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-2);
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 9999px;
}
.nmp-spotlight-perks li svg {
    color: var(--primary);
    flex-shrink: 0;
}
.nmp-spotlight-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-soft);
}
.nmp-spotlight-price {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--ink-muted);
}
.nmp-spotlight-price strong {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ink);
}
.nmp-spotlight-btn {
    flex-shrink: 0;
}

/* Marketplace — benefits */
.nmp-benefits {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid var(--border-soft);
}
.nmp-benefits-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .nmp-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}
.nmp-benefit-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--bg-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.nmp-benefit-card:hover {
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
    transform: translateY(-2px);
}
.nmp-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.nmp-benefit-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.625rem;
    line-height: 1.3;
}
.nmp-benefit-desc {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0;
}
.nmp-section-intro {
    max-width: 42rem;
    margin-bottom: 1.75rem;
}
.nmp-section-intro .site-section-label {
    margin-bottom: 0.5rem;
}
.nmp-section-lead {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0.75rem 0 0;
}
.nmp-hero-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.nmp-hero-jump-link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: background 0.15s ease, color 0.15s ease;
}
.nmp-hero-jump-link:hover {
    background: var(--primary);
    color: white;
}

/* Marketplace — estimasi harga */
.nmp-pricing {
    padding: 3rem 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-soft);
}
.nmp-pricing-hero {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}
.nmp-pricing-range-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin: 0 0 0.35rem;
}
.nmp-pricing-range-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
}
@media (min-width: 640px) {
    .nmp-pricing-range-val { font-size: 1.75rem; }
}
.nmp-pricing-range-sep {
    font-weight: 700;
    color: var(--ink-soft);
    margin: 0 0.15rem;
}
.nmp-pricing-range-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-muted);
}
.nmp-pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: white;
}
.nmp-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.nmp-pricing-table th,
.nmp-pricing-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border-soft);
}
.nmp-pricing-table thead th {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    background: var(--bg-soft);
}
.nmp-pricing-table tbody tr:last-child th,
.nmp-pricing-table tbody tr:last-child td {
    border-bottom: none;
}
.nmp-pricing-vendor-link {
    font-weight: 700;
    color: var(--ink);
}
.nmp-pricing-vendor-link:hover {
    color: var(--primary);
    text-decoration: underline;
}
.nmp-pricing-badge {
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    background: var(--primary-soft);
    color: var(--primary);
    vertical-align: middle;
}
.nmp-pricing-cell-price {
    display: block;
    font-weight: 700;
    color: var(--ink);
}
.nmp-pricing-cell-unit {
    font-weight: 500;
    color: var(--ink-muted);
}
.nmp-pricing-cell-note {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--ink-soft);
    line-height: 1.45;
}
.nmp-pricing-disclaimer {
    margin: 0.875rem 0 0;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* Marketplace — FAQ kategori */
.nmp-faq {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid var(--border-soft);
}
.nmp-faq-list {
    max-width: 48rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.nmp-faq-item { margin-bottom: 0; }
.nmp-faq-source {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    font-style: italic;
}

.nlp-photo--konsultan-bisnis {
    background: linear-gradient(135deg, #e0e7ff 0%, #6366f1 45%, #312e81 100%);
}
.tile-konsultan-bisnis {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}
.tile-konsultan-bisnis svg {
    color: #4338ca;
}

/* ─── Niche landing page (Airbnb-style partner profile) ─── */
.nlp-page { background: var(--bg); }
.nlp-page .nav { background: var(--bg); }
.nlp-page .nav > .wrap {
    max-width: 84rem;
}

/* Satu lebar kontainer untuk semua blok halaman vendor */
.nlp-wrap {
    max-width: 84rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.nlp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    padding: 0;
    margin: 0 0 1.25rem;
}
.nlp-breadcrumb a { transition: color 0.15s ease; }
.nlp-breadcrumb a:hover { color: var(--primary); }
.nlp-breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

/* Hero */
.nlp-hero {
    padding-top: 2rem;
    padding-bottom: 0;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .nlp-hero {
        padding-top: 2.75rem;
    }
}

.nlp-gallery-wrap {
    margin-bottom: 1.5rem;
    width: 100%;
    min-width: 0;
}
@media (min-width: 768px) {
    .nlp-gallery-wrap {
        margin-bottom: 1.75rem;
    }
}
.nlp-hero-foot {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .nlp-hero-foot {
        padding-bottom: 2.5rem;
    }
}
.nlp-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    margin: 0;
    max-width: 100%;
    overflow-wrap: break-word;
}
.nlp-hero-tagline {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--ink-muted);
    line-height: 1.55;
    margin: 0.625rem 0 0;
    max-width: 42rem;
}
.nlp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--ink-soft);
}
.nlp-hero-meta .nlp-meta-item:not(:first-child)::before {
    content: '·';
    margin: 0 0.625rem;
    color: var(--ink-faint);
    font-weight: 400;
}
.nlp-hero-action {
    display: none;
}

/* CTA card — setelah lokasi, desktop only */
.nlp-section--cta {
    display: none;
}
@media (min-width: 1024px) {
    .nlp-section--cta {
        display: block;
    }
}
.nlp-cta-card {
    display: grid;
    gap: 0;
    width: 100%;
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #0c1f35;
    box-shadow: 0 16px 48px -16px rgba(6, 78, 59, 0.45);
}
@media (min-width: 1024px) {
    .nlp-cta-card {
        grid-template-columns: minmax(0, 1fr) 20rem;
    }
}
.nlp-cta-card-body {
    padding: 1.875rem 2rem;
    min-width: 0;
    background: linear-gradient(135deg, #0c1f35 0%, #0f2d4a 55%, #123a5c 100%);
    color: rgba(255, 255, 255, 0.92);
}
.nlp-cta-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.375rem;
}
.nlp-cta-card-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nlp-cta-card-eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7dd3fc;
}
.nlp-cta-card-title {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.25;
}
.nlp-cta-card-tagline {
    margin: 0.375rem 0 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}
.nlp-cta-card-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.nlp-cta-card-points li {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    line-height: 1.35;
}
.nlp-cta-card-points li svg {
    color: #6ee7b7;
    flex-shrink: 0;
}
.nlp-cta-card-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.875rem 1.625rem;
    background: linear-gradient(165deg, #ecfdf5 0%, #d1fae5 48%, #a7f3d0 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}
@media (min-width: 1024px) {
    .nlp-cta-card-panel {
        border-top: 0;
        border-left: 1px solid rgba(16, 185, 129, 0.25);
    }
}
.nlp-cta-card-price-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #047857;
    margin-bottom: 0.375rem;
}
.nlp-cta-card-price-value {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #064e3b;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}
.nlp-cta-card-price-sep {
    font-weight: 600;
    color: #059669;
}
.nlp-cta-card-price-unit {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #047857;
}
.nlp-cta-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}
.nlp-cta-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8125rem;
    color: #065f46;
    line-height: 1.35;
}
.nlp-cta-card-stat strong {
    font-weight: 800;
    color: #064e3b;
}
.nlp-cta-card-stat svg {
    color: #d97706;
    flex-shrink: 0;
}
.nlp-cta-card-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
    box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.55);
}
.nlp-cta-card-note {
    margin: 0;
    font-size: 0.75rem;
    color: #047857;
    text-align: center;
    line-height: 1.45;
}

.nlp-meta-price {
    color: var(--ink);
    font-weight: 600;
}
.nlp-meta-price .nlp-meta-muted {
    font-weight: 500;
}
.nlp-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1.4;
    white-space: nowrap;
}
.nlp-meta-item svg { flex-shrink: 0; }
.nlp-meta-rating { color: var(--ink); }
.nlp-meta-rating strong { font-weight: 800; }
.nlp-meta-muted { color: var(--ink-soft); font-weight: 500; }
.nlp-meta-verified {
    margin-left: 0;
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--primary);
    font-weight: 600;
}
@media (max-width: 639px) {
    .nlp-meta-item { white-space: normal; }
}

/* Gallery — 5-tile grid */
.nlp-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.375rem;
    height: 260px;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
@media (min-width: 768px) {
    .nlp-gallery { height: 380px; gap: 0.5rem; border-radius: var(--radius-2xl); }
}
@media (max-width: 639px) {
    .nlp-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 110px 110px;
        height: auto;
    }
    .nlp-gallery-main { grid-column: 1 / -1 !important; grid-row: 1 !important; }
    .nlp-gallery-cell-1 { grid-column: 1; grid-row: 2; }
    .nlp-gallery-cell-2 { grid-column: 2; grid-row: 2; }
    .nlp-gallery-cell-3 { grid-column: 1; grid-row: 3; }
    .nlp-gallery-cell-4 { grid-column: 2; grid-row: 3; }
}
.nlp-gallery-main { grid-row: 1 / 3; grid-column: 1; }
.nlp-photo {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: filter 0.2s ease;
}
.nlp-photo:hover { filter: brightness(0.95); }
.nlp-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.62) 100%);
    pointer-events: none;
}
.nlp-photo--catering { background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 50%, #d97706 100%); }
.nlp-photo--kontraktor { background: linear-gradient(135deg, #dbeafe 0%, #60a5fa 50%, #1d4ed8 100%); }
.nlp-photo--fotografer { background: linear-gradient(135deg, #ede9fe 0%, #a78bfa 50%, #6d28d9 100%); }
.nlp-photo--wo { background: linear-gradient(135deg, #fce7f3 0%, #f472b6 50%, #be185d 100%); }
.nlp-photo-scene-wedding { background: linear-gradient(145deg, #fef9c3, #f59e0b) !important; }
.nlp-photo-scene-tasting { background: linear-gradient(145deg, #ffedd5, #ea580c) !important; }
.nlp-photo-scene-buffet { background: linear-gradient(145deg, #fde68a, #ca8a04) !important; }
.nlp-photo-scene-crew { background: linear-gradient(145deg, #fcd34d, #92400e) !important; }
.nlp-photo-scene-renovation { background: linear-gradient(145deg, #bfdbfe, #1e40af) !important; }
.nlp-photo-scene-survey { background: linear-gradient(145deg, #dbeafe, #2563eb) !important; }
.nlp-photo-scene-build { background: linear-gradient(145deg, #93c5fd, #1d4ed8) !important; }
.nlp-photo-scene-progress { background: linear-gradient(145deg, #e0e7ff, #4338ca) !important; }
.nlp-photo-scene-fallback { opacity: 0.7; }
.nlp-gallery-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f3f4f6;
}
.nlp-gallery-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(10,22,40,0.85), rgba(10,22,40,0.95)) !important;
}
.nlp-gallery-info-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0.75rem;
}
.nlp-gallery-info-inner strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
}
.nlp-gallery-info-inner span {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    opacity: 0.75;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.nlp-photo-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.75rem;
}
.nlp-photo-hero-content svg {
    width: 80px;
    height: 80px;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
@media (min-width: 768px) {
    .nlp-photo-hero-content svg { width: 110px; height: 110px; }
}
.nlp-photo-hero-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 10px rgba(0,0,0,0.4);
    padding: 0 1rem;
    text-align: center;
}
.nlp-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 2.5rem 0.875rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
    line-height: 1.35;
    text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
.nlp-photo-label--sm {
    font-size: 0.6875rem;
    padding: 1.75rem 0.625rem 0.625rem;
}

.nlp-photo-overlay--subtle {
    background: linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.12) 100%);
}

/* Content flow — same width as gallery & title */
.nlp-layout {
    width: 100%;
    padding-bottom: 5.5rem;
}
@media (min-width: 1024px) {
    .nlp-layout { padding-bottom: 3rem; }
}


/* Host strip */
.nlp-host-strip {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0;
    margin-bottom: 1.5rem;
}
.nlp-host-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    color: var(--ink);
    border: 1px solid var(--border);
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nlp-host-name {
    font-size: 0.9375rem;
    color: var(--ink);
    margin: 0 0 0.125rem;
    line-height: 1.35;
}
.nlp-host-name strong { font-weight: 600; }
.nlp-host-name span {
    display: block;
    font-weight: 400;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin-top: 0.125rem;
}
.nlp-host-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.625rem;
    font-size: 0.75rem;
    color: var(--ink-faint);
    margin: 0;
    line-height: 1.45;
}
.nlp-host-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}

.nlp-host-location {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1;
}

.nlp-host-location-text {
    white-space: nowrap;
}

/* Dividers & lead copy */
.nlp-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 2.25rem 0;
}
.nlp-lead {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.55;
    margin: 0 0 1rem;
}
.nlp-about p {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin: 0;
}

/* Offers list — Airbnb amenities style */
.nlp-offers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .nlp-offers { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; }
}
.nlp-offer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.nlp-offer-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ink);
}
.nlp-offer-icon--muted { color: var(--ink-soft); }
.nlp-offer-text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 0.125rem;
}
.nlp-offer-text span {
    display: block;
    font-size: 0.875rem;
    color: var(--ink-soft);
    line-height: 1.5;
}
.nlp-offers--plain .nlp-offer-text strong { margin-bottom: 0; }
.nlp-offer--note {
    grid-column: 1 / -1;
    font-size: 0.875rem;
    color: var(--ink-soft);
    padding-top: 0.25rem;
}

/* Highlights — unified panel */
.nlp-section--highlights .nlp-h2,
.nlp-section--services .nlp-h2,
.nlp-section--reviews .nlp-h2,
.nlp-section--process .nlp-h2,
.nlp-section--related .nlp-h2 {
    margin-bottom: 1.5rem;
}
.nlp-section--related .nlp-section-head {
    margin-bottom: 1.5rem;
}
.nlp-section--related .nlp-section-head .nlp-h2 {
    margin-bottom: 0;
}
.nlp-perks-panel {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
}
@media (min-width: 768px) {
    .nlp-perks-panel {
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
}
.nlp-perks-panel-item {
    padding: 1.5rem 1.625rem;
}
.nlp-perks-panel-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .nlp-perks-panel-item:not(:last-child) {
        border-bottom: 0;
        border-right: 1px solid var(--border);
    }
}
.nlp-perks-panel-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.nlp-perks-panel-item p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0;
}

/* Services — panel list */
.nlp-services-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
}
.nlp-services-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nlp-services-panel li {
    padding: 1.125rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    border-bottom: 1px solid var(--border);
}
.nlp-services-panel li:last-child {
    border-bottom: 0;
}
.nlp-services-note {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: var(--ink-muted);
}

/* Highlights grid — card-based with number accent */
.nlp-highlights-grid {
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .nlp-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.nlp-highlight-card {
    display: flex;
    gap: 1rem;
    padding: 1.375rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.nlp-highlight-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}
.nlp-highlight-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}
.nlp-highlight-card strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 0.375rem;
}
.nlp-highlight-card p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0;
}

/* Services grid — 2-column with check icons */
.nlp-services-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
}
@media (min-width: 640px) {
    .nlp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.nlp-services-grid li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 640px) {
    .nlp-services-grid li:nth-child(odd) {
        border-right: 1px solid var(--border-soft);
    }
    .nlp-services-grid li:nth-last-child(-n+2) {
        border-bottom: 0;
    }
    .nlp-services-grid li:last-child:nth-child(odd) {
        border-bottom: 0;
    }
}
@media (max-width: 639px) {
    .nlp-services-grid li:last-child {
        border-bottom: 0;
    }
}
.nlp-services-grid li svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* Simple steps */
.nlp-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.nlp-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.nlp-step-num {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: var(--ink);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.nlp-step strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.nlp-step p {
    font-size: 0.875rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0;
}
.nlp-prep-toggle {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-soft);
    padding-top: 1.25rem;
}
.nlp-prep-toggle summary {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}
.nlp-prep-toggle summary::-webkit-details-marker { display: none; }
.nlp-prep-list {
    margin: 0.75rem 0 0;
    padding-left: 1.125rem;
    color: var(--ink-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}
.nlp-prep-list li + li { margin-top: 0.375rem; }

/* Location */
.nlp-location-text {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1rem;
    color: var(--ink);
    margin: 0 0 1rem;
}
.nlp-location-text svg { color: var(--ink-soft); flex-shrink: 0; }

/* Sections */
.nlp-section {
    padding: 3.25rem 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 5rem;
}
@media (min-width: 768px) {
    .nlp-section { padding: 3.75rem 0; }
}
.nlp-section--lead {
    padding-top: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.nlp-layout > .nlp-section:first-child { padding-top: 2.5rem; }

/* Panduan — flat link list, matches vendor page tone */
.nlp-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
}
.nlp-guide-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.125rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: color 0.15s ease;
}
.nlp-guide-link:hover .nlp-guide-title { color: var(--primary); }
.nlp-guide-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    transition: color 0.15s ease;
}
.nlp-guide-meta {
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    white-space: nowrap;
}
@media (max-width: 479px) {
    .nlp-guide-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
.nlp-h2 {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.nlp-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}
.nlp-tagline {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink-2);
    line-height: 1.5;
    margin: 0;
}
.nlp-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.nlp-overview-copy { flex: 1; min-width: 0; }
.nlp-stat-pill {
    text-align: center;
    padding: 0.625rem 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}
.nlp-stat-pill strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.nlp-stat-pill span {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-top: 0.25rem;
    max-width: 7rem;
    line-height: 1.3;
}
.nlp-accent-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}
.nlp-accent-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-muted);
}

/* Compact highlights — title only, no duplicate desc */
.nlp-highlights-compact {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
    .nlp-highlights-compact { grid-template-columns: repeat(3, 1fr); }
}
.nlp-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.nlp-highlight-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.nlp-highlight-item strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
}

/* Service chips inline */
.nlp-service-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .nlp-service-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
.nlp-service-row-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    flex-shrink: 0;
    padding-top: 0.35rem;
}
.nlp-service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.nlp-service-chip {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-2);
    line-height: 1.35;
}
.nlp-service-chip--meta {
    background: var(--primary-soft);
    border-color: var(--primary-tint);
    color: var(--primary);
}

/* Inline area — replaces full lokasi section */
.nlp-area-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--ink-muted);
    padding: 0.625rem 0.875rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
}
.nlp-area-inline svg { color: var(--primary); flex-shrink: 0; }
.nlp-area-inline strong { color: var(--ink); font-weight: 700; }

/* Inline CTA bar (replaces sidebar) */
.nlp-cta-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}
@media (min-width: 640px) {
    .nlp-cta-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }
}
.nlp-cta-bar-info { min-width: 0; }
.nlp-cta-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.25rem;
}
.nlp-cta-price span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-left: 0.25rem;
}
.nlp-cta-note {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    margin: 0;
}
.nlp-cta-btn { flex-shrink: 0; width: 100%; }
@media (min-width: 640px) {
    .nlp-cta-btn { width: auto; min-width: 11rem; }
}

/* Host card */
.nlp-host-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    margin-bottom: 1.25rem;
}
.nlp-host-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: var(--ink);
    color: white;
    font-size: 0.875rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nlp-host-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
    margin-bottom: 0.375rem;
}
.nlp-host-desc {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0;
}

.nlp-section-sub {
    font-size: 0.875rem;
    color: #374151;
    margin: -0.25rem 0 1.25rem;
    line-height: 1.55;
}
.nlp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.nlp-section-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}
.nlp-section-link:hover { text-decoration: underline; }

.nlp-value-grid {
    display: grid;
    gap: 0.875rem;
}
@media (min-width: 640px) {
    .nlp-value-grid { grid-template-columns: repeat(3, 1fr); }
}
.nlp-value-card {
    padding: 1.125rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.nlp-value-card strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.375rem;
}
.nlp-value-card span {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

/* Amenities — clean list */
.nlp-amenities {
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
}
@media (min-width: 640px) {
    .nlp-amenities { grid-template-columns: repeat(2, 1fr); }
}
.nlp-amenity {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 640px) {
    .nlp-amenity:nth-child(odd) { border-right: 1px solid var(--border-soft); }
    .nlp-amenity:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 639px) {
    .nlp-amenity:last-child { border-bottom: 0; }
}
.nlp-amenity-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.nlp-amenity strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.nlp-amenity span {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

.nlp-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.625rem;
}
@media (min-width: 640px) {
    .nlp-services { grid-template-columns: repeat(2, 1fr); }
}
.nlp-services li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 1rem 1.125rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--ink-2);
    line-height: 1.45;
}
.nlp-min-order {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--ink-muted);
}

/* Process timeline */
.nlp-process-layout {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .nlp-process-layout {
        grid-template-columns: 1fr 260px;
        gap: 2rem;
        align-items: start;
    }
}
.nlp-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nlp-timeline-item {
    display: grid;
    grid-template-columns: 2.75rem 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
}
.nlp-timeline-item-last { padding-bottom: 0; }
.nlp-timeline--compact .nlp-timeline-item { padding-bottom: 1rem; }
.nlp-timeline--compact .nlp-timeline-dot {
    width: 2.25rem;
    height: 2.25rem;
}
.nlp-timeline--compact .nlp-timeline-item {
    grid-template-columns: 2.25rem 1fr;
    gap: 0.75rem;
}
.nlp-timeline--compact .nlp-timeline-title {
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}
.nlp-timeline--compact .nlp-timeline-desc {
    font-size: 0.8125rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 639px) {
    .nlp-timeline--compact .nlp-timeline-desc { display: none; }
}
.nlp-timeline-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}
.nlp-timeline-dot {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: var(--primary-soft);
    border: 2px solid var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}
.nlp-timeline-line {
    flex: 1;
    width: 2px;
    min-height: 1.5rem;
    margin-top: 0.375rem;
    background: linear-gradient(180deg, var(--primary-tint) 0%, var(--border) 100%);
    border-radius: 9999px;
}
.nlp-timeline-step-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.nlp-timeline-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.375rem;
    letter-spacing: -0.02em;
}
.nlp-timeline-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0 0 0.5rem;
}
.nlp-timeline-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin: 0;
    padding: 0.35rem 0.625rem;
    background: var(--bg-soft);
    border-radius: 9999px;
}
.nlp-process-aside {
    padding: 1.25rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}
@media (min-width: 768px) {
    .nlp-process-aside {
        position: sticky;
        top: 7.5rem;
    }
}
.nlp-process-aside-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 1rem;
}
.nlp-process-prep {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.nlp-process-prep li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.45;
}
.nlp-process-prep li svg { flex-shrink: 0; margin-top: 0.125rem; }
.nlp-process-aside-btn { margin-bottom: 0.625rem; }
.nlp-process-prep-toggle {
    margin-bottom: 1rem;
}
.nlp-process-prep-toggle summary {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: background 0.15s ease;
}
.nlp-process-prep-toggle summary::-webkit-details-marker { display: none; }
.nlp-process-prep-toggle summary::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--ink-soft);
    border-bottom: 2px solid var(--ink-soft);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.15s ease;
    margin-top: -0.125rem;
}
.nlp-process-prep-toggle[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 0.125rem;
}
.nlp-process-prep-toggle[open] summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}
.nlp-process-prep-toggle .nlp-process-prep {
    margin: 0;
    padding: 0.75rem 0.875rem 0.25rem;
    background: white;
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.nlp-process-aside-note {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ink-muted);
    text-align: center;
    margin: 0;
    line-height: 1.45;
}

/* Legacy process grid (unused) */
.nlp-process {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .nlp-process { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
.nlp-process-step {
    display: flex;
    gap: 0.875rem;
    padding: 1.125rem 1.25rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    align-items: flex-start;
}
.nlp-process-num {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: var(--primary);
    color: white;
    font-size: 0.8125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nlp-process-step strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.nlp-process-step span {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

/* Reviews */
.nlp-section--reviews {
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem !important;
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 1rem 0;
}
.nlp-reviews-layout {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .nlp-reviews-layout {
        grid-template-columns: 16rem 1fr;
        gap: 2.5rem;
        align-items: start;
    }
}
.nlp-reviews-summary {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: #fafafa;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
}
@media (min-width: 768px) {
    .nlp-reviews-summary {
        position: sticky;
        top: 6rem;
    }
}
.nlp-reviews-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.nlp-reviews-score strong {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
}
.nlp-reviews-score-max {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.nlp-reviews-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    margin-bottom: 0.625rem;
}
.nlp-reviews-stars svg { color: #f59e0b; }
.nlp-reviews-stars svg.star-half { opacity: 0.5; }
.nlp-reviews-stars svg.star-empty { color: #d1d5db; }
.nlp-reviews-count {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    margin: 0 0 1.5rem;
    font-weight: 500;
}
.nlp-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-soft);
}
.nlp-rating-bar-row {
    display: grid;
    grid-template-columns: 1.125rem 1fr 2rem;
    gap: 0.625rem;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink-soft);
}
.nlp-rating-bar-count {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.nlp-rating-bar {
    height: 6px;
    background: #f1f5f9;
    border-radius: 9999px;
    overflow: hidden;
}
.nlp-rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #eab308);
    border-radius: 9999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.nlp-reviews {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nlp-review {
    margin: 0;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.nlp-review:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}
.nlp-review-head {
    display: flex;
    gap: 0.875rem;
    align-items: center;
    margin-bottom: 0.75rem;
}
.nlp-review-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    font-size: 0.8125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.025em;
}
.nlp-review-head strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
}
.nlp-review-head > div > span {
    display: block;
    font-size: 0.8125rem;
    color: var(--ink-soft);
}
.nlp-review-stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
}
.nlp-review-stars svg { color: #f59e0b; }
.nlp-review-verified {
    margin-left: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    letter-spacing: 0.01em;
}
.nlp-review blockquote {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--ink-2);
    line-height: 1.75;
    font-style: italic;
}

.nlp-faqs .nlp-faq { margin-bottom: 0.625rem; }

/* Maps embed */
.nlp-map-embed {
    margin: 1.25rem 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-soft);
}
.nlp-map-embed iframe {
    display: block;
    width: 100%;
    height: 280px;
}
@media (min-width: 768px) {
    .nlp-map-embed iframe { height: 320px; }
}
.nlp-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.15s;
}
.nlp-map-link:hover { color: var(--ink); }
.nlp-map-link svg { flex-shrink: 0; }

/* Location map card */
.nlp-map-card {
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: white;
}
@media (min-width: 640px) {
    .nlp-map-card { grid-template-columns: 1.2fr 1fr; }
}
.nlp-map-visual {
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
}
.nlp-map-pin {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.nlp-map-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.nlp-map-info strong {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ink);
}
.nlp-map-info > span {
    font-size: 0.875rem;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
}
.nlp-map-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Related vendors */
.nlp-related-vendors .nmp-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem 1rem;
}
@media (min-width: 640px) {
    .nlp-related-vendors .nmp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 1.125rem;
    }
}
@media (min-width: 900px) {
    .nlp-related-vendors .nmp-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.nlp-related-vendors .nmp-card-body .pill {
    align-self: flex-start;
}
.nlp-related-grid {
    display: grid;
    gap: 1rem;
    width: 100%;
    min-width: 0;
}
@media (min-width: 640px) {
    .nlp-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.nlp-related-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}
.nlp-related-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.nlp-related-thumb {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nlp-related-thumb svg { width: 2.5rem; height: 2.5rem; opacity: 0.85; }
.nlp-related-body {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}
.nlp-related-card strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
    transition: color 0.15s ease;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.nlp-related-card:hover strong { color: var(--primary); }
.nlp-related-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ink);
    flex-wrap: wrap;
}
.nlp-related-card .pill {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.nlp-back-links { padding: 2.25rem 0 0; }

.nlp-page .footer {
    padding-bottom: 5rem;
}
@media (min-width: 1024px) {
    .nlp-page .footer { padding-bottom: 0; }
}

/* Mobile sticky bar */
.nlp-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 0.875rem 1.25rem;
    padding-bottom: max(0.875rem, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(10,22,40,0.08);
}
.nlp-mobile-bar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 84rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .nlp-mobile-bar-inner { padding: 0 2rem; }
}
.nlp-mobile-bar-meta {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 5rem;
}

/* Legacy vlp (kept for backward compat) */
.vlp-page { background: var(--bg-soft); }
.vlp-page .nav { background: var(--bg-soft); }

.vlp-inner {
    max-width: 36rem;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}
@media (min-width: 768px) {
    .vlp-inner { padding: 3rem 2rem 5rem; }
}

.vlp-kicker {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}

.vlp-hero { margin-bottom: 2.5rem; }

.vlp-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.vlp-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink-2);
    line-height: 1.45;
    margin-bottom: 1rem;
}

.vlp-desc {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.vlp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--ink-soft);
    margin-bottom: 1.75rem;
}
.vlp-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.vlp-wa-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: #25d366;
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 14px -4px rgba(37, 211, 102, 0.5);
    transition: background 0.18s ease, transform 0.18s ease;
    text-align: left;
}
.vlp-wa-btn:hover {
    background: #1eb957;
    transform: translateY(-1px);
}
.vlp-wa-btn strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}
.vlp-wa-btn small {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 0.125rem;
}
.vlp-wa-btn--secondary {
    max-width: 20rem;
    margin: 0 auto;
}

.vlp-section {
    padding: 2rem 0;
    border-top: 1px solid var(--border-soft);
}
.vlp-h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.vlp-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.vlp-highlight {
    padding: 1rem 1.125rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.vlp-highlight strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.vlp-highlight span {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

.vlp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vlp-list li {
    position: relative;
    padding: 0.625rem 0 0.625rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.5;
    border-bottom: 1px solid var(--border-soft);
}
.vlp-list li:last-child { border-bottom: 0; }
.vlp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.vlp-quotes {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.vlp-quote {
    margin: 0;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.vlp-quote blockquote {
    font-size: 0.9375rem;
    color: var(--ink-2);
    line-height: 1.65;
    margin: 0 0 1rem;
}
.vlp-quote figcaption strong {
    display: block;
    font-size: 0.875rem;
    color: var(--ink);
}
.vlp-quote figcaption span {
    font-size: 0.8125rem;
    color: var(--ink-soft);
}

.vlp-faqs .vlp-faq { margin-bottom: 0.5rem; }

.vlp-footer {
    text-align: center;
    padding: 2.5rem 0 1rem;
    border-top: 1px solid var(--border-soft);
}
.vlp-footer p {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
}

.footer-minimal { background: var(--bg-soft); color: var(--ink-soft); }
.footer-minimal .footer-main { display: none; }
.footer-minimal .footer-bottom { border-top: 1px solid var(--border); }
.footer-minimal .footer-copy { color: var(--ink-faint); }

.vendor-lp-sticky-wa {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 50;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.18s ease, background 0.18s ease;
}
.vendor-lp-sticky-wa:hover {
    background: #1eb957;
    transform: scale(1.05);
}

/* Article prose */
.article-prose h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin: 2.25rem 0 0.875rem; }
.article-prose p { color: var(--ink-muted); line-height: 1.8; margin-bottom: 1rem; }
.article-prose ul { list-style: disc; padding-left: 1.5rem; color: var(--ink-muted); }
.article-prose ul li { margin-bottom: 0.5rem; }


/* Rating */
.star-filled { color: #f59e0b; }

/* Map dots illustration */
.map-illust { background-image: radial-gradient(circle at 30% 40%, rgba(37,99,235,0.12), transparent 8%), radial-gradient(circle at 70% 60%, rgba(37,99,235,0.12), transparent 8%), radial-gradient(circle at 50% 20%, rgba(37,99,235,0.12), transparent 6%); }

/* ─── Page sub-nav (niche / info pages) ─── */
.page-nav {
    position: sticky;
    top: 4rem;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 1024px) { .page-nav { top: 4.5rem; } }
.page-nav-inner {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    padding: 0.75rem 0;
    scrollbar-width: none;
}
.page-nav-inner::-webkit-scrollbar { display: none; }
.page-nav-link {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    transition: all 0.15s ease;
    white-space: nowrap;
}
.page-nav-link:hover { color: var(--primary); background: var(--primary-soft); }
.page-nav-link.is-active { color: var(--primary); background: var(--primary-soft); }

/* ─── Filter pills (panduan page) ─── */
.filter-pill {
    display: inline-flex;
    padding: 0.45rem 0.95rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    transition: all 0.15s ease;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill-active {
    background: var(--primary-soft);
    border-color: var(--primary-tint);
    color: var(--primary);
}

/* ─── Panduan page (intent-first UX) ─── */
.panduan-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}
.panduan-crumb a:hover { color: var(--primary); }
.panduan-crumb-sep { opacity: 0.45; }
.panduan-crumb-current { color: var(--ink); font-weight: 600; }

.panduan-topic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .panduan-topic-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.panduan-topic {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: left;
}
.panduan-topic:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.panduan-topic.is-active {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}
.panduan-topic-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.panduan-topic-icon svg { width: 28px; height: 28px; }
.panduan-topic-catering .panduan-topic-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #b45309; }
.panduan-topic-kontraktor .panduan-topic-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.panduan-topic-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
.panduan-topic-desc { font-size: 0.8125rem; color: var(--ink-muted); line-height: 1.5; margin-bottom: 0.5rem; }
.panduan-topic-meta { font-size: 0.75rem; font-weight: 600; color: var(--primary); }

.panduan-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .panduan-layout { grid-template-columns: 240px 1fr; gap: 2.5rem; }
}

.panduan-sidebar-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-xs);
}
@media (min-width: 1024px) {
    .panduan-sidebar-card {
        position: sticky;
        top: 6rem;
    }
}
.panduan-sidebar-title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 0 0.5rem;
    margin-bottom: 0.5rem;
}
.panduan-sidebar-title:not(:first-child) {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
}

.panduan-nav-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.panduan-nav-item:hover { background: var(--bg-soft); color: var(--ink); }
.panduan-nav-item.is-active {
    background: var(--primary-soft);
    color: var(--primary);
}
.panduan-nav-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink-faint);
    min-width: 1.25rem;
    text-align: right;
}
.panduan-nav-item.is-active .panduan-nav-count { color: var(--primary); }

.panduan-filter-mobile summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.panduan-filter-mobile summary::-webkit-details-marker { display: none; }
.panduan-filter-mobile[open] summary {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom-color: transparent;
}
.panduan-filter-mobile .panduan-sidebar-card {
    border-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-top: -1px;
}
@media (min-width: 1024px) {
    .panduan-filter-mobile { display: none; }
    .panduan-sidebar-desktop { display: block; }
}
@media (max-width: 1023px) {
    .panduan-sidebar-desktop { display: none; }
}

.panduan-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.panduan-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.35rem 0.75rem 0.35rem 0.875rem;
    background: var(--primary-soft);
    border: 1px solid var(--primary-tint);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
}
.panduan-chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    font-size: 0.875rem;
    line-height: 1;
    transition: background 0.15s ease;
}
.panduan-chip-remove:hover { background: var(--primary); color: white; }

.panduan-results-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.panduan-results-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.panduan-results-count { font-size: 0.8125rem; color: var(--ink-soft); }

.panduan-group { margin-bottom: 2rem; }
.panduan-group:last-child { margin-bottom: 0; }
.panduan-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}
.panduan-group-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
}

.panduan-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.panduan-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.125rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.panduan-row:hover {
    border-color: var(--primary-tint);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}
.panduan-row-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.panduan-row-icon svg { width: 22px; height: 22px; opacity: 0.85; }
.panduan-row-icon-catering { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #b45309; }
.panduan-row-icon-kontraktor { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.panduan-row-body { flex: 1; min-width: 0; }
.panduan-row-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 0.25rem;
    transition: color 0.15s ease;
}
.panduan-row:hover .panduan-row-title { color: var(--primary); }
.panduan-row-excerpt {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.375rem;
}
.panduan-row-meta {
    font-size: 0.75rem;
    color: var(--ink-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
}
.panduan-row-arrow {
    flex-shrink: 0;
    color: var(--ink-faint);
    transition: color 0.15s ease, transform 0.15s ease;
}
.panduan-row:hover .panduan-row-arrow {
    color: var(--primary);
    transform: translateX(2px);
}

.panduan-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: white;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-xl);
}
.panduan-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panduan-next-step {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .panduan-next-step {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.panduan-next-step p { font-size: 0.875rem; color: var(--ink-muted); }
.panduan-next-step strong { display: block; font-size: 0.9375rem; color: var(--ink); margin-bottom: 0.25rem; }

/* ─── Homepage (selaras hub page) ─── */
.home-search-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 9999px;
    box-shadow: var(--shadow-lg);
    padding: 0.45rem;
    max-width: 36rem;
    margin-bottom: 1.25rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.home-search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl), 0 0 0 4px var(--primary-ring);
}
.home-search-field {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    min-width: 9rem;
    padding: 0.5rem 0.75rem 0.5rem 1rem;
}
.home-search-divider {
    display: none;
    width: 1px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .home-search-divider { display: block; }
}
.home-search-select {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    padding-right: 1.25rem;
}
.home-search-btn { flex-shrink: 0; }

.home-intent-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 36rem;
    margin-bottom: 1.25rem;
}
.home-intent-card {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: white;
    font-size: 0.75rem;
    color: var(--ink-muted);
    line-height: 1.45;
    transition: all 0.2s ease;
    text-decoration: none;
}
.home-intent-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}
.home-intent-card strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.125rem;
}
.home-intent-card:hover strong { color: var(--primary); }
.home-intent-card svg { flex-shrink: 0; margin-top: 0.125rem; }

.home-hero-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.home-hero-hub-link:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
}

.home-value-panel {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
}
@media (min-width: 768px) {
    .home-value-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.home-value-panel-item {
    padding: 1.625rem 1.75rem;
}
.home-value-panel-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .home-value-panel-item:not(:last-child) {
        border-bottom: 0;
        border-right: 1px solid var(--border);
    }
}
.home-value-panel-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.home-value-panel-item p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─── Intent split (homepage hero) — legacy alias ─── */
.intent-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}
.intent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 0.75rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    background: white;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    transition: all 0.2s ease;
    text-align: center;
}
.intent-card:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — DARK HERO REBRANDING
   ═══════════════════════════════════════════════════════ */

/* ─── Dark Hero — immersive, full-width ─── */
.site-hero-dark {
    position: relative;
    background: var(--hero-dark);
    overflow: hidden;
    padding: 5rem 0 4.5rem;
}
@media (min-width: 1024px) {
    .site-hero-dark { padding: 7rem 0 6rem; }
}

/* Teal radial glow top-center */
.site-hero-dark::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    top: -250px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 65%);
    pointer-events: none;
}
/* Amber glow bottom-right */
.site-hero-dark::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    bottom: -150px; right: -100px;
    background: radial-gradient(circle, rgba(217,119,6,0.1) 0%, transparent 65%);
    pointer-events: none;
}

/* Subtle grid dots pattern */
.site-hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.site-hero-dark-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13,148,136,0.15);
    border: 1px solid rgba(13,148,136,0.35);
    color: #5eead4;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.site-hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2dd4bf;
    animation: pulse-dot 2s infinite;
}

.site-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.03;
    color: #fff;
    margin-bottom: 1.375rem;
}
.site-hero-title-accent {
    color: #2dd4bf; /* teal-300 */
}
.site-hero-title-accent-amber {
    color: #fbbf24; /* amber-400 */
}

.site-hero-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

/* ─── Dark search bar ─── */
.site-hero-search {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 9999px;
    overflow: hidden;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 40px -12px rgba(0,0,0,0.4);
    transition: box-shadow 0.2s ease;
}
.site-hero-search:focus-within {
    box-shadow: 0 0 0 3px rgba(13,148,136,0.5), 0 20px 40px -12px rgba(0,0,0,0.4);
}
.site-hero-search-seg {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    flex: 1;
    min-width: 0;
    cursor: pointer;
    position: relative;
    background: transparent;
}
.site-hero-search-seg + .site-hero-search-seg::before {
    content: '';
    position: absolute;
    left: 0; top: 22%; bottom: 22%;
    width: 1px;
    background: #e2e8f0;
}
.site-hero-search-label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 0.175rem;
}
.site-hero-search-select {
    width: 100%;
    border: 0;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    padding: 0;
    line-height: 1.3;
}
.site-hero-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 0 1.75rem;
    margin: 0.375rem;
    border-radius: 9999px;
    flex-shrink: 0;
    border: 0;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.15s ease;
    white-space: nowrap;
}
.site-hero-search-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.03);
}

/* Mobile stacked search */
@media (max-width: 599px) {
    .site-hero-search {
        flex-direction: column;
        border-radius: var(--radius-xl);
        overflow: visible;
        background: transparent;
        box-shadow: none;
        gap: 0.5rem;
    }
    .site-hero-search:focus-within { box-shadow: none; }
    .site-hero-search-seg {
        background: white;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
    }
    .site-hero-search-seg + .site-hero-search-seg::before { display: none; }
    .site-hero-search-btn {
        margin: 0;
        border-radius: var(--radius-lg);
        padding: 1rem;
        font-size: 1rem;
    }
}

/* ─── Hero popular chips (on dark) ─── */
.site-hero-popular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3.5rem;
}
.site-hero-popular-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}
.site-hero-popular-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s ease;
}
.site-hero-popular-chip:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: white;
}

/* ─── Hero bottom trust row (dark bg) ─── */
.site-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.site-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    padding: 0.5rem 0;
}
.site-hero-trust-item strong {
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
}
.site-hero-trust-icon {
    width: 1.75rem; height: 1.75rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.site-hero-trust-icon svg { width: 0.9375rem; height: 0.9375rem; }

/* ─── Section system (new consistent) ─── */
.site-section { padding: 4.5rem 0; }
@media (min-width: 1024px) { .site-section { padding: 5.5rem 0; } }

.site-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}
.site-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}
.site-section-label::before {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 2px;
    background: var(--primary);
    border-radius: 9999px;
}
.site-section-title {
    font-size: clamp(1.625rem, 2.8vw, 2.125rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.site-section-sub {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0;
}
.site-section-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.site-section-link:hover { color: var(--primary); }

/* ─── Category strip (new compact) ─── */
.site-section-cats {
    padding: 2rem 0 !important;
    background: white;
    border-bottom: 1px solid var(--border-soft);
}
.site-section-cats .wrap {
    min-width: 0;
}
.site-cats-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}
.site-cats-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}
.site-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    max-width: 100%;
    padding: 0.625rem 1.125rem;
    border-radius: 9999px;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    color: var(--ink-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    cursor: pointer;
}
.site-cat-btn-text {
    min-width: 0;
    line-height: 1.3;
}
.site-cat-btn:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary-hover);
}
.site-cat-btn.is-soon {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}
.site-cat-icon {
    width: 2rem; height: 2rem;
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.site-cat-icon svg { width: 1.125rem; height: 1.125rem; }
.site-cat-soon-tag {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-tint);
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ─── Vendor cards (new style) ─── */
.site-vendors-grid {
    display: grid;
    gap: 1.25rem;
    min-width: 0;
    max-width: 100%;
}
@media (min-width: 600px) { .site-vendors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-vendors-grid { grid-template-columns: repeat(4, 1fr); } }

.site-vendor-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    text-decoration: none;
    transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.site-vendor-card:hover {
    box-shadow: 0 20px 40px -12px rgba(15,23,42,0.14);
    border-color: var(--border);
}
.site-vendor-thumb {
    position: relative;
    height: 190px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.site-vendor-thumb svg {
    width: 72px; height: 72px;
    opacity: 0.8;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.site-vendor-card:hover .site-vendor-thumb svg { transform: scale(1.1); }
.site-vendor-thumb-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(16,185,129,0.2);
    color: #047857;
    font-size: 0.5625rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.site-vendor-thumb-badge svg {
    width: 0.625rem;
    height: 0.625rem;
    opacity: 1;
    transform: none;
}
.site-vendor-card:hover .site-vendor-thumb-badge svg { transform: none; }
.site-vendor-thumb-rating {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(15,23,42,0.65);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 9999px;
}
.site-vendor-thumb-rating svg { width: 0.7rem; height: 0.7rem; color: #fbbf24; }
.site-vendor-body { padding: 1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.site-vendor-niche {
    font-size: 0.625rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.site-vendor-name {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 0.3rem;
    transition: color 0.15s ease;
}
.site-vendor-card:hover .site-vendor-name { color: var(--primary); }
.site-vendor-tagline {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.site-vendor-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-soft);
}
.site-vendor-area {
    display: flex; align-items: center; gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.site-vendor-area svg { width: 0.7rem; height: 0.7rem; }
.site-vendor-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 0.3rem 0.625rem;
    border-radius: 9999px;
}
.site-vendor-wa svg { width: 0.75rem; height: 0.75rem; }

/* ─── City hubs grid ─── */
.site-hubs-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) { .site-hubs-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Steps (how it works) ─── */
.site-steps-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) { .site-steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.site-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    transition: all 0.2s ease;
}
.site-step:hover { border-color: var(--primary-tint); box-shadow: var(--shadow-md); }
.site-step-num {
    width: 2.5rem; height: 2.5rem;
    border-radius: 9999px;
    background: var(--primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}
.site-step-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}
.site-step-desc {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0;
}

/* ─── Article cards (new) ─── */
.site-articles-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) { .site-articles-grid { grid-template-columns: repeat(3, 1fr); } }
.site-article-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    text-decoration: none;
    transition: all 0.22s ease;
}
.site-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -10px rgba(15,23,42,0.1);
    border-color: var(--border);
}
.site-article-thumb { /* extends .article-media */ }
.site-article-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.site-article-meta { display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.5rem; }
.site-article-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    flex: 1;
    margin-bottom: 0.5rem;
    transition: color 0.15s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.site-article-card:hover .site-article-title { color: var(--primary); }
.site-article-excerpt {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── Value cards ─── */
.site-values-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) { .site-values-grid { grid-template-columns: repeat(3, 1fr); } }
.site-value-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    transition: all 0.22s ease;
}
.site-value-card:hover { border-color: var(--primary-tint); box-shadow: var(--shadow-md); }
.site-value-icon {
    width: 2.75rem; height: 2.75rem;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.site-value-icon svg { width: 1.25rem; height: 1.25rem; }
.site-value-icon-teal { background: var(--primary-soft); color: var(--primary); }
.site-value-icon-amber { background: #fffbeb; color: #d97706; }
.site-value-icon-slate { background: #f1f5f9; color: #475569; }
.site-value-title { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.site-value-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; margin: 0; }

/* ─── Nilai investasi (cara kerja B2B) ─── */
.roi-pitch {
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
}
@media (min-width: 768px) {
    .roi-pitch { padding: 2rem 2.5rem; }
}
.roi-pitch-lead {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}
.roi-pitch-lead strong { color: var(--ink); font-weight: 700; }
.roi-pitch-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.roi-pitch-stat {
    text-align: center;
    min-width: 5.5rem;
}
.roi-pitch-stat dt {
    font-size: 1.375rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #0f766e;
    line-height: 1.1;
}
.roi-pitch-stat dd {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin: 0.25rem 0 0;
}
.roi-block {
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding: 1.5rem 1.35rem;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
}
@media (min-width: 768px) {
    .roi-block { padding: 1.75rem 2rem; margin-bottom: 2.25rem; }
}
.roi-block-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 0 0 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border-soft);
}
.roi-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.roi-timeline-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-soft);
}
.roi-timeline-step:last-child { border-bottom: none; padding-bottom: 0; }
.roi-timeline-step:first-child { padding-top: 0; }
.roi-timeline-num {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 9999px;
    margin-top: 0.125rem;
}
.roi-timeline-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.25rem;
    line-height: 1.35;
}
.roi-timeline-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.55;
    margin: 0;
}
.roi-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.roi-checklist li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.55;
}
.roi-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
}
.roi-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.25rem;
    padding: 0 0.25rem;
}
.roi-table {
    width: 100%;
    min-width: 32rem;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.roi-table th,
.roi-table td {
    padding: 0.75rem 0.875rem;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
    vertical-align: top;
    line-height: 1.45;
}
.roi-table thead th {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border-bottom-width: 2px;
}
.roi-table tbody th[scope="row"] {
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    width: 8rem;
}
.roi-table-col--pick {
    background: #f0fdfa;
    color: #0f766e;
    font-weight: 600;
}
.roi-table thead .roi-table-col--pick { color: #0f766e; }
.roi-table tbody tr:last-child th,
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table-note {
    font-size: 0.75rem;
    color: var(--ink-soft);
    margin: 0.875rem 0 0;
    line-height: 1.5;
}
.roi-closer {
    max-width: 36rem;
    margin: 0.5rem auto 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.65;
}
.roi-closer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}
.roi-closer a:hover { text-decoration: underline; }

/* ─── Tentang page ─── */
.about-prose {
    text-align: left;
    margin-top: 1.25rem;
}
.about-prose p {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin: 0 0 1rem;
}
.about-prose p:last-child { margin-bottom: 0; }
.about-prose strong { color: var(--ink); font-weight: 700; }
.about-stats {
    display: grid;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .about-stats { grid-template-columns: repeat(4, 1fr); }
}
.about-stat {
    padding: 1.25rem 1.35rem;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    text-align: center;
}
.about-stat-val {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 0 0 0.25rem;
    line-height: 1.1;
}
.about-stat-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.375rem;
}
.about-stat-sub {
    font-size: 0.75rem;
    color: var(--ink-soft);
    line-height: 1.45;
    margin: 0;
}
.site-path-desc {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: -0.75rem 0 1.5rem;
    flex: 1;
}
.site-path-card--dark .site-path-desc { color: rgba(255,255,255,0.65); }

/* ─── Inner page hero (compact) ─── */
.site-hero-dark--page {
    padding: 4.5rem 0 4rem;
}
@media (min-width: 1024px) {
    .site-hero-dark--page { padding: 5.5rem 0 4.5rem; }
}
.site-hero-dark--page .site-hero-popular { margin-bottom: 2.5rem; }
.site-hero-dark--page .site-hero-trust { padding-top: 2.5rem; }

/* ─── Legal & contact pages ─── */
.legal-doc {
    max-width: 42rem;
    margin: 0 auto;
}
.legal-doc-meta {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin: 0 0 1.5rem;
}
.legal-doc-toc {
    padding: 1.25rem 1.35rem;
    margin-bottom: 2rem;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
}
.legal-doc-toc-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin: 0 0 0.75rem;
}
.legal-doc-toc-list {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.35rem;
}
.legal-doc-toc-list a {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.legal-doc-toc-list a:hover { text-decoration: underline; }
.legal-prose-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-soft);
}
.legal-prose-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.legal-prose h2 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    line-height: 1.35;
}
.legal-prose p {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin: 0 0 1rem;
}
.legal-prose p:last-child { margin-bottom: 0; }
.legal-prose ul,
.legal-prose ol {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
    color: var(--ink-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}
.legal-prose li { margin-bottom: 0.35rem; }
.legal-prose li:last-child { margin-bottom: 0; }
.legal-prose strong { color: var(--ink); font-weight: 700; }
.legal-prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-prose a:hover { color: var(--primary-hover); }

.contact-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 56rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.contact-card--primary {
    border-color: rgba(13, 148, 136, 0.25);
    background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}
.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background: #ecfdf5;
    color: var(--primary);
    margin-bottom: 1rem;
}
.contact-card-icon--email { background: #eff6ff; color: #2563eb; }
.contact-card-icon--doc { background: #f8fafc; color: var(--ink-muted); }
.contact-card-icon svg { width: 1.75rem; height: 1.75rem; }
.contact-card-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.contact-card-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex: 1;
}
.contact-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease;
}
.contact-card-btn:hover { background: var(--primary-hover); }
.contact-card-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    word-break: break-all;
}
.contact-card-link:hover { text-decoration: underline; }
.contact-card-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
.contact-card-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.contact-card-links a:hover { text-decoration: underline; }
.contact-card-note {
    font-size: 0.75rem;
    color: var(--ink-soft);
    margin: 0.75rem 0 0;
}

/* ─── Affiliate program ─── */
.aff-share-panel {
    max-width: 42rem;
    margin: 0 auto;
}
.aff-share-head { margin-bottom: 1.5rem; }
.aff-code {
    color: var(--primary);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.aff-share-links { display: grid; gap: 1rem; }
.aff-share-item {
    padding: 1.15rem 1.25rem;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
}
.aff-share-item-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.25rem;
}
.aff-share-item-hint {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin: 0 0 0.85rem;
    line-height: 1.5;
}
.aff-share-copy {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}
.aff-share-input {
    flex: 1;
    min-width: 0;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    color: var(--ink-muted);
    background: #f8fafc;
}
.aff-share-btn {
    flex-shrink: 0;
    padding: 0.6rem 0.9rem;
    border: none;
    border-radius: var(--radius-lg);
    background: var(--primary);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
}
.aff-share-btn:hover { background: var(--primary-hover); }

.aff-commission-grid {
    display: grid;
    gap: 1rem;
    max-width: 40rem;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .aff-commission-grid { grid-template-columns: repeat(2, 1fr); }
}
.aff-commission-card {
    position: relative;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    text-align: center;
}
.aff-commission-card--featured {
    background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
    border-color: rgba(13, 148, 136, 0.25);
}
.aff-commission-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: #ccfbf1;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
}
.aff-commission-plan {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ink-soft);
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.aff-commission-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
}
.aff-commission-price span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-top: 0.15rem;
}
.aff-commission-val {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--primary);
    margin: 0;
    line-height: 1.1;
}
.aff-commission-label {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    margin: 0.25rem 0 0.85rem;
}
.aff-commission-note {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.5;
}
.aff-commission-foot {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin: 1.25rem 0 0;
}
.aff-commission-foot a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.aff-commission-foot a:hover { text-decoration: underline; }

.aff-faq-list {
    max-width: 40rem;
    margin: 0 auto;
    display: grid;
    gap: 0.65rem;
}
.aff-faq-item {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    background: #fff;
    overflow: hidden;
}
.aff-faq-q {
    padding: 1rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}
.aff-faq-q::-webkit-details-marker { display: none; }
.aff-faq-a {
    padding: 0 1.15rem 1rem;
    margin: 0;
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.65;
}

.aff-ref-banner-wrap {
    padding: 0.85rem 0;
    background: #ecfdf5;
    border-bottom: 1px solid #99f6e4;
}
.aff-ref-banner {
    margin: 0;
    text-align: center;
    font-size: 0.875rem;
    color: #115e59;
    line-height: 1.5;
}
.aff-ref-banner strong {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.legal-prose code {
    font-size: 0.85em;
    padding: 0.1rem 0.35rem;
    border-radius: 0.25rem;
    background: #f1f5f9;
    color: var(--ink);
}

/* ─── User paths (cara kerja) ─── */
.site-paths-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .site-paths-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.site-path-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    transition: all 0.22s ease;
}
.site-path-card:hover {
    border-color: var(--primary-tint);
    box-shadow: var(--shadow-md);
}
.site-path-card--dark {
    background: var(--hero-dark);
    border-color: rgba(255,255,255,0.08);
}
.site-path-card--dark:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.35);
}
.site-path-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}
.site-path-badge-teal {
    background: var(--primary-soft);
    color: var(--primary);
}
.site-path-card--dark .site-path-badge-teal {
    background: rgba(13,148,136,0.15);
    color: #5eead4;
}
.site-path-badge-amber {
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
    border: 1px solid rgba(251,191,36,0.25);
}
.site-path-title {
    font-size: 1.375rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.site-path-card--dark .site-path-title { color: white; }
.site-path-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}
.site-path-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.site-path-step-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: var(--primary);
    color: white;
    font-size: 0.8125rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.site-path-card--dark .site-path-step-num {
    background: rgba(255,255,255,0.12);
    color: white;
}
.site-path-step-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.site-path-card--dark .site-path-step-title { color: white; }
.site-path-step-desc {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0;
}
.site-path-card--dark .site-path-step-desc { color: rgba(255,255,255,0.55); }
.site-path-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.15s ease;
}
.site-path-cta:hover { color: var(--primary-hover); }
.site-path-cta--light {
    color: white;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    justify-content: center;
}
.site-path-cta--light:hover {
    background: rgba(255,255,255,0.16);
    color: white;
}

/* ─── Pricing panel (cara kerja) ─── */
.pricing-panel {
    display: grid;
    gap: 0;
    max-width: 54rem;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}
@media (min-width: 768px) {
    .pricing-panel { grid-template-columns: 1fr 1fr; }
}
.pricing-panel-col {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem 1.75rem;
    background: white;
}
@media (min-width: 768px) {
    .pricing-panel-col { padding: 2.25rem 2rem 2rem; }
    .pricing-panel-col + .pricing-panel-col { border-left: 1px solid var(--border-soft); }
}
.pricing-panel-col--featured {
    background: linear-gradient(165deg, #f0fdfa 0%, #ffffff 55%);
}
@media (max-width: 767px) {
    .pricing-panel-col--featured { border-top: 1px solid var(--border-soft); }
}
.pricing-panel-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f766e;
    background: #ccfbf1;
    border: 1px solid #99f6e4;
    padding: 0.3rem 0.625rem;
    border-radius: 9999px;
}
.pricing-panel-tier {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 0.375rem;
}
.pricing-panel-col--featured .pricing-panel-tier { color: #0d9488; }
.pricing-panel-desc {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
    padding-right: 5.5rem;
}
.pricing-panel-price {
    margin: 0 0 1.5rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.125rem;
}
.pricing-panel-price-currency {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink-soft);
    margin-top: 0.35rem;
}
.pricing-panel-price-val {
    font-size: clamp(2.75rem, 5vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
}
.pricing-panel-col--featured .pricing-panel-price-val { color: #0f766e; }
.pricing-panel-price-unit {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-muted);
    margin-bottom: 0.2rem;
}
.pricing-panel-price-period {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-left: 0.125rem;
}
.pricing-panel-features {
    list-style: none;
    padding: 1.25rem 0 0;
    margin: 0 0 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    border-top: 1px solid var(--border-soft);
}
.pricing-panel-col--featured .pricing-panel-features {
    border-top-color: rgba(13, 148, 136, 0.15);
}
.pricing-panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.45;
}
.pricing-panel-features svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.pricing-panel-col--featured .pricing-panel-features svg { color: #0d9488; }
.pricing-panel-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8125rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
    background: white;
    border: 1.5px solid var(--border);
    transition: all 0.18s ease;
    margin-top: auto;
}
.pricing-panel-cta:hover {
    border-color: var(--ink);
    background: var(--bg-soft);
}
.pricing-panel-cta--primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.pricing-panel-cta--primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}
.pricing-panel-cta svg { width: 1rem; height: 1rem; }
.pricing-panel-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin: 1.5rem 0 0;
    line-height: 1.6;
}

/* ─── Hero v2 — Centered, Airbnb-style ─── */
.home-hero-v2 {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 4.5rem 0 3.5rem;
    text-align: center;
}
@media (min-width: 1024px) {
    .home-hero-v2 { padding: 6rem 0 4.5rem; }
}
.home-hero-v2-blob-tl {
    position: absolute;
    width: 600px; height: 600px;
    top: -200px; left: -200px;
    background: radial-gradient(circle, rgba(37,99,235,0.055) 0%, transparent 65%);
    pointer-events: none;
}
.home-hero-v2-blob-br {
    position: absolute;
    width: 500px; height: 500px;
    bottom: -150px; right: -150px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.home-hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0fdf4;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    border: 1px solid #bbf7d0;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}
.home-hero-v2-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
}
.home-hero-v2-title {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 1.25rem;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}
.home-hero-v2-title .text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.home-hero-v2-sub {
    font-size: 1.0625rem;
    color: var(--ink-muted);
    line-height: 1.65;
    max-width: 38rem;
    margin: 0 auto 2.25rem;
}

/* ─── Big centered search bar (Airbnb-style) ─── */
.home-search-v2-wrap {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}
.home-search-v2 {
    display: flex;
    align-items: stretch;
    background: white;
    border: 1.5px solid var(--border-strong);
    border-radius: 9999px;
    box-shadow: 0 8px 32px -8px rgba(10,22,40,0.14), 0 2px 8px -2px rgba(10,22,40,0.08);
    width: 100%;
    max-width: 52rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.home-search-v2:focus-within {
    border-color: var(--primary);
    box-shadow: 0 8px 32px -8px rgba(37,99,235,0.22), 0 0 0 4px var(--primary-ring);
}
.home-search-v2-segment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 1.25rem;
    flex: 1;
    min-width: 0;
    cursor: pointer;
    transition: background 0.15s ease;
    position: relative;
}
.home-search-v2-segment:hover { background: var(--bg-soft); }
.home-search-v2-segment + .home-search-v2-segment::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
}
.home-search-v2-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.2rem;
    white-space: nowrap;
}
.home-search-v2-select {
    width: 100%;
    border: 0;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-muted);
    outline: none;
    cursor: pointer;
    appearance: none;
    padding: 0;
    line-height: 1.3;
}
.home-search-v2-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 0 1.75rem;
    margin: 0.375rem;
    border-radius: 9999px;
    flex-shrink: 0;
    cursor: pointer;
    border: 0;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}
.home-search-v2-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.03);
    box-shadow: 0 4px 14px -3px rgba(37,99,235,0.45);
}
/* Mobile: stack search segments */
@media (max-width: 639px) {
    .home-search-v2 {
        flex-direction: column;
        border-radius: var(--radius-xl);
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 0.5rem;
    }
    .home-search-v2:focus-within {
        border-color: transparent;
        box-shadow: none;
    }
    .home-search-v2-segment {
        background: white;
        border: 1.5px solid var(--border-strong);
        border-radius: var(--radius-lg);
        padding: 0.9rem 1.1rem;
    }
    .home-search-v2-segment:hover { background: var(--bg-soft); }
    .home-search-v2-segment + .home-search-v2-segment::before { display: none; }
    .home-search-v2-btn {
        margin: 0;
        border-radius: var(--radius-lg);
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
    }
}

/* ─── Popular / quick links pills ─── */
.home-popular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}
.home-popular-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.home-popular-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    background: white;
    border: 1.5px solid var(--border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-decoration: none;
    transition: all 0.18s ease;
}
.home-popular-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
    transform: translateY(-1px);
}

/* ─── Trust stats bar (inline, below hero) ─── */
.home-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem 1.75rem;
    padding: 1.25rem 1rem;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg-soft);
}
.home-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ink-muted);
    font-weight: 500;
}
.home-trust-item strong {
    font-weight: 800;
    color: var(--ink);
    font-size: 0.9375rem;
}

/* ─── Category strip (Airbnb-style horizontal) ─── */
.home-cats-section {
    padding: 2.5rem 0;
    background: white;
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}
.home-cats-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.25rem 1.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}
.home-cats-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
    .home-cats-scroll {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
        padding: 0.25rem 2rem;
    }
}
@media (min-width: 1280px) {
    .home-cats-scroll { padding: 0.25rem 2.5rem; }
}
.home-cat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.125rem 1.5rem;
    border-radius: var(--radius-xl);
    background: white;
    border: 1.5px solid var(--border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    scroll-snap-align: start;
    transition: all 0.2s ease;
    min-width: 90px;
    position: relative;
    overflow: hidden;
}
.home-cat-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-soft);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.home-cat-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.home-cat-chip:hover::before { opacity: 1; }
.home-cat-chip-icon {
    width: 2.75rem; height: 2.75rem;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s ease;
    position: relative;
}
.home-cat-chip-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:inherit;
    filter:saturate(1.05) contrast(1.05);
}
.home-cat-chip-icon svg{ position:relative; z-index:1; }
.home-cat-chip:hover .home-cat-chip-icon { transform: scale(1.1); }
.home-cat-chip-icon svg { width: 1.625rem; height: 1.625rem; }
.home-cat-chip-label { position: relative; line-height: 1.2; }
.home-cat-chip-soon {
    position: absolute;
    top: -0.5rem; right: -0.5rem;
    background: var(--bg-tint);
    color: var(--primary);
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ─── Featured vendors grid — bigger, cleaner ─── */
.home-vendors-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .home-vendors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .home-vendors-grid { grid-template-columns: repeat(4, 1fr); }
}
.home-vendor-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    text-decoration: none;
    border: 1px solid var(--border-soft);
}
.home-vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(10,22,40,0.14);
}
.home-vendor-thumb {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home-vendor-thumb svg {
    width: 80px; height: 80px;
    opacity: 0.85;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.home-vendor-card:hover .home-vendor-thumb svg { transform: scale(1.08); }
.home-vendor-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(16,185,129,0.25);
    color: #047857;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.home-vendor-badge svg { width: 0.625rem; height: 0.625rem; }
.home-vendor-rating {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
}
.home-vendor-rating svg { width: 0.75rem; height: 0.75rem; color: #fbbf24; }
.home-vendor-body {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.home-vendor-niche {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.375rem;
}
.home-vendor-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 0.3rem;
    transition: color 0.15s ease;
}
.home-vendor-card:hover .home-vendor-name { color: var(--primary); }
.home-vendor-tagline {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.home-vendor-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-soft);
}
.home-vendor-area {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.home-vendor-area svg { width: 0.75rem; height: 0.75rem; }
.home-vendor-cta {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

/* ─── Section dividers ─── */
.home-section {
    padding: 4rem 0;
}
@media (min-width: 1024px) {
    .home-section { padding: 5rem 0; }
}
.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.home-section-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.15s ease;
    white-space: nowrap;
}
.home-section-link:hover { color: var(--primary); }

/* ─── City hub cards v2 (taller, more impact) ─── */
.home-hubs-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .home-hubs-grid { grid-template-columns: repeat(3, 1fr); }
}
.home-hub-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    display: block;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.home-hub-card:not(.home-hub-card-soon):hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 56px -16px rgba(10,22,40,0.28);
}
.home-hub-illust {
    height: 280px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .home-hub-illust { height: 320px; } }
.home-hub-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}
.home-hub-illust--has-img .city-dots { opacity: 0.3; z-index: 1; }
.home-hub-illust--has-img .city-bg-letter { opacity: 0.06; z-index: 1; }
.home-hub-illust--has-img .city-overlay {
    z-index: 2;
    background: linear-gradient(170deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}
.home-hub-illust--has-img .city-content { z-index: 3; }
.home-hub-card:not(.home-hub-card-soon):hover .home-hub-img {
    transform: scale(1.06);
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.home-hub-img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }

/* ─── Panduan article cards v2 ─── */
.home-articles-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) { .home-articles-grid { grid-template-columns: repeat(3, 1fr); } }
.home-article-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: all 0.22s ease;
    text-decoration: none;
}
.home-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -10px rgba(10,22,40,0.12);
}
.home-article-thumb { /* extends .article-media */ }
.home-article-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.home-article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}
.home-article-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    flex: 1;
    margin-bottom: 0.5rem;
    transition: color 0.15s ease;
}
.home-article-card:hover .home-article-title { color: var(--primary); }
.home-article-excerpt {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── How it works — clean steps ─── */
.home-steps-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
}
@media (min-width: 768px) {
    .home-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .home-steps-grid::before {
        content: '';
        position: absolute;
        top: 2.25rem;
        left: calc(33.33% + 1.5rem);
        right: calc(33.33% + 1.5rem);
        height: 1.5px;
        background: linear-gradient(90deg, var(--primary-tint), var(--primary-tint));
        background-size: 8px 1.5px;
        background-repeat: repeat-x;
        border-top: 1.5px dashed var(--primary-tint);
    }
}
.home-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all 0.22s ease;
}
.home-step:hover {
    border-color: var(--primary-tint);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.home-step-icon {
    width: 3.5rem; height: 3.5rem;
    border-radius: 9999px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
}
.home-step-icon svg { width: 1.5rem; height: 1.5rem; }
.home-step-num {
    position: absolute;
    top: -0.5rem; right: -0.5rem;
    width: 1.5rem; height: 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid white;
}
.home-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.home-step-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.65;
}

/* ─── Value props — clean 3-col ─── */
.home-values-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .home-values-grid { grid-template-columns: repeat(3, 1fr); }
}
.home-value-card {
    padding: 2rem 1.75rem;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    transition: all 0.22s ease;
}
.home-value-card:hover {
    border-color: var(--primary-tint);
    box-shadow: var(--shadow-md);
}
.home-value-icon {
    width: 2.75rem; height: 2.75rem;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.home-value-icon svg { width: 1.375rem; height: 1.375rem; }
.home-value-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.home-value-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0;
}

/* ─── CTA band (bottom of page) ─── */
.home-cta-band {
    background: var(--ink);
    border-radius: var(--radius-2xl);
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 1.25rem 4rem;
}
@media (min-width: 768px) {
    .home-cta-band { margin: 0 2rem 5rem; padding: 4rem 3rem; }
}
@media (min-width: 1280px) {
    .home-cta-band { margin: 0 2.5rem 5rem; max-width: 77.5rem; margin-left: auto; margin-right: auto; }
}
.home-cta-band::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    top: -250px; right: -150px;
    background: radial-gradient(circle, rgba(37,99,235,0.35) 0%, transparent 60%);
    pointer-events: none;
}
.home-cta-band::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    bottom: -200px; left: -100px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.intent-card strong { font-size: 0.875rem; color: var(--ink); display: block; }
.intent-card:hover strong { color: var(--primary); }

/* ─── Pagination ─── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: white;
    text-decoration: none;
    transition: all 0.15s ease;
}
.pagination-btn:hover:not(.pagination-btn-disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}
.pagination-btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.pagination-info {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   BLOG LISTING PAGE
   ═══════════════════════════════════════════════════ */

/* Hero */
.blog-hero {
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    padding: 2.5rem 0 0;
}
.blog-crumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}
.blog-crumb a { color: var(--ink-soft); transition: color 0.15s; }
.blog-crumb a:hover { color: var(--primary); }
.blog-crumb span { color: var(--ink); font-weight: 600; }
.blog-hero-body { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.15;
    margin: 0.5rem 0 0.5rem;
}
.blog-hero-sub {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 42rem;
    margin: 0;
}
/* Category chips */
.blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
}
.blog-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 99px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    transition: all 0.15s;
    text-decoration: none;
}
.blog-cat:hover { background: var(--primary-soft); color: var(--primary); border-color: var(--primary-tint); }
.blog-cat.is-active { background: var(--primary); color: white; border-color: var(--primary); }
.blog-cat.is-active .blog-cat-count { color: rgba(255,255,255,0.75); }
.blog-cat-count { font-size: 0.7rem; font-weight: 700; color: var(--ink-faint); }

/* Main layout */
.blog-main { background: var(--bg-soft); padding: 2.5rem 0 4rem; }
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr 260px; gap: 3rem; align-items: start; }
}

/* Featured article */
.blog-feat {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .blog-feat { grid-template-columns: 1fr 1fr; }
}
.blog-feat:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-feat-img { overflow: hidden; min-height: 220px; }
.blog-feat-media { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.blog-feat-body {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}
.blog-feat-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.blog-feat-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.blog-feat-read { font-size: 0.75rem; color: var(--ink-soft); font-weight: 500; }
.blog-feat-title {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.15s;
}
.blog-feat:hover .blog-feat-title { color: var(--primary); }
.blog-feat-excerpt { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.65; }
.blog-feat-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.blog-feat-date { font-size: 0.8rem; color: var(--ink-soft); }
.blog-feat-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; font-weight: 700; color: var(--primary); }

/* Article grid */
.blog-results-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.blog-results-title { font-size: 1rem; font-weight: 700; color: var(--ink); }
.blog-results-count { font-size: 0.8125rem; color: var(--ink-soft); }
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }

/* Article card */
.blog-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: var(--shadow-xs);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { overflow: hidden; aspect-ratio: 16/9; }
.blog-card-media { width: 100%; height: 100%; }
.blog-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.blog-card-cat {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.blog-card-cat-catering    { background: #fef3c7; color: #b45309; }
.blog-card-cat-kontraktor  { background: #dbeafe; color: #1d4ed8; }
.blog-card-cat-fotografer  { background: #ede9fe; color: #7c3aed; }
.blog-card-cat-wo          { background: #ffe4e6; color: #be123c; }
.blog-card-read { font-size: 0.75rem; color: var(--ink-soft); margin-left: auto; }
.blog-card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.15s;
}
.blog-card:hover .blog-card-title { color: var(--primary); }
.blog-card-excerpt { font-size: 0.8125rem; color: var(--ink-muted); line-height: 1.6; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border-soft); }
.blog-card-date { font-size: 0.75rem; color: var(--ink-soft); }
.blog-card-arrow { color: var(--ink-faint); transition: color 0.15s, transform 0.15s; }
.blog-card:hover .blog-card-arrow { color: var(--primary); transform: translateX(3px); }

/* CTA strip */
.blog-cta-strip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--primary-soft);
    border: 1px solid var(--primary-tint);
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}
@media (min-width: 640px) { .blog-cta-strip { flex-direction: row; align-items: center; justify-content: space-between; } }
.blog-cta-strip strong { display: block; font-size: 0.9375rem; color: var(--ink); margin-bottom: 0.2rem; }
.blog-cta-strip p { font-size: 0.8125rem; color: var(--ink-muted); }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 1024px) { .blog-sidebar { position: sticky; top: 5.5rem; } }
.blog-sidebar-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-xs);
}
.blog-sidebar-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0 0 0.6rem;
}
.blog-sidebar-title:not(:first-child) { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border-soft); }
.blog-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: background 0.12s, color 0.12s;
}
.blog-nav-item:hover { background: var(--bg-soft); color: var(--ink); }
.blog-nav-item.is-active { background: var(--primary-soft); color: var(--primary); font-weight: 700; }
.blog-nav-count {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ink-faint);
    background: var(--bg-soft);
    padding: 0.1rem 0.45rem;
    border-radius: 99px;
    min-width: 1.4rem;
    text-align: center;
}
.blog-nav-item.is-active .blog-nav-count { background: var(--primary-tint); color: var(--primary); }
.blog-sidebar-cta {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.blog-sidebar-cta-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(13,148,136,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.blog-sidebar-cta-eyebrow {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5eead4;
    margin-bottom: 0.625rem;
}
.blog-sidebar-cta-title {
    font-size: 1.0625rem;
    font-weight: 900;
    color: white;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.blog-sidebar-cta-desc {
    font-size: 0.8125rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0 0 1.125rem;
}
.blog-sidebar-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.blog-sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, opacity 0.15s;
    text-align: center;
}
.blog-sidebar-cta-btn--primary {
    background: var(--primary);
    color: white;
}
.blog-sidebar-cta-btn--primary:hover { background: var(--primary-hover); }
.blog-sidebar-cta-btn--ghost {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
}
.blog-sidebar-cta-btn--ghost:hover { background: rgba(255,255,255,0.14); color: white; }
.blog-sidebar-cta-note {
    font-size: 0.6875rem;
    color: #64748b;
    text-align: center;
    margin: 0.75rem 0 0;
}

/* ═══════════════════════════════════════════════════
   ARTICLE SINGLE PAGE
   ═══════════════════════════════════════════════════ */

/* Reading progress bar */
.art-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #34d399 100%);
    z-index: 200;
    transition: width 0.12s linear;
    border-radius: 0 99px 99px 0;
    box-shadow: 0 0 8px rgba(13,148,136,0.4);
}

/* Article page wrapper */
.art-page { background: white; }

/* ── Article header ── */
.art-head {
    background: var(--bg-soft);
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .art-head { padding: 2.5rem 0 3rem; } }
.art-head-inner { }

.art-crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--ink-faint);
    margin-bottom: 1.5rem;
}
.art-crumb a { color: var(--ink-faint); text-decoration: none; transition: color 0.15s; }
.art-crumb a:hover { color: var(--primary); }
.art-crumb span { color: var(--ink-soft); }

.art-head-meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.art-head-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: opacity 0.15s;
}
.art-head-cat:hover { opacity: 0.85; }
.art-head-cat-catering   { background: #fef9c3; color: #92400e; }
.art-head-cat-kontraktor { background: #dbeafe; color: #1e40af; }
.art-head-cat-fotografer { background: #f3e8ff; color: #6d28d9; }
.art-head-cat-wo         { background: #fce7f3; color: #9d174d; }
.art-head-sep { color: var(--ink-faint); }
.art-head-read { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8125rem; color: var(--ink-soft); }

.art-title {
    font-size: clamp(1.625rem, 4.5vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    color: var(--ink);
    line-height: 1.18;
    margin: 0 0 1rem;
}

.art-excerpt {
    font-size: 1.0625rem;
    color: var(--ink-muted);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-weight: 400;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-tint);
}
@media (min-width: 768px) { .art-excerpt { font-size: 1.125rem; } }

.art-byline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    padding-top: 1.125rem;
    border-top: 1px solid var(--border-soft);
}
.art-byline-author {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--ink);
}
.art-byline-avatar {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-soft);
    border: 1.5px solid var(--primary-tint);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.art-byline-sep { opacity: 0.3; }
.art-byline-date { font-weight: 500; color: var(--ink-soft); }
.art-byline-hub { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--primary); font-weight: 600; text-decoration: none; transition: opacity 0.15s; }
.art-byline-hub:hover { opacity: 0.75; }

/* ── Hero image ── */
.art-hero-img { background: white; padding: 1.5rem 0 0; }
@media (min-width: 768px) { .art-hero-img { padding: 2rem 0 0; } }

.art-hero-frame {
    border-radius: 0;
    overflow: hidden;
}
@media (min-width: 768px) {
    .art-hero-frame { border-radius: var(--radius-xl); box-shadow: 0 4px 32px rgba(15,23,42,0.07); }
}
.art-hero-frame .article-featured { overflow: hidden; border-radius: 0; }
.art-hero-frame .article-featured img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* ── Body layout ── */
.art-main { background: white; }
.art-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0 3.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .art-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 3.5rem;
        padding: 3rem 0 5rem;
    }
    .art-sidebar { order: 2; }
    .art-content { order: 1; }
}

/* ── Sidebar ── */
.art-sidebar { display: none; }
@media (min-width: 1024px) { .art-sidebar { display: block; } }

.art-sidebar-sticky {
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.art-toc-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.art-toc-title {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0;
    padding: 0.75rem 1rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-soft);
}

.art-toc-list { list-style: none; padding: 0.5rem 0; margin: 0; display: flex; flex-direction: column; }
.art-toc-item a {
    display: block;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.375rem 1rem;
    border-left: 2px solid transparent;
    line-height: 1.45;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.art-toc-item a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    background: var(--primary-soft);
}
.art-toc-item.is-active a {
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
    background: var(--primary-soft);
}
.art-toc-item-h3 a { padding-left: 1.75rem; font-size: 0.775rem; color: var(--ink-faint); }
.art-toc-item-h3 a:hover,
.art-toc-item-h3.is-active a { color: var(--primary); border-left-color: var(--primary); }

.art-sidebar-cta {
    background: linear-gradient(135deg, #f0fdf9, #ecfdf5);
    border: 1px solid var(--primary-tint);
    border-radius: var(--radius-lg);
    padding: 1.125rem;
    text-align: center;
}
.art-sidebar-cta-text { font-size: 0.8125rem; color: var(--ink-muted); line-height: 1.5; margin-bottom: 0.75rem; font-weight: 500; }

/* Share card (sidebar) */
.art-share-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-xs);
}
.art-share-title {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0 0 0.625rem;
}
.art-share-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.art-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    background: var(--bg-soft);
    color: var(--ink-soft);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    padding: 0;
}
.art-share-btn:hover { border-color: var(--border); color: var(--ink); background: white; }
.art-share-wa:hover { color: #25d366; border-color: #25d366; background: #f0fdf4; }
.art-share-x:hover  { color: #0f1419; border-color: #0f1419; background: #f8fafc; }
.art-share-fb:hover { color: #1877f2; border-color: #1877f2; background: #eff6ff; }

/* Share inline (bottom of article, mobile-friendly) */
.art-share-inline {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
}
.art-share-inline-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem;
}
.art-share-inline .art-share-row { gap: 0.5rem; }
.art-share-inline .art-share-btn {
    width: auto;
    height: auto;
    padding: 0.5rem 0.875rem;
    gap: 0.4rem;
}
.art-share-inline .art-share-btn span {
    font-size: 0.8125rem;
    font-weight: 600;
}

/* ── TOC mobile accordion ── */
.art-toc-mobile {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
.art-toc-mobile summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    user-select: none;
    background: var(--bg-soft);
    transition: background 0.15s;
}
.art-toc-mobile summary::-webkit-details-marker { display: none; }
.art-toc-mobile[open] summary { background: white; border-bottom: 1px solid var(--border-soft); }
.art-toc-mobile[open] .art-toc-mobile-chevron { transform: rotate(180deg); }
.art-toc-mobile-chevron { transition: transform 0.2s ease; }
.art-toc-mobile .art-toc-list { padding: 0.5rem 0; }
.art-toc-mobile .art-toc-item a { padding-left: 1rem; }

/* ── Article prose ── */
.art-prose {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #374151;
}
@media (min-width: 768px) { .art-prose { font-size: 1.09375rem; } }

.art-prose section {
    margin-bottom: 0.25rem;
}
.art-prose section:last-child { margin-bottom: 0; }
.art-prose > :first-child { margin-top: 0; }

.art-prose h2 {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 2.75rem 0 0.875rem;
    line-height: 1.28;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-soft);
    scroll-margin-top: 5rem;
}
@media (min-width: 768px) { .art-prose h2 { font-size: 1.5rem; } }
.art-prose section > h2:first-child { margin-top: 2rem; }
.art-prose section:first-child > h2:first-child { margin-top: 0; }

.art-prose h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2rem 0 0.625rem;
    scroll-margin-top: 5rem;
}
.art-prose h2:first-child,
.art-prose h3:first-child { margin-top: 0; }

.art-prose p {
    margin-bottom: 1.375rem;
    color: #374151;
    line-height: 1.85;
}
.art-prose p:last-child { margin-bottom: 0; }
.art-prose section > p:last-child { margin-bottom: 0; }

.art-prose ul, .art-prose ol { padding-left: 1.75rem; margin-bottom: 1.375rem; }
.art-prose ul { list-style: disc; }
.art-prose ol { list-style: decimal; }
.art-prose li { margin-bottom: 0.5rem; line-height: 1.7; color: #374151; }
.art-prose li::marker { color: var(--ink-soft); }
.art-prose strong { color: var(--ink); font-weight: 700; }
.art-prose a { color: var(--primary); text-decoration: underline; text-decoration-color: var(--primary-tint); text-underline-offset: 3px; transition: color 0.15s; }
.art-prose a:hover { color: var(--primary-hover); }
.art-prose blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    background: var(--primary-soft);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 1.75rem 0;
    color: var(--ink);
}
.art-prose blockquote p { margin-bottom: 0; font-style: italic; }
.art-prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.art-prose th { background: var(--bg-soft); font-weight: 700; color: var(--ink); text-align: left; padding: 0.7rem 1rem; border-bottom: 2px solid var(--border); }
.art-prose td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border-soft); color: var(--ink-muted); }
.art-prose tr:last-child td { border-bottom: none; }
.art-prose tr:nth-child(even) td { background: #fafafa; }
.art-prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}
.art-prose figure {
    margin: 1.75rem 0;
}
.art-prose figcaption {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 0.5rem;
}
.art-prose hr {
    border: none;
    border-top: 2px solid var(--border-soft);
    margin: 2.5rem 0;
}
.art-prose pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.art-prose code {
    background: var(--bg-soft);
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: var(--ink);
}
.art-prose pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    color: inherit;
}
.art-prose-empty { font-style: italic; color: var(--ink-faint); padding: 3rem 0; text-align: center; }

/* ── Bottom CTA ── */
.art-bottom-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 1.75rem;
    background: linear-gradient(145deg, #0f172a 0%, #1a2744 50%, #0f2a2e 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(13,148,136,0.18);
    color: white;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .art-bottom-cta { padding: 2.5rem; } }
.art-bottom-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(13,148,136,0.25) 0%, transparent 65%);
    pointer-events: none;
}
.art-bottom-cta-glow {
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
    pointer-events: none;
}
@media (min-width: 768px) {
    .art-bottom-cta { flex-direction: row; align-items: center; justify-content: space-between; gap: 2.5rem; }
}
.art-bottom-cta-body { display: flex; align-items: flex-start; gap: 1.125rem; position: relative; flex: 1; min-width: 0; }
.art-bottom-cta-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(13,148,136,0.25) 0%, rgba(16,185,129,0.15) 100%);
    border: 1px solid rgba(13,148,136,0.4);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #5eead4;
    box-shadow: 0 0 20px rgba(13,148,136,0.15);
}
.art-bottom-cta-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5eead4;
    margin-bottom: 0.375rem;
}
.art-bottom-cta-title { font-size: 1.125rem; font-weight: 800; color: white; margin-bottom: 0.5rem; letter-spacing: -0.02em; line-height: 1.35; }
@media (min-width: 768px) { .art-bottom-cta-title { font-size: 1.1875rem; } }
.art-bottom-cta-desc  { font-size: 0.8125rem; color: #94a3b8; line-height: 1.6; margin-bottom: 0.75rem; }
.art-bottom-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.art-bottom-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #d1d5db;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 0.25rem 0.625rem;
    white-space: nowrap;
}
.art-bottom-cta-badge svg { color: #5eead4; flex-shrink: 0; }
.art-bottom-cta-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    flex-shrink: 0;
    position: relative;
}
@media (min-width: 768px) { .art-bottom-cta-action { align-items: center; min-width: 210px; } }
.art-bottom-cta-btn { width: 100%; justify-content: center; font-weight: 700; padding: 0.75rem 1.75rem; }
.art-bottom-cta-note {
    font-size: 0.6875rem;
    color: #64748b;
    text-align: center;
    white-space: nowrap;
}

/* ── Author box (E-E-A-T) ── */
.art-author-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
}
.art-author-avatar {
    width: 2.75rem;
    height: 2.75rem;
    background: white;
    border: 2px solid var(--primary-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.art-author-body { flex: 1; min-width: 0; }
.art-author-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}
.art-author-meta strong { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.art-author-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 100px;
    padding: 0.125rem 0.5rem;
}
.art-author-bio {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0 0 0.5rem;
}
.art-author-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
}
.art-author-foot span {
    font-size: 0.75rem;
    color: var(--ink-faint);
    font-weight: 500;
}

/* ── Related articles ── */
.art-related {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-soft);
    padding: 3rem 0 4rem;
}
@media (min-width: 768px) { .art-related { padding: 4rem 0 5rem; } }

.art-related-inner { }

.art-related-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}
.art-related-title {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin: 0 0 0.25rem;
}
.art-related-sub {
    font-size: 0.875rem;
    color: var(--ink-soft);
    margin: 0;
}
.art-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-tint);
    border-radius: 99px;
    background: white;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.art-related-link:hover { background: var(--primary-soft); border-color: var(--primary); }

.art-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px)  { .art-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .art-related-grid { grid-template-columns: repeat(4, 1fr); } }

.art-rel-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
}
.art-rel-card:hover {
    box-shadow: 0 8px 30px rgba(15,23,42,0.1);
    transform: translateY(-3px);
}

.art-rel-img {
    position: relative;
    overflow: hidden;
}
.art-rel-img .article-media {
    aspect-ratio: 16/9;
}
.art-rel-img .article-media img {
    transition: transform 0.4s ease;
}
.art-rel-card:hover .art-rel-img .article-media img { transform: scale(1.06); }

.art-rel-badge {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.55rem;
    border-radius: 99px;
    background: rgba(255,255,255,0.92);
    color: var(--ink);
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    z-index: 1;
}

.art-rel-body {
    padding: 1rem 1.125rem 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.art-rel-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.15s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.art-rel-card:hover .art-rel-title { color: var(--primary); }

.art-rel-excerpt {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.art-rel-foot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.625rem;
    border-top: 1px solid var(--border-soft);
}
.art-rel-date {
    font-size: 0.75rem;
    color: var(--ink-soft);
    font-weight: 500;
}
.art-rel-read {
    font-size: 0.75rem;
    color: var(--ink-faint);
    margin-left: auto;
}

/* Niche category page (/konsultan-bisnis/, dll.) */
.hub-hero--niche .hub-hero-bg {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 45%, #0f172a 100%);
}
.hub-hero--niche .hub-hero-bg-glow--1 { background: rgba(94, 234, 212, 0.2); }
.hub-hero--niche .hub-hero-bg-glow--2 { background: rgba(59, 130, 246, 0.15); }
.nc-hero-copy {
    max-width: 40rem;
    padding-bottom: 0.5rem;
}
.nc-hero-desc {
    max-width: 36rem;
}
