
:root {
	--llpp-blue: #1267f5;
	--llpp-magenta: #e8188a;
	--llpp-navy: #0b1748;
	--llpp-text: #13204e;
	--llpp-muted: #6d7695;
	--llpp-border: #dce5f8;
	--llpp-bg: #f6f8ff;
	--llpp-card: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.llpp-page {
	margin: 0;
	color: var(--llpp-text);
	background:
		radial-gradient(circle at 70% 8%, rgba(168, 195, 255, .30), transparent 28%),
		linear-gradient(180deg, #fbfcff 0, #f4f7ff 100%);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.llpp-site {
	min-height: 100vh;
	overflow: hidden;
}

.llpp-container {
	width: min(1420px, calc(100% - 48px));
	margin-inline: auto;
}

.llpp-header {
	position: relative;
	z-index: 10;
	background: rgba(255,255,255,.93);
	border-bottom: 1px solid var(--llpp-border);
	box-shadow: 0 9px 28px rgba(45, 75, 145, .06);
	backdrop-filter: blur(16px);
}

.llpp-header-main {
	min-height: 88px;
	display: grid;
	grid-template-columns: 240px minmax(320px, 1fr) 165px 150px;
	gap: 26px;
	align-items: center;
}

.llpp-logo img,
.llpp-footer-brand img {
	display: block;
	width: 190px;
	height: auto;
	object-fit: contain;
}

.llpp-search {
	height: 48px;
	display: flex;
	overflow: hidden;
	background: #fff;
	border: 1px solid #cfdaf5;
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.llpp-search input {
	min-width: 0;
	flex: 1;
	padding: 0 24px;
	color: var(--llpp-text);
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 15px;
}

.llpp-search button {
	width: 58px;
	margin: 4px;
	color: #fff;
	background: linear-gradient(135deg, var(--llpp-blue), #6235e8);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	font-size: 25px;
}

.llpp-account,
.llpp-cart {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--llpp-text);
	text-decoration: none;
}

.llpp-account strong,
.llpp-account small,
.llpp-cart strong,
.llpp-cart small {
	display: block;
}

.llpp-account small,
.llpp-cart small {
	margin-top: 3px;
	color: var(--llpp-muted);
	font-size: 12px;
}

.llpp-line-icon,
.llpp-cart-icon {
	position: relative;
	width: 34px;
	height: 34px;
	color: var(--llpp-navy);
}

.llpp-line-icon svg,
.llpp-cart-icon svg,
.llpp-nav svg,
.llpp-category svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.llpp-cart-icon b {
	position: absolute;
	top: -8px;
	right: -8px;
	min-width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	padding: 0 5px;
	color: #fff;
	background: linear-gradient(135deg, #6634e9, var(--llpp-magenta));
	border: 2px solid #fff;
	border-radius: 50px;
	font-size: 10px;
}

.llpp-nav {
	min-height: 60px;
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 45px;
}

.llpp-nav a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 8px;
	color: #26345f;
	text-decoration: none;
	font-size: 14px;
	font-weight: 650;
}

.llpp-nav a span {
	width: 20px;
	height: 20px;
	color: #5d6d9a;
}

.llpp-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: transparent;
}

.llpp-nav a:hover,
.llpp-nav a.is-active {
	color: var(--llpp-blue);
}

.llpp-nav a:hover::after,
.llpp-nav a.is-active::after {
	background: linear-gradient(90deg, var(--llpp-blue), var(--llpp-magenta));
}

.llpp-menu-toggle {
	display: none;
}

.llpp-hero {
	padding-top: 24px;
}

.llpp-hero-card {
	position: relative;
	min-height: 330px;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	overflow: hidden;
	border: 1px solid #cddbf8;
	border-radius: 17px;
	background:
		radial-gradient(circle at 87% 22%, rgba(233,24,138,.22), transparent 30%),
		radial-gradient(circle at 67% 50%, rgba(18,103,245,.19), transparent 33%),
		linear-gradient(110deg, #eef7ff, #fbf6ff);
	box-shadow: 0 16px 40px rgba(75, 105, 175, .10);
}

.llpp-hero-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255,255,255,.95) 0, rgba(255,255,255,.78) 38%, rgba(255,255,255,0) 68%);
	pointer-events: none;
}

.llpp-hero-copy {
	position: relative;
	z-index: 2;
	padding: 38px 0 30px 105px;
}

.llpp-pill {
	display: inline-flex;
	padding: 6px 18px;
	color: #fff;
	background: linear-gradient(90deg, var(--llpp-blue), var(--llpp-magenta));
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}

.llpp-hero h1 {
	max-width: 530px;
	margin: 12px 0 8px;
	color: #0c1648;
	font-size: clamp(44px, 5vw, 68px);
	line-height: .98;
	letter-spacing: -2.5px;
}

.llpp-hero h1 strong {
	display: block;
	color: transparent;
	background: linear-gradient(90deg, var(--llpp-blue), #7041e9 55%, var(--llpp-magenta));
	-webkit-background-clip: text;
	background-clip: text;
}

.llpp-hero-copy > p {
	margin: 0 0 18px;
	color: #25325a;
	font-size: 17px;
	font-weight: 600;
}

.llpp-hero-copy i {
	padding: 0 8px;
	color: var(--llpp-blue);
	font-style: normal;
}

.llpp-primary-button {
	min-width: 240px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	color: #fff;
	background: linear-gradient(90deg, var(--llpp-blue), var(--llpp-magenta));
	border-radius: 999px;
	text-decoration: none;
	font-weight: 750;
	box-shadow: 0 11px 24px rgba(74, 75, 226, .20);
}

.llpp-primary-button span {
	font-size: 24px;
}

.llpp-hero-trust {
	display: flex;
	gap: 30px;
	margin-top: 17px;
	color: #3f4d76;
	font-size: 13px;
	font-weight: 600;
}

.llpp-hero-art {
	position: relative;
	z-index: 1;
	min-height: 330px;
}

.llpp-hero-art img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	mix-blend-mode: multiply;
}

.llpp-category-strip {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	padding-top: 16px;
}

.llpp-category {
	min-height: 78px;
	display: grid;
	grid-template-columns: 52px 1fr 34px;
	gap: 14px;
	align-items: center;
	padding: 13px 16px;
	color: var(--llpp-text);
	background: rgba(255,255,255,.89);
	border: 1px solid var(--llpp-border);
	border-radius: 13px;
	text-decoration: none;
	box-shadow: 0 9px 22px rgba(60, 89, 150, .07);
	transition: transform .2s ease, box-shadow .2s ease;
}

.llpp-category:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(60, 89, 150, .13);
}

.llpp-category-icon {
	width: 45px;
	height: 45px;
}

.llpp-category strong,
.llpp-category small {
	display: block;
}

.llpp-category strong {
	font-size: 14px;
}

.llpp-category small {
	margin-top: 4px;
	color: var(--llpp-muted);
	font-size: 11px;
}

.llpp-category > b {
	width: 31px;
	height: 31px;
	display: grid;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 17px;
}

.llpp-windows { color: #1973ef; }
.llpp-office { color: #ef4d20; border-color: #f1d6d0; }
.llpp-antivirus { color: #17862f; border-color: #d3ebd8; }
.llpp-tools { color: #7035d9; border-color: #e1d7f5; }
.llpp-server { color: #4c54ec; }

.llpp-category span:nth-child(2) {
	color: var(--llpp-text);
}

.llpp-products {
	padding-top: 28px;
	padding-bottom: 30px;
}

.llpp-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.llpp-section-title h2 {
	margin: 0;
	color: #101b4d;
	font-size: 22px;
}

.llpp-section-title a {
	color: var(--llpp-magenta);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
}

.llpp-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.llpp-product-card {
	min-height: 190px;
	display: grid;
	grid-template-columns: 42% 58%;
	overflow: hidden;
	background: rgba(255,255,255,.92);
	border: 1px solid var(--llpp-border);
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(50, 77, 139, .08);
}

.llpp-product-image {
	display: grid;
	place-items: center;
	padding: 15px 9px;
	background: linear-gradient(145deg, #f7f9ff, #fff);
}

.llpp-product-image img {
	width: 100%;
	height: 155px;
	display: block;
	object-fit: contain;
}

.llpp-product-content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: 18px 18px 16px 6px;
}

.llpp-product-content h3 {
	margin: 0 0 6px;
	font-size: 15px;
	line-height: 1.25;
}

.llpp-product-content h3 a {
	color: #13204e;
	text-decoration: none;
}

.llpp-product-content > p {
	min-height: 34px;
	margin: 0 0 8px;
	color: var(--llpp-muted);
	font-size: 11px;
	line-height: 1.4;
}

.llpp-product-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 9px;
	color: #5d6d9a;
	font-size: 10px;
}

.llpp-product-bottom {
	margin-top: auto;
}

.llpp-price {
	margin-bottom: 8px;
	color: var(--llpp-blue);
	font-size: 18px;
	font-weight: 850;
}

.llpp-price del {
	margin-left: 6px;
	color: #9ca5bc;
	font-size: 11px;
	font-weight: 500;
}

.llpp-buy {
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	color: var(--llpp-blue);
	background: linear-gradient(90deg, #f4f8ff, #fff2fa);
	border: 1px solid #bdd0ff;
	border-radius: 999px;
	text-decoration: none;
	font-size: 11px;
	font-weight: 750;
}

.llpp-buy span {
	color: var(--llpp-magenta);
}

.llpp-empty {
	grid-column: 1 / -1;
	padding: 35px;
	text-align: center;
	background: #fff;
	border: 1px dashed #b9c9ee;
	border-radius: 14px;
}

.llpp-benefits {
	border-top: 1px solid var(--llpp-border);
	border-bottom: 1px solid var(--llpp-border);
	background: rgba(255,255,255,.68);
}

.llpp-benefit-grid {
	min-height: 94px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
}

.llpp-benefit {
	min-height: 52px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 36px;
	border-right: 1px solid var(--llpp-border);
}

.llpp-benefit:last-child {
	border-right: 0;
}

.llpp-benefit > span {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	color: var(--llpp-blue);
	border: 2px solid #cbd8fb;
	border-radius: 50%;
	font-size: 25px;
}

.llpp-benefit strong,
.llpp-benefit small {
	display: block;
}

.llpp-benefit strong {
	font-size: 14px;
}

.llpp-benefit small {
	margin-top: 4px;
	color: var(--llpp-muted);
	font-size: 11px;
}

.llpp-footer {
	padding-top: 32px;
	background: rgba(255,255,255,.77);
}

.llpp-footer-grid {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1.2fr 1fr 1.1fr;
	gap: 42px;
	padding-bottom: 28px;
}

.llpp-footer-brand img {
	width: 190px;
}

.llpp-footer h3 {
	margin: 0 0 15px;
	color: #13204e;
	font-size: 13px;
}

.llpp-footer p,
.llpp-footer a,
.llpp-footer span {
	display: block;
	margin: 0 0 8px;
	color: #566489;
	text-decoration: none;
	font-size: 11px;
	line-height: 1.55;
}

.llpp-social {
	display: flex;
	gap: 12px;
}

.llpp-social span {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	color: var(--llpp-blue);
	background: #fff;
	border: 1px solid #cddaf7;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 800;
}

.llpp-payments {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}

.llpp-payments b {
	padding: 7px 9px;
	color: #173a91;
	background: #fff;
	border: 1px solid #d7e0f5;
	border-radius: 6px;
	font-size: 10px;
}

.llpp-secure {
	margin-top: 15px !important;
}

.llpp-copyright {
	padding: 13px 24px;
	color: #dce5ff;
	background: #0e1b49;
	text-align: center;
	font-size: 11px;
}

@media (max-width: 1180px) {
	.llpp-header-main {
		grid-template-columns: 200px 1fr 145px;
	}

	.llpp-account {
		display: none;
	}

	.llpp-nav {
		gap: 21px;
	}

	.llpp-hero-copy {
		padding-left: 55px;
	}

	.llpp-category-strip {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.llpp-footer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 760px) {
	.llpp-container {
		width: min(100% - 28px, 1420px);
	}

	.llpp-header-main {
		min-height: auto;
		grid-template-columns: 1fr auto;
		padding-block: 14px;
	}

	.llpp-logo img {
		width: 155px;
	}

	.llpp-search {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.llpp-cart {
		justify-self: end;
	}

	.llpp-menu-toggle {
		display: block;
		width: calc(100% - 28px);
		margin: 0 auto 10px;
		padding: 10px;
		color: var(--llpp-text);
		background: #fff;
		border: 1px solid var(--llpp-border);
		border-radius: 10px;
		font-weight: 750;
	}

	.llpp-nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding-bottom: 12px;
	}

	.llpp-nav.is-open {
		display: flex;
	}

	.llpp-nav a {
		min-height: 43px;
	}

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

	.llpp-hero-copy {
		padding: 30px 24px 16px;
	}

	.llpp-hero h1 {
		font-size: 45px;
	}

	.llpp-hero-art {
		min-height: 210px;
	}

	.llpp-category-strip {
		grid-template-columns: 1fr;
	}

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

	.llpp-product-card {
		grid-template-columns: 38% 62%;
	}

	.llpp-benefit-grid {
		grid-template-columns: 1fr 1fr;
		padding-block: 14px;
	}

	.llpp-benefit {
		padding: 12px;
		border-right: 0;
	}

	.llpp-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.llpp-account {
		display: none;
	}

	.llpp-header-main {
		grid-template-columns: 1fr;
	}

	.llpp-cart {
		display: none;
	}

	.llpp-search {
		grid-column: 1;
	}

	.llpp-hero h1 {
		font-size: 38px;
	}

	.llpp-hero-copy > p {
		font-size: 14px;
	}

	.llpp-hero-trust {
		flex-direction: column;
		gap: 5px;
	}

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

	.llpp-product-image img {
		height: 180px;
	}

	.llpp-product-content {
		padding: 15px 18px 18px;
	}

	.llpp-benefit-grid,
	.llpp-footer-grid {
		grid-template-columns: 1fr;
	}
}
