/**
 * Avast Free Antivirus landing (/landing-page/).
 */

.bz-lp {
	--bz-lp-orange: #ff7800;
	--bz-lp-orange-dark: #e56b00;
	--bz-lp-peach: #fff1e5;
	--bz-lp-fog: #f7fafc;
	--bz-lp-ink: #1a1a1a;
	--bz-lp-muted: #4b5563;
	color: var(--bz-lp-ink);
	font-family: var(--bz-font, "Open Sans", system-ui, sans-serif);
}

.bz-lp h2,
.bz-lp h3 {
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.bz-lp-section-head {
	max-width: 46rem;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.bz-lp-section-head h2 {
	margin: 0 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	font-weight: 800;
}

.bz-lp-section-head p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--bz-lp-muted);
}

.bz-lp-cta-wrap {
	margin: 1.5rem 0 0;
	text-align: center;
}

.bz-lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1.75rem;
	border-radius: 999px;
	background: var(--bz-lp-orange);
	color: #fff !important;
	font-weight: 750;
	font-size: 1rem;
	text-decoration: none !important;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bz-lp-btn:hover,
.bz-lp-btn:focus-visible {
	background: var(--bz-lp-orange-dark);
	color: #fff !important;
	transform: translateY(-1px);
}

/* Hero */
.bz-lp-hero {
	padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
	background:
		radial-gradient(ellipse 70% 55% at 50% 0%, #ffe8d4 0%, transparent 70%),
		linear-gradient(180deg, #fff 0%, #fffaf5 100%);
	text-align: center;
	overflow: hidden;
}

.bz-lp-hero__inner {
	position: relative;
	max-width: 52rem;
}

.bz-lp-hero__brand {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 0.55rem;
	margin: 0 0 1rem;
	font-size: clamp(2.35rem, 6vw, 3.75rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.05;
	color: var(--bz-lp-ink);
}

.bz-lp-hero__brand-accent {
	color: var(--bz-lp-orange);
	animation: bz-lp-pulse 2.4s ease-in-out infinite;
}

@keyframes bz-lp-pulse {
	0%,
	100% {
		opacity: 1;
		transform: translateY(0);
	}
	50% {
		opacity: 0.82;
		transform: translateY(-2px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.bz-lp-hero__brand-accent {
		animation: none;
	}
}

.bz-lp-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(1.35rem, 2.8vw, 1.85rem);
	font-weight: 700;
	line-height: 1.25;
}

.bz-lp-hero__lead {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--bz-lp-muted);
}

.bz-lp-hero__lead p {
	margin: 0 0 0.55rem;
}

.bz-lp-hero__lead p:last-child {
	margin-bottom: 0;
}

.bz-lp-hero__badges {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto minmax(0, 1fr);
	align-items: end;
	gap: 1rem;
	margin-top: 2.25rem;
}

.bz-lp-hero__deco {
	width: min(100%, 11rem);
	height: auto;
	justify-self: center;
	opacity: 0.95;
}

.bz-lp-hero__deco--left {
	justify-self: end;
}

.bz-lp-hero__deco--right {
	justify-self: start;
}

.bz-lp-badge {
	margin: 0;
	max-width: 10.5rem;
}

.bz-lp-badge img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto 0.55rem;
}

.bz-lp-badge figcaption {
	font-size: 0.8rem;
	line-height: 1.35;
	color: var(--bz-lp-muted);
}

.bz-lp-badge figcaption strong {
	color: var(--bz-lp-ink);
	font-weight: 700;
}

/* Pillars */
.bz-lp-pillars {
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	background: var(--bz-lp-peach);
	text-align: center;
}

.bz-lp-pillars h2 {
	margin: 0 auto 2rem;
	max-width: 40rem;
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 800;
}

.bz-lp-pillars__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bz-lp-pillars__grid li,
.bz-lp-pillars__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	font-weight: 650;
	line-height: 1.35;
}

.bz-lp-pillars__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.1rem;
	height: 3.1rem;
	border-radius: 50%;
	background: #fff;
	color: var(--bz-lp-orange);
	box-shadow: 0 8px 20px rgba(255, 120, 0, 0.12);
}

.bz-lp-pillars__icon svg {
	width: 1.35rem;
	height: 1.35rem;
}

.bz-lp-pillars__brand {
	margin: 1.75rem 0 0;
	flex-direction: row;
	justify-content: center;
	font-weight: 750;
}

/* Extras */
.bz-lp-extras {
	padding: clamp(2.75rem, 7vw, 4.5rem) 0;
	background: #fff;
}

.bz-lp-extras__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bz-lp-extras__grid li {
	padding: 1.35rem 1.25rem 1.45rem;
	border: 1px solid #f0e4d8;
	border-radius: 1rem;
	background: linear-gradient(180deg, #fffdfb 0%, #fff 100%);
}

.bz-lp-extras__grid img {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 0.85rem;
	object-fit: contain;
}

.bz-lp-extras__grid h3 {
	margin: 0 0 0.45rem;
	font-size: 1.1rem;
	font-weight: 750;
}

.bz-lp-extras__grid p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--bz-lp-muted);
}

.bz-lp-extras__product {
	margin-top: 2.5rem;
	text-align: center;
}

.bz-lp-extras__product img {
	display: block;
	width: min(100%, 56rem);
	height: auto;
	margin-inline: auto;
}

/* Inside / features */
.bz-lp-inside {
	padding: clamp(2.75rem, 7vw, 4.5rem) 0;
	background: var(--bz-lp-peach);
}

.bz-lp-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	margin-top: 2.5rem;
}

.bz-lp-feature--flip .bz-lp-feature__media {
	order: 2;
}

.bz-lp-feature--flip .bz-lp-feature__copy {
	order: 1;
}

.bz-lp-feature__media img {
	display: block;
	width: 100%;
	height: auto;
}

.bz-lp-feature__copy h3 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.25rem, 2.4vw, 1.65rem);
	font-weight: 800;
}

.bz-lp-feature__copy p {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--bz-lp-muted);
}

/* Easy CTA */
.bz-lp-easy {
	padding: clamp(2.75rem, 7vw, 4.25rem) 0;
	background: #fff;
	text-align: center;
	scroll-margin-top: 5rem;
}

.bz-lp-easy__inner {
	max-width: 40rem;
}

.bz-lp-easy h2 {
	margin: 0 0 0.85rem;
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 800;
}

.bz-lp-easy p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--bz-lp-muted);
}

.bz-lp-easy__platforms {
	margin-top: 1rem !important;
	font-size: 0.95rem !important;
}

/* FAQ tabs */
.bz-lp-faq {
	padding: clamp(2.75rem, 7vw, 4.25rem) 0 clamp(3.5rem, 8vw, 5rem);
	background: var(--bz-lp-fog);
}

.bz-lp-faq > .bz-container > h2 {
	margin: 0 0 1.5rem;
	text-align: center;
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 800;
}

.bz-lp-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 1.75rem;
}

.bz-lp-tabs__btn {
	appearance: none;
	border: 1px solid #d7dee7;
	border-radius: 999px;
	background: #fff;
	color: var(--bz-lp-ink);
	font: inherit;
	font-weight: 650;
	padding: 0.65rem 1.25rem;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bz-lp-tabs__btn:hover,
.bz-lp-tabs__btn:focus-visible {
	border-color: var(--bz-lp-orange);
	color: var(--bz-lp-orange-dark);
}

.bz-lp-tabs__btn.is-active {
	background: var(--bz-lp-orange);
	border-color: var(--bz-lp-orange);
	color: #fff;
}

.bz-lp-panel {
	max-width: 52rem;
	margin: 0 auto;
	padding: 1.75rem 1.5rem;
	border-radius: 1rem;
	background: #fff;
	border: 1px solid #e8eef4;
}

.bz-lp-panel[hidden] {
	display: none !important;
}

.bz-lp-panel h3 {
	margin: 0 0 0.55rem;
	font-size: 1.25rem;
	font-weight: 750;
}

.bz-lp-panel > p {
	margin: 0 0 1.35rem;
	color: var(--bz-lp-muted);
	line-height: 1.55;
}

.bz-lp-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.bz-lp-steps li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	text-align: center;
}

.bz-lp-steps img {
	width: 3.5rem;
	height: 3.5rem;
	object-fit: contain;
}

.bz-lp-steps strong {
	font-size: 1rem;
}

.bz-lp-steps span {
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--bz-lp-muted);
}

.bz-lp-reqs {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.85rem;
}

.bz-lp-reqs li {
	position: relative;
	padding-left: 1.35rem;
	line-height: 1.5;
	color: var(--bz-lp-muted);
}

.bz-lp-reqs li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--bz-lp-orange);
}

@media (max-width: 900px) {
	.bz-lp-pillars__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bz-lp-feature,
	.bz-lp-feature--flip .bz-lp-feature__media,
	.bz-lp-feature--flip .bz-lp-feature__copy {
		grid-template-columns: 1fr;
		order: initial;
	}

	.bz-lp-feature--flip .bz-lp-feature__media {
		order: 0;
	}
}

@media (max-width: 720px) {
	.bz-lp-hero__badges {
		grid-template-columns: 1fr 1fr;
		justify-items: center;
	}

	.bz-lp-hero__deco {
		display: none;
	}

	.bz-lp-extras__grid,
	.bz-lp-steps {
		grid-template-columns: 1fr;
	}

	.bz-lp-panel {
		padding: 1.35rem 1.1rem;
	}
}
