/* ==========================================================================
   LobbyVPN — landing page sections
   One block per Elementor widget, in the order they appear on the home page.
   Mobile-first; breakpoints mirror Tailwind (640 / 768 / 1024 / 1280).
   ========================================================================== */

/* ==========================================================================
   1. Hero — lvpn_hero
   ========================================================================== */

.lvpn-hero {
	position: relative;
	z-index: 30;
	min-height: 100vh;
	overflow: hidden;
	isolation: isolate;
}

.lvpn-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.lvpn-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.lvpn-hero__inner {
	position: relative;
	z-index: 10;
	padding-top: 80px;
	padding-bottom: 128px;
}

.lvpn-hero__content {
	max-width: 1152px;
	margin-inline: auto;
	text-align: center;
}

.lvpn-hero__badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	margin-bottom: 32px;
	border: 1px solid rgba(5, 223, 114, 0.3);
	background-color: rgba(5, 223, 114, 0.1);
	border-radius: var(--lvpn-radius-full);
	color: var(--lvpn-green-400);
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
}

.lvpn-hero__title {
	margin-bottom: 24px;
	color: #fff;
	font-size: 48px;
	line-height: 1.25;
	font-weight: 700;
}

.lvpn-hero__title .lvpn-gradient-text {
	--lvpn-from: #67ff79;
	--lvpn-to: #18a7c0;

	background-image: linear-gradient(to bottom, var(--lvpn-from), var(--lvpn-to));
}

.lvpn-hero__title-line2 {
	display: block;
	margin-top: 8px;
}

.lvpn-hero__subtitle {
	max-width: 1024px;
	margin-inline: auto;
	margin-bottom: 48px;
	color: var(--lvpn-gray-300);
	font-size: 20px;
	line-height: 1.625;
	font-weight: 600;
	text-wrap: balance;
}

.lvpn-hero__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	max-width: 200px;
	margin-inline: auto;
	margin-bottom: 64px;
}

.lvpn-hero__actions .lvpn-btn {
	width: 100%;
	white-space: nowrap;
}

.lvpn-hero__features {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 64px;
	margin-bottom: 64px;
}

.lvpn-hero__feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lvpn-hero__dot {
	width: 8px;
	height: 8px;
	flex: 0 0 auto;
	border-radius: var(--lvpn-radius-full);
	background-color: var(--lvpn-green-pale);
}

.lvpn-hero__feature-label {
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}

.lvpn-hero__platforms {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
}

.lvpn-hero__platform img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.lvpn-hero__platform:hover img,
.lvpn-hero__platform:focus-within img {
	opacity: 1;
}

@media (min-width: 640px) {
	.lvpn-hero__actions {
		flex-direction: row;
	}

	.lvpn-hero__actions .lvpn-btn {
		width: auto;
	}
}

@media (min-width: 768px) {
	.lvpn-hero__title {
		font-size: 72px;
	}

	.lvpn-hero__subtitle {
		font-size: 24px;
	}

	.lvpn-hero__features {
		flex-direction: row;
		gap: 112px;
	}

	.lvpn-hero__platforms {
		gap: 112px;
	}

	.lvpn-hero__platform img {
		width: 48px;
		height: 48px;
	}
}

/* ==========================================================================
   2. Features — lvpn_features
   ========================================================================== */

.lvpn-features {
	position: relative;
	z-index: 5;
	padding-top: 20px;
	padding-bottom: 64px;
	background-color: var(--lvpn-features-bg-mobile, var(--lvpn-black));
}

.lvpn-features__title .lvpn-gradient-text {
	--lvpn-from: #67ff79;
	--lvpn-to: #18a7c0;

	background-image: linear-gradient(to right, #67ff79, var(--lvpn-from), var(--lvpn-to));
}

.lvpn-features__title {
	margin-bottom: 48px;
	color: #fff;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	text-align: center;
}

.lvpn-features__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.lvpn-features__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.8);
	border: 1px solid var(--lvpn-green-card);
	border-radius: var(--lvpn-radius-lg);
	backdrop-filter: blur(4px);
}

.lvpn-features__media {
	position: relative;
	width: 100%;
	height: 266px;
	overflow: hidden;
}

.lvpn-features__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.lvpn-features__body {
	padding: 24px;
}

.lvpn-features__card-title {
	margin-bottom: 16px;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	color: #fff;
}

.lvpn-features__card-title .lvpn-accent {
	color: var(--lvpn-green-mint);
}

.lvpn-features__card-text {
	color: var(--lvpn-text-muted);
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}

@media (min-width: 640px) {
	.lvpn-features__body {
		padding: 32px;
	}
}

@media (min-width: 768px) {
	.lvpn-features {
		background-color: var(--lvpn-features-bg, var(--lvpn-surface-3));
	}

	.lvpn-features__title {
		font-size: 48px;
		line-height: 48px;
	}

	.lvpn-features__grid {
		grid-template-columns: repeat(var(--lvpn-cols, 2), minmax(0, 1fr));
	}
}

/* ==========================================================================
   3. Benefits — lvpn_benefits
   ========================================================================== */

.lvpn-benefits {
	background-color: var(--lvpn-black);
	color: #fff;
	min-height: 100vh;
}

.lvpn-benefits__split {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 50vh;
}

.lvpn-benefits__media {
	position: relative;
	width: 100%;
	height: 220px;
}

.lvpn-benefits__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.lvpn-benefits__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-around;
	gap: 24px;
	padding: 32px;
}

.lvpn-benefits__title {
	margin-inline: auto;
	margin-bottom: 32px;
	color: #fff;
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
}

.lvpn-benefits__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 576px;
	margin-inline: auto;
}

.lvpn-benefits__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.lvpn-benefits__check {
	flex: 0 0 auto;
	margin-top: 4px;
	color: var(--lvpn-green-check);
	font-size: 20px;
	line-height: 1;
}

.lvpn-benefits__item p {
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}

.lvpn-benefits__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	padding: 32px;
}

.lvpn-benefits__card {
	display: flex;
	flex-direction: column;
	min-height: 320px;
	padding: 24px;
	background-color: rgba(0, 0, 0, 0.5);
	border: 1px solid var(--lvpn-green-card-2);
	border-radius: var(--lvpn-radius-lg);
}

.lvpn-benefits__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
}

.lvpn-benefits__icon--wide {
	width: 160px;
}

.lvpn-benefits__icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.lvpn-benefits__card-title {
	flex: 0 0 auto;
	margin: 8px 0 16px;
	color: var(--lvpn-green-card-2);
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	text-align: center;
}

.lvpn-benefits__points {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 80%;
	margin-inline: auto;
}

.lvpn-benefits__point {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lvpn-benefits__bullet {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-radius: var(--lvpn-radius-full);
	background-color: var(--lvpn-green-dot);
}

.lvpn-benefits__point p {
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}

@media (min-width: 768px) {
	.lvpn-benefits__media img {
		object-fit: cover;
		object-position: left;
	}

	.lvpn-benefits__item p,
	.lvpn-benefits__point p {
		font-size: 20px;
	}

	.lvpn-benefits__item p {
		font-size: 24px;
		line-height: 32px;
	}

	.lvpn-benefits__card-title {
		font-size: 36px;
		line-height: 40px;
	}
}

@media (min-width: 1024px) {
	.lvpn-benefits__split {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lvpn-benefits__media {
		height: 100%;
	}

	.lvpn-benefits__content {
		padding: 64px;
	}

	.lvpn-benefits__title {
		font-size: 36px;
		line-height: 40px;
	}

	.lvpn-benefits__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 240px;
		padding: 64px;
	}

	.lvpn-benefits__card {
		padding: 32px;
	}

	.lvpn-benefits__card--tall {
		min-height: 350px;
	}
}

/* ==========================================================================
   4. Steps to victory — lvpn_steps
   ========================================================================== */

.lvpn-steps {
	padding-bottom: 56px;
	background-color: var(--lvpn-black);
}

.lvpn-steps__box {
	/* `.lvpn-container` is width:100%; a side margin on top of that would push
	   the box past the viewport, so drop back to auto width while inset. */
	width: auto;
	margin-inline: 20px;
	padding: 32px 0;
	border: 1px solid var(--lvpn-green-steps);
	border-radius: var(--lvpn-radius-2xl);
}

.lvpn-steps__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 32px;
}

.lvpn-steps__count {
	font-size: 48px;
	line-height: 1;
	font-weight: 700;
	background-image: linear-gradient(to bottom, #60ff78, #67ff79, #5dffff);
}

.lvpn-steps__title {
	color: #fff;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
}

.lvpn-steps__title .lvpn-gradient-text {
	background-image: linear-gradient(to right, #67ff79, #18a7c0);
}

.lvpn-steps__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.lvpn-steps__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lvpn-steps__marker {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border: 2px solid var(--lvpn-green-step-dot);
	border-radius: var(--lvpn-radius-full);
	background-color: transparent;
	box-shadow: 0 10px 15px -3px rgba(113, 255, 105, 0.3),
		0 4px 6px -4px rgba(113, 255, 105, 0.3);
}

.lvpn-steps__number {
	color: var(--lvpn-green-step-dot);
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
}

.lvpn-steps__dot {
	display: none;
	width: 24px;
	height: 24px;
	border-radius: var(--lvpn-radius-full);
	background-color: var(--lvpn-green-step-dot);
	box-shadow: 0 10px 15px -3px rgba(113, 255, 105, 0.5),
		0 4px 6px -4px rgba(113, 255, 105, 0.5);
}

.lvpn-steps__body {
	margin-top: 16px;
	padding-inline: 16px;
}

.lvpn-steps__step-title {
	margin-bottom: 8px;
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
}

.lvpn-steps__step-text {
	max-width: 20rem;
	margin-inline: auto;
	color: var(--lvpn-text-soft);
	font-size: 14px;
	line-height: 1.625;
}

@media (min-width: 640px) {
	.lvpn-steps__header {
		flex-direction: row;
		gap: 16px;
		margin-bottom: 48px;
	}

	.lvpn-steps__count {
		font-size: 60px;
	}

	.lvpn-steps__title {
		font-size: 30px;
		text-align: left;
	}

	.lvpn-steps__box {
		padding: 40px 24px;
	}

	.lvpn-steps__marker {
		width: 64px;
		height: 64px;
	}

	.lvpn-steps__number {
		font-size: 20px;
	}

	.lvpn-steps__body {
		margin-top: 24px;
	}

	.lvpn-steps__step-title {
		font-size: 20px;
	}

	.lvpn-steps__step-text {
		font-size: 16px;
	}
}

@media (min-width: 768px) {
	.lvpn-steps__box {
		width: 100%;
		margin-inline: auto;
	}

	.lvpn-steps__count {
		font-size: 72px;
	}

	.lvpn-steps__list {
		flex-direction: row;
		gap: 0;
	}

	.lvpn-steps__item {
		flex: 1 1 0;
	}

	/* Connector rails: drawn behind the marker, half-width on each side. */
	.lvpn-steps__item::before,
	.lvpn-steps__item::after {
		content: '';
		position: absolute;
		top: 32px;
		height: 2px;
		background-color: var(--lvpn-green-step-dot);
		z-index: 0;
	}

	.lvpn-steps__item::before {
		left: 0;
		right: 50%;
	}

	.lvpn-steps__item::after {
		left: 50%;
		right: 0;
	}

	.lvpn-steps__item:first-child::before,
	.lvpn-steps__item:last-child::after {
		content: none;
	}

	.lvpn-steps__marker {
		width: 64px;
		height: 64px;
		border: 0;
		background-color: rgba(33, 202, 58, 0.27);
		box-shadow: none;
	}

	.lvpn-steps__number {
		display: none;
	}

	.lvpn-steps__dot {
		display: block;
	}
}

@media (min-width: 1024px) {
	.lvpn-steps__box {
		padding: 40px 32px;
	}

	.lvpn-steps__title {
		font-size: 36px;
		line-height: 40px;
	}

	.lvpn-steps__item::before,
	.lvpn-steps__item::after {
		top: 40px;
	}

	.lvpn-steps__marker {
		width: 80px;
		height: 80px;
	}

	.lvpn-steps__dot {
		width: 28px;
		height: 28px;
	}

	.lvpn-steps__body {
		margin-top: 32px;
		padding-inline: 8px;
	}

	.lvpn-steps__step-title {
		font-size: 20px;
	}
}

/* ==========================================================================
   5. Supported games — lvpn_supported_games
   ========================================================================== */

.lvpn-games {
	padding-block: 48px;
	background-color: var(--lvpn-games-bg-mobile, var(--lvpn-black));
}

.lvpn-games__inner {
	width: auto;
	margin-inline: 20px;
	text-align: center;
}

.lvpn-games__title {
	margin-bottom: 48px;
	color: #fff;
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
}

.lvpn-games__title .lvpn-gradient-text {
	background-image: linear-gradient(to right, #30c528, #0acaca);
}

.lvpn-games__text {
	color: var(--lvpn-text-quiet);
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
}

.lvpn-games__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	margin-top: 64px;
}

.lvpn-games__item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border: 1px solid var(--lvpn-border-dim);
	border-radius: var(--lvpn-radius-lg);
}

.lvpn-games__item img {
	display: block;
	width: 250px;
	max-width: 100%;
	height: auto;
}

@media (min-width: 768px) {
	.lvpn-games {
		background-color: var(--lvpn-games-bg, var(--lvpn-surface-1));
	}

	.lvpn-games__inner {
		width: 100%;
		margin-inline: auto;
	}

	.lvpn-games__title {
		font-size: 36px;
		line-height: 40px;
	}

	.lvpn-games__text {
		font-size: 20px;
		line-height: 28px;
	}

	.lvpn-games__grid {
		grid-template-columns: repeat(var(--lvpn-cols, 3), minmax(0, 1fr));
	}

	.lvpn-games__item {
		border: 0;
	}
}

@media (min-width: 1024px) {
	.lvpn-games__title {
		font-size: 48px;
		line-height: 48px;
	}
}

/* ==========================================================================
   6. Reviews — lvpn_reviews
   ========================================================================== */

.lvpn-reviews {
	padding-block: 48px;
	background-color: var(--lvpn-reviews-bg-mobile, var(--lvpn-black));
}

.lvpn-reviews__inner {
	width: auto;
	margin-inline: 20px;
	padding: 16px;
	border: 1px solid var(--lvpn-border-mid);
	border-radius: var(--lvpn-radius-xl);
}

.lvpn-reviews__title {
	margin-bottom: 48px;
	color: #fff;
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	text-align: center;
}

.lvpn-reviews__title .lvpn-accent {
	color: var(--lvpn-green-soft);
}

.lvpn-reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.lvpn-reviews__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 64px 40px;
	color: #fff;
	border: 1px solid var(--lvpn-green-review);
	border-radius: var(--lvpn-radius-xl);
}

.lvpn-reviews__stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.lvpn-reviews__stars svg {
	width: 24px;
	height: 24px;
	fill: var(--lvpn-green-star);
}

.lvpn-reviews__quote {
	margin: 0 0 24px;
	color: #fff;
	font-size: 20px;
	line-height: 1.625;
	text-align: center;
	text-wrap: pretty;
}

.lvpn-reviews__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lvpn-reviews__avatar {
	width: 40px;
	height: 40px;
	border-radius: var(--lvpn-radius-full);
	border: 1px solid var(--lvpn-green-review);
	object-fit: cover;
	flex: 0 0 auto;
}

.lvpn-reviews__name {
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
}

.lvpn-reviews__role {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--lvpn-text-meta);
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

.lvpn-reviews__role svg {
	width: 16px;
	height: 16px;
	fill: var(--lvpn-green-review);
	flex: 0 0 auto;
}

@media (min-width: 768px) {
	.lvpn-reviews {
		background-color: var(--lvpn-reviews-bg, var(--lvpn-surface-4));
	}

	.lvpn-reviews__inner {
		width: 100%;
		margin-inline: auto;
		padding: 0 16px;
		border: 0;
	}

	.lvpn-reviews__title {
		font-size: 36px;
		line-height: 40px;
	}

	.lvpn-reviews__grid {
		grid-template-columns: repeat(var(--lvpn-cols, 3), minmax(0, 1fr));
		gap: 96px;
	}
}

@media (min-width: 1024px) {
	.lvpn-reviews__title {
		font-size: 60px;
		line-height: 60px;
	}
}

/* ==========================================================================
   7. Pricing — lvpn_pricing
   ========================================================================== */

.lvpn-pricing {
	padding-block: 64px;
	background-color: var(--lvpn-pricing-bg-mobile, var(--lvpn-black));
}

.lvpn-pricing__title {
	margin-bottom: 24px;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	text-align: center;
}

.lvpn-pricing__title .lvpn-gradient-text {
	background-image: linear-gradient(to right, #18be44, #1b9ec2);
}

.lvpn-pricing__subtitle {
	max-width: 672px;
	margin-inline: auto;
	margin-bottom: 48px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	text-wrap: balance;
}

.lvpn-pricing__subtitle .lvpn-accent {
	color: var(--lvpn-green-soft);
	font-weight: 600;
}

.lvpn-pricing__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	max-width: 1152px;
	margin-inline: auto;
}

.lvpn-pricing__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 32px 24px;
	background-color: var(--lvpn-black);
	border: 2px solid var(--lvpn-plan-green);
	border-radius: var(--lvpn-radius-lg);
	text-align: center;
}

.lvpn-pricing__card--short {
	border-color: var(--lvpn-plan-border);
}

.lvpn-pricing__card--highlight {
	border-color: var(--lvpn-cyan-border);
	box-shadow: 0 25px 50px -12px rgba(54, 211, 255, 0.2);
}

.lvpn-pricing__badge {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	padding: 4px 24px;
	background-image: linear-gradient(to right, #18be44, #1b9ec2);
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	border-radius: var(--lvpn-radius-full);
	white-space: nowrap;
}

.lvpn-pricing__name {
	margin-bottom: 8px;
	color: #fff;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}

.lvpn-pricing__tagline {
	margin-bottom: 24px;
	color: var(--lvpn-text-plan);
	font-size: 14px;
	line-height: 20px;
}

.lvpn-pricing__price-block {
	margin-block: 24px;
}

.lvpn-pricing__price {
	margin-bottom: 8px;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	color: var(--lvpn-green-soft);
}

.lvpn-pricing__card--highlight .lvpn-pricing__price {
	color: var(--lvpn-cyan);
}

.lvpn-pricing__card--free .lvpn-pricing__price {
	color: #fff;
}

.lvpn-pricing__old {
	color: var(--lvpn-red-500);
	font-size: 14px;
	line-height: 20px;
	text-decoration: line-through;
}

.lvpn-pricing__duration {
	color: var(--lvpn-gray-400);
	font-size: 14px;
	line-height: 20px;
}

.lvpn-pricing__save {
	margin-top: 4px;
	color: var(--lvpn-green-soft);
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
}

.lvpn-pricing__card--highlight .lvpn-pricing__save {
	color: var(--lvpn-cyan);
}

.lvpn-pricing__features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 16px 0 32px;
}

.lvpn-pricing__feature {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	text-align: left;
}

.lvpn-pricing__feature svg {
	width: 16px;
	height: 16px;
	margin-right: 12px;
	flex: 0 0 auto;
	fill: var(--lvpn-green);
}

.lvpn-pricing__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 24px;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid var(--lvpn-green-soft);
	border-radius: var(--lvpn-radius-lg);
	background-color: transparent;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lvpn-pricing__btn:hover,
.lvpn-pricing__btn:focus {
	background-color: var(--lvpn-green-soft);
	color: #000;
}

.lvpn-pricing__card--short .lvpn-pricing__btn {
	border-color: var(--lvpn-plan-btn-border);
}

.lvpn-pricing__card--highlight .lvpn-pricing__btn {
	border-color: var(--lvpn-cyan-border);
	background-color: var(--lvpn-cyan);
	color: #000;
}

.lvpn-pricing__card--highlight .lvpn-pricing__btn:hover,
.lvpn-pricing__card--highlight .lvpn-pricing__btn:focus {
	background-color: var(--lvpn-cyan-hover);
	color: #000;
}

@media (min-width: 768px) {
	.lvpn-pricing {
		background-color: var(--lvpn-pricing-bg, var(--lvpn-surface-2));
	}

	.lvpn-pricing__grid {
		grid-template-columns: repeat(var(--lvpn-cols, 3), minmax(0, 1fr));
		align-items: stretch;
	}

	.lvpn-pricing__card--highlight {
		transform: scale(1.05);
	}
}

/* ==========================================================================
   8. Call to action — lvpn_cta
   ========================================================================== */

.lvpn-cta {
	padding-block: 64px;
	background-color: var(--lvpn-black);
}

.lvpn-cta__inner {
	text-align: center;
}

.lvpn-cta__title {
	margin-bottom: 16px;
	color: var(--lvpn-green-cta);
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
}

.lvpn-cta__text {
	max-width: 1024px;
	margin-inline: auto;
	margin-bottom: 32px;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
}

.lvpn-cta .lvpn-btn--glow {
	margin-block: 16px;
}

.lvpn-cta__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
	color: #fff;
	font-size: 18px;
	line-height: 28px;
}

.lvpn-cta__check {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border-radius: var(--lvpn-radius-full);
	background-color: var(--lvpn-green-soft);
}

.lvpn-cta__check svg {
	width: 12px;
	height: 12px;
	fill: #000;
}

@media (min-width: 768px) {
	.lvpn-cta__title {
		font-size: 30px;
		line-height: 36px;
	}

	.lvpn-cta__text {
		font-size: 24px;
		line-height: 32px;
	}

	.lvpn-cta__note {
		font-size: 20px;
	}
}

@media (min-width: 1024px) {
	.lvpn-cta__title {
		font-size: 36px;
		line-height: 40px;
	}
}

/* ==========================================================================
   9. FAQ — lvpn_faq
   ========================================================================== */

.lvpn-faq {
	padding-block: 64px;
	background-color: var(--lvpn-surface-2);
}

.lvpn-faq__inner {
	max-width: 896px;
	margin-inline: auto;
}

.lvpn-faq__title {
	margin-bottom: 48px;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 700;
	text-align: center;
}

.lvpn-faq__title .lvpn-gradient-text {
	--lvpn-from: #5765ff;
	--lvpn-to: #71ffee;

	background-image: linear-gradient(to right, var(--lvpn-from), var(--lvpn-to));
}

.lvpn-faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lvpn-faq__item {
	overflow: hidden;
	background-color: var(--lvpn-black);
	border: 1px solid var(--lvpn-green-faq);
	border-radius: var(--lvpn-radius-lg);
}

.lvpn-faq__heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}

.lvpn-faq__trigger {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 16px 24px;
	background: transparent;
	border: 0;
	color: #fff;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.lvpn-faq__trigger:hover,
.lvpn-faq__trigger:focus {
	background-color: var(--lvpn-surface-5);
}

.lvpn-faq__question {
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	padding-right: 16px;
}

.lvpn-faq__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: var(--lvpn-radius-full);
	background-color: var(--lvpn-green);
}

.lvpn-faq__icon svg {
	position: absolute;
	width: 16px;
	height: 16px;
	stroke: #000;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.lvpn-faq__icon .lvpn-faq__minus {
	transform: rotate(45deg);
	opacity: 0;
}

.lvpn-faq__trigger[aria-expanded='true'] .lvpn-faq__plus {
	transform: rotate(45deg);
	opacity: 0;
}

.lvpn-faq__trigger[aria-expanded='true'] .lvpn-faq__minus {
	transform: rotate(0deg);
	opacity: 1;
}

/* 0fr → 1fr gives a height transition without measuring in JS. */
.lvpn-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	background-color: var(--lvpn-black);
	transition: grid-template-rows 0.25s ease;
}

.lvpn-faq__panel > div {
	overflow: hidden;
}

.lvpn-faq__item.is-open .lvpn-faq__panel {
	grid-template-rows: 1fr;
}

.lvpn-faq__answer {
	padding: 0 24px 24px;
	color: var(--lvpn-text-answer);
	font-size: 14px;
	line-height: 1.625;
	font-weight: 700;
}

.lvpn-faq__answer p {
	margin: 0 0 1em;
}

.lvpn-faq__answer p:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.lvpn-faq__title {
		font-size: 36px;
		line-height: 40px;
	}

	.lvpn-faq__question,
	.lvpn-faq__answer {
		font-size: 16px;
	}
}

@media (min-width: 1024px) {
	.lvpn-faq__title {
		font-size: 48px;
		line-height: 48px;
	}
}

/* ==========================================================================
   Elementor compatibility

   Elementor's frontend stylesheet ships:

       .elementor img { border:none; border-radius:0; box-shadow:none;
                        height:auto; max-width:100% }

   at specificity (0,1,1). That out-ranks every single-class image rule above
   and ties with the `.block img` ones, so the result would depend on stylesheet
   load order. These re-assertions are scoped one level deeper so our sizing and
   shapes win deterministically.
   ========================================================================== */

.lvpn-hero .lvpn-hero__bg img {
	height: 100%;
}

.lvpn-hero .lvpn-hero__platform img {
	width: 40px;
	height: 40px;
}

.lvpn-features .lvpn-features__media img {
	height: 100%;
}

.lvpn-benefits .lvpn-benefits__media img {
	height: 100%;
}

.lvpn-benefits .lvpn-benefits__icon img {
	max-height: 100%;
}

.lvpn-reviews .lvpn-reviews__avatar {
	width: 40px;
	height: 40px;
	border: 1px solid var(--lvpn-green-review);
	border-radius: var(--lvpn-radius-full);
}

@media (min-width: 768px) {
	.lvpn-hero .lvpn-hero__platform img {
		width: 48px;
		height: 48px;
	}
}

/* ==========================================================================
   Narrow-viewport safety

   Grid and flex children default to `min-width: auto`, which refuses to shrink
   below their min-content size and pushes the page sideways on small screens.
   ========================================================================== */

.lvpn-features__grid > *,
.lvpn-games__grid > *,
.lvpn-reviews__grid > *,
.lvpn-pricing__grid > *,
.lvpn-benefits__cards > * {
	min-width: 0;
}

.lvpn-faq__question {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

@media (max-width: 479px) {
	.lvpn-reviews__card {
		padding: 40px 24px;
	}

	.lvpn-benefits__points {
		width: 100%;
	}

	.lvpn-faq__trigger {
		padding-inline: 16px;
	}

	.lvpn-faq__answer {
		padding-inline: 16px;
	}
}
