/* tagihankita landing page */
:root {
    --lp-navy: #001F45;
    --lp-navy-dark: #00122e;
    --lp-grad: linear-gradient(115deg, #032754 0%, #164391 58%, #343f94 100%);
    --lp-yellow: #ffdf7e;
    --lp-yellow-hover: #ffe9a6;
    --lp-ink: #032754;
    --lp-heading: #5d596c;
    --lp-body: #6f6b7d;
    --lp-muted: #a5a3ae;
    --lp-border: #dbdade;
    --lp-hair: #f1f0f4;
    --lp-bg: #f8f7fa;
    --lp-success: #28c76f;
    --lp-warning: #ff9f43;
    --lp-danger: #ea5455;
    --lp-info: #00cfe8;
    --lp-secondary: #a8aaae;
    --lp-soft: rgba(0, 31, 69, .1);
    --lp-card-shadow: 0 2px 6px rgba(47, 43, 61, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp { margin: 0; background: var(--lp-bg); font-family: "Public Sans", system-ui, sans-serif; color: var(--lp-body); -webkit-font-smoothing: antialiased; }
.lp h1, .lp h2, .lp h3, .lp p { margin: 0; }
.lp a { color: var(--lp-navy); text-decoration: none; }
.lp a:hover { color: var(--lp-navy-dark); }
.lp button { font: inherit; }
.lp strong, .lp b { font-weight: 600; }
.lp small { display: block; }
.lp-container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.lp-mobile-only { display: none; }

/* ---------- Buttons (block style) ---------- */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 4px; font-weight: 600; border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; }
.lp-btn:hover { transform: translate(-2px, -2px); }
.lp-btn:active { transform: translate(0, 0); }
.lp-btn-lg { padding: 16px 28px; font-size: 16px; }
.lp-btn-sm { padding: 6px 6px 6px 18px; font-size: 14px; }
.lp-btn-yellow { background: var(--lp-yellow); color: var(--lp-ink) !important; font-weight: 700; box-shadow: 4px 4px 0 var(--lp-navy-dark); }
.lp-btn-yellow:hover { background: var(--lp-yellow-hover); box-shadow: 6px 6px 0 var(--lp-navy-dark); }
.lp-btn-navy { background: var(--lp-navy); color: #fff !important; box-shadow: 4px 4px 0 var(--lp-yellow); }
.lp-btn-navy:hover { background: var(--lp-navy-dark); box-shadow: 6px 6px 0 var(--lp-yellow); }
.lp-btn-ghost { color: #fff !important; border: 1px solid rgba(255, 255, 255, .35); background: transparent; padding: 15px 22px; font-size: 15px; }
.lp-btn-ghost:hover { background: rgba(255, 255, 255, .08); transform: none; }
.lp-btn-arrow { width: 30px; height: 30px; border-radius: 5px; background: var(--lp-yellow); color: var(--lp-ink); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.lp-btn-lg i { font-size: 19px; }

/* ---------- Nav ---------- */
.lp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; pointer-events: none; }
.lp-nav-inner { pointer-events: auto; max-width: 1168px; margin: 14px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 8px 8px 20px; border-radius: 16px; background: rgba(255, 255, 255, .86); backdrop-filter: blur(18px) saturate(1.6); -webkit-backdrop-filter: blur(18px) saturate(1.6); border: 1px solid rgba(255, 255, 255, .7); box-shadow: 0 4px 16px rgba(0, 18, 46, .12); transition: box-shadow .3s; }
.lp-nav.is-scrolled .lp-nav-inner { box-shadow: 0 10px 30px rgba(0, 18, 46, .14); }
.lp-nav-logo { display: flex; flex: none; }
.lp-nav-logo img { height: 32px; width: auto; display: block; }
.lp-nav-links { display: flex; align-items: center; gap: 2px; padding: 4px; border-radius: 11px; background: rgba(0, 31, 69, .05); }
.lp-nav-link { display: flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 8px; font-weight: 600; font-size: 14px; color: var(--lp-body) !important; transition: background .2s, color .2s; }
.lp-nav-link:hover, .lp-nav-link.is-active, .lp-mega-wrap:hover > .lp-nav-link { color: var(--lp-navy) !important; background: #fff; box-shadow: 0 1px 4px rgba(0, 18, 46, .12); }
.lp-nav-link i { font-size: 15px; transition: transform .2s; }
.lp-mega-wrap { position: relative; }
.lp-mega-wrap:hover .lp-nav-link i { transform: rotate(180deg); }
.lp-mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 14px; width: 620px; opacity: 0; visibility: hidden; transition: opacity .15s, visibility .15s; }
.lp-mega-wrap:hover .lp-mega, .lp-mega-wrap:focus-within .lp-mega { opacity: 1; visibility: visible; }
.lp-mega-grid { background: #fff; border-radius: 18px; border: 1px solid rgba(0, 31, 69, .08); box-shadow: 0 24px 60px rgba(0, 18, 46, .18); padding: 10px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
.lp-mega-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 12px; }
.lp-mega-item:hover { background: var(--lp-bg); }
.lp-mega-item strong { display: block; font-size: 14px; color: var(--lp-navy); }
.lp-mega-item small { font-size: 12px; line-height: 1.45; color: var(--lp-body); margin-top: 3px; }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.lp-nav-login { display: flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: 14px; }
.lp-nav-login:hover { background: rgba(0, 31, 69, .06); }
.lp-nav-login i { font-size: 17px; }

/* ---------- Icons & badges ---------- */
.lp-icon-box { flex: none; width: 44px; height: 44px; border-radius: 10px; background: var(--lp-soft); color: var(--lp-navy); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.lp-mega-item .lp-icon-box { width: 38px; height: 38px; font-size: 19px; background: rgba(0, 31, 69, .08); }
.lp-icon-sm { flex: none; width: 32px; height: 32px; border-radius: 6px; background: var(--lp-soft); color: var(--lp-navy); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.lp-icon-xs { width: 24px; height: 24px; border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.lp-icon-solid { width: 38px; height: 38px; border-radius: 8px; background: var(--lp-navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex: none; }
.is-success.lp-icon-sm, .is-success.lp-icon-xs { background: rgba(40, 199, 111, .16); color: var(--lp-success); }
.is-warning.lp-icon-sm { background: rgba(255, 159, 67, .16); color: var(--lp-warning); }
.is-info.lp-icon-xs { background: rgba(0, 207, 232, .16); color: var(--lp-info); }
.lp-badge { flex: none; padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.lp-badge.is-success { background: rgba(40, 199, 111, .16); color: var(--lp-success); }
.lp-badge.is-warning { background: rgba(255, 159, 67, .16); color: var(--lp-warning); }
.lp-badge.is-danger { background: rgba(234, 84, 85, .16); color: var(--lp-danger); }
.lp-badge.is-secondary { background: rgba(168, 170, 174, .16); color: var(--lp-secondary); }
strong.is-success, b.is-success { color: var(--lp-success) !important; }
strong.is-warning { color: var(--lp-warning) !important; }
strong.is-navy { color: var(--lp-navy) !important; }

/* ---------- Hero ---------- */
.lp-hero { position: relative; overflow: hidden; background: var(--lp-grad); border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; }
.lp-hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; top: -220px; right: 14%; background: radial-gradient(circle, rgba(125, 211, 252, .22), rgba(125, 211, 252, 0) 70%); pointer-events: none; }
.lp-hero-ring { position: absolute; width: 360px; height: 360px; border-radius: 50%; right: -160px; bottom: -200px; border: 1px solid rgba(255, 255, 255, .14); box-shadow: 0 0 0 40px rgba(255, 255, 255, .035), 0 0 0 80px rgba(255, 255, 255, .025); pointer-events: none; }
.lp-hero-inner { position: relative; padding-top: 148px; padding-bottom: 96px; display: flex; flex-wrap: wrap; gap: 48px; align-items: center; }
.lp-hero-copy { flex: 1 1 420px; min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.lp-hero h1 { color: #fff; font-weight: 800; font-size: clamp(34px, 5vw, 56px); line-height: 1.1; letter-spacing: -.02em; text-wrap: balance; }
.lp-mark { background: linear-gradient(transparent 64%, rgba(255, 223, 126, .5) 64%, rgba(255, 223, 126, .5) 92%, transparent 92%); }
.lp-lead { color: #eff4ff; font-size: 18px; line-height: 1.65; max-width: 560px; text-wrap: pretty; }
.lp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.lp-hero-note { color: rgba(239, 244, 255, .8); font-size: 13px; display: flex; align-items: center; gap: 8px; }

.lp-calc { max-width: 560px; border-radius: 12px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); overflow: hidden; }
.lp-calc-tabs { display: flex; flex-wrap: wrap; gap: 4px; padding: 6px; border-bottom: 1px dashed rgba(255, 255, 255, .22); }
.lp-calc-tabs button { display: flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 6px; border: 0; background: transparent; color: #c9d6ee; font-size: 12px; font-weight: 600; cursor: pointer; transition: background .2s, color .2s; }
.lp-calc-tabs button i { font-size: 15px; }
.lp-calc-tabs button.is-active { background: var(--lp-yellow); color: var(--lp-ink); }
.lp-calc-body { display: grid; grid-template-columns: minmax(0, 1.25fr) auto minmax(0, .9fr) auto minmax(0, 1.25fr); align-items: center; gap: 10px; padding: 16px 18px; }
.lp-calc-body small { font-size: 11px; color: #a9bbdc; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.lp-calc-body strong { display: block; color: #fff; font-weight: 700; font-size: clamp(16px, 2vw, 21px); font-variant-numeric: tabular-nums; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-calc-result small { color: var(--lp-yellow); }
.lp-calc-result strong { color: var(--lp-yellow); font-weight: 800; }
.lp-calc-op { color: #a9bbdc; font-size: 20px; font-weight: 300; }
.lp-calc-note { padding: 10px 18px; background: rgba(0, 0, 0, .14); font-size: 12px; color: #c9d6ee; display: flex; align-items: center; gap: 8px; }
.lp-calc-note i { color: var(--lp-success); font-size: 15px; }
.lp-calc [data-calc-field] { transition: opacity .2s; }
.lp-calc.is-swapping [data-calc-field] { opacity: 0; }

/* Hero app mock */
.lp-hero-visual { flex: 1 1 440px; min-width: 0; max-width: 560px; margin: 0 auto; }
.lp-app { background: var(--lp-bg); border-radius: 14px; padding: 14px; box-shadow: 0 24px 60px rgba(0, 10, 30, .35); display: flex; flex-direction: column; gap: 12px; }
.lp-app-bar { display: flex; align-items: center; gap: 6px; padding: 0 2px; }
.lp-app-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--lp-danger); }
.lp-app-bar span:nth-child(2) { background: var(--lp-warning); }
.lp-app-bar span:nth-child(3) { background: var(--lp-success); }
.lp-app-bar em { margin-left: 10px; font-size: 11px; color: var(--lp-muted); font-style: normal; }
.lp-app-welcome { border-radius: 8px; padding: 16px 18px; background: var(--lp-grad); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.lp-app-welcome strong { color: #fff; font-size: 17px; }
.lp-app-welcome small { color: #eff4ff; font-size: 12px; margin-top: 4px; }
.lp-app-welcome > span { padding: 7px 12px; border-radius: 6px; background: var(--lp-yellow); color: var(--lp-ink); font-weight: 600; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.lp-app-card { background: #fff; border-radius: 6px; padding: 12px; box-shadow: var(--lp-card-shadow); }
.lp-app-shortcuts { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 8px; }
.lp-app-shortcut { padding: 10px; display: flex; gap: 8px; align-items: flex-start; }
.lp-app-shortcut .lp-icon-sm { width: 28px; height: 28px; font-size: 15px; }
.lp-app-shortcut strong { font-size: 12px; color: var(--lp-heading); }
.lp-app-shortcut small { font-size: 10px; color: var(--lp-muted); margin-top: 2px; line-height: 1.3; }
.lp-app-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; }
.lp-app-metric-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
.lp-app-metrics strong { display: block; font-size: 17px; color: var(--lp-heading); margin-top: 8px; font-variant-numeric: tabular-nums; }
.lp-app-list { padding: 4px 12px; }
.lp-app-list-title { font-weight: 600; font-size: 12px; color: var(--lp-heading); padding: 8px 0 4px; }
.lp-app-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--lp-border); font-size: 12px; }
.lp-app-row > div { flex: 1; min-width: 0; }
.lp-app-row strong { color: var(--lp-heading); }
.lp-app-row small { font-size: 10px; color: var(--lp-muted); }
.lp-app-row .lp-icon-sm { width: 26px; height: 26px; }
.lp-app-row .lp-badge { font-size: 11px; padding: 3px 8px; }

/* ---------- Sections ---------- */
.lp-section { padding-top: 56px; padding-bottom: 56px; scroll-margin-top: 90px; }
.lp-section-first { padding-top: 96px; padding-bottom: 40px; }
.lp-section-last { padding-top: 40px; padding-bottom: 80px; }
.lp-section-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 40px; }
.lp-section-head p { max-width: 620px; font-size: 16px; line-height: 1.6; text-wrap: pretty; }
.lp h2 { font-weight: 700; font-size: clamp(26px, 3.2vw, 38px); color: var(--lp-navy); letter-spacing: -.01em; line-height: 1.2; text-wrap: balance; }
.lp-eyebrow { align-self: center; padding: 7px 14px; border-radius: 999px; background: var(--lp-soft); color: var(--lp-navy); font-size: 12px; font-weight: 700; letter-spacing: .06em; }

/* ---------- Features ---------- */
.lp-features { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.lp-tabs { flex: 1 1 300px; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.lp-tab { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: 10px; background: #fff; border: 0; text-align: left; cursor: pointer; box-shadow: var(--lp-card-shadow); transition: background .2s, box-shadow .2s; }
.lp-tab:hover { box-shadow: 0 0 0 2px var(--lp-navy); }
.lp-tab-icon { flex: none; width: 44px; height: 44px; border-radius: 10px; background: var(--lp-soft); color: var(--lp-navy); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.lp-tab-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.lp-tab-text strong { font-size: 16px; color: var(--lp-heading); }
.lp-tab-text small { font-size: 13px; line-height: 1.5; color: var(--lp-body); }
.lp-tab-chev { display: none; }
.lp-tab.is-active { background: var(--lp-navy); box-shadow: 0 4px 15px rgba(0, 31, 69, .35); }
.lp-tab.is-active .lp-tab-icon { background: rgba(255, 255, 255, .14); color: var(--lp-yellow); }
.lp-tab.is-active strong { color: #fff; }
.lp-tab.is-active small { color: #c9d6ee; }

.lp-stage { flex: 2 1 520px; min-width: 0; max-width: 100%; background: #fff; border-radius: 14px; box-shadow: 0 4px 18px rgba(47, 43, 61, .1); padding: 24px; }
.lp-stage.is-collapsed { display: none; }
.lp-panel { display: none; flex-direction: column; gap: 18px; }
.lp-panel.is-active { display: flex; }
.lp-panel h3 { font-size: 20px; font-weight: 700; color: var(--lp-heading); }
.lp-panel-desc { font-size: 14px; margin-top: -10px; line-height: 1.6; max-width: 560px; }
.lp-box { border: 1px solid var(--lp-border); border-radius: 10px; overflow: hidden; }
.lp-pad-x { padding: 0 16px; }
.lp-box-head { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding: 14px 16px; background: var(--lp-bg); }
.lp-box-head strong { color: var(--lp-heading); display: block; }
.lp-box-head small { font-size: 12px; }
.lp-box-title { font-weight: 600; color: var(--lp-heading); padding: 12px 0 6px; font-size: 14px; }
.lp-row-gap { display: flex; gap: 12px; align-items: center; }
.lp-member { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 12px 16px; border-top: 1px solid var(--lp-border); }
.lp-member-info { flex: 1 1 140px; min-width: 0; }
.lp-member-info strong { color: var(--lp-heading); font-size: 14px; }
.lp-member-info small { font-size: 12px; }
.lp-avatar { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--lp-soft); color: var(--lp-navy); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; }
.lp-avatar.is-solid { background: var(--lp-navy); color: #fff; width: 32px; height: 32px; }
.lp-mini-btn { padding: 8px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; background: var(--lp-navy); color: #fff; border: 0; cursor: pointer; }
.lp-mini-btn:hover { background: var(--lp-navy-dark); }
.lp-mini-btn.is-soft, .lp-mini-btn.is-muted { background: var(--lp-soft); color: var(--lp-navy); }
.lp-mini-btn.is-muted { background: var(--lp-hair); color: var(--lp-body); }
.lp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.lp-stat { border: 1px solid var(--lp-border); border-radius: 8px; padding: 12px; }
.lp-stat small { font-size: 12px; }
.lp-stat strong { display: block; color: var(--lp-heading); font-size: 17px; margin-top: 4px; font-variant-numeric: tabular-nums; }

.lp-steps { display: flex; flex-wrap: wrap; gap: 6px; }
.lp-step { flex: 1 1 120px; display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 8px; border: 0; background: var(--lp-bg); color: var(--lp-muted); font-size: 13px; font-weight: 600; cursor: pointer; text-align: left; }
.lp-step span { flex: none; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; background: var(--lp-border); color: #fff; }
.lp-step.is-done { background: var(--lp-soft); color: var(--lp-navy); }
.lp-step.is-done span { background: var(--lp-navy); }
.lp-step.is-active { background: var(--lp-navy); color: #fff; }
.lp-step.is-active span { background: var(--lp-yellow); color: var(--lp-ink); }
.lp-wizard { padding: 18px; min-height: 260px; }
.lp-step-pane { display: none; flex-direction: column; gap: 12px; }
.lp-step-pane.is-active { display: flex; }
.lp-pane-title { color: var(--lp-heading); }
.lp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-chip { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: var(--lp-soft); color: var(--lp-navy); font-weight: 600; font-size: 14px; }
.lp-chip.is-dashed { background: transparent; border: 1px dashed var(--lp-muted); color: var(--lp-body); font-weight: 400; }
.lp-small { font-size: 13px; line-height: 1.6; }
.lp-small b { color: var(--lp-heading); }
.lp-scan { display: flex; flex-wrap: wrap; gap: 16px; }
.lp-placeholder { flex: 1 1 180px; min-height: 200px; border-radius: 8px; border: 2px dashed var(--lp-border); background: repeating-linear-gradient(135deg, var(--lp-bg) 0 10px, var(--lp-hair) 10px 20px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.lp-placeholder i { font-size: 28px; color: var(--lp-navy); }
.lp-placeholder code { font: 12px ui-monospace, Menlo, monospace; }
.lp-scan-result { flex: 1 1 220px; display: flex; flex-direction: column; gap: 10px; }
.lp-ok { display: flex; align-items: center; gap: 8px; color: var(--lp-success); font-weight: 600; font-size: 14px; }
.lp-line { display: flex; justify-content: space-between; gap: 8px; font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--lp-hair); font-variant-numeric: tabular-nums; }
.lp-line > span:first-child { color: var(--lp-heading); }
.lp-line em { color: var(--lp-muted); font-style: normal; }
.lp-line.is-plain { border: 0; font-size: 13px; }
.lp-line.is-plain > span:first-child { color: var(--lp-body); }
.lp-muted { color: var(--lp-muted); font-size: 12px; }
.lp-alloc { border: 1px solid var(--lp-border); border-radius: 8px; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.lp-alloc-head { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.lp-alloc-head strong { color: var(--lp-heading); font-size: 14px; }
.lp-person-chip { padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.lp-person-chip.is-andi { background: var(--lp-navy); color: #fff; }
.lp-person-chip.is-bima { background: var(--lp-soft); color: var(--lp-navy); }
.lp-person-chip.is-citra { background: rgba(255, 223, 126, .5); color: var(--lp-ink); }
.lp-person-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--lp-hair); }
.lp-person-row > div { flex: 1; min-width: 0; }
.lp-person-row strong { color: var(--lp-heading); font-size: 14px; }
.lp-person-row small { font-size: 12px; }
.lp-person-row b { color: var(--lp-heading); font-weight: 700; font-variant-numeric: tabular-nums; }
.lp-total { display: flex; justify-content: space-between; font-weight: 700; color: var(--lp-navy); font-size: 15px; }
.lp-wizard-nav { display: flex; justify-content: space-between; gap: 10px; }
.lp-settle { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--lp-border); font-size: 14px; }
.lp-settle strong { color: var(--lp-heading); }
.lp-settle i { color: var(--lp-muted); }
.lp-settle b { margin-left: auto; color: var(--lp-navy); font-weight: 700; font-variant-numeric: tabular-nums; }
.lp-link-note { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 8px; background: rgba(0, 31, 69, .06); font-size: 13px; }
.lp-link-note i, .lp-link-note code { color: var(--lp-navy); }
.lp-link-note code { font-family: ui-monospace, Menlo, monospace; }
.lp-link-note span { margin-left: auto; }
.lp-filter { padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 0; cursor: pointer; background: rgba(0, 31, 69, .08); color: var(--lp-navy); }
.lp-filter.is-active { background: var(--lp-navy); color: #fff; }
.lp-ledger-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--lp-hair); }
.lp-ledger-row:last-child { border-bottom: 0; }
.lp-ledger-row > div { flex: 1; min-width: 0; }
.lp-ledger-row strong { color: var(--lp-heading); font-size: 14px; }
.lp-ledger-row small { font-size: 12px; }
.lp-ledger-row b { font-size: 14px; color: var(--lp-heading); font-variant-numeric: tabular-nums; }
.lp-ledger-row.is-hidden { display: none; }
.lp-table-row { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 8px; padding: 12px 16px; border-top: 1px solid var(--lp-border); font-size: 13px; align-items: center; }
.lp-table-row strong { color: var(--lp-heading); }
.lp-table-row small { font-size: 11px; }
.lp-table-row .lp-badge { justify-self: end; font-size: 11px; padding: 3px 8px; }
.lp-table-row.is-head { background: var(--lp-bg); border-top: 0; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 10px 16px; }
.lp-table-row.is-head span:last-child { text-align: right; }
.lp-quota-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.lp-quota { border: 1px solid var(--lp-border); border-radius: 8px; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.lp-quota-title { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--lp-heading); }
.lp-quota-title i { color: var(--lp-navy); }
.lp-quota b { font-size: 24px; color: var(--lp-heading); }
.lp-quota small { font-size: 12px; }
.lp-soft-btn { margin-top: 6px; padding: 8px; border-radius: 6px; background: var(--lp-soft); color: var(--lp-navy); text-align: center; font-weight: 600; font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.lp-flow { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; }
.lp-flow span { padding: 6px 10px; border-radius: 6px; background: var(--lp-bg); }
.lp-flow span.is-success { background: rgba(40, 199, 111, .16); color: var(--lp-success); font-weight: 600; }
.lp-flow i { color: var(--lp-muted); }

/* ---------- Share ---------- */
.lp-split { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.lp-split-copy { flex: 1 1 380px; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.lp-split-copy .lp-eyebrow { align-self: flex-start; }
.lp-split-copy p { font-size: 16px; line-height: 1.65; text-wrap: pretty; }
.lp-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--lp-heading); }
.lp-checklist li { display: flex; gap: 10px; align-items: center; }
.lp-checklist i { color: var(--lp-navy); font-size: 20px; }
.lp-share-card { flex: 1 1 360px; min-width: 0; max-width: 440px; margin: 0 auto; background: #fff; border-radius: 14px; box-shadow: 0 4px 18px rgba(47, 43, 61, .1); overflow: hidden; }
.lp-share-head { padding: 18px 20px; background: var(--lp-navy); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.lp-share-head small { font-size: 12px; opacity: .75; }
.lp-share-head strong { display: block; font-weight: 700; font-size: 18px; margin-top: 2px; }
.lp-share-head i { font-size: 26px; opacity: .8; }
.lp-share-body { padding: 6px 20px 16px; }
.lp-share-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--lp-hair); }
.lp-share-row > div:first-child { flex: 1; min-width: 0; }
.lp-share-row strong { color: var(--lp-heading); font-size: 14px; }
.lp-share-row small { font-size: 12px; }
.lp-share-amt { text-align: right; }
.lp-share-amt b { display: block; color: var(--lp-heading); font-weight: 700; font-size: 14px; }
.lp-share-amt .lp-badge { font-size: 11px; padding: 2px 6px; }
.lp-share-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.lp-share-actions > * { flex: 1 1 120px; margin: 0; padding: 9px; }
.lp-wa { border-radius: 6px; background: var(--lp-success); color: #fff; font-weight: 600; font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ---------- How ---------- */
.lp-how { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.lp-how-card { background: #fff; border-radius: 10px; padding: 22px; box-shadow: var(--lp-card-shadow); display: flex; flex-direction: column; gap: 12px; }
.lp-how-top { display: flex; align-items: center; justify-content: space-between; }
.lp-how-num { font-weight: 800; font-size: 28px; color: var(--lp-border); }
.lp-how-card strong { font-size: 16px; color: var(--lp-heading); }
.lp-how-card p { font-size: 14px; line-height: 1.6; }

/* ---------- Pricing ---------- */
.lp-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; max-width: 980px; margin: 0 auto; }
.lp-price { background: #fff; border-radius: 12px; padding: 26px; box-shadow: var(--lp-card-shadow); display: flex; flex-direction: column; gap: 12px; }
.lp-price > strong { color: var(--lp-heading); }
.lp-price-amt { font-size: 32px; font-weight: 800; color: var(--lp-navy); }
.lp-price-amt span { font-size: 15px; font-weight: 500; color: var(--lp-body); }
.lp-price p { font-size: 14px; line-height: 1.6; }
.lp-price ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.lp-price li { display: flex; gap: 8px; }
.lp-price li i { color: var(--lp-success); }
.lp-price.is-featured { background: var(--lp-navy); color: #eff4ff; box-shadow: 0 8px 24px rgba(3, 39, 84, .25); }
.lp-price.is-featured > strong { color: #fff; }
.lp-price.is-featured .lp-price-amt { color: var(--lp-yellow); }
.lp-price.is-featured .lp-price-amt span { color: #eff4ff; }

/* ---------- CTA ---------- */
.lp-cta { background: #fff; border-radius: 30px; padding: clamp(32px, 5vw, 56px); text-align: center; box-shadow: var(--lp-card-shadow); display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lp-cta p { font-size: 18px; line-height: 1.6; max-width: 600px; text-wrap: pretty; }
.lp-cta .lp-btn { margin-top: 8px; padding: 16px 36px; }

/* ---------- Footer ---------- */
.lp-footer { background: var(--lp-navy); color: #c9d6ee; }
.lp-footer-inner { padding-top: 48px; padding-bottom: 28px; display: flex; flex-direction: column; gap: 32px; }
.lp-footer-top { display: flex; flex-wrap: wrap; gap: 32px 48px; }
.lp-footer-brand { flex: 1 1 300px; max-width: 400px; margin-right: auto; display: flex; flex-direction: column; gap: 14px; }
.lp-footer-brand img { height: 34px; width: auto; align-self: flex-start; filter: brightness(0) invert(1); }
.lp-footer-brand p { font-size: 14px; line-height: 1.65; }
.lp-footer-help { align-self: flex-start; display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 8px; background: rgba(255, 255, 255, .1); color: #fff !important; font-weight: 600; font-size: 14px; }
.lp-footer-help:hover { background: rgba(255, 255, 255, .16); }
.lp-footer-help i { font-size: 18px; }
.lp-footer-col { flex: 0 1 180px; display: flex; flex-direction: column; gap: 12px; }
.lp-footer-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: #fff; }
.lp-footer-col a { color: #c9d6ee !important; font-size: 14px; }
.lp-footer-col a:hover { color: var(--lp-yellow) !important; }
.lp-footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 24px; font-size: 13px; line-height: 1.6; color: #a9bbdc; }

/* ---------- Mobile bottom nav ---------- */
.lp-bottom-nav { display: none; }

/* ---------- Mobile (< 760px) ---------- */
@media (max-width: 759.98px) {
    .lp-desktop { display: none !important; }
    .lp-nav-inner { margin: 12px 12px 0; }
    .lp-btn-sm { padding: 11px 18px; }
    .lp-hero-inner { padding-top: 120px; padding-bottom: 72px; gap: 36px; }
    .lp-hero { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; }
    .lp-hero-ctas .lp-btn { flex: 1 1 100%; }
    .lp-calc-body { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
    .lp-calc-eq { display: none; }
    .lp-calc-result { grid-column: 1 / -1; padding-top: 12px; border-top: 1px dashed rgba(255, 255, 255, .22); }
    .lp-section-first { padding-top: 64px; }

    /* Accordion */
    .lp-tabs { flex-basis: 100%; }
    .lp-tab { align-items: center; padding: 14px; min-height: 44px; }
    .lp-tab-icon { width: 40px; height: 40px; font-size: 20px; }
    .lp-tab-text strong { font-size: 15px; }
    .lp-tab-text small { font-size: 12px; }
    .lp-tab-chev { display: block; flex: none; font-size: 20px; color: var(--lp-heading); transition: transform .2s; }
    .lp-tab.is-active .lp-tab-chev { color: #fff; transform: rotate(180deg); }
    .lp-tabs .lp-stage { flex: none; width: 100%; padding: 18px; }

    /* Floating bottom nav */
    .lp-bottom-nav { display: flex; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60; align-items: center; justify-content: space-between; gap: 4px; padding: 6px; border-radius: 999px; background: rgba(0, 18, 46, .82); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border: 1px solid rgba(255, 255, 255, .12); box-shadow: 0 12px 32px rgba(0, 18, 46, .35); }
    .lp-bottom-nav a { flex: 0 1 48px; min-width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 14px; border-radius: 999px; font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; color: #c9d6ee !important; transition: flex .3s cubic-bezier(.25, .8, .25, 1), background .2s; }
    .lp-bottom-nav a i { font-size: 21px; flex: none; }
    .lp-bottom-nav a span { display: none; }
    .lp-bottom-nav a.is-active { flex: 1 0 auto; background: var(--lp-yellow); color: var(--lp-ink) !important; }
    .lp-bottom-nav a.is-active span { display: inline; }
    .lp-footer { padding-bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .lp-btn, .lp-bottom-nav a, .lp-calc [data-calc-field] { transition: none; }
}
