
:root {
	--lld-blue: #1267f5;
	--lld-magenta: #e8188a;
	--lld-navy: #0b1748;
	--lld-text: #13204e;
	--lld-muted: #6d7695;
	--lld-border: #dce5f8;
}

html,
body.lld-full-page {
	margin: 0;
	padding: 0;
}

.lld-site,
.lld-site * {
	box-sizing: border-box;
}

.lld-site {
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	color: var(--lld-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;
}

.lld-site a { text-decoration: none; }

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

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

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

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

.lld-search {
	height: 48px;
	display: flex;
	overflow: hidden;
	background: #fff;
	border: 1px solid #cfdaf5;
	border-radius: 999px;
}

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

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

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

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

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

.lld-user-symbol,
.lld-cart-symbol {
	font-size: 28px;
}

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

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

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

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

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

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

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

.lld-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);
}

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

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

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

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

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

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

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

.lld-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(--lld-blue), var(--lld-magenta));
	border-radius: 999px;
	font-weight: 750;
	box-shadow: 0 11px 24px rgba(74,75,226,.20);
}

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

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

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

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

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

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

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

.lld-category-icon {
	font-size: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lld-product-content h3 a { color: #13204e; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lld-footer-grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr 1.25fr 1.1fr;
	gap: 42px;
	padding-bottom: 28px;
}

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

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

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

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

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

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

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

@media (max-width: 1180px) {
	.lld-header-main { grid-template-columns: 200px 1fr 145px; }
	.lld-account { display: none; }
	.lld-nav { gap: 21px; }
	.lld-hero-copy { padding-left: 55px; }
	.lld-category-strip { grid-template-columns: repeat(3,1fr); }
	.lld-product-grid { grid-template-columns: repeat(2,1fr); }
	.lld-footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
	.lld-container { width: min(100% - 28px,1420px); }
	.lld-header-main {
		min-height: auto;
		grid-template-columns: 1fr auto;
		padding-block: 14px;
	}
	.lld-logo img { width: 155px; }
	.lld-search {
		grid-column: 1 / -1;
		grid-row: 2;
	}
	.lld-cart { justify-self: end; }
	.lld-menu-toggle {
		display: block;
		width: calc(100% - 28px);
		margin: 0 auto 10px;
		padding: 10px;
		color: var(--lld-text);
		background: #fff;
		border: 1px solid var(--lld-border);
		border-radius: 10px;
		font-weight: 750;
	}
	.lld-nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding-bottom: 12px;
	}
	.lld-nav.is-open { display: flex; }
	.lld-nav a { min-height: 43px; }
	.lld-hero-card { grid-template-columns: 1fr; }
	.lld-hero-copy { padding: 30px 24px 16px; }
	.lld-hero h1 { font-size: 45px; }
	.lld-hero-art { min-height: 210px; }
	.lld-category-strip { grid-template-columns: 1fr; }
	.lld-product-grid { grid-template-columns: 1fr; }
	.lld-product-card { grid-template-columns: 38% 62%; }
	.lld-benefit-grid {
		grid-template-columns: 1fr 1fr;
		padding-block: 14px;
	}
	.lld-benefit {
		padding: 12px;
		border-right: 0;
	}
	.lld-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
	.lld-header-main { grid-template-columns: 1fr; }
	.lld-cart { display: none; }
	.lld-search { grid-column: 1; }
	.lld-hero h1 { font-size: 38px; }
	.lld-hero-copy > p { font-size: 14px; }
	.lld-hero-trust {
		flex-direction: column;
		gap: 5px;
	}
	.lld-product-card { grid-template-columns: 1fr; }
	.lld-product-image img { height: 180px; }
	.lld-product-content { padding: 15px 18px 18px; }
	.lld-benefit-grid,
	.lld-footer-grid { grid-template-columns: 1fr; }
}
