/* =========================================================
   FinanceKu — Landing Page (halaman depan publik)
   Gaya: modern fintech, selaras dengan tema dashboard.
   Mendukung light & dark mode.
   ========================================================= */

:root {
    --lp-radius: 20px;
    --lp-radius-sm: 14px;
    --lp-max: 1180px;
    --lp-ease: cubic-bezier(.22, 1, .36, 1);
    --lp-grad: linear-gradient(135deg, #2563eb 0%, #22d3ee 100%);
    --lp-grad-soft: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(34, 211, 238, .12));
}

[data-bs-theme="light"] {
    --lp-bg: #ffffff;
    --lp-bg-alt: #f5f7fc;
    --lp-surface: #ffffff;
    --lp-border: #e6eaf2;
    --lp-text: #101728;
    --lp-muted: #5d6780;
    --lp-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 18px 40px rgba(16, 24, 40, .08);
    --lp-shadow-lg: 0 30px 70px rgba(16, 24, 40, .16);
    --lp-navbar: rgba(255, 255, 255, .82);
}

[data-bs-theme="dark"] {
    --lp-bg: #0b1120;
    --lp-bg-alt: #0e1626;
    --lp-surface: #131c2f;
    --lp-border: #222e48;
    --lp-text: #eaf0fb;
    --lp-muted: #9aa7c1;
    --lp-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 18px 40px rgba(0, 0, 0, .38);
    --lp-shadow-lg: 0 30px 70px rgba(0, 0, 0, .55);
    --lp-navbar: rgba(11, 17, 32, .82);
}

/* ---------------------------------------------------------
   Reset ringkas — landing page tidak memuat Bootstrap CSS
   agar halaman depan tetap ringan dan cepat dibuka.
   --------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body { margin: 0; }

img, svg { max-width: 100%; height: auto; vertical-align: middle; }

button { font: inherit; }

h1, h2, h3, h4, p, ul { margin: 0; }

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .92em;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

.lp {
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}

.lp-container {
    width: 100%;
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0 20px;
}

.lp section { position: relative; }

.lp-section { padding: 92px 0; }
.lp-section--alt { background: var(--lp-bg-alt); }

.lp h1, .lp h2, .lp h3 { letter-spacing: -.025em; }

/* ---------- Navbar ---------- */
.lp-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1050;
    padding: 16px 0;
    transition: all .3s var(--lp-ease);
}

.lp-nav.is-scrolled {
    padding: 10px 0;
    background: var(--lp-navbar);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--lp-border);
}

.lp-nav__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--lp-text);
    font-weight: 800;
    font-size: 1.12rem;
    min-width: 0;
}

.lp-brand > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-brand__mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background: var(--lp-grad);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .32);
}

.lp-brand__sub {
    display: block;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin-top: -2px;
}

.lp-nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.lp-nav__link {
    padding: 8px 14px;
    border-radius: 10px;
    color: var(--lp-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .2s var(--lp-ease);
}

.lp-nav__link:hover,
.lp-nav__link.is-active {
    color: var(--lp-text);
    background: var(--lp-grad-soft);
}

.lp-nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

/* Tombol aksi di dalam menu mobile (hanya tampil pada layar kecil). */
.lp-nav__menu-cta { display: none; }

.lp-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    color: var(--lp-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .2s var(--lp-ease);
}

.lp-icon-btn:hover { border-color: #2563eb; color: #2563eb; }

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s var(--lp-ease);
    white-space: nowrap;
}

.lp-btn--primary {
    background: var(--lp-grad);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .32);
}

.lp-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 99, 235, .42);
}

.lp-btn--ghost {
    background: var(--lp-surface);
    color: var(--lp-text);
    border-color: var(--lp-border);
}

.lp-btn--ghost:hover { border-color: #2563eb; color: #2563eb; transform: translateY(-2px); }

.lp-btn--light {
    background: rgba(255, 255, 255, .16);
    color: #fff;
    border-color: rgba(255, 255, 255, .32);
    backdrop-filter: blur(6px);
}

.lp-btn--light:hover { background: rgba(255, 255, 255, .26); color: #fff; transform: translateY(-2px); }

.lp-btn--white { background: #fff; color: #1d4ed8; }
.lp-btn--white:hover { color: #1d4ed8; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 0, 0, .22); }

.lp-btn--lg { padding: 14px 28px; font-size: 1rem; }

.lp-nav__toggle { display: none; }

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    padding: 148px 0 84px;
    overflow: hidden;
}

.lp-hero::before {
    content: "";
    position: absolute;
    inset: -220px -10% auto -10%;
    height: 720px;
    background:
        radial-gradient(680px 420px at 22% 24%, rgba(37, 99, 235, .22), transparent 62%),
        radial-gradient(620px 420px at 82% 8%, rgba(34, 211, 238, .20), transparent 60%);
    pointer-events: none;
}

.lp-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 52px;
    align-items: center;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--lp-grad-soft);
    border: 1px solid var(--lp-border);
    color: #2563eb;
    font-size: .8rem;
    font-weight: 700;
}

[data-bs-theme="dark"] .lp-badge { color: #7cb0ff; }

.lp-hero h1 {
    font-size: clamp(2.15rem, 4.6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 18px;
}

.lp-gradient-text {
    background: var(--lp-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero__lead {
    font-size: 1.06rem;
    color: var(--lp-muted);
    line-height: 1.72;
    max-width: 540px;
    margin-bottom: 28px;
}

.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.lp-hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: .87rem;
    color: var(--lp-muted);
}

.lp-hero__points span { display: inline-flex; align-items: center; gap: 7px; }
.lp-hero__points i { color: #16a34a; }

/* Mockup browser */
.lp-mock {
    position: relative;
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    transform: perspective(1600px) rotateY(-7deg) rotateX(2.5deg);
    transition: transform .5s var(--lp-ease);
}

.lp-mock:hover { transform: perspective(1600px) rotateY(-2deg) rotateX(0.5deg); }

.lp-mock__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: var(--lp-bg-alt);
    border-bottom: 1px solid var(--lp-border);
}

.lp-mock__dot { width: 11px; height: 11px; border-radius: 50%; }
.lp-mock__dot:nth-child(1) { background: #ff5f57; }
.lp-mock__dot:nth-child(2) { background: #febc2e; }
.lp-mock__dot:nth-child(3) { background: #28c840; }

.lp-mock__url {
    margin-left: 10px;
    flex: 1;
    font-size: .72rem;
    color: var(--lp-muted);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    padding: 4px 12px;
    text-align: center;
}

.lp-mock img { display: block; width: 100%; height: auto; }

.lp-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    border-radius: 15px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    animation: lpFloat 5s ease-in-out infinite;
    z-index: 3;
}

.lp-float__icon {
    width: 36px; height: 36px; border-radius: 11px;
    display: grid; place-items: center; color: #fff; font-size: 1rem; flex: 0 0 36px;
}

.lp-float__label { font-size: .68rem; color: var(--lp-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.lp-float__value { font-size: .95rem; font-weight: 800; }

.lp-float--a { left: -34px; top: 16%; animation-delay: .2s; }
.lp-float--b { right: -26px; bottom: 14%; animation-delay: 1.4s; }

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

/* ---------- Statistik ---------- */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 30px;
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    margin-top: 64px;
}

.lp-stat { text-align: center; }
.lp-stat__num { font-size: 2rem; font-weight: 800; line-height: 1; }
.lp-stat__label { font-size: .84rem; color: var(--lp-muted); margin-top: 7px; }

/* ---------- Judul section ---------- */
.lp-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.lp-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; margin: 14px 0 14px; }
.lp-head p { color: var(--lp-muted); font-size: 1.02rem; line-height: 1.7; margin: 0; }

.lp-eyebrow {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #2563eb;
}

[data-bs-theme="dark"] .lp-eyebrow { color: #7cb0ff; }

/* ---------- Kartu fitur ---------- */
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; align-items: center; }

.lp-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 26px;
    height: 100%;
    transition: all .3s var(--lp-ease);
}

.lp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
    border-color: rgba(37, 99, 235, .42);
}

.lp-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 18px;
}

.lp-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
.lp-card p { font-size: .92rem; color: var(--lp-muted); line-height: 1.68; margin: 0; }

.lp-i-blue   { background: linear-gradient(135deg, #2563eb, #38bdf8); }
.lp-i-green  { background: linear-gradient(135deg, #059669, #34d399); }
.lp-i-red    { background: linear-gradient(135deg, #dc2626, #f87171); }
.lp-i-orange { background: linear-gradient(135deg, #ea580c, #fbbf24); }
.lp-i-purple { background: linear-gradient(135deg, #7c3aed, #c084fc); }
.lp-i-teal   { background: linear-gradient(135deg, #0d9488, #5eead4); }
.lp-i-pink   { background: linear-gradient(135deg, #db2777, #f472b6); }
.lp-i-slate  { background: linear-gradient(135deg, #334155, #94a3b8); }
.lp-i-indigo { background: linear-gradient(135deg, #4f46e5, #818cf8); }

/* ---------- Cara kerja ---------- */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }

.lp-step { text-align: center; position: relative; }

.lp-step__num {
    width: 58px; height: 58px; margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--lp-surface);
    border: 2px solid var(--lp-border);
    display: grid; place-items: center;
    font-weight: 800; font-size: 1.15rem;
    color: #2563eb;
    position: relative; z-index: 2;
    transition: all .3s var(--lp-ease);
}

.lp-step:hover .lp-step__num { background: var(--lp-grad); color: #fff; border-color: transparent; transform: scale(1.08); }

.lp-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 29px; left: 62%; width: 76%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--lp-border) 0 8px, transparent 8px 16px);
}

.lp-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.lp-step p { font-size: .9rem; color: var(--lp-muted); line-height: 1.65; margin: 0; }

/* ---------- Tab pratinjau ---------- */
.lp-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.lp-tab {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    color: var(--lp-muted);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .25s var(--lp-ease);
}

.lp-tab:hover { color: var(--lp-text); }
.lp-tab.is-active { background: var(--lp-grad); color: #fff; border-color: transparent; box-shadow: 0 10px 24px rgba(37, 99, 235, .3); }

.lp-shot {
    border-radius: var(--lp-radius);
    overflow: hidden;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    background: var(--lp-surface);
}

.lp-shot__panel { display: none; }
.lp-shot__panel.is-active { display: block; animation: lpFade .45s var(--lp-ease); }
.lp-shot img { display: block; width: 100%; height: auto; }

@keyframes lpFade {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Daftar centang ---------- */
.lp-check { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }

.lp-check li { display: flex; gap: 13px; align-items: flex-start; }

.lp-check i {
    flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px;
    border-radius: 50%;
    background: rgba(22, 163, 74, .14);
    color: #16a34a;
    display: grid; place-items: center;
    font-size: .72rem;
}

.lp-check strong { display: block; font-size: .96rem; margin-bottom: 2px; }
.lp-check span { font-size: .89rem; color: var(--lp-muted); line-height: 1.6; }

/* ---------- Persona ---------- */
.lp-persona {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 26px 22px;
    text-align: center;
    height: 100%;
    transition: all .3s var(--lp-ease);
}

.lp-persona:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow); }

.lp-persona__ico {
    width: 62px; height: 62px; margin: 0 auto 16px;
    border-radius: 20px;
    display: grid; place-items: center;
    font-size: 1.6rem; color: #fff;
}

.lp-persona h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.lp-persona p { font-size: .88rem; color: var(--lp-muted); line-height: 1.62; margin: 0; }

/* ---------- FAQ ---------- */
.lp-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }

.lp-faq__item {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    background: var(--lp-surface);
    overflow: hidden;
    transition: border-color .25s var(--lp-ease);
}

.lp-faq__item.is-open { border-color: rgba(37, 99, 235, .5); }

.lp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    background: none;
    border: none;
    color: var(--lp-text);
    font-weight: 700;
    font-size: .98rem;
    text-align: left;
    cursor: pointer;
}

.lp-faq__q i { color: #2563eb; transition: transform .3s var(--lp-ease); flex: 0 0 auto; }
.lp-faq__item.is-open .lp-faq__q i { transform: rotate(180deg); }

.lp-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--lp-ease);
}

.lp-faq__a p {
    padding: 0 22px 20px;
    margin: 0;
    color: var(--lp-muted);
    font-size: .93rem;
    line-height: 1.72;
}

/* ---------- CTA ---------- */
.lp-cta {
    border-radius: 26px;
    background: var(--lp-grad);
    padding: 62px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(37, 99, 235, .34);
}

.lp-cta::before {
    content: "";
    position: absolute;
    inset: -50% -20% auto auto;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 62%);
}

.lp-cta h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 14px; position: relative; }
.lp-cta p { font-size: 1.02rem; opacity: .94; max-width: 590px; margin: 0 auto 30px; position: relative; line-height: 1.7; }

.lp-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; }

.lp-cta__note { margin-top: 22px; font-size: .85rem; opacity: .9; position: relative; }
.lp-cta__note code { background: rgba(255, 255, 255, .2); padding: 2px 8px; border-radius: 6px; color: #fff; }

/* ---------- Footer ---------- */
.lp-footer {
    background: var(--lp-bg-alt);
    border-top: 1px solid var(--lp-border);
    padding: 60px 0 26px;
}

.lp-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.lp-footer__about p { color: var(--lp-muted); font-size: .9rem; line-height: 1.7; margin: 16px 0 0; max-width: 320px; }
.lp-footer h4 { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.lp-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lp-footer a { color: var(--lp-muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.lp-footer a:hover { color: #2563eb; }

.lp-footer__bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid var(--lp-border);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    color: var(--lp-muted);
    font-size: .85rem;
}

.lp-tech { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }

.lp-tech span {
    font-size: .74rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    color: var(--lp-muted);
    background: var(--lp-surface);
}

/* ---------- Animasi reveal ---------- */
.lp-js .lp-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--lp-ease), transform .7s var(--lp-ease);
}

.lp-js .lp-reveal.is-visible { opacity: 1; transform: none; }

/* Bila JavaScript nonaktif, seluruh konten tetap tampil normal. */
.lp-reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .lp-js .lp-reveal { opacity: 1; transform: none; transition: none; }
    .lp-float { animation: none; }
    .lp-mock { transform: none; }
}

/* ---------- Responsif ---------- */
@media (max-width: 991.98px) {
    .lp-hero { padding: 126px 0 64px; }
    .lp-hero__grid { grid-template-columns: 1fr; gap: 44px; }
    .lp-hero__lead { margin-left: auto; margin-right: auto; }
    .lp-hero__grid > div:first-child { text-align: center; }
    .lp-hero__cta, .lp-hero__points { justify-content: center; }
    .lp-mock { transform: none; max-width: 640px; margin: 0 auto; }
    .lp-float--a { left: -8px; }
    .lp-float--b { right: -8px; }
    .lp-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .lp-grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 34px 22px; }
    .lp-step:not(:last-child)::after { display: none; }
    .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .lp-nav__menu {
        position: fixed;
        inset: 0 0 auto 0;
        top: 72px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 14px;
        margin: 0 14px;
        border-radius: var(--lp-radius);
        background: var(--lp-surface);
        border: 1px solid var(--lp-border);
        box-shadow: var(--lp-shadow-lg);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        transition: all .28s var(--lp-ease);
    }

    .lp-nav__menu.is-open { transform: none; opacity: 1; visibility: visible; }
    .lp-nav__link { padding: 12px 14px; }
    .lp-nav__toggle { display: grid; margin-left: auto; }
    .lp-nav__actions .lp-btn--ghost { display: none; }
}

@media (max-width: 767.98px) {
    /* Ruang navbar terbatas: tombol dipindahkan ke dalam menu mobile. */
    .lp-nav__actions .lp-btn { display: none; }

    .lp-nav__menu-cta {
        display: grid;
        gap: 8px;
        margin-top: 10px;
        padding-top: 12px;
        border-top: 1px solid var(--lp-border);
    }

    .lp-nav__menu-cta .lp-btn { width: 100%; }

    .lp-section { padding: 68px 0; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 26px 18px; margin-top: 48px; }
    .lp-grid-3, .lp-grid-4 { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-cta { padding: 44px 22px; border-radius: 20px; }
    .lp-footer__grid { grid-template-columns: 1fr; }
    .lp-float { display: none; }
    .lp-brand__sub { display: none; }
}

@media (max-width: 420px) {
    .lp-hero__cta .lp-btn { width: 100%; }
}
