/* ==========================================================================
   Lapakinstan Store — design tokens
   ========================================================================== */
:root {
	--lp-bg: #FFFFFF;
	--lp-bg-soft: #F5F6FA;
	--lp-surface: #FFFFFF;
	--lp-surface-2: #FAFBFD;
	--lp-line: #E4E6ED;
	--lp-line-soft: #ECEEF3;
	--lp-text: #101014;
	--lp-text-muted: #5C5F6B;
	--lp-text-faint: #8D909C;
	--lp-accent: #4F46E5;
	--lp-accent-soft: #4F46E51a;
	--lp-accent-deep: #3730A3;
	--lp-accent-ink: #FFFFFF;
	--lp-lime: #C6F135;
	--lp-lime-soft: #C6F1354d;
	--lp-lime-ink: #223300;
	--lp-ok: #12915B;
	--lp-ok-soft: #12915B1a;
	--lp-err: #DC3545;
	--lp-err-soft: #DC35451a;
	--lp-radius: 20px;
	--lp-radius-sm: 12px;
	--lp-font-head: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
	--lp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--lp-font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	--lp-shadow: 0 24px 50px -22px rgba(16, 16, 20, .18);
	--lp-shadow-sm: 0 10px 24px -14px rgba(16, 16, 20, .14);
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--lp-bg);
	color: var(--lp-text);
	font-family: var(--lp-font-body);
	font-size: 16px;
	line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--lp-font-head); margin: 0; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
::selection { background: var(--lp-accent); color: #fff; }

.lp-shell { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.lp-shell--narrow { max-width: 720px; }

.lp-hl { background-image: linear-gradient(to top, var(--lp-lime) 42%, transparent 42%); padding: 0 3px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--lp-accent);
	color: var(--lp-accent-ink);
	font-weight: 700;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: 999px;
	border: 0;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease, background-color .15s ease;
}
.lp-btn:hover { transform: translateY(-2px); box-shadow: var(--lp-shadow-sm); background: #4338CA; }
.lp-btn:active { transform: translateY(0); }
.lp-btn--ghost {
	background: transparent;
	color: var(--lp-text);
	border: 1.5px solid var(--lp-line);
}
.lp-btn--ghost:hover { border-color: var(--lp-accent); box-shadow: none; background: var(--lp-bg-soft); }
.lp-btn--demo { background: var(--lp-lime); color: var(--lp-lime-ink); }
.lp-btn--demo:hover { background: #d4f560; color: var(--lp-lime-ink); }
.lp-btn--sm { padding: 9px 18px; font-size: 13.5px; }
.lp-btn--block { display: flex; width: 100%; }
.lp-btn.is-loading { opacity: .6; pointer-events: none; }
.lp-btn:disabled { opacity: .6; pointer-events: none; }
#lp-checkout-submit.is-loading { opacity: .78; }
#lp-checkout-submit.is-loading::before {
	content: '';
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	border: 2px solid rgba(255, 255, 255, .42);
	border-top-color: currentColor;
	border-radius: 50%;
	animation: lp-spin .7s linear infinite;
}

/* ==========================================================================
   Header
   ========================================================================== */
.lp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .86);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--lp-line-soft);
}
.lp-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.lp-logo { font-family: var(--lp-font-head); font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.lp-logo span { color: var(--lp-accent); }
.lp-nav { display: flex; align-items: center; gap: 28px; }
.lp-nav a { font-size: 14.5px; font-weight: 500; color: var(--lp-text-muted); transition: color .15s; }
.lp-nav a:hover { color: var(--lp-text); }
.lp-nav .lp-nav__demo { color: var(--lp-accent); font-weight: 700; }
.lp-nav__external { display: inline-block; margin-left: 3px; font-size: 10px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.lp-hero { position: relative; padding: 92px 0 108px; overflow: hidden; }
.lp-hero::before {
	content: '';
	position: absolute;
	top: -180px; right: -160px;
	width: 520px; height: 520px;
	background: radial-gradient(circle, var(--lp-accent-soft), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.lp-hero::after {
	content: '';
	position: absolute;
	bottom: -220px; left: -140px;
	width: 440px; height: 440px;
	background: radial-gradient(circle, var(--lp-lime-soft), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.lp-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.lp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .02em;
	color: var(--lp-accent);
	background: var(--lp-accent-soft);
	padding: 7px 15px;
	border-radius: 999px;
	margin-bottom: 20px;
}

.lp-hero__copy h1 {
	font-size: clamp(36px, 4.6vw, 58px);
	line-height: 1.04;
	font-weight: 800;
	margin-bottom: 22px;
}
.lp-hero__copy p {
	font-size: 17.5px;
	color: var(--lp-text-muted);
	max-width: 46ch;
	margin-bottom: 34px;
}
.lp-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.lp-hero__trust { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-hero__trust span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 600;
	color: var(--lp-text-muted);
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: 999px;
	padding: 7px 14px 7px 10px;
}
.lp-hero__trust span::before {
	content: '';
	width: 16px; height: 16px;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: var(--lp-ok-soft);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312915B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 9px 9px;
}

/* Phone mockup visual (screenshot toko asli) */
.lp-hero__visual { position: relative; display: flex; justify-content: center; }
.lp-phonecard-wrap { position: relative; width: min(300px, 78vw); }

.lp-phonecard {
	position: relative;
	z-index: 2;
	background: #16171d;
	border-radius: 42px;
	padding: 46px 12px 16px;
	box-shadow: var(--lp-shadow);
	transform: rotate(-2deg);
}
.lp-phonecard__notch {
	position: absolute;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 18px;
	background: #000;
	border-radius: 999px;
}
.lp-phonecard__screen {
	border-radius: 28px;
	overflow: hidden;
	height: 580px;
	background: #fff;
}
.lp-phonecard__screen picture {
	display: block;
	height: 100%;
}
.lp-phonecard__screen img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: top center;
}

.lp-phonecard-behind {
	position: absolute;
	inset: 0;
	z-index: 1;
	transform: rotate(3deg) translate(16px, 14px);
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-line-soft);
	border-radius: 42px;
	opacity: .7;
}

.lp-hero__badge {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: 999px;
	padding: 10px 16px 10px 10px;
	box-shadow: var(--lp-shadow-sm);
	font-size: 12.5px;
	font-weight: 700;
	color: var(--lp-text);
	white-space: nowrap;
}
.lp-hero__badge::before {
	content: '';
	width: 20px; height: 20px;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: var(--lp-lime);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23223300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 11px 11px;
}
.lp-hero__badge--top { top: 90px; right: -18px; transform: rotate(4deg); }
.lp-hero__badge--bottom { bottom: 70px; left: -22px; transform: rotate(-3deg); }

/* Reusable mini bar chart */
.lp-barchart { display: flex; align-items: flex-end; gap: 6px; height: 64px; padding: 0 2px; margin-bottom: 20px; }
.lp-barchart span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--lp-accent), var(--lp-accent-soft)); border-radius: 4px 4px 0 0; }

/* ==========================================================================
   Feature grid
   ========================================================================== */
.lp-grid { display: grid; gap: 20px; margin-top: 48px; }
.lp-grid--4 { grid-template-columns: repeat(4, 1fr); }

.lp-feature {
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 24px;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-sm); border-color: var(--lp-accent); }
.lp-feature__icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	background-color: var(--lp-accent-soft);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 21px 21px;
	margin-bottom: 16px;
}
.lp-feature[data-icon="box"] .lp-feature__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8l-9-5-9 5 9 5 9-5z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3C/svg%3E"); }
.lp-feature[data-icon="truck"] .lp-feature__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 7h11v8h-11z'/%3E%3Cpath d='M13.5 10h4l3 3v2h-7z'/%3E%3Ccircle cx='7' cy='18' r='1.7'/%3E%3Ccircle cx='17.5' cy='18' r='1.7'/%3E%3C/svg%3E"); }
.lp-feature[data-icon="card"] .lp-feature__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='5.5' width='19' height='13' rx='2.5'/%3E%3Cpath d='M2.5 9.5h19'/%3E%3Cpath d='M6 14.5h4'/%3E%3C/svg%3E"); }
.lp-feature[data-icon="tag"] .lp-feature__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.5 12.5l-8 8-10-10v-8h8z'/%3E%3Ccircle cx='7.5' cy='7.5' r='1.5' fill='%234F46E5' stroke='none'/%3E%3C/svg%3E"); }
.lp-feature[data-icon="chart"] .lp-feature__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20V11'/%3E%3Cpath d='M12 20V4'/%3E%3Cpath d='M20 20v-7'/%3E%3C/svg%3E"); }
.lp-feature[data-icon="heart"] .lp-feature__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20.3s-7.2-4.4-9.6-8.7C.7 8 2 4.3 5.6 3.8c2-.3 3.8.8 4.6 2.4.8-1.6 2.6-2.7 4.6-2.4 3.6.5 4.9 4.2 3.2 7.8-2.4 4.3-9.6 8.7-9.6 8.7z'/%3E%3C/svg%3E"); }
.lp-feature[data-icon="shield"] .lp-feature__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.2l7.5 3v5.2c0 5.1-3.6 8.2-7.5 10-3.9-1.8-7.5-4.9-7.5-10V6.2z'/%3E%3Cpath d='M8.7 12.3l2.2 2.2 4.4-4.4'/%3E%3C/svg%3E"); }
.lp-feature[data-icon="chat"] .lp-feature__icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.6a8.4 8.4 0 01-12.2 7.5L3 21l1.9-5.7a8.4 8.4 0 1116.1-3.7z'/%3E%3Cpath d='M8.5 11.5c0 3 2.5 5 5 5'/%3E%3C/svg%3E"); }
.lp-feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.lp-feature p { color: var(--lp-text-muted); font-size: 14.5px; }

/* ==========================================================================
   Feature showcase rows
   ========================================================================== */
.lp-showcase { display: flex; flex-direction: column; gap: 76px; margin-top: 56px; }
.lp-showcase__row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lp-showcase__row--reverse .lp-showcase__copy { order: 2; }
.lp-showcase__row--reverse .lp-showcase__visual { order: 1; }
.lp-showcase__copy h3 { font-size: 25px; font-weight: 800; margin-bottom: 12px; }
.lp-showcase__copy > p { color: var(--lp-text-muted); font-size: 15px; margin-bottom: 22px; max-width: 46ch; }
.lp-showcase__visual {
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius);
	padding: 28px;
	box-shadow: var(--lp-shadow-sm);
}

.lp-checklist { display: flex; flex-direction: column; gap: 13px; }
.lp-checklist li { font-size: 14.5px; color: var(--lp-text-muted); padding-left: 32px; position: relative; }
.lp-checklist li::before {
	content: '';
	position: absolute;
	left: 0; top: 0;
	width: 22px; height: 22px;
	border-radius: 50%;
	background-color: var(--lp-accent-soft);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233730A3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 11px 11px;
}

/* Mini product card visual */
.lp-minicard { background: var(--lp-bg-soft); border: 1px solid var(--lp-line-soft); border-radius: var(--lp-radius-sm); overflow: hidden; }
.lp-minicard__img { height: 120px; background: linear-gradient(135deg, #4F46E5, #7C3AED); position: relative; }
.lp-minicard__badge { position: absolute; top: 12px; left: 12px; background: var(--lp-lime); color: var(--lp-lime-ink); font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.lp-minicard__body { padding: 16px; }
.lp-minicard__name { font-size: 14px; margin-bottom: 8px; }
.lp-minicard__price { font-family: var(--lp-font-mono); font-size: 15px; margin-bottom: 12px; }
.lp-minicard__price s { color: var(--lp-text-faint); margin-right: 8px; }
.lp-minicard__stock { height: 5px; border-radius: 999px; background: var(--lp-line); overflow: hidden; margin-bottom: 6px; }
.lp-minicard__stock span { display: block; height: 100%; background: var(--lp-accent); }
.lp-minicard__stocklabel { font-size: 11.5px; color: var(--lp-text-faint); }

/* Pill rows (couriers, payment methods, roles) */
.lp-pillgroup { margin-bottom: 24px; }
.lp-pillgroup:last-child { margin-bottom: 0; }
.lp-pillgroup__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--lp-text-faint); margin-bottom: 12px; }
.lp-pillrow { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-pill { font-size: 12.5px; font-weight: 500; color: var(--lp-text-muted); background: var(--lp-bg-soft); border: 1px solid var(--lp-line-soft); border-radius: 999px; padding: 7px 14px; }

/* ==========================================================================
   Sections
   ========================================================================== */
.lp-section { padding: 92px 0; }
.lp-section--muted { background: var(--lp-bg-soft); }
.lp-section__title { font-size: clamp(27px, 3vw, 38px); font-weight: 800; margin-bottom: 14px; max-width: 20ch; }
.lp-section__sub { color: var(--lp-text-muted); font-size: 16px; max-width: 58ch; margin-bottom: 48px; }
.lp-section__sub:has(+ .lp-section__note) { margin-bottom: 8px; }
.lp-section__note { color: var(--lp-text-faint); font-size: 13px; max-width: 58ch; margin-bottom: 40px; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.lp-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; align-items: stretch; }
.lp-price-card {
	position: relative;
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.lp-price-card.is-featured {
	border-color: var(--lp-accent);
	box-shadow: 0 0 0 2px var(--lp-accent), var(--lp-shadow);
	transform: scale(1.035);
}
.lp-price-card__badge {
	position: absolute;
	top: -14px;
	left: 28px;
	background: var(--lp-lime);
	color: var(--lp-lime-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	padding: 6px 13px;
	border-radius: 999px;
}
.lp-price-card h3 { font-size: 18px; color: var(--lp-text-muted); font-weight: 700; margin-bottom: 14px; }
.lp-price-card__amount { font-family: var(--lp-font-head); font-size: 34px; font-weight: 800; margin-bottom: 26px; }
.lp-price-card__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.lp-price-card__list li { font-size: 14px; color: var(--lp-text-muted); padding-left: 26px; position: relative; }
.lp-price-card__list li::before {
	content: '';
	position: absolute;
	left: 0; top: -1px;
	width: 18px; height: 18px;
	border-radius: 50%;
	background-color: var(--lp-accent-soft);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233730A3' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 9px 9px;
}

.lp-pricing--picker { margin-top: 28px; }
.lp-price-card--pickable { cursor: pointer; user-select: none; }
.lp-price-card__radio { position: absolute; opacity: 0; pointer-events: none; }
.lp-price-card__check {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--lp-line);
	background: var(--lp-surface);
	transition: border-color .15s, background .15s;
}
.lp-price-card--pickable.is-selected {
	border-color: var(--lp-accent);
	background: var(--lp-accent-soft);
	box-shadow: 0 0 0 2px var(--lp-accent);
}
.lp-price-card--pickable.is-selected .lp-price-card__check {
	border-color: var(--lp-accent);
	background-color: var(--lp-accent);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 11px 11px;
}
.lp-price-card__list--compact { gap: 8px; margin-bottom: 22px; }

.lp-order-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 16px 20px;
	margin: 8px 0 22px;
}
.lp-order-summary__plan { display: flex; flex-direction: column; gap: 2px; }
.lp-order-summary__plan span { font-size: 11.5px; text-transform: uppercase; letter-spacing: .3px; color: var(--lp-text-faint); }
.lp-order-summary__plan strong { font-size: 15px; }
.lp-order-summary__price { font-family: var(--lp-font-mono); font-size: 18px; color: var(--lp-accent-deep); }

/* ==========================================================================
   Steps
   ========================================================================== */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.lp-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--lp-accent);
	color: #fff;
	font-family: var(--lp-font-head);
	font-weight: 800;
	font-size: 16px;
	margin-bottom: 16px;
}
.lp-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.lp-step p { color: var(--lp-text-muted); font-size: 14.5px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.lp-faq { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.lp-faq details {
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 0 22px;
	transition: border-color .15s;
}
.lp-faq details[open] { border-color: var(--lp-accent); }
.lp-faq summary {
	cursor: pointer;
	font-family: var(--lp-font-head);
	font-size: 16.5px;
	font-weight: 700;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 19px 0;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
	content: '+';
	font-size: 22px;
	font-weight: 400;
	color: var(--lp-accent);
	flex-shrink: 0;
	transition: transform .15s;
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq p { color: var(--lp-text-muted); font-size: 14.5px; padding-bottom: 20px; max-width: 62ch; }
.lp-faq a { color: var(--lp-accent); text-decoration: underline; }

/* ==========================================================================
   Why online store
   ========================================================================== */
.lp-why-online { padding-bottom: 72px; }
.lp-why-online__content {
	position: relative;
	overflow: hidden;
	padding: clamp(34px, 5vw, 58px);
	border: 1px solid var(--lp-line-soft);
	border-radius: 24px;
	background: linear-gradient(135deg, var(--lp-surface) 0%, var(--lp-bg-soft) 100%);
}
.lp-why-online__content::after {
	content: '';
	position: absolute;
	right: -90px;
	top: -110px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: var(--lp-accent-soft);
	opacity: .7;
	pointer-events: none;
}
.lp-why-online__content > * { position: relative; z-index: 1; }
.lp-why-online__content .lp-section__title { max-width: 17ch; margin: 12px 0 22px; }
.lp-why-online__content p { max-width: 72ch; color: var(--lp-text-muted); font-size: 15px; line-height: 1.8; }
.lp-why-online__content p + p { margin-top: 14px; }

/* ==========================================================================
   Blog
   ========================================================================== */
.lp-blog-hero {
	position: relative;
	overflow: hidden;
	padding: 86px 0 80px;
	background: linear-gradient(180deg, var(--lp-bg-soft), var(--lp-bg));
}
.lp-blog-hero::after {
	content: '';
	position: absolute;
	top: -190px;
	right: 4%;
	width: 390px;
	height: 390px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--lp-accent-soft), transparent 70%);
	pointer-events: none;
}
.lp-blog-hero__inner { position: relative; z-index: 1; }
.lp-blog-hero h1 { max-width: 760px; margin: 12px 0 16px; font-size: clamp(38px, 6vw, 62px); line-height: 1.08; }
.lp-blog-hero p { max-width: 650px; color: var(--lp-text-muted); font-size: 17px; line-height: 1.75; }
.lp-blog-archive { padding: 24px 0 100px; }
.lp-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.lp-blog-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--lp-line-soft);
	border-radius: var(--lp-radius);
	background: var(--lp-surface);
	box-shadow: var(--lp-shadow-sm);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lp-blog-card:hover { transform: translateY(-5px); border-color: #d8d6fb; box-shadow: var(--lp-shadow); }
.lp-blog-card__media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--lp-bg-soft); }
.lp-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.lp-blog-card:hover .lp-blog-card__media img { transform: scale(1.035); }
.lp-blog-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-deep));
	color: rgba(255, 255, 255, .88);
	font-family: var(--lp-font-head);
	font-size: 38px;
	font-weight: 800;
}
.lp-blog-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.lp-blog-meta { display: flex; align-items: center; gap: 8px 12px; flex-wrap: wrap; margin-bottom: 12px; color: var(--lp-text-faint); font-size: 11.5px; }
.lp-blog-meta span { color: var(--lp-accent); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.lp-blog-card h2 { margin-bottom: 12px; font-size: 20px; line-height: 1.35; }
.lp-blog-card h2 a:hover { color: var(--lp-accent); }
.lp-blog-card__body > p { flex: 1; color: var(--lp-text-muted); font-size: 13.5px; line-height: 1.7; }
.lp-blog-card__more { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--lp-accent); font-size: 13px; font-weight: 800; }
.lp-blog-card__more span { transition: transform .2s ease; }
.lp-blog-card__more:hover span { transform: translateX(4px); }
.lp-blog-pagination { margin-top: 44px; }
.lp-blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.lp-blog-pagination .page-numbers {
	display: grid;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	place-items: center;
	border: 1px solid var(--lp-line);
	border-radius: 10px;
	background: var(--lp-surface);
	color: var(--lp-text-muted);
	font-size: 13px;
	font-weight: 700;
}
.lp-blog-pagination .page-numbers.current,
.lp-blog-pagination a.page-numbers:hover { border-color: var(--lp-accent); background: var(--lp-accent); color: #fff; }
.lp-blog-empty { padding: 70px 24px; border: 1px dashed var(--lp-line); border-radius: var(--lp-radius); text-align: center; }
.lp-blog-empty h2 { margin-bottom: 8px; }
.lp-blog-empty p { color: var(--lp-text-muted); }

.lp-blog-single__header { padding: 68px 0 44px; text-align: center; background: linear-gradient(180deg, var(--lp-bg-soft), var(--lp-bg)); }
.lp-blog-breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; color: var(--lp-text-faint); font-size: 12.5px; }
.lp-blog-breadcrumb a:hover { color: var(--lp-accent); }
.lp-blog-single__category { display: inline-block; margin-bottom: 14px; color: var(--lp-accent); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lp-blog-single__header h1 { margin: 0 auto; font-size: clamp(34px, 5.5vw, 56px); line-height: 1.18; }
.lp-blog-single__meta { display: flex; justify-content: center; gap: 10px; margin-top: 22px; color: var(--lp-text-faint); font-size: 13px; }
.lp-blog-single__image { max-width: 1040px; margin-top: 12px; margin-bottom: 52px; }
.lp-blog-single__image img { width: 100%; max-height: 580px; border-radius: 24px; object-fit: cover; box-shadow: var(--lp-shadow); }
.lp-blog-content { padding-bottom: 38px; color: #30323a; font-size: 16.5px; line-height: 1.85; }
.lp-blog-content > * + * { margin-top: 22px; }
.lp-blog-content h2 { margin-top: 44px; color: var(--lp-text); font-size: 28px; line-height: 1.3; }
.lp-blog-content h3 { margin-top: 34px; color: var(--lp-text); font-size: 22px; line-height: 1.35; }
.lp-blog-content h4 { margin-top: 28px; color: var(--lp-text); font-size: 18px; }
.lp-blog-content a { color: var(--lp-accent); text-decoration: underline; text-underline-offset: 3px; }
.lp-blog-content ul,
.lp-blog-content ol { padding-left: 24px; }
.lp-blog-content ul { list-style: disc; }
.lp-blog-content ol { list-style: decimal; }
.lp-blog-content li + li { margin-top: 8px; }
.lp-blog-content blockquote { margin-left: 0; padding: 20px 24px; border-left: 4px solid var(--lp-accent); border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0; background: var(--lp-bg-soft); color: var(--lp-text-muted); }
.lp-blog-content img { height: auto; border-radius: var(--lp-radius-sm); }
.lp-blog-content pre { overflow-x: auto; padding: 18px; border-radius: var(--lp-radius-sm); background: #15151a; color: #f7f7fa; font-size: 13px; }
.lp-blog-content table { display: block; overflow-x: auto; width: 100%; border-collapse: collapse; }
.lp-blog-content th,
.lp-blog-content td { padding: 12px 14px; border: 1px solid var(--lp-line); text-align: left; }
.lp-blog-tags { display: flex; gap: 8px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--lp-line-soft); }
.lp-blog-tags a { padding: 7px 12px; border-radius: 999px; background: var(--lp-bg-soft); color: var(--lp-text-muted); font-size: 12px; }
.lp-blog-tags a:hover { background: var(--lp-accent-soft); color: var(--lp-accent); }
.lp-blog-back { display: inline-flex; margin: 18px 0 90px; color: var(--lp-accent); font-size: 13.5px; font-weight: 800; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.lp-cta { padding: 20px 0 100px; }
.lp-cta__panel {
	background: linear-gradient(135deg, #4F46E5, #3730A3);
	border-radius: 28px;
	padding: 68px 40px;
	text-align: center;
	box-shadow: var(--lp-shadow);
}
.lp-cta__panel h2 { color: #fff; font-size: clamp(27px, 3.4vw, 40px); font-weight: 800; margin-bottom: 14px; }
.lp-cta__panel p { color: rgba(255, 255, 255, .8); font-size: 16px; margin-bottom: 30px; }
.lp-cta__panel .lp-btn { background: var(--lp-lime); color: var(--lp-lime-ink); }
.lp-cta__panel .lp-btn:hover { background: #d4f560; box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .35); }

/* ==========================================================================
   Footer
   ========================================================================== */
.lp-footer { border-top: 1px solid var(--lp-line-soft); padding: 64px 0 0; background: var(--lp-surface); }
.lp-footer__inner { display: grid; grid-template-columns: minmax(230px, .9fr) minmax(0, 2fr); gap: 72px; padding-bottom: 52px; }
.lp-footer__brand p { color: var(--lp-text-faint); font-size: 13.5px; line-height: 1.7; max-width: 34ch; margin-top: 14px; }
.lp-footer__nav { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 34px; }
.lp-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.lp-footer__column h2 { margin: 2px 0 5px; color: var(--lp-text); font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.lp-footer__column a { color: var(--lp-text-muted); font-size: 13px; line-height: 1.45; transition: color .2s ease, transform .2s ease; }
.lp-footer__column a:hover { color: var(--lp-accent); transform: translateX(2px); }
.lp-footer__external { display: inline-block; margin-left: 5px; font-size: 11px; }
.lp-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	border-top: 1px solid var(--lp-line-soft);
	padding: 20px 0;
	color: var(--lp-text-faint);
	font-size: 12.5px;
}

/* ==========================================================================
   Checkout / renew forms
   ========================================================================== */
.lp-checkout-section { padding-top: 64px; }
.lp-form { margin-top: 40px; }
/* Honeypot anti-bot: di luar layar (bukan display:none) supaya bot yang cek visibility tetap terjebak. */
.lp-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lp-form__group { margin-bottom: 22px; }
.lp-form__label { display: block; font-size: 13px; font-weight: 600; color: var(--lp-text-muted); margin-bottom: 8px; }
.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form input[type="password"] {
	width: 100%;
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 13px 14px;
	color: var(--lp-text);
	font-size: 15px;
	font-family: var(--lp-font-body);
}
.lp-form input:focus { outline: none; border-color: var(--lp-accent); }
.lp-form input:disabled,
.lp-form input[readonly] { background: var(--lp-bg-soft); color: var(--lp-text-faint); }
.lp-form__hint { display: block; margin-top: 6px; color: var(--lp-text-faint); font-size: 12.5px; }
.lp-form__error { color: var(--lp-err); font-size: 13.5px; margin-bottom: 16px; }
.lp-form__notice { color: var(--lp-ok); font-size: 13.5px; margin-bottom: 16px; }
.lp-form__link {
	display: inline-block;
	margin-top: 18px;
	background: none;
	border: 0;
	padding: 0;
	color: var(--lp-accent);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.lp-form--tight { margin-top: 24px; }

.lp-plan-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lp-plan-option {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 14px;
	cursor: pointer;
	transition: border-color .15s;
	background: var(--lp-surface);
}
.lp-plan-option input { position: absolute; opacity: 0; }
.lp-plan-option.is-active { border-color: var(--lp-accent); background: var(--lp-accent-soft); }
.lp-plan-option__label { font-size: 13.5px; font-weight: 600; color: var(--lp-text-muted); }
.lp-plan-option.is-active .lp-plan-option__label { color: var(--lp-text); }
.lp-plan-option__price { font-family: var(--lp-font-mono); font-size: 14px; }
.lp-plan-option__domains { font-size: 11.5px; color: var(--lp-text-faint); }

.lp-pm-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp-pm-option {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 16px;
	cursor: pointer;
	transition: border-color .15s, background .15s, box-shadow .15s;
	background: var(--lp-surface);
}
.lp-pm-option input { position: absolute; opacity: 0; }
.lp-pm-option.is-active { border-color: var(--lp-accent); background: var(--lp-accent-soft); box-shadow: 0 0 0 2px var(--lp-accent); }
.lp-pm-option__icon {
	flex: none;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lp-accent-soft);
	color: var(--lp-accent-deep);
}
.lp-pm-option__icon svg { width: 18px; height: 18px; }
.lp-pm-option__body { display: flex; flex-direction: column; gap: 4px; }
.lp-pm-option__label { font-size: 13.5px; font-weight: 700; color: var(--lp-text); }
.lp-pm-option__hint { font-size: 11.5px; color: var(--lp-text-faint); }
.lp-pm-single-bank {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--lp-accent);
	border-radius: var(--lp-radius-sm);
	background: var(--lp-accent-soft);
}
.lp-pm-bank-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 7px; }
.lp-pm-bank-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 28px;
	padding: 4px 6px;
	border: 1px solid var(--lp-line);
	border-radius: 7px;
	background: #fff;
}
.lp-pm-bank-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }

.lp-bank-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
	margin: 24px 0;
}
.lp-bank-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 210px;
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: 18px;
	padding: 22px 20px;
	text-align: center;
	box-shadow: 0 10px 28px -24px rgba(16, 16, 20, .35);
}
.lp-bank-card__logo { flex: none; display: grid; place-items: center; width: 124px; height: 64px; padding: 8px 12px; border: 1px solid var(--lp-line-soft); border-radius: 12px; background: #fff; }
.lp-bank-card__logo img { width: 100%; height: 100%; object-fit: contain; }
.lp-bank-card__content { min-width: 0; width: 100%; }
.lp-bank-card__bank { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--lp-accent); margin-bottom: 5px; }
.lp-bank-card__number { font-family: var(--lp-font-mono); font-size: 19px; font-weight: 750; margin-bottom: 3px; overflow-wrap: anywhere; }
.lp-bank-card__name { font-size: 13px; color: var(--lp-text-muted); }

.lp-thanks__amount {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-line-soft);
	border-radius: var(--lp-radius-sm);
	padding: 14px 16px;
	margin-bottom: 24px;
	font-size: 13px;
	color: var(--lp-text-muted);
}
.lp-thanks__amount strong { font-family: var(--lp-font-mono); font-size: 18px; color: var(--lp-text); }

#lp-proof-form {
	margin-top: 26px;
	padding: 22px;
	border: 1px solid var(--lp-line);
	border-radius: 18px;
	background: var(--lp-bg-soft);
	text-align: left;
}
#lp-proof-form .lp-form__group { margin-bottom: 16px; }
#lp-proof-file {
	display: block;
	width: 100%;
	padding: 8px;
	border: 1px dashed #c8cbd6;
	border-radius: 11px;
	background: #fff;
	color: var(--lp-text-muted);
	font-family: var(--lp-font-body);
	font-size: 13px;
}
#lp-proof-file::file-selector-button {
	margin-right: 12px;
	padding: 9px 14px;
	border: 0;
	border-radius: 8px;
	background: var(--lp-accent-soft);
	color: var(--lp-accent-deep);
	font-family: var(--lp-font-body);
	font-weight: 700;
	cursor: pointer;
}
#lp-proof-submit { margin-top: 4px; }

/* ==========================================================================
   Thank-you page
   ========================================================================== */
.lp-thanks { text-align: center; padding: 40px 0; }
.lp-thanks__spinner p { margin-top: 20px; font-size: 16px; }
.lp-thanks__spinner small { display: block; margin-top: 8px; color: var(--lp-text-faint); font-size: 13px; }
.lp-spin {
	display: inline-block;
	width: 36px; height: 36px;
	border: 3px solid var(--lp-line);
	border-top-color: var(--lp-accent);
	border-radius: 50%;
	animation: lp-spin 0.8s linear infinite;
}
@keyframes lp-spin { to { transform: rotate(360deg); } }
.lp-thanks__result h1 { font-size: 26px; margin-bottom: 12px; }
.lp-thanks__result p { color: var(--lp-text-muted); margin-bottom: 24px; }
.lp-thanks__icon {
	width: 56px; height: 56px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
}
.lp-thanks__icon--ok { background: var(--lp-ok-soft); color: var(--lp-ok); }
.lp-thanks__icon--err { background: var(--lp-err-soft); color: var(--lp-err); }
.lp-keybox {
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 18px;
	margin-bottom: 28px;
}
.lp-keybox span { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--lp-text-faint); margin-bottom: 6px; }
.lp-keybox strong { font-family: var(--lp-font-mono); font-size: 19px; }
.lp-thanks__note { color: var(--lp-text-muted); font-size: 14px; margin-bottom: 24px; }

/* ==========================================================================
   Member dashboard
   ========================================================================== */
.lp-dash { padding-top: 56px; }
.lp-dash__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.lp-dash__empty { color: var(--lp-text-muted); font-size: 14.5px; }

.lp-dash-tabs {
	display: flex;
	gap: 4px;
	border-bottom: 1px solid var(--lp-line);
	margin-bottom: 40px;
	overflow-x: auto;
}
.lp-dash-tabs__link {
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--lp-text-muted);
	border-bottom: 2px solid transparent;
	white-space: nowrap;
	transition: color .15s, border-color .15s;
}
.lp-dash-tabs__link:hover { color: var(--lp-text); }
.lp-dash-tabs__link.is-active { color: var(--lp-accent); border-color: var(--lp-accent); }

.lp-dash-cta { margin-bottom: 24px; padding: 22px 24px; }
.lp-dash-cta h2 { margin-bottom: 6px; }
.lp-dash-cta__hint { color: var(--lp-text-muted); font-size: 13.5px; margin-bottom: 16px; }
.lp-dash-cta__plans { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-dash-cta__plan {
	display: flex;
	flex-direction: column;
	gap: 3px;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 10px 16px;
	background: var(--lp-surface);
	transition: border-color .15s, background .15s;
}
.lp-dash-cta__plan:hover { border-color: var(--lp-accent); background: var(--lp-accent-soft); }
.lp-dash-cta__plan strong { font-size: 13.5px; }
.lp-dash-cta__plan span { font-family: var(--lp-font-mono); font-size: 12.5px; color: var(--lp-text-muted); }

.lp-dash__stack { display: flex; flex-direction: column; gap: 20px; }

.lp-dash-card {
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius);
	padding: 28px;
}
.lp-dash-card h2 { font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.lp-dash-card--narrow { max-width: 480px; }

.lp-dash-license__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.lp-dash-license__key { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-dash-license__key-masked,
.lp-dash-license__key-full { font-family: var(--lp-font-mono); font-size: 18px; font-weight: 600; }
.lp-dash-license__toggle {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-line);
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 600;
	color: var(--lp-text-muted);
	cursor: pointer;
}
.lp-dash-license__toggle:hover { border-color: var(--lp-accent); color: var(--lp-accent); }

.lp-dash-pill {
	display: inline-flex;
	align-items: center;
	font-size: 11.5px;
	font-weight: 700;
	text-transform: capitalize;
	padding: 5px 12px;
	border-radius: 999px;
	white-space: nowrap;
}
.lp-dash-pill--ok { background: var(--lp-ok-soft); color: var(--lp-ok); }
.lp-dash-pill--err { background: var(--lp-err-soft); color: var(--lp-err); }
.lp-dash-pill--wait { background: var(--lp-lime-soft); color: var(--lp-lime-ink); }

.lp-dash-support {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 12px;
	padding: 12px 16px;
	border-radius: var(--lp-radius-sm);
	border-left: 3px solid var(--lp-ok);
	background: var(--lp-ok-soft);
	margin-bottom: 16px;
}
.lp-dash-support--warn { border-left-color: var(--lp-lime-ink); background: var(--lp-lime-soft); }
.lp-dash-support__label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: var(--lp-text-muted); flex-basis: 100%; }
.lp-dash-support__value { font-size: 15.5px; }
.lp-dash-support__days { font-size: 12.5px; color: var(--lp-text-muted); }

.lp-dash-license__meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: var(--lp-text-muted); margin-bottom: 14px; }

.lp-dash-domainbar { height: 6px; border-radius: 999px; background: var(--lp-line); overflow: hidden; margin-bottom: 18px; }
.lp-dash-domainbar span { display: block; height: 100%; background: var(--lp-accent); }

.lp-dash-domainlist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.lp-dash-domainlist li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-line-soft);
	border-radius: var(--lp-radius-sm);
	padding: 10px 14px;
	font-size: 13.5px;
}
.lp-dash-domainlist li small { color: var(--lp-text-faint); font-size: 12px; }
.lp-dash-domainlist__info { display: flex; flex-direction: column; gap: 2px; }
.lp-dash-domainlist__remove {
	flex-shrink: 0;
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 600;
	color: var(--lp-err);
	cursor: pointer;
}
.lp-dash-domainlist__remove:hover { border-color: var(--lp-err); background: var(--lp-err-soft); }
.lp-dash-domainlist__remove:disabled { opacity: .6; cursor: default; }

.lp-dash-changelog { display: flex; flex-direction: column; gap: 18px; }
.lp-dash-changelog li { padding-bottom: 18px; border-bottom: 1px solid var(--lp-line-soft); }
.lp-dash-changelog li:last-child { padding-bottom: 0; border-bottom: 0; }
.lp-dash-changelog__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.lp-dash-changelog__head strong { font-size: 14.5px; }
.lp-dash-changelog__head span { font-size: 12.5px; color: var(--lp-text-faint); }
.lp-dash-changelog p { color: var(--lp-text-muted); font-size: 14px; line-height: 1.6; margin: 0; }

.lp-dash-links { display: flex; flex-direction: column; gap: 14px; }
.lp-dash-links a { font-size: 14.5px; font-weight: 600; color: var(--lp-accent); }
.lp-dash-links a:hover { text-decoration: underline; }

.lp-dash-table-wrap { overflow-x: auto; }
.lp-dash-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.lp-dash-table th {
	text-align: left;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--lp-text-faint);
	padding: 0 12px 10px;
	border-bottom: 1px solid var(--lp-line);
}
.lp-dash-table td { padding: 12px; border-bottom: 1px solid var(--lp-line-soft); vertical-align: top; }
.lp-dash-table td small { color: var(--lp-text-faint); }

/* Produk add-on */
.lp-addon-checkout-card {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px 24px;
	margin-top: 28px;
	padding: 24px;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius);
	background: var(--lp-surface);
}
.lp-addon-checkout-card div { display: flex; align-items: center; gap: 10px; }
.lp-addon-checkout-card div strong { font-size: 18px; }
.lp-addon-checkout-card div span { color: var(--lp-text-faint); font-size: 12px; }
.lp-addon-checkout-card p { grid-column: 1; color: var(--lp-text-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.lp-addon-checkout-card b { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-family: var(--lp-font-mono); font-size: 20px; color: var(--lp-accent); }
.lp-addon-heading h2 { margin-bottom: 6px; }
.lp-addon-heading p { color: var(--lp-text-muted); font-size: 14px; line-height: 1.6; margin: 0 0 24px; max-width: 720px; }
.lp-addon-section__type { display: inline-block; margin-bottom: 7px; color: var(--lp-accent); font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.lp-addon-license-note { display: flex; flex-direction: column; gap: 3px; margin-bottom: 22px; padding: 14px 16px; border-left: 3px solid var(--lp-lime-ink); border-radius: var(--lp-radius-sm); background: var(--lp-lime-soft); font-size: 13px; }
.lp-addon-license-note span { color: var(--lp-text-muted); }
.lp-addon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.lp-addon-card { display: flex; flex-direction: column; min-height: 245px; padding: 22px; border: 1px solid var(--lp-line); border-radius: var(--lp-radius-sm); background: var(--lp-bg-soft); }
.lp-addon-card.is-owned { border-color: #b8decf; background: var(--lp-surface); }
.lp-addon-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.lp-addon-card__top h3 { margin: 4px 0 0; font-size: 17px; }
.lp-addon-card__top small { color: var(--lp-text-faint); }
.lp-addon-card__owned { color: var(--lp-ok); font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.lp-addon-card > p { flex: 1; color: var(--lp-text-muted); font-size: 13.5px; line-height: 1.6; margin: 16px 0 22px; }
.lp-addon-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.lp-addon-card__price { font-family: var(--lp-font-mono); font-size: 17px; }
.lp-addon-card__muted { color: var(--lp-text-faint); font-size: 12px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
	.lp-hero__inner { grid-template-columns: 1fr; }
	.lp-hero__visual { order: -1; max-width: 380px; margin: 0 auto 32px; }
	.lp-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.lp-pricing { grid-template-columns: 1fr; }
	.lp-price-card.is-featured { transform: none; order: -1; }
	.lp-steps { grid-template-columns: 1fr; }
	.lp-nav { display: none; }
	.lp-showcase__row { grid-template-columns: 1fr; gap: 28px; }
	.lp-showcase__row--reverse .lp-showcase__copy,
	.lp-showcase__row--reverse .lp-showcase__visual { order: 0; }
	.lp-dash__head { flex-direction: column; }
	.lp-footer__inner { grid-template-columns: 1fr; gap: 38px; }
	.lp-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lp-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
	.lp-grid--4 { grid-template-columns: 1fr; }
	.lp-plan-picker { grid-template-columns: 1fr; }
	.lp-pm-picker { grid-template-columns: 1fr; }
	.lp-bank-list { grid-template-columns: 1fr; }
	.lp-bank-card { min-height: 190px; }
	.lp-hero { padding: 56px 0 64px; }
	.lp-section { padding: 64px 0; }
	.lp-showcase { gap: 48px; margin-top: 36px; }
	.lp-cta__panel { padding: 48px 24px; }
	.lp-addon-grid { grid-template-columns: 1fr; }
	.lp-addon-checkout-card { grid-template-columns: 1fr; }
	.lp-addon-checkout-card p, .lp-addon-checkout-card b { grid-column: 1; grid-row: auto; }
	.lp-footer { padding-top: 48px; }
	.lp-footer__nav { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
	.lp-footer__bottom { align-items: flex-start; flex-direction: column; }
	.lp-blog-hero { padding: 62px 0 58px; }
	.lp-blog-hero p { font-size: 15px; }
	.lp-blog-archive { padding-top: 8px; padding-bottom: 72px; }
	.lp-blog-grid { grid-template-columns: 1fr; }
	.lp-blog-single__header { padding: 48px 0 34px; }
	.lp-blog-single__image { margin-bottom: 38px; }
	.lp-blog-single__image img { border-radius: 16px; }
	.lp-blog-content { font-size: 15.5px; }
}
