:root {
	--navy: #071b49;
	--blue: #2468df;
	--soft-2: #174faf;
    --soft-3: #253b5b;
    --soft-4: #33455e;
	--black: #090b10;
	--black-2: #071b49;
	--white: #fff;
    --green: #23723b;
	--soft: #f3f7fc;
    --soft-1: #f5f8fc;
	--soft-2: #eaf2ff;
    --soft-3: #eaf2fd;
    --soft-4: #eef4fc;
    --soft-5: #e8edf4;
    --soft-6: #d8e5fa;
    --soft-7: #dce8fa;
    --soft-8: #ecf8ef;
    --soft-8: #f7f9fc;
	--soft-9: #fafbfd;
	--line: #dde6f2;
    --line-2: #c9dbf5;
    --line-3: #cbd6e5;
    --line-4: #d8e1ed;
    --line-5: #d5e2f3;
    --line-6: #e0e7f1;
    --line-7: #d9e0ea;
    --line-8: #dce4ef;
    --line-9: #e6ebf2;
	--line-10: #dde5f0;
	--line-11: #dee6f0;
	--line-12: #dde4ee;
	--muted: #60708a;
    --muted-2: #6e7e95;
    --muted-3: #52627a;
    --muted-4: #5d6c82;
    --muted-5: #7e8a9b;
    --muted-6: #52637b;
    --muted-7: #5c6c82;
    --muted-8: #68778c;
    --muted-9: #5f6f85;
    --muted-10: #7a8799;
	--muted-11: #65758b;
	--muted-12: #6b788b;
	--muted-13: #728096;
	--gold: #c9ac76;
	--shadow: 0 24px 55px rgba(7, 27, 73, 0.14);
	--core: var(--navy);
	--core2: #174f9d;
    --core3: #174ea6;
	--soft-blue: #edf4fd;
}

* {
	box-sizing: border-box;
}

/* ----------------------------------------------------------------
    [ General ]
-----------------------------------------------------------------*/
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	color: #0b1e3a;
	background: var(--white);
}

a {
	text-decoration: none;
	color: inherit;
}

/* == Container == */
.container {
	width: min(1180px, calc(100% - 32px));
	margin: auto;
}

/* == Button == */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 24px;
	border-radius: 14px;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.84rem;
	letter-spacing: 0.04em;
}
.btn-primary {
	background: linear-gradient(135deg, var(--navy), var(--blue));
	color: var(--white);
	box-shadow: 0 12px 28px rgba(36, 104, 223, 0.25);
}
.btn-outline {
	border: 1px solid #88a7d8;
	color: var(--core3);
	background: var(--white);
}

/* == Breadcrumb == */
.breadcrumb {
	margin-bottom: 26px;
	color: var(--muted-2);
	font-size: 0.78rem;
	font-weight: 800;
}

.breadcrumb a {
	color: var(--muted-3);
}

/* == Eyebrow == */
.eyebrow {
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--core3);
}

/* == Section == */
.section {
	padding: 84px 0;
}
.section-tint {
	padding: 90px 0;
	background: var(--soft-1);
}
.section-clean {
	padding: 90px 0;
    background: var(--white);
}
.section-head {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}
.section-head.left {
	text-align: left;
	max-width: 760px;
	margin-left: 0;
}
.section-head h2 {
	font-size: clamp(2.2rem, 4.6vw, 4rem);
	line-height: 1;
	letter-spacing: -0.05em;
	margin: 10px 0 14px;
}
.section-head p {
	color: var(--muted);
	line-height: 1.7;
}

/* ----------------------------------------------------------------
    [ Single Product ]
-----------------------------------------------------------------*/
.single-product .product {
    background-image: radial-gradient(circle at 82% 27%, rgba(7, 27, 73, 0.1), transparent 34%),
    linear-gradient(145deg, var(--white) 0%, #f7f8fa 54%, #e9edf2 100%);
    padding-top: 88px;
}

/* == Product Hero == */
.product-hero {
	position: relative;
	overflow: hidden;
	padding: 0 0 82px;
}
.product-hero:after {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	right: -150px;
	top: -170px;
	border: 1px solid rgba(14, 73, 158, 0.11);
}
.product-hero-grid {
	display: grid;
	grid-template-columns: 0.96fr 1.04fr;
	gap: 64px;
	align-items: center;
}

.product-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 999px;
	background: var(--soft-3);
	border: 1px solid var(--line-2);
	color: var(--core3);
	font-size: 0.72rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.product-hero h1 {
	margin: 18px 0 13px;
	font-size: clamp(3.7rem, 7vw, 6.7rem);
	line-height: 0.88;
	letter-spacing: -0.07em;
}
.product-hero h1 span {
	color: var(--core3);
}
.product-subtitle {
	font-size: 1.28rem;
	font-weight: 850;
	color: var(--blue);
	margin-bottom: 17px;
}
.product-description {
	max-width: 650px;
	color: var(--muted-4);
	font-size: 1rem;
	line-height: 1.75;
}
.product-price {
	margin: 28px 0 8px;
	font-size: 2.25rem;
	line-height: 1;
	font-weight: 950;
	letter-spacing: -0.04em;
	color: var(--core);
}
.tax-note {
	color: var(--muted-5);
	font-size: 0.76rem;
	margin-bottom: 20px;
}


.product-visual {
	position: relative;
	min-height: 580px;
	display: grid;
	place-items: center;
}
.visual-card {
	position: relative;
	width: min(100%, 570px);
	aspect-ratio: 1/1;
	border-radius: 42px;
	background: radial-gradient(
		circle at 35% 25%,
		rgba(255, 255, 255, 1),
		rgba(255, 255, 255, 0.86) 42%,
		rgba(229, 233, 239, 0.96) 100%
	);
	border: 1px solid rgba(141, 167, 203, 0.35);
	box-shadow: 0 35px 80px rgba(7, 27, 73, 0.16);
	display: grid;
	place-items: center;
	overflow: hidden;
}
.visual-card:before {
	content: '';
	position: absolute;
	width: 76%;
	height: 76%;
	border-radius: 50%;
	border: 1px solid rgba(15, 73, 157, 0.11);
}
.product-image {
	position: relative;
	z-index: 2;
	width: 84%;
	max-height: 82%;
	object-fit: contain;
	filter: drop-shadow(0 30px 22px rgba(7, 27, 73, 0.23));
	transform: rotate(-8deg);
}
.visual-badge {
	position: absolute;
	z-index: 3;
	right: 25px;
	top: 25px;
	padding: 13px 15px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.88);
	box-shadow: 0 12px 28px rgba(7, 27, 73, 0.1);
}
.visual-badge small {
	display: block;
	color: #74839a;
	font-size: 0.65rem;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.08em;
}
.visual-badge strong {
	display: block;
	color: var(--core);
	margin-top: 3px;
}
.purchase-panel {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 12px;
	max-width: 560px;
}
.quantity {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line-3);
	border-radius: 14px;
	overflow: hidden;
	background: var(--white);
}
.quantity button {
	border: 0;
	background: transparent;
	width: 34px;
	height: 50px;
	cursor: pointer;
	font-size: 1.05rem;
	/* color: var(--soft-4); */
}
.quantity input {
	width: 34px;
	border: 0;
	text-align: center;
	font-weight: 900;
	outline: none;
	font-size: 0.95rem;
}
.add-cart {
	min-height: 54px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--core), var(--core3));
	color: var(--white);
	font-weight: 950;
	letter-spacing: 0.02em;
	cursor: pointer;
	box-shadow: 0 14px 30px rgba(12, 62, 139, 0.25);
}
.secondary-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 11px;
}

.secondary-actions .btn {
	min-height: 46px;
}
.hero-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 25px;
}

.hero-badges span {
	padding: 9px 11px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid var(--line-4);
	color: var(--muted-6);
	font-size: 0.72rem;
	font-weight: 850;
}

/* == Quick Facts == */
.quick-facts {
	padding: 34px 0;
	background: var(--core);
}
.fact-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.12);
}
.fact-grid .fact:last-child:after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    width: 1px;
    z-index: 2;
    background: var(--navy);
}
.fact {
    position: relative;
	min-height: 124px;
	padding: 24px 20px;
	background: var(--navy);
	color: var(--white);
}
.fact span {
	display: block;
	color: #91b4e8;
	font-size: 0.67rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	margin-bottom: 9px;
}
.fact strong {
	font-size: 0.98rem;
	line-height: 1.45;
}

/* == Product Overview == */
.overview-grid {
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	gap: 70px;
	align-items: start;
}
.overview-title {
	font-size: clamp(3rem, 5.5vw, 5.4rem);
	line-height: 0.92;
	letter-spacing: -0.065em;
	margin: 8px 0 0;
}
.overview-copy p {
	color: var(--muted-7);
	line-height: 1.8;
	font-size: 1.02rem;
}
.overview-card {
	margin-top: 28px;
	padding: 22px;
	border-radius: 19px;
	background: var(--soft-4);
	border: 1px solid var(--line-5);
}

.overview-card strong {
	display: block;
	color: var(--core3);
	margin-bottom: 8px;
}

.overview-card p {
	margin: 0;
	font-size: 0.9rem;
}

/* == Research Highlights == */
.highlight-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.highlight-card {
	padding: 25px;
	border: 1px solid var(--line-6);
	border-radius: 21px;
	background: var(--white);
	box-shadow: 0 14px 34px rgba(7, 27, 73, 0.06);
}
.highlight-card h3 {
	font-size: 1.08rem;
	margin: 0 0 9px;
}

.highlight-card p {
	color: var(--muted-8);
	line-height: 1.62;
	font-size: 0.86rem;
	margin: 0;
}
.highlight-num {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	background: var(--soft-3);
	color: var(--core3);
	font-size: 0.76rem;
	font-weight: 950;
	margin-bottom: 21px;
}

/* Included Panel */
.included-panel {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 40px;
	padding: 42px;
	border-radius: 30px;
	background: linear-gradient(145deg, var(--white), var(--soft-5));
	color: var(--navy);
	box-shadow: 0 28px 60px rgba(7, 27, 73, 0.12);
}
.included-panel h2 {
	font-size: clamp(2.7rem, 4.5vw, 4.6rem);
	line-height: 0.95;
	letter-spacing: -0.055em;
	margin: 9px 0 16px;
}
.included-panel p {
	color: var(--muted-9);
	line-height: 1.7;
}
.included-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 11px;
}
.included-item {
	padding: 16px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--line-7);
	font-size: 0.88rem;
	font-weight: 800;
}

.included-item:before {
	content: '✓';
	margin-right: 8px;
	color: var(--core3);
}

/* == Independent Verification == */
.verify-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 36px;
	align-items: stretch;
	align-items: center;
	position: relative;
	z-index: 2;
}

.certificate {
	border-radius: 27px;
	padding: 36px;
	background: var(--white);
	border: 1px solid var(--line-8);
	box-shadow: 0 22px 50px rgba(7, 27, 73, 0.08);
}
.cert-top {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 28px;
}
.cert-seal {
	width: 62px;
	height: 62px;
	border-radius: 20px;
	display: grid;
	place-items: center;
	background: var(--soft-3);
	color: var(--core3);
	font-weight: 950;
}
.verified-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 11px;
	border-radius: 999px;
	background: var(--soft-8);
	color: var(--green);
	font-size: 0.72rem;
	font-weight: 950;
}
.cert-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.cert-field {
	padding: 17px;
	border-radius: 15px;
	background: var(--soft-8);
	border: 1px solid var(--line-9);
}

.cert-field span {
	display: block;
	color: var(--muted-10);
	font-size: 0.66rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 5px;
}

.cert-field strong {
	font-size: 0.94rem;
}

.cert-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 22px;
}
.support-card {
	border-radius: 27px;
	padding: 36px;
	background: linear-gradient(145deg, #0a0e17, #1a2433);
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* == RUO == */
.ruo-panel {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 22px;
	padding: 30px;
	border-radius: 23px;
	border: 1px solid var(--line-10);
	background: var(--soft-9);
}

.ruo-icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: grid;
	place-items: center;
	background: var(--soft-3);
	color: var(--core3);
	font-weight: 950;
}

.ruo-panel h3 {
	font-size: 1.4rem;
	margin: 2px 0 8px;
}

.ruo-panel p {
	margin: 0;
	color: var(--muted-11);
	line-height: 1.7;
}


/* == Related grid == */
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.related-card {
	border: 1px solid var(--line-11);
	border-radius: 23px;
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 16px 36px rgba(7, 27, 73, 0.06);
}

.related-visual {
	/* height: 210px; */
	display: block;
}

.related-visual img {
	position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.related-visual.evo {
	background: linear-gradient(145deg, #071b49, #174f9d);
	color: var(--white);
}

.related-visual.core {
	background: linear-gradient(145deg, var(--white), var(--soft-5));
	color: var(--black-2);
}

.related-visual.perform {
	background: linear-gradient(145deg, #07090d, #242a33);
	color: var(--white);
}

.related-copy {
	padding: 22px;
}

.related-copy h3 {
	font-size: 1.28rem;
	margin: 0 0 7px;
}

.related-copy p {
	color: var(--muted-12);
	font-size: 0.86rem;
	line-height: 1.6;
	min-height: 55px;
}

.related-copy .btn {
	width: 100%;
}

/* == Sticky Buy == */
.sticky-buy {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	transform: translateY(110%);
	transition: transform 0.28s ease;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
	border-top: 1px solid var(--line-12);
	box-shadow: 0 -12px 35px rgba(7, 27, 73, 0.09);
}
.sticky-buy.show {
	transform: translateY(0);
}

.sticky-inner {
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}
.sticky-name strong {
	display: block;
}

.sticky-name span {
	color: var(--muted-13);
	font-size: 0.78rem;
}

.sticky-price {
	font-size: 1.2rem;
	font-weight: 950;
}

.sticky-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.sticky-actions .btn {
	min-height: 44px;
}


/* belum */
/* .verify h2 {
	font-size: clamp(2.4rem, 4.6vw, 4.5rem);
	line-height: 1;
	letter-spacing: -0.05em;
	margin: 10px 0 18px;
} */

/* .verify p {
	color: var(--soft-6);
	line-height: 1.7;
} */

/* .verify-panel {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
	border-radius: 26px;
	padding: 22px;
} */

/* .verify-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
} */

/* .verify-item {
	padding: 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.12);
} */

/* .verify-item strong {
	display: block;
	margin-bottom: 6px;
} */

/* .verify-item span {
	font-size: 0.85rem;
	color: var(--soft-7);
	line-height: 1.45;
} */

/* .hero {
	background: linear-gradient(120deg, var(--white) 0%, #f7faff 46%, #dceaff 100%);
	overflow: hidden;
	position: relative;
} */

/* .hero:after {
	content: '';
	position: absolute;
	width: 610px;
	height: 610px;
	border: 82px solid rgba(35, 101, 205, 0.15);
	border-left-color: rgba(35, 101, 205, 0.38);
	border-radius: 50%;
	right: -210px;
	top: 70px;
	transform: rotate(-18deg);
} */

/* .hero-grid {
	min-height: 790px;
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	align-items: center;
	gap: 34px;
	position: relative;
	z-index: 2;
} */

/* .hero h1 {
	font-size: clamp(3.6rem, 6.1vw, 6.3rem);
	line-height: 0.91;
	letter-spacing: -0.068em;
	margin: 18px 0 18px;
	max-width: 700px;
} */

/* .hero h1 span {
	color: #1658bd;
} */

/* .hero-sub {
	max-width: 610px;
	color: #52617b;
	font-size: 1.08rem;
	line-height: 1.68;
	margin-bottom: 24px;
} */

/* .hero-products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 26px 0 26px;
	max-width: 730px;
} */

/* .hero-card {
	padding: 16px 15px;
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(139, 165, 205, 0.46);
	backdrop-filter: blur(14px);
	box-shadow: 0 12px 28px rgba(7, 27, 73, 0.08);
	min-height: 128px;
} */

/* .hero-card .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 7px;
} */

/* .dot.n {
	background: #0c2d67;
} */

/* .dot.w {
	background: var(--white);
	border: 1px solid #aab6c7;
} */

/* .dot.b {
	background: #090b10;
} */

/* .hero-card strong {
	display: block;
	font-size: 0.88rem;
	margin: 7px 0 5px;
} */

/* .hero-card b {
	display: block;
	font-size: 0.76rem;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
} */

/* .hero-card span {
	font-size: 0.74rem;
	color: #68758c;
	line-height: 1.35;
	display: block;
} */

/* .hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
} */

/* .hero-visual {
	height: 680px;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
} */

/* .podium {
	position: absolute;
	bottom: 43px;
	left: 5%;
	right: -8%;
	height: 104px;
	background: linear-gradient(145deg, var(--white), #e9f0fa);
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 24%);
	box-shadow: 0 25px 50px rgba(7, 27, 73, 0.16);
} */

/* .pens {
	width: 450px;
	height: 525px;
	position: relative;
	z-index: 3;
} */

/* .pen {
	position: absolute;
	width: 72px;
	height: 445px;
	border-radius: 28px 28px 18px 18px;
	bottom: 5px;
	box-shadow: 12px 22px 32px rgba(7, 27, 73, 0.2);
	overflow: hidden;
} */

/* .pen:before {
	content: '';
	position: absolute;
	top: 62px;
	left: 10px;
	right: 10px;
	height: 30px;
	border-radius: 15px;
	background: #f7f7f7;
} */

/* .pen:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 36px;
	height: 11px;
	background: linear-gradient(90deg, #777, var(--white), #777);
} */

/* .pen b {
	position: absolute;
	inset: 110px 0 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 0.66rem;
	letter-spacing: 0.15em;
} */

/* .core {
	left: 65px;
	background: linear-gradient(90deg, #041331, #0e387d, #174c95);
	color: var(--white);
	transform: rotate(13deg);
} */

/* .core {
	left: 192px;
	background: linear-gradient(90deg, #dfe4ea, var(--white), #dbe0e7);
	color: var(--core);
	transform: rotate(10deg);
} */

/* .perform {
	left: 316px;
	background: linear-gradient(90deg, #030407, #11151b, #262d35);
	color: var(--white);
	transform: rotate(13deg);
} */

/* .trust {
	border-block: 1px solid var(--line);
} */

/* .trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
} */

/* .trust-item {
	padding: 28px 18px;
	text-align: center;
	border-right: 1px solid #edf1f7;
} */

/* .trust-item:last-child {
	border-right: 0;
} */

/* .trust-item strong {
	display: block;
	font-size: 0.82rem;
	text-transform: uppercase;
} */

/* .trust-item span {
	display: block;
	color: var(--muted);
	font-size: 0.8rem;
	margin-top: 6px;
} */

/* .product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
} */

/* .product-card {
	border-radius: 26px;
	padding: 22px;
	border: 1px solid var(--line);
	min-height: 465px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 18px 42px rgba(7, 27, 73, 0.08);
} */

/* .product-card.dark {
	background: linear-gradient(155deg, var(--core), #124c9f);
	color: var(--white);
	border: 0;
} */

/* .product-card.black {
	background: linear-gradient(155deg, #090b10, #252a31);
	color: var(--white);
	border: 0;
} */

/* .badge {
	align-self: flex-start;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid currentColor;
	font-size: 0.7rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
} */

/* .product-pen {
	height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-16deg);
} */

/* .product-pen .bar {
	width: 245px;
	height: 46px;
	border-radius: 23px;
	position: relative;
	box-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
} */

/* .product-pen .bar:before {
	content: '';
	position: absolute;
	right: 18px;
	top: 10px;
	width: 48px;
	height: 26px;
	border-radius: 13px;
	background: var(--white);
} */

/* .product-pen .bar:after {
	content: 'LEAN X';
	position: absolute;
	left: 46px;
	top: 15px;
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.16em;
}

.bar.navy {
	background: linear-gradient(90deg, #051431, #144d9a);
	color: var(--white);
}

.bar.white {
	background: linear-gradient(90deg, #e2e5ea, var(--white), #dde1e6);
	color: #06183b;
	border: 1px solid #d6dce5;
}

.bar.black {
	background: linear-gradient(90deg, #020307, #252a31);
	color: var(--white);
}

.product-card h3 {
	font-size: 1.55rem;
	margin-bottom: 8px;
}

.code {
	font-weight: 850;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}

.product-card p {
	opacity: 0.78;
	line-height: 1.6;
}

.product-link {
	margin-top: auto;
	border-top: 1px solid rgba(120, 140, 170, 0.28);
	padding-top: 18px;
	font-weight: 850;
	display: flex;
	justify-content: space-between;
}

.included {
	background: linear-gradient(180deg, var(--soft-1) 0%, var(--soft-2) 100%);
}

.included-grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 40px;
	align-items: center;
}

.included-visual {
	min-height: 620px;
	border-radius: 30px;
	background: radial-gradient(circle at 45% 28%, var(--white), #dce8f6);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.case-stage {
	position: absolute;
	inset: 0;
	padding: 40px;
}

.case {
	position: absolute;
	width: 330px;
	height: 115px;
	border-radius: 34px;
	box-shadow: 0 28px 50px rgba(7, 27, 73, 0.22);
	transform: rotate(-8deg);
}

.case:before {
	content: 'LEAN X';
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-weight: 900;
	letter-spacing: 0.16em;
	font-size: 1.1rem;
}

.case.navy {
	left: 55px;
	top: 110px;
	background: linear-gradient(145deg, #0a2a62, #051630);
	color: var(--white);
}

.case.white {
	right: 44px;
	top: 250px;
	background: linear-gradient(145deg, var(--white), #e7eaf0);
	color: var(--core);
}

.case.black {
	left: 100px;
	bottom: 90px;
	background: linear-gradient(145deg, #050609, #232831);
	color: var(--white);
}

.mini-pen {
	position: absolute;
	width: 250px;
	height: 44px;
	border-radius: 22px;
	box-shadow: 0 18px 26px rgba(0, 0, 0, 0.2);
	transform: rotate(-17deg);
}

.mini-pen:before {
	content: '';
	position: absolute;
	right: 18px;
	top: 9px;
	width: 45px;
	height: 25px;
	border-radius: 13px;
	background: var(--white);
}

.mini-pen:after {
	position: absolute;
	left: 42px;
	top: 14px;
	font-size: 0.64rem;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.mini-pen.navy {
	left: 95px;
	top: 205px;
	background: linear-gradient(90deg, #06152f, #174d99);
	color: var(--white);
}

.mini-pen.navy:after {
	content: 'LEAN X EVOLUTION';
}

.mini-pen.white {
	right: 70px;
	top: 355px;
	background: linear-gradient(90deg, #dde2e8, var(--white), #dce1e7);
	color: var(--core);
}

.mini-pen.white:after {
	content: 'LEAN X CORE';
}

.mini-pen.black {
	left: 140px;
	bottom: 65px;
	background: linear-gradient(90deg, #020306, #252a31);
	color: var(--white);
}

.mini-pen.black:after {
	content: 'LEAN X PERFORM';
}

.included h2 {
	font-size: clamp(2.4rem, 4vw, 4rem);
	line-height: 1;
	letter-spacing: -0.05em;
	margin: 10px 0 18px;
}

.included p {
	color: var(--muted);
	line-height: 1.7;
}

.included-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 26px 0;
}

.included-card {
	padding: 18px;
	border-radius: 16px;
	background: var(--white);
	border: 1px solid var(--line);
	min-height: 150px;
}

.included-card strong {
	display: block;
	margin: 12px 0 7px;
}

.included-card span {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.note {
	font-size: 0.88rem;
	padding: 15px;
	border-radius: 14px;
	background: #e8f1ff;
	color: var(--core3);
	line-height: 1.5;
}



@media (max-width: 950px) {
	

	.hero-grid,
	.included-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		padding-top: 52px;
	}

	.hero-visual {
		height: 560px;
	}

	.hero-products {
		max-width: none;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-item:nth-child(2) {
		border-right: 0;
	}
} */


/* ----------------------------------------------------------------
	[ Media Queries ]
-----------------------------------------------------------------*/
@media (max-width: 620px) {
	.section {
		padding: 64px 0;
	}

	.hero h1 {
		font-size: 3.55rem;
	}

	.hero-products {
		grid-template-columns: 1fr;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero-visual {
		height: 470px;
	}

	.pens {
		transform: scale(0.68);
		transform-origin: center bottom;
	}

	.trust-item {
		padding: 24px 10px;
	}

	.included-cards {
		grid-template-columns: 1fr;
	}

	.included-visual {
		min-height: 500px;
	}

	.case {
		width: 260px;
		height: 95px;
	}

	.case.navy {
		left: 24px;
	}

	.case.white {
		right: 14px;
	}

	.case.black {
		left: 48px;
	}

	.mini-pen {
		width: 210px;
	}

	.mini-pen.navy {
		left: 45px;
	}

	.mini-pen.white {
		right: 30px;
	}

	.mini-pen.black {
		left: 70px;
	}
}

.why {
	background: var(--white);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.why-card {
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: var(--white);
	min-height: 230px;
	box-shadow: 0 14px 34px rgba(7, 27, 73, 0.06);
}

.why-card .icon {
	width: 48px;
	height: 48px;
	border-radius: 15px;
	background: #eaf2ff;
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	margin-bottom: 18px;
}

.why-card h3 {
	margin: 0 0 10px;
	font-size: 1.08rem;
}

.why-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
	font-size: 0.92rem;
}

.verify {
	background: linear-gradient(135deg, var(--core) 0%, #0b3274 60%, #164e9e 100%);
	color: var(--white);
	overflow: hidden;
	position: relative;
}

.verify:after {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	border: 70px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	right: -120px;
	top: -70px;
}



.verification-dashboard {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 18px;
}

.verification-card {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	padding: 20px;
	background: var(--white);
	color: #12213b;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.verification-card:before {
	content: '';
	position: absolute;
	inset: 0 auto 0 0;
	width: 6px;
}

.verification-card.corelution:before {
	background: #123b7c;
}

.verification-card.core:before {
	background: #d9dee7;
}

.verification-card.perform:before {
	background: #0b0d12;
}

.verification-card .card-top {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: flex-start;
}

.verification-card .product-mark {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	font-weight: 900;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
}

.verification-card.corelution .product-mark {
	background: #e7effc;
	color: #123b7c;
}

.verification-card.core .product-mark {
	background: #f3f5f8;
	color: #596274;
	border: 1px solid #d9dee7;
}

.verification-card.perform .product-mark {
	background: #12161d;
	color: var(--white);
}

.verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px;
	border-radius: 999px;
	background: #e8f7ef;
	color: #18754a;
	font-size: 0.7rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.verification-card h3 {
	margin: 18px 0 5px;
	font-size: 1.1rem;
}

.verification-card .product-code {
	color: #66748b;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.metric-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 18px 0;
}

.metric-box {
	padding: 13px;
	border-radius: 14px;
	background: #f4f7fb;
	border: 1px solid #e4eaf2;
}

.metric-box span {
	display: block;
	color: #748198;
	font-size: 0.7rem;
	text-transform: uppercase;
	font-weight: 850;
	letter-spacing: 0.06em;
	margin-bottom: 5px;
}

.metric-box strong {
	font-size: 1rem;
}

.view-report {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid #e7ecf3;
	font-weight: 850;
	color: var(--core3);
}

.view-report span:last-child {
	font-size: 1.15rem;
}

@media (max-width: 950px) {
	.verification-dashboard {
		grid-template-columns: 1fr;
	}
}

.assistant {
	background: #f6f9fd;
}

.assistant-wrap {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 36px;
	align-items: center;
}

.assistant-copy h2 {
	font-size: clamp(2.4rem, 4.5vw, 4.2rem);
	line-height: 1;
	letter-spacing: -0.05em;
	margin: 10px 0 18px;
}

.assistant-copy p {
	color: var(--muted);
	line-height: 1.7;
}

.chat-card {
	border: 1px solid var(--line);
	background: var(--white);
	border-radius: 26px;
	padding: 20px;
	box-shadow: var(--shadow);
}

.chat-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.chat-status {
	font-size: 0.75rem;
	font-weight: 800;
	color: #1d7a4a;
	background: #e7f7ef;
	padding: 7px 10px;
	border-radius: 999px;
}

.bubble {
	max-width: 85%;
	padding: 13px 15px;
	border-radius: 16px;
	margin-top: 14px;
	line-height: 1.5;
	font-size: 0.92rem;
}

.bubble.user {
	margin-left: auto;
	background: #0e58b7;
	color: var(--white);
	border-bottom-right-radius: 5px;
}

.bubble.bot {
	background: #eef3f9;
	color: #20324f;
	border-bottom-left-radius: 5px;
}

.shipping {
	background: var(--white);
}

.shipping-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--line);
	border-radius: 22px;
	overflow: hidden;
}

.shipping-item {
	padding: 28px;
	text-align: center;
	border-right: 1px solid var(--line);
}

.shipping-item:last-child {
	border-right: 0;
}

.shipping-item .icon {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.shipping-item strong {
	display: block;
	margin-bottom: 6px;
}

.shipping-item span {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

.shipping-note {
	text-align: center;
	color: var(--muted);
	font-size: 0.82rem;
	margin-top: 16px;
}

.faq {
	background: var(--soft-8);
}

.faq-wrap {
	max-width: 900px;
	margin: auto;
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-q {
	width: 100%;
	border: 0;
	background: var(--white);
	padding: 20px;
	text-align: left;
	font-weight: 800;
	font-size: 1rem;
	display: flex;
	justify-content: space-between;
	gap: 14px;
	cursor: pointer;
}

.faq-a {
	display: none;
	padding: 0 20px 20px;
	color: var(--muted);
	line-height: 1.65;
}

.faq-item.open .faq-a {
	display: block;
}

.faq-item.open .faq-q span:last-child {
	transform: rotate(45deg);
}

.final-cta {
	padding: 90px 0;
	background: linear-gradient(135deg, #eaf2ff, #f9fbff);
}

.cta-box {
	background: linear-gradient(135deg, var(--core), var(--core3));
	color: var(--white);
	border-radius: 30px;
	padding: 54px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	box-shadow: var(--shadow);
}

.cta-box h2 {
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	line-height: 1;
	letter-spacing: -0.045em;
	margin: 0 0 14px;
}

.cta-box p {
	color: #d8e4f7;
	margin: 0;
	max-width: 650px;
	line-height: 1.6;
}

.cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.cta-actions .btn-outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 950px) {
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.verify-grid,
	.assistant-wrap {
		grid-template-columns: 1fr;
	}

	.shipping-row {
		grid-template-columns: 1fr;
	}

	.shipping-item {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.shipping-item:last-child {
		border-bottom: 0;
	}

	.cta-box {
		display: block;
	}

	.cta-actions {
		margin-top: 24px;
	}
}

@media (max-width: 620px) {
	.why-grid,
	.verify-list {
		grid-template-columns: 1fr;
	}

	.cta-box {
		padding: 32px 24px;
	}
}








































@media (max-width: 1000px) {
	.product-hero-grid,
	.overview-grid,
	.verify-grid,
	.included-panel {
		grid-template-columns: 1fr;
	}

	.product-visual {
		min-height: 460px;
	}

	.fact-grid {
		grid-template-columns: repeat(2, 1fr);
		background-color: transparent;
	}

	.highlight-grid,
	.related-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 650px) {
	.product-hero {
		padding: 64px 0 58px;
	}

	.product-hero h1 {
		font-size: 3.65rem;
	}

	.purchase-panel {
		grid-template-columns: 96px 1fr;
	}

	.visual-card {
		border-radius: 28px;
	}

	.product-visual {
		min-height: 350px;
	}

	/* .quick-facts {
		padding: 0;
	} */

	.fact-grid {
		grid-template-columns: 1fr;
	}

	.fact {
		min-height: auto;
		padding: 16px 16px;
	}

	.section-clean,
	.section-tint {
		padding: 70px 0;
	}

	.highlight-grid,
	.related-grid,
	.included-list,
	.cert-grid {
		grid-template-columns: 1fr;
	}

	.included-panel,
	.certificate,
	.support-card {
		padding: 28px 23px;
	}

	.ruo-panel {
		grid-template-columns: 1fr;
	}

	.sticky-name span {
		display: none;
	}

	.sticky-price {
		font-size: 1rem;
	}

	.sticky-actions {
		gap: 9px;
	}

	.sticky-actions .btn {
		padding: 0 13px;
	}
}

/* ----------------------------------------------------------------
    [ WordPress bridge — single product ]
-----------------------------------------------------------------*/
.product-spec-line {
	font-weight: 900;
	color: #3b4d66;
	margin-bottom: 14px;
}

.product-price .price,
.product-price .woocommerce-Price-amount,
.sticky-price .price,
.sticky-price .woocommerce-Price-amount {
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: inherit;
}

form.cart.purchase-panel {
	margin: 0;
}

form.cart.purchase-panel .quantity input.qty {
	-moz-appearance: textfield;
}

form.cart.purchase-panel .quantity input.qty::-webkit-outer-spin-button,
form.cart.purchase-panel .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.btn-soft {
	border: 1px solid var(--line-4);
	background: var(--soft-4);
	color: var(--muted-6);
	cursor: default;
	pointer-events: none;
}

.ruo-panel--flexibility {
	border-left: 6px solid #111827;
	background: linear-gradient(135deg, #f0f2f5, #ffffff);
}

.ruo-panel--flexibility .ruo-icon {
	background: #111827;
	color: #fff;
}

.cert-product-title {
	font-size: 2.15rem;
	margin: 10px 0 0;
}

.cert-grid {
	margin-top: 20px;
}

.support-eyebrow {
	color: #b8c8df;
}

.support-actions {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.support-email-btn {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.sticky-buy[hidden] {
	display: none !important;
}

.single-product .product{
	padding-bottom: 96px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	width: min(1180px, calc(100% - 32px));
	margin: 16px auto;
}
