/* ==========================================================================
   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--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; }

/* ==========================================================================
   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); }

/* ==========================================================================
   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 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; }

/* ==========================================================================
   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: 6px; }
.lp-price-card__per { font-size: 13px; color: var(--lp-text-faint); margin-bottom: 26px; }
.lp-price-card__per strong { color: var(--lp-ok); }
.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;
}

/* ==========================================================================
   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; }

/* ==========================================================================
   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: 56px 0 0; }
.lp-footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.lp-footer__inner p { color: var(--lp-text-faint); font-size: 13.5px; max-width: 34ch; margin-top: 10px; }
.lp-footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.lp-footer__links a { color: var(--lp-text-muted); font-size: 14px; }
.lp-footer__links a:hover { color: var(--lp-text); }
.lp-footer__bottom {
	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 { 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;
	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-pm-option input { position: absolute; opacity: 0; }
.lp-pm-option.is-active { border-color: var(--lp-accent); background: var(--lp-accent-soft); }
.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-bank-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.lp-bank-card {
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 14px 16px;
}
.lp-bank-card__bank { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--lp-accent); margin-bottom: 4px; }
.lp-bank-card__number { font-family: var(--lp-font-mono); font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.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); }

/* ==========================================================================
   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__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-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); }

/* ==========================================================================
   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; }
}
@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-hero { padding: 56px 0 64px; }
	.lp-section { padding: 64px 0; }
	.lp-showcase { gap: 48px; margin-top: 36px; }
	.lp-cta__panel { padding: 48px 24px; }
}
