/* ==========================================================================
   Boostnaa Public — Design System (company profile / homepage)
   --------------------------------------------------------------------------
   Dimuat SETELAH bootstrap.min.css & icons.min.css di layouts/public.blade.php.
   Sama seperti boostnaa-auth.css & boostnaa-error.css: TIDAK memuat
   app.min.css / custom.min.css (identitas Velzon). Hanya Bootstrap inti +
   Remix Icon + file ini (+ boostnaa-services.css khusus /services).

   Target: premium social media SaaS — editorial, confident, terstruktur.
   Sky Blue Boostnaa sebagai brand utama. Border sebagai separator utama,
   shadow tipis. Tanpa gradient blob besar, tanpa glassmorphism, tanpa
   statistik/testimoni palsu.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKEN — identik boostnaa-auth.css (+ satu accent deep-blue tambahan)
   -------------------------------------------------------------------------- */
:root {
    --boost-primary: #38BDF8;
    --boost-primary-dark: #0284C7;
    --boost-primary-hover: #0EA5E9;
    --boost-primary-soft: #E0F2FE;
    --boost-primary-subtle: #F0F9FF;
    --boost-blue-deep: #075985;

    --boost-navy: #0F172A;
    --boost-navy-soft: #1E293B;

    --boost-bg: #F8FAFC;
    --boost-surface: #FFFFFF;

    --boost-text: #0F172A;
    --boost-text-secondary: #64748B;
    --boost-border: #E2E8F0;

    --boost-success: #22C55E;
    --boost-warning: #F59E0B;
    --boost-danger: #EF4444;

    --boost-radius-sm: 8px;
    --boost-radius: 10px;
    --boost-radius-lg: 14px;

    --boost-pub-font: "Inter", ui-sans-serif, system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --boost-pub-nav-h: 76px;
    --boost-pub-max: 1240px;
    --boost-pub-nav-max: 1280px;
}

/* --------------------------------------------------------------------------
   2. RESET RINGAN + BASE
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--boost-pub-nav-h) + 16px);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body.bn-pub-body {
    margin: 0;
    font-family: var(--boost-pub-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--boost-text);
    background-color: var(--boost-surface);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.bn-pub a { text-decoration: none; color: inherit; }

.bn-pub img,
.bn-pub svg { max-width: 100%; }

.bn-pub :focus-visible {
    outline: 2px solid var(--boost-primary-dark);
    outline-offset: 3px;
    border-radius: 4px;
}

.bn-pub h1,
.bn-pub h2,
.bn-pub h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--boost-navy);
    margin: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.bn-pub__container {
    width: 100%;
    max-width: var(--boost-pub-max);
    margin-inline: auto;
    padding-inline: 24px;
}

.bn-pub__section { padding: 88px 0; }
.bn-pub__section--tight { padding: 64px 0; }

.bn-pub__section-head { max-width: 620px; margin: 0 0 44px; }
.bn-pub__section-head--center { margin-inline: auto; text-align: center; }

.bn-pub__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--boost-primary-dark);
    margin-bottom: 12px;
}

.bn-pub__h2 {
    font-size: clamp(1.9rem, 1.35rem + 2vw, 2.5rem);
    line-height: 1.18;
}

.bn-pub__section-lead {
    margin: 14px 0 0;
    font-size: 1.05rem;
    color: var(--boost-text-secondary);
    max-width: 58ch;
}
.bn-pub__section-head--center .bn-pub__section-lead { margin-inline: auto; }

/* Page-hero ringkas — dipakai bersama oleh /about, /services, /contact
   (instruksi "Page Header Consistency" — satu keluarga, hanya eyebrow yang
   boleh berbeda kata per halaman). Bukan hero besar seperti homepage. */
.bn-pub__pagehero {
    padding: 52px 0 40px;
    background:
        radial-gradient(520px 220px at 85% -20%, rgba(56, 189, 248, 0.08), transparent 70%),
        var(--boost-bg);
    border-bottom: 1px solid var(--boost-border);
}
.bn-pub__pagehero h1 {
    font-size: clamp(1.6rem, 1.25rem + 1.4vw, 2.1rem);
    line-height: 1.2;
}
.bn-pub__pagehero p {
    margin: 10px 0 0;
    max-width: 60ch;
    color: var(--boost-text-secondary);
    font-size: 1rem;
}
@media (max-width: 767.98px) {
    .bn-pub__pagehero { padding: 36px 0 30px; }
}

/* --------------------------------------------------------------------------
   4. TOMBOL — hierarki identik halaman auth
   -------------------------------------------------------------------------- */
.bn-pub__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--boost-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

/* `a.` sengaja ditambahkan: spesifisitas ".bn-pub a{color:inherit}" (baris 83)
   di atas ".bn-pub__btn--*" biasa (1 kelas), jadi tanpa qualifier elemen ini
   warna teks tombol akan ditimpa jadi warna teks default (navy). */
a.bn-pub__btn--primary {
    color: var(--boost-navy);
    background-color: var(--boost-primary);
    border-color: var(--boost-primary);
}
.bn-pub__btn--primary:hover {
    background-color: var(--boost-primary-hover);
    border-color: var(--boost-primary-hover);
    color: var(--boost-navy);
}

a.bn-pub__btn--ghost {
    color: var(--boost-text);
    background-color: var(--boost-surface);
    border-color: var(--boost-border);
}
.bn-pub__btn--ghost:hover {
    background-color: var(--boost-bg);
    border-color: #CBD5E1;
    color: var(--boost-text);
}

/* Varian tombol di atas latar navy (CTA final) */
a.bn-pub__btn--on-dark {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.28);
}
.bn-pub__btn--on-dark:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.bn-pub__btn--sm { min-height: 38px; padding: 8px 16px; font-size: 0.875rem; }
.bn-pub__btn--lg { min-height: 50px; padding: 13px 26px; font-size: 1rem; }

/* --------------------------------------------------------------------------
   5. NAVBAR — Bootstrap Navbar (navbar-expand-lg) + styling Boostnaa
   -------------------------------------------------------------------------- */
.bn-pub__nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--boost-border);
}

.bn-pub__nav .navbar {
    min-height: var(--boost-pub-nav-h);
    padding-top: 0;
    padding-bottom: 0;
}

/* 3 zona sungguhan lewat CSS Grid — brand kiri, menu benar-benar di tengah
   (justify-self:center pada kolom tengah, tidak tergantung lebar kiri/kanan),
   actions kanan. Di <992px jadi flex 2-titik: brand ... toggler. */
.bn-pub__navgrid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--boost-pub-nav-max);
    margin-inline: auto;
    padding-inline: 24px;
    min-height: var(--boost-pub-nav-h);
}
@media (min-width: 992px) {
    .bn-pub__navgrid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        column-gap: 24px;
    }
    .bn-pub__navgrid-brand { justify-self: start; }
    .bn-pub__navgrid-menu { justify-self: center; }
    .bn-pub__navgrid-actions { justify-self: end; }
}
@media (max-width: 767.98px) {
    .bn-pub__navgrid { padding-inline: 20px; }
}

.bn-pub__brand.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.bn-pub__brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--boost-primary) 0%, var(--boost-primary-dark) 100%);
    color: #fff;
    font-size: 19px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.28);
}

.bn-pub__brand-word {
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--boost-navy);
}

/* Toggler hanya untuk <992px — di ≥992px navbar-expand-lg bawaan Bootstrap
   sudah menyembunyikannya (display:none); jangan override display di sini. */
.bn-pub__nav .navbar-toggler {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.4rem;
    color: var(--boost-text);
    background: transparent;
    border: 1px solid var(--boost-border);
    border-radius: var(--boost-radius-sm);
}
.bn-pub__nav .navbar-toggler:focus { box-shadow: none; }
@media (max-width: 991.98px) {
    .bn-pub__nav .navbar-toggler { display: inline-flex; }
}

/* Menu tengah desktop — gap antar item (bukan cuma padding link) yang memberi
   jarak matang dari logo & dari tombol auth. */
.bn-pub__navgrid-menu .navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bn-pub__nav .nav-link,
.bn-pub__offcanvas .nav-link {
    position: relative;
    padding: 8px 2px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--boost-text-secondary);
    border-radius: var(--boost-radius-sm);
    transition: color 0.12s ease;
}

.bn-pub__nav .nav-link:hover,
.bn-pub__nav .nav-link:focus,
.bn-pub__offcanvas .nav-link:hover { color: var(--boost-navy); }

/* Active: navy + font-weight 600 + underline kecil terpusat (bukan sekadar teks biru) */
.bn-pub__nav .nav-link.active,
.bn-pub__offcanvas .nav-link.active {
    color: var(--boost-navy);
    font-weight: 600;
}
@media (min-width: 992px) {
    .bn-pub__nav .nav-link.active::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -8px;
        width: 22px;
        height: 2px;
        transform: translateX(-50%);
        background: var(--boost-primary);
        border-radius: 999px;
    }
}

.bn-pub__navgrid-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   5b. OFFCANVAS MOBILE (instruksi #39) — Boostnaa · Home / About / Layanan / Masuk / Daftar
   -------------------------------------------------------------------------- */
.bn-pub__offcanvas { width: min(320px, 86vw); }
.bn-pub__offcanvas .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid var(--boost-border);
}
.bn-pub__offcanvas .offcanvas-body { padding: 20px; }
.bn-pub__offcanvas .navbar-nav { display: flex; flex-direction: column; gap: 2px; }
.bn-pub__offcanvas .nav-link { padding: 13px 14px; font-size: 1rem; }
.bn-pub__offcanvas .nav-link.active { background: var(--boost-primary-subtle); }
.bn-pub__offcanvas .bn-pub__nav-actions {
    margin: 20px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--boost-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bn-pub__offcanvas .bn-pub__btn { width: 100%; }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.bn-pub__hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 88px 0;
    background: var(--boost-surface);
    overflow: hidden;
}

/* Grid sangat halus + blue glow terfokus di area visual kanan — bukan putih
   polos, bukan gradient blob besar. */
.bn-pub__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(680px 520px at 80% 34%, rgba(56, 189, 248, 0.12), transparent 60%),
        radial-gradient(360px 300px at 0% 92%, rgba(2, 132, 199, 0.05), transparent 60%);
    pointer-events: none;
}
.bn-pub__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.022) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
    pointer-events: none;
}

.bn-pub__hero > .bn-pub__container { position: relative; z-index: 1; width: 100%; }

/* Proporsi ± col-lg-5 / col-lg-7 (visual = product showcase, boleh lebih besar) */
.bn-pub__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
    align-items: center;
}

/* Komposisi editorial: teks sedikit naik, visual sedikit turun */
.bn-pub__hero-copy { padding-bottom: 24px; }
.bn-pub__hero-art { padding-top: 24px; }

.bn-pub__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 22px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--boost-primary-dark);
    background: var(--boost-primary-subtle);
    border: 1px solid var(--boost-primary-soft);
    border-radius: 999px;
}

.bn-pub__hero-title {
    max-width: 600px;
    font-size: clamp(2.25rem, 1.1rem + 4.6vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}
.bn-pub__hero-hl { color: var(--boost-primary-dark); }

.bn-pub__hero-lead {
    max-width: 32rem;
    font-size: 1.12rem;
    color: var(--boost-text-secondary);
    margin: 0 0 30px;
}

.bn-pub__hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Micro-benefits inline (bukan 3 kartu) */
.bn-pub__hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    color: var(--boost-text-secondary);
}
.bn-pub__hero-note li { display: inline-flex; align-items: center; gap: 7px; }
.bn-pub__hero-note i { font-size: 1rem; color: var(--boost-primary-dark); }

/* --------------------------------------------------------------------------
   7. VISUAL ECOSYSTEM (chip + node + garis) — dipakai /contact (contact-art).
   Homepage kini memakai 7b (mini dashboard). Subset kelas di bawah dipakai
   bersama oleh contact-art: .bn-hero-art / __lines / __chip / __node*.
   -------------------------------------------------------------------------- */
.bn-hero-art {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 0.94;
    margin-inline: auto;
}

.bn-hero-art__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.bn-hero-art__lines path {
    fill: none;
    stroke: #CBD5E1;
    stroke-width: 0.55;
    stroke-dasharray: 2.4 2.4;
}

.bn-hero-art__chip {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid var(--boost-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: var(--boost-primary-dark);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
    transform: translate(-50%, -50%);
    animation: bnFloat 8s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}

.bn-hero-art__node {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    border-radius: var(--boost-radius-lg);
    background: var(--boost-navy);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
    z-index: 2;
}
.bn-hero-art__node-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--boost-primary) 0%, var(--boost-primary-dark) 100%);
    color: #fff;
    font-size: 16px;
}
.bn-hero-art__node-word {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

@keyframes bnFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-9px); }
}

/* --------------------------------------------------------------------------
   7b. HERO DASHBOARD — "Boostnaa Product Ecosystem" (homepage).
   Mini dashboard ilustratif (HTML/CSS/Remix Icon, TANPA gambar statis) +
   ikon platform yang terhubung ke dashboard lewat garis SVG dashed.
   Sepenuhnya dekoratif: aria-hidden + pointer-events:none. Tanpa angka /
   nomor order / harga / statistik rekaan.
   Layer z-index: 0 ambient · 1 wires · 2 chip · 3 dashboard · 4 callout.
   -------------------------------------------------------------------------- */
.bn-hero-dash {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 0.86;
    margin-inline: auto;
    pointer-events: none;
    user-select: none;
}
.bn-hero-dash * { pointer-events: none; }

/* Layer 0 — ambient glow (memisahkan dashboard dari background, bukan blob) */
.bn-hero-dash::before {
    content: "";
    position: absolute;
    left: 52%;
    top: 46%;
    width: 88%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12), rgba(56, 189, 248, 0.04) 50%, transparent 70%);
    filter: blur(4px);
    z-index: 0;
}

/* Layer 1 — konektor */
.bn-hero-dash__wires { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.bn-hero-dash__wires path {
    fill: none;
    stroke: rgba(2, 132, 199, 0.20);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 7 9;
    vector-effect: non-scaling-stroke;
    animation: bnWireFlow 3s linear infinite;
}
@keyframes bnWireFlow { to { stroke-dashoffset: -32; } }

/* Layer 2 — ikon platform */
.bn-hero-dash__chip {
    position: absolute;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    background: #fff;
    border: 1px solid var(--boost-border);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    animation: bnDashFloat var(--dur, 9s) ease-in-out infinite;
    animation-delay: var(--del, 0s);
}
@keyframes bnDashFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.bn-hero-dash__chip--ig i { color: #E1306C; }
.bn-hero-dash__chip--tt i { color: var(--boost-navy); }
.bn-hero-dash__chip--yt i { color: var(--boost-danger); }
.bn-hero-dash__chip--fb i { color: #2563EB; }
.bn-hero-dash__chip--tg i { color: #229ED9; }

/* Layer 3 — dashboard frame */
.bn-hero-dash__app {
    position: absolute;
    left: 5%;
    right: 11%;
    top: 13%;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--boost-border);
    border-radius: 16px;
    box-shadow: 0 30px 60px -18px rgba(15, 23, 42, 0.22), 0 10px 24px -12px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.bn-hero-dash__bar {
    display: flex;
    gap: 6px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--boost-border);
}
.bn-hero-dash__bar span { width: 7px; height: 7px; border-radius: 50%; background: #CBD5E1; }

.bn-hero-dash__body { display: grid; grid-template-columns: 116px 1fr; }

.bn-hero-dash__side {
    padding: 12px 10px;
    background: var(--boost-bg);
    border-right: 1px solid var(--boost-border);
}
.bn-hero-dash__brand { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; padding: 0 4px; }
.bn-hero-dash__brand-mark {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--boost-primary) 0%, var(--boost-primary-dark) 100%);
    border-radius: 7px;
}
.bn-hero-dash__brand-word { font-size: 0.8rem; font-weight: 700; letter-spacing: -0.01em; color: var(--boost-navy); }

.bn-hero-dash__nav { display: flex; flex-direction: column; gap: 2px; }
.bn-hero-dash__nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--boost-text-secondary);
    white-space: nowrap;
    border-radius: 7px;
}
.bn-hero-dash__nav-item i { font-size: 13px; }
.bn-hero-dash__nav-item.is-active { color: var(--boost-primary-dark); background: var(--boost-primary-soft); }

.bn-hero-dash__main { padding: 14px; min-width: 0; }

.bn-hero-dash__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.bn-hero-dash__hello { font-size: 0.9rem; font-weight: 700; color: var(--boost-navy); }
.bn-hero-dash__subtle { margin-top: 1px; font-size: 0.68rem; color: var(--boost-text-secondary); }
.bn-hero-dash__bell {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--boost-text-secondary);
    border: 1px solid var(--boost-border);
    border-radius: 7px;
}

.bn-hero-dash__stats { display: flex; gap: 7px; margin-bottom: 14px; }
.bn-hero-dash__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 9px;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--boost-navy);
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 9px;
}
.bn-hero-dash__stat-ic {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 6px;
}
.bn-hero-dash__stat--new .bn-hero-dash__stat-ic { color: var(--boost-primary-dark); background: var(--boost-primary-soft); }
.bn-hero-dash__stat--proc .bn-hero-dash__stat-ic { color: #B45309; background: #FEF3C7; }
.bn-hero-dash__stat--done .bn-hero-dash__stat-ic { color: #15803D; background: #DCFCE7; }

.bn-hero-dash__label {
    margin-bottom: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--boost-text-secondary);
}
.bn-hero-dash__svcs { display: flex; gap: 7px; }
.bn-hero-dash__svc {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 9px 4px;
    font-size: 0.62rem;
    font-weight: 600;
    text-align: center;
    color: var(--boost-navy);
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 9px;
}
.bn-hero-dash__svc i { font-size: 17px; }
.bn-hero-dash__svc-ic--ig { color: #E1306C; }
.bn-hero-dash__svc-ic--tt { color: var(--boost-navy); }
.bn-hero-dash__svc-ic--yt { color: var(--boost-danger); }
.bn-hero-dash__svc-ic--fb { color: #2563EB; }

/* Layer 4 — callout (maks. 2, tanpa klaim/data) */
.bn-hero-dash__callout {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    font-size: 0.76rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--boost-navy);
    background: #fff;
    border: 1px solid var(--boost-border);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    animation: bnDashFloat 10s ease-in-out infinite;
}
.bn-hero-dash__callout i { font-size: 0.95rem; }
.bn-hero-dash__callout--a { top: 3%; right: -2%; animation-delay: 0.5s; }
.bn-hero-dash__callout--a i { color: var(--boost-primary-dark); }
.bn-hero-dash__callout--b { bottom: 4%; left: -3%; animation-delay: 1.8s; }
.bn-hero-dash__callout--b i { color: var(--boost-success); }

/* --------------------------------------------------------------------------
   8. TRUST STRIP
   -------------------------------------------------------------------------- */
.bn-pub__values { background: var(--boost-bg); border-top: 1px solid var(--boost-border); border-bottom: 1px solid var(--boost-border); }

.bn-pub__values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.bn-pub__value { display: flex; align-items: flex-start; gap: 12px; }

.bn-pub__value-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--boost-radius-sm);
    background: var(--boost-primary-soft);
    color: var(--boost-primary-dark);
    font-size: 18px;
}

.bn-pub__value-body { display: flex; flex-direction: column; }
.bn-pub__value-title { font-size: 0.95rem; font-weight: 700; color: var(--boost-navy); }
.bn-pub__value-text { font-size: 0.85rem; color: var(--boost-text-secondary); margin-top: 2px; }

/* --------------------------------------------------------------------------
   9. APA ITU BOOSTNAA — product intro: teks singkat + ekosistem/dashboard
   --------------------------------------------------------------------------
   .bn-pub__eco memiliki 3 layer:
     layer 1 (z1) .bn-pub__eco-glow                       — radial glow lembut
     layer 2 (z2) .bn-pub__eco-lines + .bn-pub__eco-icon  — ekosistem sosial
     layer 3 (z3) .bn-pub__dash + .bn-pub__dash-callout   — mockup dashboard
   Seluruh isi .bn-pub__eco dekoratif → pointer-events/user-select mati di sini,
   aria-hidden di Blade. Tidak ada angka/statistik — hanya label UI netral.
   -------------------------------------------------------------------------- */
.bn-pub__platform {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFD 100%);
}
.bn-pub__platform::before {
    content: "";
    position: absolute;
    right: -18px;
    top: 44px;
    width: 148px;
    height: 108px;
    background-image: radial-gradient(rgba(56, 189, 248, .22) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: .6;
    pointer-events: none;
}

.bn-pub__platform-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); /* visual kanan sedikit lebih luas */
    gap: 56px;
    align-items: center;
}

.bn-pub__platform-text { max-width: 540px; }

.bn-pub__platform-lead {
    margin: 16px 0 0;
    font-size: 1.05rem;
    color: var(--boost-text-secondary);
    max-width: 46ch;
}

/* -- benefit chips (ikon berbeda per chip) -- */
.bn-pub__platform-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}
.bn-pub__chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--boost-navy);
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.bn-pub__chip i { font-size: 1rem; color: var(--boost-primary-dark); }

.bn-pub__platform-cta { margin-top: 28px; }

/* -- warna brand platform (dipakai floating icon + service tile) -- */
.bn-pub__pf-ig { color: #E1306C; }
.bn-pub__pf-tt { color: var(--boost-navy); }
.bn-pub__pf-yt { color: #FF3B30; }
.bn-pub__pf-fb { color: #1877F2; }
.bn-pub__pf-tg { color: #229ED9; }

/* ============ komposisi kanan ============ */
.bn-pub__platform-visual {
    display: flex;
    justify-content: center; /* pusatkan .bn-pub__eco tanpa margin-inline:auto pada
                                grid item — child ber-width % akan collapse ke 0. */
}

.bn-pub__eco {
    position: relative;
    width: 100%;
    max-width: 620px;
    padding: 44px 30px 58px;
    pointer-events: none;
    user-select: none;
}

/* layer 1 — glow */
.bn-pub__eco-glow {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 52%;
    width: 78%;
    height: 74%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, .12), rgba(56, 189, 248, .04) 45%, transparent 70%);
}

/* layer 2 — connector + ikon sosial melayang */
.bn-pub__eco-lines {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
}
.bn-pub__eco-lines path {
    fill: none;
    stroke: rgba(56, 189, 248, .25);
    stroke-width: 1.5;
    stroke-dasharray: 6 8;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.bn-pub__eco-icon {
    position: absolute;
    z-index: 3;
    left: var(--x);
    top: var(--y);
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .07);
    transform: translate(-50%, -50%);
    animation: bnEcoFloat var(--dur, 8s) ease-in-out var(--d, 0s) infinite;
}
.bn-pub__eco-icon--lo { width: 44px; height: 44px; font-size: 19px; }

@keyframes bnEcoFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateY(-6px); }
}

/* layer 3 — mini dashboard mockup + callout.
   .bn-pub__dash-stage disizekan setara dashboard (bukan selebar .bn-pub__eco)
   sehingga callout bisa ditambatkan ke tepi dashboard, bukan tepi eco. */
.bn-pub__dash-stage {
    position: relative;
    z-index: 4;
    width: 80%;
    max-width: 460px;
    margin: 0 auto;
    transform: translateY(6px); /* asimetris tipis — tidak center rigid */
}

.bn-pub__dash {
    position: relative;
    width: 100%;
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
    overflow: hidden;
    font-size: 11px;
    line-height: 1.45;
    color: var(--boost-text);
}

.bn-pub__dash-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--boost-border);
    background: var(--boost-bg);
}
.bn-pub__dash-bar span { width: 8px; height: 8px; border-radius: 50%; background: #CBD5E1; }

.bn-pub__dash-body { display: flex; align-items: stretch; }

.bn-pub__dash-side {
    width: 116px;
    flex-shrink: 0;
    padding: 14px 12px;
    border-right: 1px solid var(--boost-border);
    background: #FCFDFE;
}
.bn-pub__dash-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--boost-navy);
}
.bn-pub__dash-mark {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--boost-primary) 0%, var(--boost-primary-dark) 100%);
    color: #fff;
    font-size: 12px;
}
.bn-pub__dash-nav { display: flex; flex-direction: column; gap: 3px; }
.bn-pub__dash-nav span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 500;
    color: var(--boost-text-secondary);
}
.bn-pub__dash-nav span i { font-size: 13px; }
.bn-pub__dash-nav span.is-active {
    color: var(--boost-primary-dark);
    background: var(--boost-primary-subtle);
    font-weight: 600;
}

.bn-pub__dash-main { flex: 1; min-width: 0; padding: 14px 16px 16px; }
.bn-pub__dash-hello { font-size: 13px; font-weight: 700; color: var(--boost-navy); }

.bn-pub__dash-cards { display: flex; gap: 8px; margin: 12px 0 16px; }
.bn-pub__dash-card {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 8px;
    border: 1px solid var(--boost-border);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 600;
    color: var(--boost-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bn-pub__dash-card i { font-size: 13px; flex-shrink: 0; color: var(--boost-primary-dark); }
.bn-pub__dash-card--active {
    position: relative;
    border-color: rgba(56, 189, 248, .4);
    background: var(--boost-primary-subtle);
    color: var(--boost-primary-dark);
}
.bn-pub__dash-pulse {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--boost-primary);
    animation: bnDashPulse 2.4s ease-out infinite;
}
@keyframes bnDashPulse {
    0%   { box-shadow: 0 0 0 0 rgba(56, 189, 248, .5); }
    70%  { box-shadow: 0 0 0 7px rgba(56, 189, 248, 0); }
    100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.bn-pub__dash-subtitle { margin-bottom: 8px; font-size: 11px; font-weight: 700; color: var(--boost-navy); }
.bn-pub__dash-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.bn-pub__dash-tile {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 9px;
    border: 1px solid var(--boost-border);
    border-radius: 9px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--boost-navy);
    background: var(--boost-surface);
}
.bn-pub__dash-tile i { font-size: 14px; flex-shrink: 0; }

/* floating callout — sibling .bn-pub__dash, anchor .bn-pub__eco (maks. 2) */
.bn-pub__dash-callout {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 176px;
    padding: 9px 13px;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--boost-navy);
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .1);
}
.bn-pub__dash-callout i { font-size: 15px; flex-shrink: 0; color: var(--boost-primary-dark); }
/* ditambatkan ke .bn-pub__dash-stage → mengambang di bawah tepi dashboard,
   menyembul ke luar kiri/kanan. Tidak menutupi sidebar/konten mockup. */
.bn-pub__dash-callout--a { left: -22px; bottom: -30px; }
.bn-pub__dash-callout--b { right: -14px; bottom: -30px; }
.bn-pub__dash-callout--b i { color: var(--boost-success); }

/* Teaser About di homepage (versi ringkas — isi lengkap ada di /about) */
.bn-pub__about-teaser {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
}
.bn-pub__about-teaser p {
    margin: 14px 0 22px;
    color: var(--boost-text-secondary);
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   10. SERVICES TEASER (bukan katalog lengkap — hanya pintu ke /services)
   -------------------------------------------------------------------------- */
.bn-pub__teaser {
    background: var(--boost-navy);
    border-radius: var(--boost-radius-lg);
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.bn-pub__teaser-text h2 { color: #fff; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); }
.bn-pub__teaser-text p { margin: 8px 0 0; color: #94A3B8; max-width: 44ch; font-size: 0.95rem; }

.bn-pub__teaser-platforms { display: flex; gap: 10px; flex-wrap: wrap; }

.bn-pub__teaser-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E2E8F0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}
.bn-pub__teaser-chip i { color: var(--boost-primary); font-size: 1rem; }

.bn-pub__teaser-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   11. PLATFORM BENEFITS — "Kenapa Boostnaa?"
   -------------------------------------------------------------------------- */
.bn-pub__benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.bn-pub__benefit {
    padding: 26px 24px;
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: var(--boost-radius-lg);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bn-pub__benefit:hover { border-color: #CBD5E1; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); }

.bn-pub__benefit-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: var(--boost-radius-sm);
    background: var(--boost-primary-soft);
    color: var(--boost-primary-dark);
    font-size: 20px;
}

.bn-pub__benefit h3 { font-size: 1.05rem; margin-bottom: 8px; }
.bn-pub__benefit p { margin: 0; font-size: 0.9rem; color: var(--boost-text-secondary); }

/* --------------------------------------------------------------------------
   12. VISUAL PRODUCT JOURNEY ("Cara Kerja") — dipakai di / ("Mulai dalam
   Empat Langkah") dan /about ("Cara Boostnaa Bekerja").
   4 tahap, tiap tahap = mini UI illustration (HTML/CSS/icon, tanpa gambar
   statis) + nomor + judul + deskripsi, dihubungkan connector dashed+panah.
   Bootstrap `row / col-lg-3 / col-md-6` menangani breakpoint (lg = 4 kolom,
   md = 2×2, <md = tumpuk vertikal) — custom CSS hanya untuk mini UI,
   connector, dekorasi, dan hover/entrance.
   -------------------------------------------------------------------------- */
.bn-pub__journey-wrap {
    position: relative;
    overflow: hidden;
    background: var(--boost-bg);
}
.bn-pub__journey-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(56, 189, 248, .08), transparent 35%);
    pointer-events: none;
}
.bn-pub__journey-wrap > .bn-pub__container { position: relative; z-index: 1; }

/* Dekorasi sangat halus — bukan gradient blob besar */
.bn-pub__journey-decor { position: absolute; z-index: 0; pointer-events: none; }
.bn-pub__journey-decor--circle {
    top: -140px;
    left: -140px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(2, 132, 199, .10);
    border-radius: 50%;
}
.bn-pub__journey-decor--dots {
    right: 6%;
    bottom: 8%;
    width: 120px;
    height: 90px;
    background-image: radial-gradient(rgba(56, 189, 248, .28) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: .7;
}

.bn-pub__journey-grid { margin-top: 60px; }

.bn-pub__journey-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .22s ease;
}

/* Illustration wrapper — anchor untuk floating icon & connector (TIDAK
   overflow:hidden, agar keduanya boleh sedikit keluar dari batas kartu). */
.bn-pub__journey-illustration { position: relative; width: 100%; }

.bn-pub__journey-card {
    height: 212px;
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: var(--boost-radius-lg);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
    font-size: 12.5px;
    color: var(--boost-text);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

/* Hover (desktop) — kartu naik tipis, border sedikit lebih blue. Tanpa scale. */
@media (hover: hover) {
    .bn-pub__journey-step:hover .bn-pub__journey-card {
        transform: translateY(-4px);
        border-color: rgba(56, 189, 248, .4);
        box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    }
}

/* Floating action icon — pojok kartu, sedikit keluar untuk kesan depth */
.bn-pub__journey-float {
    position: absolute;
    top: -18px;
    right: -14px;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--boost-primary) 0%, var(--boost-primary-dark) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(2, 132, 199, .32);
    animation: bnJourneyFloat 6s ease-in-out infinite;
}

@keyframes bnJourneyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Nomor tahap — di bawah illustration, kecil (48-52px) */
.bn-pub__journey-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-top: 22px;
    font-size: .95rem;
    font-weight: 700;
    color: var(--boost-primary-dark);
    background: var(--boost-primary-soft);
    border-radius: 50%;
}

.bn-pub__journey-title { margin: 16px 0 0; font-size: 1.02rem; }
.bn-pub__journey-text {
    margin: 9px auto 0;
    max-width: 27ch;
    font-size: 15px;
    line-height: 1.6;
    color: var(--boost-text-secondary);
}

.bn-pub__journey-cta { margin-top: 52px; text-align: center; }

/* ---- Connector desktop (lg, 4 kolom sebaris) — dashed + panah kecil.
   Diikat ke .bn-pub__journey-illustration (bukan .bn-pub__journey-card,
   yang tak boleh overflow:hidden) sehingga tidak pernah melewati isi kartu:
   garis dimulai persis di tepi kanan kartu, panjang = gutter (gx-5=48px),
   berakhir persis di tepi kiri kartu berikutnya. */
@media (min-width: 992px) {
    .bn-pub__journey-step:not(:last-child) .bn-pub__journey-illustration::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        width: 40px;
        height: 0;
        border-top: 1.5px dashed rgba(2, 132, 199, .35);
        transform: translateY(-50%);
    }
    .bn-pub__journey-step:not(:last-child) .bn-pub__journey-illustration::before {
        content: "";
        position: absolute;
        top: 50%;
        left: calc(100% + 40px);
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 7px solid var(--boost-primary);
        transform: translateY(-50%);
    }
}

/* ---- Entrance stagger — memakai sistem reveal existing (.bn-js/.bn-pub__reveal
   + IntersectionObserver di layouts/public.blade.php), hanya menambah delay
   bertingkat per tahap. */
.bn-js .bn-pub__journey-step.bn-pub__reveal:nth-child(1) { transition-delay: 0s; }
.bn-js .bn-pub__journey-step.bn-pub__reveal:nth-child(2) { transition-delay: .08s; }
.bn-js .bn-pub__journey-step.bn-pub__reveal:nth-child(3) { transition-delay: .16s; }
.bn-js .bn-pub__journey-step.bn-pub__reveal:nth-child(4) { transition-delay: .24s; }

/* ==== Mini UI — Step 01 : selector layanan ==== */
.bn-pub__mini-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    margin-bottom: 10px;
    font-size: 11.5px;
    color: var(--boost-text-secondary);
    background: var(--boost-bg);
    border: 1px solid var(--boost-border);
    border-radius: 8px;
}
.bn-pub__mini-search i { font-size: 13px; }

.bn-pub__mini-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.bn-pub__mini-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--boost-text-secondary);
    border-radius: 7px;
}
.bn-pub__mini-list li.is-active { color: var(--boost-navy); background: var(--boost-primary-subtle); }
.bn-pub__mini-check { margin-left: auto; font-size: 14px; color: var(--boost-primary-dark); }

.bn-pub__mini-ic { display: inline-flex; width: 18px; height: 18px; flex-shrink: 0; align-items: center; justify-content: center; font-size: 13px; }
.bn-pub__mini-ic--ig { color: #E1306C; }
.bn-pub__mini-ic--tt { color: var(--boost-navy); }
.bn-pub__mini-ic--yt { color: var(--boost-danger); }
.bn-pub__mini-ic--fb { color: #2563EB; }

/* ==== Mini UI — Step 02 : form order (ilustratif, inert) ==== */
.bn-pub__mini-service {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--boost-navy);
}
.bn-pub__mini-service i { font-size: 14px; color: var(--boost-primary-dark); }

.bn-pub__mini-label {
    display: block;
    margin-bottom: 6px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--boost-text-secondary);
}
.bn-pub__mini-input {
    padding: 8px 10px;
    margin-bottom: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--boost-navy);
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 8px;
}
.bn-pub__mini-fake-btn {
    margin-top: auto;
    padding: 9px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--boost-navy);
    background: var(--boost-primary);
    border-radius: 8px;
}

/* ==== Mini UI — Step 03 : status/timeline order ==== */
.bn-pub__mini-status-title {
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--boost-text-secondary);
}
.bn-pub__mini-timeline { position: relative; display: flex; flex-direction: column; gap: 14px; padding-left: 4px; }
.bn-pub__mini-timeline::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--boost-border);
}
.bn-pub__mini-trow { position: relative; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; color: var(--boost-navy); }
.bn-pub__mini-dot {
    position: relative;
    z-index: 1;
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid var(--boost-border);
    border-radius: 50%;
}
.bn-pub__mini-trow.is-done .bn-pub__mini-dot { background: var(--boost-success); border-color: var(--boost-success); }
.bn-pub__mini-trow.is-active { color: var(--boost-primary-dark); }
.bn-pub__mini-trow.is-active .bn-pub__mini-dot { background: var(--boost-primary); border-color: var(--boost-primary); }
.bn-pub__mini-trow.is-pending { font-weight: 500; color: var(--boost-text-secondary); }

/* ==== Mini UI — Step 04 : success state ==== */
.bn-pub__mini--success { align-items: center; justify-content: center; text-align: center; }
.bn-pub__mini-check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #15803D;
    background: #DCFCE7;
    border-radius: 50%;
}
.bn-pub__mini-success-title { font-size: 13.5px; font-weight: 700; color: var(--boost-navy); }
.bn-pub__mini-success-text { margin: 4px 0 0; font-size: 11.5px; color: var(--boost-text-secondary); }

@media (max-width: 991.98px) {
    .bn-pub__journey-decor--circle { width: 260px; height: 260px; top: -110px; left: -110px; }
}

/* ---- Tablet (md, 2×2 via col-md-6) — connector desktop disembunyikan,
   tanpa dipaksakan connector antar-baris (instruksi eksplisit). ---- */
@media (max-width: 767.98px) {
    .bn-pub__journey-grid { margin-top: 44px; row-gap: 44px !important; }

    /* Mobile: perjalanan vertikal, satu kolom, connector dashed vertikal +
       panah ke bawah di antara tahap. */
    .bn-pub__journey-step {
        max-width: 360px;
        margin-inline: auto;
        padding-bottom: 40px;
    }
    .bn-pub__journey-step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 4px;
        width: 0;
        height: 26px;
        border-left: 1.5px dashed rgba(2, 132, 199, .35);
        transform: translateX(-50%);
    }
    .bn-pub__journey-step:not(:last-child)::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -2px;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid var(--boost-primary);
        transform: translateX(-50%);
    }

    .bn-pub__journey-card { height: auto; min-height: 176px; padding: 14px; }
    .bn-pub__journey-float { width: 40px; height: 40px; font-size: 17px; top: -14px; right: -10px; }
    .bn-pub__journey-num { width: 46px; height: 46px; margin-top: 18px; }
    .bn-pub__journey-cta { margin-top: 40px; }
}

/* --------------------------------------------------------------------------
   13b. CONTACT — /contact (introduction + kanal + formulir + dekorasi)
   Header menyatu dengan section utama (bukan page-hero terpisah). Formulir
   adalah layer utama; ilustrasi komunikasi (paper plane + jalur dashed)
   menempel pada kartu form, bukan diagram terpisah.
   -------------------------------------------------------------------------- */
.bn-pub__contact {
    position: relative;
    padding: 96px 0 104px;
    background:
        radial-gradient(560px 300px at 82% 12%, rgba(56, 189, 248, 0.10), transparent 60%),
        var(--boost-surface);
    overflow: hidden;
}
.bn-pub__contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: radial-gradient(680px 420px at 78% 20%, #000 0%, transparent 72%);
    mask-image: radial-gradient(680px 420px at 78% 20%, #000 0%, transparent 72%);
    pointer-events: none;
}
.bn-pub__contact > .bn-pub__container { position: relative; z-index: 1; }

.bn-pub__contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
    align-items: start;
}

/* ---- Kiri: introduction + kanal ---- */
.bn-pub__contact-intro { position: relative; padding-top: 6px; }
.bn-pub__contact-title {
    font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem);
    line-height: 1.14;
    margin: 0 0 14px;
}
.bn-pub__contact-lead {
    margin: 0 0 30px;
    font-size: 1.02rem;
    color: var(--boost-text-secondary);
    max-width: 44ch;
}

.bn-pub__cchan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
}
.bn-pub__cchan {
    padding: 18px;
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: var(--boost-radius);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bn-pub__cchan:hover {
    border-color: color-mix(in srgb, var(--boost-primary) 45%, var(--boost-border));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.bn-pub__cchan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    font-size: 19px;
    color: var(--boost-primary-dark);
    background: var(--boost-primary-soft);
    border-radius: var(--boost-radius-sm);
}
.bn-pub__cchan-label { display: block; font-size: 0.95rem; font-weight: 700; color: var(--boost-navy); }
.bn-pub__cchan-desc {
    margin: 4px 0 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--boost-text-secondary);
}
.bn-pub__cchan-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--boost-navy);
    overflow-wrap: anywhere;
}
a.bn-pub__cchan-value { color: var(--boost-navy); }        /* > ".bn-pub a{color:inherit}" */
a.bn-pub__cchan-value:hover { color: var(--boost-primary-dark); }
.bn-pub__cchan-value--static { font-weight: 500; color: var(--boost-text); }
.bn-pub__cchan-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}
a.bn-pub__cchan-action { color: var(--boost-primary-dark); }
a.bn-pub__cchan-action:hover { color: var(--boost-blue-deep); }
.bn-pub__cchan-empty { padding: 28px 20px; text-align: center; }

.bn-pub__contact-assure {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}
.bn-pub__contact-assure li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--boost-text-secondary);
}
.bn-pub__contact-assure i { font-size: 1rem; color: var(--boost-primary-dark); }

.bn-pub__contact-dots {
    position: absolute;
    left: -6px;
    bottom: -34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}
.bn-pub__contact-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--boost-primary);
    opacity: 0.35;
}

/* ---- Kanan: kartu formulir + dekorasi ---- */
.bn-pub__contact-formwrap { position: relative; }
.bn-pub__form-card {
    position: relative;
    padding: 36px;
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}
.bn-pub__form-title { font-size: 1.4rem; margin: 0; }
.bn-pub__form-sub { margin: 6px 0 22px; font-size: 0.92rem; color: var(--boost-text-secondary); }

.bn-pub__form-decor { position: absolute; inset: 0; pointer-events: none; }
.bn-pub__form-path { position: absolute; top: -46px; right: 26px; width: 210px; height: 150px; }
.bn-pub__form-plane {
    position: absolute;
    top: -22px;
    right: 20px;
    width: 42px;
    height: 42px;
    color: var(--boost-primary);
    transform: rotate(-12deg);
    filter: drop-shadow(0 8px 16px rgba(2, 132, 199, 0.28));
}
/* Chip melayang di sudut luar kartu form (sibling kartu, bukan anak) */
.bn-pub__form-chip {
    position: absolute;
    left: -16px;
    bottom: -16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--boost-navy);
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.bn-pub__form-chip i { color: var(--boost-primary-dark); font-size: 0.95rem; }

/* Alert compact — sisi publik tak memuat toast Velzon */
.bn-pub__alert {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 18px;
    padding: 12px 14px;
    font-size: 0.9rem;
    border-radius: var(--boost-radius-sm);
    border: 1px solid transparent;
}
.bn-pub__alert i { font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }
.bn-pub__alert--success { color: #15803D; background: #F0FDF4; border-color: #BBF7D0; }
.bn-pub__alert--error { color: #B91C1C; background: #FEF2F2; border-color: #FECACA; }

.bn-pub__form { position: relative; z-index: 1; }
.bn-pub__field { margin-bottom: 16px; }
.bn-pub__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--boost-navy);
}
.bn-pub__inputwrap { position: relative; display: block; }
.bn-pub__inputwrap > i {
    position: absolute;
    left: 14px;
    top: 16px;
    font-size: 1.05rem;
    color: var(--boost-text-secondary);
    pointer-events: none;
}
.bn-pub__inputwrap input,
.bn-pub__inputwrap textarea {
    width: 100%;
    padding: 0 14px 0 42px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--boost-text);
    background: var(--boost-surface);
    border: 1px solid var(--boost-border);
    border-radius: 10px;
    appearance: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bn-pub__inputwrap input { height: 52px; }
.bn-pub__inputwrap textarea {
    min-height: 140px;
    padding-top: 14px;
    line-height: 1.6;
    resize: vertical;
}
.bn-pub__inputwrap input:focus,
.bn-pub__inputwrap textarea:focus {
    outline: none;
    border-color: var(--boost-primary);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.10);
}
.bn-pub__inputwrap input.is-invalid,
.bn-pub__inputwrap textarea.is-invalid { border-color: var(--boost-danger); }
.bn-pub__inputwrap input.is-invalid:focus,
.bn-pub__inputwrap textarea.is-invalid:focus { box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12); }

.bn-pub__field-err {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--boost-danger);
}

/* Honeypot — dijauhkan dari layar & pembaca layar tanpa display:none */
.bn-pub__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Tombol submit adalah <button> — aturan warna `.bn-pub__btn--primary` di
   sisi lain di-qualify dengan `a.` (lihat catatan baris ~186), jadi <button>
   tak mewarisinya. Set warna/latar/border eksplisit di sini. */
.bn-pub__form-submit {
    width: 100%;
    margin-top: 4px;
    color: var(--boost-navy);
    background-color: var(--boost-primary);
    border-color: var(--boost-primary);
}
.bn-pub__form-submit:hover:not(:disabled) {
    background-color: var(--boost-primary-hover);
    border-color: var(--boost-primary-hover);
    color: var(--boost-navy);
}
.bn-pub__form-submit:disabled { cursor: progress; opacity: 0.9; }
.bn-pub__form-submit .btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(15, 23, 42, 0.25);
    border-top-color: var(--boost-navy);
    border-radius: 50%;
    animation: bnSpin 0.6s linear infinite;
}
.bn-pub__form-submit.is-loading .btn-label { opacity: 0.55; }
.bn-pub__form-submit.is-loading .btn-spinner { display: inline-block; }
@keyframes bnSpin { to { transform: rotate(360deg); } }

@media (max-width: 991.98px) {
    .bn-pub__contact { padding: 64px 0 72px; }
    .bn-pub__contact-layout { grid-template-columns: 1fr; gap: 44px; }
    .bn-pub__contact-lead { max-width: none; }
    .bn-pub__contact-dots { display: none; }
    .bn-pub__form-path { display: none; }
}

@media (max-width: 767.98px) {
    .bn-pub__contact { padding: 48px 0 56px; }
    .bn-pub__form-card { padding: 24px; }
    .bn-pub__form-plane,
    .bn-pub__form-chip { display: none; }
    .bn-pub__cchan-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   14. CTA FINAL — navy + accent light-blue
   -------------------------------------------------------------------------- */
.bn-pub__cta-box {
    position: relative;
    padding: 64px 56px;
    text-align: center;
    background: var(--boost-navy);
    border-radius: var(--boost-radius-lg);
    overflow: hidden;
}
.bn-pub__cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(480px 260px at 50% 0%, rgba(56, 189, 248, 0.22), transparent 70%);
    pointer-events: none;
}

.bn-pub__cta-box > * { position: relative; z-index: 1; }

.bn-pub__cta-box h2 {
    color: #fff;
    font-size: clamp(1.6rem, 1.15rem + 1.8vw, 2.15rem);
    margin-bottom: 12px;
}

.bn-pub__cta-box p {
    max-width: 48ch;
    margin: 0 auto 28px;
    color: #94A3B8;
}

.bn-pub__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* --------------------------------------------------------------------------
   15. FOOTER — Boostnaa Social Ecosystem Footer
   5-layer depth: (1) deep navy bg, (2) radial ambient lights, (3) large
   orbit/dots/watermark, (4) content, (5) social nodes / CTA accents.
   Dekorasi murni CSS/SVG, aria-hidden + pointer-events:none.
   Tidak menggunakan PNG/JPG, tidak menggunakan purple.
   -------------------------------------------------------------------------- */

/* ── Shell ─────────────────────────────────────────────────────────────── */
.bn-ft {
    position: relative;
    overflow: hidden;
    padding: 72px 0 0;
    color: #94A3B8;
    font-family: var(--boost-pub-font);
    background:
        radial-gradient(circle at 8% 15%,  rgba(14,165,233,.14),  transparent 26%),
        radial-gradient(circle at 88% 22%, rgba(56,189,248,.09),  transparent 24%),
        radial-gradient(circle at 65% 100%,rgba(2,132,199,.07),   transparent 32%),
        #0F172A;
}

.bn-ft > .bn-pub__container { position: relative; z-index: 4; }

/* Focus ring pour links */
.bn-ft a:focus-visible {
    outline: 2px solid var(--boost-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── LAYER 2–3: Orbit SVG ───────────────────────────────────────────────── */
.bn-ft__orbit {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Orbit besar kiri atas — sebagian keluar viewport */
.bn-ft__orbit--tl {
    top: -190px;
    left: -150px;
    width: 560px;
    height: 560px;
}

/* Orbit kanan tengah — lebih kecil */
.bn-ft__orbit--rm {
    top: 32%;
    right: -70px;
    width: 320px;
    height: 320px;
}

/* Bentuk lengkung parsial (partial curved blue shape) 420px kiri bawah */
.bn-ft__curve-shape {
    position: absolute;
    z-index: 1;
    bottom: -180px;
    left: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(56,189,248,.09);
    pointer-events: none;
    user-select: none;
}

/* ── Dot clusters ───────────────────────────────────────────────────────── */
.bn-ft__dots {
    position: absolute;
    z-index: 1;
    width: 130px;
    height: 110px;
    background-image: radial-gradient(rgba(56,189,248,.25) 1px, transparent 1px);
    background-size: 10px 10px;
    pointer-events: none;
    user-select: none;
}

.bn-ft__dots--bl {
    bottom: 110px;
    left: 2%;
    opacity: 0.35;
}

.bn-ft__dots--tr {
    top: 30px;
    right: 3%;
    opacity: 0.22;
}

/* ── Large Brand Watermark ──────────────────────────────────────────────── */
.bn-ft__watermark {
    position: absolute;
    z-index: 1;
    bottom: 14%;
    right: -2%;
    font-family: var(--boost-pub-font);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,.018);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* ── Main grid ──────────────────────────────────────────────────────────── */
.bn-ft__main {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
    padding-top: 4px;
}

/* ── Brand column ───────────────────────────────────────────────────────── */
.bn-ft__brand-col {
    padding-right: 1.5rem;
}

.bn-ft__brandline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.bn-ft__mark {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--boost-primary) 0%, var(--boost-primary-dark) 100%);
    border-radius: 13px;
    box-shadow: 0 0 32px rgba(56,189,248,.15);
}

.bn-ft__name {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.bn-ft__tagline {
    margin: 16px 0 0;
    max-width: 32ch;
    font-size: 0.90rem;
    line-height: 1.65;
    color: #94A3B8;
}

.bn-ft__tagline-sub {
    margin: 6px 0 0;
    font-size: 0.80rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(56,189,248,.75);
}

/* ── Social icon row ────────────────────────────────────────────────────── */
.bn-ft__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.bn-ft__soc {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    border-radius: 11px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

/* Brand accent icon colors — container tetap dark translucent */
.bn-ft__soc--ig       { color: #E1306C; }
.bn-ft__soc--tiktok   { color: #69C9D0; }
.bn-ft__soc--youtube  { color: #FF0000; }
.bn-ft__soc--facebook { color: #1877F2; }
.bn-ft__soc--telegram { color: #29A9EB; }

a.bn-ft__soc:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.18);
}

/* ── Navigation columns ─────────────────────────────────────────────────── */
.bn-ft__col { }

.bn-pub .bn-ft__col-title,
.bn-ft__col-title {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #F8FAFC !important;
}

.bn-ft__col-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--boost-primary);
    opacity: 0.85;
}

.bn-ft__col-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bn-ft__col-list li + li { margin-top: 11px; }

.bn-pub .bn-ft__col-list a,
.bn-ft__col-list a {
    display: inline-flex;
    align-items: center;
    font-size: 0.90rem;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.18s ease;
}

/* Micro arrow — hanya muncul dan meluncur saat hover */
.bn-ft__col-list a::after {
    content: "\2192";
    margin-left: 6px;
    font-size: 0.78rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    display: inline-block;
}

.bn-pub .bn-ft__col-list a:hover,
.bn-ft__col-list a:hover        { color: #FFFFFF !important; }
.bn-ft__col-list a:hover::after { opacity: 1; transform: translateX(0); }
.bn-pub .bn-ft__col-list a.bn-ft__is-active,
.bn-ft__is-active               { color: var(--boost-primary) !important; font-weight: 600; }
.bn-pub .bn-ft__col-list a.bn-ft__link-more,
.bn-ft__link-more               { color: rgba(56,189,248,.85) !important; font-size: 0.85rem !important; }

/* ── CTA Action Panel ───────────────────────────────────────────────────── */
.bn-ft__cta {
    position: relative;
    padding: 22px 20px;
    background: linear-gradient(145deg, rgba(56,189,248,.10), rgba(255,255,255,.025));
    border: 1px solid rgba(56,189,248,.18);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

/* Mini orbit dekorasi di belakang CTA */
.bn-ft__cta-orbit {
    position: absolute;
    z-index: 0;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    pointer-events: none;
    opacity: 0.45;
}

.bn-ft__cta-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 18px;
    color: var(--boost-primary);
    background: rgba(56,189,248,.12);
    border: 1px solid rgba(56,189,248,.20);
    border-radius: 10px;
    margin-bottom: 12px;
}

.bn-ft__cta-heading {
    position: relative;
    z-index: 1;
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: -0.01em;
}

.bn-ft__cta-desc {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #94A3B8;
}

.bn-pub a.bn-ft__cta-btn,
a.bn-ft__cta-btn,
.bn-ft__cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0F172A !important;
    background: var(--boost-primary);
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.bn-pub a.bn-ft__cta-btn:hover,
a.bn-ft__cta-btn:hover,
.bn-ft__cta-btn:hover {
    background: var(--boost-primary-hover);
    color: #0F172A !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(14,165,233,.24);
}

/* ── Social Ecosystem Convergence Hub ──────────────────────────────────── */
.bn-ft__ecosystem {
    margin-top: 36px;
    padding: 18px 24px;
    border-radius: 14px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(56,189,248,.10);
    position: relative;
    z-index: 2;
}

.bn-ft__eco-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bn-ft__eco-side {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.bn-ft__eco-side--left {
    justify-content: flex-end;
}

.bn-ft__eco-side--right {
    justify-content: flex-start;
}

.bn-ft__eco-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 9px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
    animation: bnFtFloat 10s ease-in-out infinite;
}

.bn-ft__eco-node--ig { color: #E1306C; animation-delay: 0s; }
.bn-ft__eco-node--tt { color: #69C9D0; animation-delay: 2s; }
.bn-ft__eco-node--yt { color: #FF0000; animation-delay: 1.2s; }
.bn-ft__eco-node--fb { color: #1877F2; animation-delay: 3s; }
.bn-ft__eco-node--tg { color: #29A9EB; animation-delay: 1.8s; }

@keyframes bnFtFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.bn-ft__eco-dash {
    flex: 1;
    max-width: 70px;
    height: 12px;
}

.bn-ft__eco-center {
    flex-shrink: 0;
    padding: 0 8px;
}

.bn-ft__eco-hub {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(14,165,233,.08);
    border: 1px solid rgba(56,189,248,.22);
    box-shadow: 0 0 24px rgba(56,189,248,.10);
}

.bn-ft__eco-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    border: 1px solid rgba(56,189,248,.20);
    opacity: 0.6;
    animation: bnFtPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bnFtPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50%      { transform: scale(1.02); opacity: 0.7; }
}

.bn-ft__eco-hub-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--boost-primary);
    color: var(--boost-navy);
    font-size: 14px;
    flex-shrink: 0;
}

.bn-ft__eco-hub-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.bn-ft__eco-hub-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    line-height: 1.2;
}

.bn-ft__eco-hub-sub {
    font-size: 0.68rem;
    color: rgba(56,189,248,.75);
    font-weight: 500;
    line-height: 1.2;
}

/* ── Dividers ───────────────────────────────────────────────────────────── */
.bn-ft__divider {
    height: 1px;
    margin: 32px 0;
    background: rgba(148,163,184,.12);
}

/* ── Utility strip ──────────────────────────────────────────────────────── */
.bn-ft__utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
    padding: 4px 0;
}

.bn-ft__util-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
    padding: 0 28px;
}

.bn-ft__util-item:first-child { padding-left: 0; }
.bn-ft__util-item:last-child  { padding-right: 0; }

.bn-ft__util-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 21px;
    color: #38BDF8;
    background: rgba(56,189,248,.08);
    border: 1px solid rgba(56,189,248,.12);
    border-radius: 12px;
}

.bn-ft__util-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bn-ft__util-label {
    font-size: 0.90rem;
    font-weight: 700;
    color: #F1F5F9;
    line-height: 1.2;
}

.bn-ft__util-sub {
    font-size: 0.76rem;
    color: #64748B;
    line-height: 1.2;
}

/* vertical separator between utility items */
.bn-ft__util-sep {
    flex-shrink: 0;
    width: 1px;
    height: 38px;
    background: rgba(148,163,184,.12);
}

/* ── Bottom bar ─────────────────────────────────────────────────────────── */
.bn-ft__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 4px 0 32px;
    font-size: 0.83rem;
    color: #64748B;
}

.bn-ft__copy { }

.bn-ft__legal {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.bn-ft__legal a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.18s ease;
    font-size: 0.83rem;
}

.bn-ft__legal a:hover { color: #fff; }

.bn-ft__legal-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(148,163,184,.35);
    vertical-align: middle;
}


/* --------------------------------------------------------------------------
   16. REVEAL (opsional, halus) — hanya aktif bila JS tersedia (.bn-js)
   -------------------------------------------------------------------------- */
.bn-js .bn-pub__reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.bn-js .bn-pub__reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   17. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
    .bn-pub__benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 991.98px) {
    .bn-pub__hero { display: block; min-height: 0; padding: 60px 0 56px; }
    .bn-pub__hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .bn-pub__hero-copy { padding-bottom: 0; text-align: left; }
    .bn-pub__hero-art { order: 2; padding-top: 0; }

    /* Hero dashboard — tablet: dashboard mengecil, sidebar menyempit,
       3 ikon sosial, tanpa garis konektor. */
    .bn-hero-dash { max-width: 470px; }
    .bn-hero-dash__body { grid-template-columns: 104px 1fr; }
    .bn-hero-dash__nav-item { font-size: 0.68rem; padding: 6px 6px; }
    .bn-hero-dash__wires { display: none; }
    .bn-hero-dash__chip--fb,
    .bn-hero-dash__chip--tg { display: none; }
    .bn-hero-dash__callout--a { right: 0; }
    .bn-hero-dash__callout--b { left: 0; }

    /* Apa Itu Boostnaa — 1 kolom, visual di bawah, ikon & connector dikurangi */
    .bn-pub__platform-grid { grid-template-columns: 1fr; gap: 40px; }
    .bn-pub__platform-text { max-width: none; }
    .bn-pub__platform-visual { order: 2; }
    .bn-pub__eco { max-width: 540px; padding: 46px 20px 40px; }
    .bn-pub__eco-icon--lo { display: none; }
    .bn-pub__eco-lines path:nth-child(n+4) { display: none; }
    .bn-pub__dash-side { width: 106px; padding: 12px 10px; }

    .bn-pub__values-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .bn-pub__benefits-grid { grid-template-columns: repeat(3, 1fr); }

    .bn-pub__teaser { padding: 32px; }

    /* Footer — tablet: brand full width di atas, nav & ecosystem rapi */
    .bn-ft { padding: 56px 0 0; }
    .bn-ft__brand-col { padding-right: 0; }
    .bn-ft__orbit--rm { display: none; }
    .bn-ft__ecosystem { margin-top: 28px; padding: 14px 16px; }
    .bn-ft__eco-side { gap: 6px; }
    .bn-ft__eco-dash { max-width: 44px; }
    .bn-ft__eco-node { width: 30px; height: 30px; font-size: 14px; }
    .bn-ft__util-item { min-width: 140px; padding: 0 16px; }
}

@media (max-width: 767.98px) {
    body.bn-pub-body { font-size: 15px; }

    .bn-pub__section { padding: 60px 0; }
    .bn-pub__section--tight { padding: 48px 0; }
    .bn-pub__container { padding-inline: 20px; }

    .bn-pub__hero { padding: 44px 0 52px; }
    .bn-pub__hero-cta { flex-direction: column; }
    .bn-pub__hero-cta .bn-pub__btn { width: 100%; }

    /* Hero dashboard — mobile: dashboard mengalir normal (bukan absolut),
       tanpa sidebar, status ditumpuk, 2 ikon sosial, tanpa konektor,
       1 callout di bawah. */
    .bn-hero-dash { max-width: 340px; aspect-ratio: auto; padding-top: 42px; padding-bottom: 26px; }
    .bn-hero-dash__app { position: static; }
    .bn-hero-dash__body { grid-template-columns: 1fr; }
    .bn-hero-dash__side { display: none; }
    .bn-hero-dash__stats { flex-direction: column; }
    .bn-hero-dash__stat { flex-direction: row; align-items: center; }
    .bn-hero-dash__chip { width: 42px; height: 42px; font-size: 19px; animation: none; }
    .bn-hero-dash__chip--ig { top: 0; left: 2%; bottom: auto; }
    .bn-hero-dash__chip--tt { top: 0; left: auto; right: 2%; }
    .bn-hero-dash__chip--yt,
    .bn-hero-dash__chip--fb,
    .bn-hero-dash__chip--tg { display: none; }
    .bn-hero-dash__callout--a { display: none; }
    .bn-hero-dash__callout--b { left: 50%; right: auto; bottom: -12px; transform: translateX(-50%); animation: none; }

    .bn-pub__section-head { margin-bottom: 28px; }

    /* Apa Itu Boostnaa — mockup disederhanakan: tanpa connector/glow/callout,
       sidebar jadi header brand, hanya 3 ikon sosial. */
    .bn-pub__platform::before { display: none; }
    .bn-pub__eco { max-width: 380px; padding: 40px 6px 26px; }
    .bn-pub__eco-glow,
    .bn-pub__eco-lines,
    .bn-pub__dash-callout { display: none; }
    /* hanya 3 ikon, dalam busur DI ATAS dashboard (top px eksplisit — tinggi
       mockup mobile bervariasi sehingga %-tinggi tak bisa diandalkan). */
    .bn-pub__eco-icon { width: 40px; height: 40px; font-size: 17px; }
    .bn-pub__eco-icon:nth-of-type(1) { --x: 18%; top: 10px; }   /* Instagram */
    .bn-pub__eco-icon:nth-of-type(2) { --x: 50%; top: 2px; }    /* TikTok    */
    .bn-pub__eco-icon:nth-of-type(3) { --x: 82%; top: 10px; }   /* YouTube   */
    .bn-pub__dash-stage { width: 100%; max-width: none; transform: none; }
    .bn-pub__dash-body { display: block; }
    .bn-pub__dash-side {
        width: auto;
        padding: 12px 14px;
        border-right: 0;
        border-bottom: 1px solid var(--boost-border);
    }
    .bn-pub__dash-brand { margin-bottom: 0; }
    .bn-pub__dash-nav { display: none; }
    .bn-pub__dash-cards { flex-direction: column; gap: 6px; }
    .bn-pub__dash-card { font-size: 11px; }

    .bn-pub__values-grid { grid-template-columns: 1fr; gap: 20px; }
    .bn-pub__benefits-grid { grid-template-columns: 1fr; gap: 16px; }

    .bn-pub__teaser { flex-direction: column; align-items: stretch; text-align: left; padding: 28px; }
    .bn-pub__teaser-actions { align-items: stretch; width: 100%; }
    .bn-pub__teaser-actions .bn-pub__btn { width: 100%; }

    .bn-pub__cta-box { padding: 40px 24px; }
    .bn-pub__cta-actions { flex-direction: column; }
    .bn-pub__cta-actions .bn-pub__btn { width: 100%; }

    /* Footer — mobile: 1 kolom, dekorasi disederhanakan tanpa overflow */
    .bn-ft { padding: 44px 0 0; }
    .bn-ft__orbit--tl { width: 320px; height: 320px; top: -120px; left: -120px; }
    .bn-ft__orbit--rm,
    .bn-ft__curve-shape { display: none; }
    .bn-ft__watermark { display: none; }
    .bn-ft__dots--tr { display: none; }
    .bn-ft__brand-col { padding-right: 0; }
    .bn-ft__main { --bs-gutter-y: 1.75rem; }
    .bn-ft__ecosystem { margin-top: 24px; padding: 12px 14px; }
    .bn-ft__eco-side { display: none; }
    .bn-ft__eco-center { width: 100%; padding: 0; }
    .bn-ft__eco-hub { width: 100%; justify-content: center; padding: 8px 14px; }
    .bn-ft__cta { padding: 24px 20px; }
    .bn-ft__divider { margin: 24px 0 20px; }
    /* Utility strip — stack vertikal */
    .bn-ft__utility { flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 0; }
    .bn-ft__util-item { padding: 12px 0; width: 100%; min-width: 0; }
    .bn-ft__util-item:first-child { padding-left: 0; }
    .bn-ft__util-sep { width: 100%; height: 1px; }
    /* Bottom bar */
    .bn-ft__bottom { justify-content: flex-start; flex-direction: column; gap: 10px; padding-bottom: 32px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .bn-js .bn-pub__reveal { opacity: 1; transform: none; transition: none; }
    .bn-pub * { transition: none !important; animation: none !important; }
    .bn-ft * { transition: none !important; animation: none !important; }
    .bn-ft__eco-node,
    .bn-ft__eco-pulse { animation: none !important; }
}

