@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
	--bg: #07090a;
	--bg-elev: #0d1012;
	--bg-card: #11161a;
	--bg-card: rgba(255, 255, 255, 0.06);
	--xxxbg-card: rgba(184, 255, 58, 0.08);
	--border: rgba(255, 255, 255, 0.08);
	--border-strong: rgba(255, 255, 255, 0.24);
	--text: #e9eef0;
	--text-muted: #8a949b;
	--text-dim: #5a6469;
	--accent: #b8ff3a;
	--accent-2: #6cff8a;
	--accent-glow: rgba(184, 255, 58, 0.45);
	--my-glow: rgba(184, 255, 58, 0.48);
	--radius: 1rem;
	--radius-lg: 1.5rem;
	--container: 80rem;
	--progress: #b8ff3a;
}

* {
	margin: 0;
	padding: 0;
	outline: none;
	font-display: swap;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

html {
	height: 100%;
	scroll-behavior: smooth;
	font-size: clamp(16px, 1.5vw, 21px);
}

body {
	background: var(--bg);
	color: var(--text);
	line-height: 1.5;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	margin: 0 auto;
	padding: 0 1.5rem;
	max-width: var(--container);
}

/* framework styles */

.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

.display-none {
	display: none;
}

.display-block {
	display: block;
}

.display-flex {
	display: flex;
}

/* preloader */
.preloader {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: flex;
	position: fixed;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background-color: #000000;
}

.preloader__spinner {
	width: 6rem;
	/* 96px; */
	height: 6rem;
	/* 96px; */
}

.preloader__info {
	color: #ffffff;
	text-align: center;
	font-size: 1.1875rem; /* 19px; */
}

/* cursor */

.cursor {
	display: inline-block;
	animation: blink 1s infinite;
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* motion */

.motion1 {
	transform-style: preserve-3d;
	transform: perspective(980px) rotateY(calc(var(--rotateX) * 1deg)) rotateX(calc(var(--rotateY) * 1deg));
}

.motion3 {
	transform-style: preserve-3d;
	transform: perspective(980px) rotateY(calc(var(--rotateX) * 3deg)) rotateX(calc(var(--rotateY) * 3deg));
}

.motion6 {
	transform-style: preserve-3d;
	transform: perspective(980px) rotateY(calc(var(--rotateX) * 6deg)) rotateX(calc(var(--rotateY) * 6deg));
}

.motion9 {
	transform-style: preserve-3d;
	transform: perspective(980px) rotateY(calc(var(--rotateX) * 9deg)) rotateX(calc(var(--rotateY) * 9deg));
}

.motion12 {
	transform-style: preserve-3d;
	transform: perspective(980px) rotateY(calc(var(--rotateX) * 12deg)) rotateX(calc(var(--rotateY) * 12deg));
}

.motion18 {
	transform-style: preserve-3d;
	transform: perspective(980px) rotateY(calc(var(--rotateX) * 18deg)) rotateX(calc(var(--rotateY) * 18deg));
}

.motion24 {
	transform-style: preserve-3d;
	transform: perspective(980px) rotateY(calc(var(--rotateX) * 24deg)) rotateX(calc(var(--rotateY) * 24deg));
}

/* my classes */

.glow-top::before {
	left: 0;
	right: 0;
	top: -1px;
	content: "";
	height: 1px;
	position: absolute;
	background: linear-gradient(to right,
			transparent 25%,
			var(--my-glow) 50%,
			transparent 75%);
}

/* Background orbs */
.bg-orbs {
	inset: 0;
	z-index: 0;
	position: fixed;
	overflow: hidden;
	pointer-events: none;
}

.orb {
	opacity: 0.35;
	position: absolute;
	border-radius: 50%;
	filter: blur(8rem);
}

.orb-1 {
	opacity: 0.18;
	top: -12.5rem;
	width: 37.5rem;
	height: 37.5rem;
	right: -12.5rem;
	background: var(--accent);
}

.orb-2 {
	width: 31.25rem;
	height: 31.25rem;
	background: #2effa6;
	bottom: -9.375rem;
	left: -6.25rem;
	opacity: 0.1;
}

/* ============== NAV ============== */
.nav {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(1rem);
	background: rgba(7, 9, 10, 0.75);
	border-bottom: 1px solid var(--border);
}

.nav__progress {
	left: 0;
	width: 0%;
	bottom: 0;
	z-index: 51;
	height: 1px;
	position: absolute;
	background-color: var(--progress);
}

.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
	gap: 2rem;
}

.logo {
	gap: 0.625rem;
	align-items: center;
	display: inline-flex;
}

.logo__name {
	color: #ffffff;
	line-height: 1em;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: -0.01em;
}

.logo__slogan {
	line-height: 1em;
	font-size: 0.68rem;
	font-weight: 500;
	color: var(--text-muted);
}

.logo__mark {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.625rem;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	background: linear-gradient(135deg, #354025, #000000);
	color: #001a00;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 4rem var(--accent-glow);
}

.logo__svg {
	width: 1.6rem;
	height: auto;
}

.nav__links {
	gap: 2rem;
	display: flex;
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--text-muted);
}

.nav__links a {
	transition: color 0.2s;
}

.nav__links a:hover {
	color: var(--text);
}

.nav__links a.active {
	color: var(--accent);
}

.nav__cta {
	display: flex;
	gap: 0.625rem;
}

/* ============== BUTTONS ============== */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 2.75rem;
	padding: 0 1.375rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1em;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: all 0.5s;
	border: 1px solid transparent;
	white-space: nowrap;
}

.btn--primary {
	z-index: 0;
	color: #061500;
	overflow: hidden;
	position: relative;
	background: var(--accent);
	box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 3rem var(--accent-glow);
}

.btn--ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border-strong);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.25);
}

.btn--lg {
	height: 3.375rem;
	padding: 0 1.75rem;
	font-size: 0.9375rem;
}

.btn--full {
	width: 100%;
}

.btn--pulse {
	animation: btn-pulse 5s infinite;
}

.btn--pulse:hover {
	animation: none;
}

@keyframes btn-pulse {
	0% {
		transform: rotate(0deg);
	}

	1%,
	3%,
	5% {
		transform: rotate(3deg);
	}

	2%,
	4%,
	6% {
		transform: rotate(-3deg);
	}

	7% {
		transform: rotate(0deg);
	}
}

/* ============== HERO ============== */
.hero {
	position: relative;
	z-index: 1;
	padding: 5rem 0 6.25rem;
}

.hero__grid {
	display: flex;
	gap: 3.75rem;
	align-items: start;
}

.hero__content {
	flex: 1;
	min-width: 0;
}

.hero__visual {
	flex: 1;
	min-width: 0;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	height: 2rem;
	padding: 0 0.875rem;
	border-radius: 999px;
	background: rgba(184, 255, 58, 0.08);
	border: 1px solid rgba(184, 255, 58, 0.2);
	font-size: 0.75rem;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.badge__dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0.5rem var(--accent);
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.hero__title {
	font-size: 3rem;
	line-height: 1em;
	margin-bottom: 1.5rem;
	letter-spacing: -0.06rem;
}

.text-glow {
	color: var(--accent);
	font-weight: 800;
	text-shadow: 0 0 40px var(--accent-glow);
}

.text-white {
	font-weight: 600;
}

.text-shine {
	color: transparent;
	background: linear-gradient(45deg,
			var(--text-muted) 5%,
			#ffffff 50%,
			var(--text-muted) 95%);
	background-position: 50% 0;
	-webkit-background-clip: text;
	background-clip: text;
}

.text-muted {
	color: var(--text-muted);
}

.hero__sub {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: 1.75rem;
}

.hero__cta {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
}

.hero__payment-methods {
	gap: 0.375rem;
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.hero__payment-methods img {
	width: auto;
	height: 1.5rem;
}

.hero__payment-info {
	display: flex;
	margin-bottom: 3rem;
	align-items: center;
}

/* Hero visual */
.shield-wrap {
	width: 100%;
	max-width: 25rem;
	position: relative;
}

@keyframes pulse-glow {

	0%,
	100% {
		filter: drop-shadow(0 0 3rem var(--accent-glow));
	}

	50% {
		filter: drop-shadow(0 0 6rem var(--accent-glow));
	}
}

.shield-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: pulse-glow 2s ease-in-out infinite;
}

.floating-card {
	position: absolute;
	background: rgba(7, 9, 10, 0.75);
	backdrop-filter: blur(1.25rem);
	border: 1px solid var(--border-strong);
	border-radius: 0.875rem;
	padding: 0.875rem 1.125rem;
	min-width: 11rem;
	box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.5);
	animation: float 6s ease-in-out infinite;
}

.card-ip {
	top: 12%;
	left: -0.625rem;
}

.card-speed {
	bottom: 14%;
	right: -0.625rem;
	animation-delay: -3s;
}

.floating-card__label {
	font-size: 0.6875rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.375rem;
}

.floating-card__value {
	font-size: 1.125rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	display: inline-block;
}

.dot--green {
	background: var(--accent);
	box-shadow: 0 0 0.625rem var(--accent);
}

.speed-bar {
	margin-top: 0.5rem;
	height: 0.25rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 0.25rem;
	overflow: hidden;
}

.speed-bar span {
	display: block;
	height: 100%;
	width: 86%;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	border-radius: 0.25rem;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-0.75rem);
	}
}

/* ============== TRUST ============== */
.trust {
	padding: 7.5rem 0;
	position: relative;
	z-index: 1;
	border-top: 1px solid var(--border);
}

.trust__rows {
	gap: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.trust__row {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.25rem 1.875rem;
}

.trust__num {
	font-weight: 600;
	font-size: 2rem;
	color: var(--text);
	text-align: center;
	line-height: 1em;
}

.trust__label {
	font-weight: 500;
	text-align: center;
	margin-top: 0.25rem;
	font-size: 0.9375rem;
	color: var(--text-muted);
}

/* ============== SECTION HEAD ============== */
.section-head {
	margin-bottom: 3.75rem;
	max-width: 43.75rem;
}

.section-head--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	color: var(--accent);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-weight: 600;
}

.lead {
	font-size: 1.0625rem;
	color: var(--text-muted);
	margin-top: 1rem;
}

/* ============== BENEFITS ============== */
.benefits {
	z-index: 1;
	padding: 7.5rem 0;
	position: relative;
	border-top: 1px solid var(--border);
}

.benefit-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.benefit {
	position: relative;
	flex: 1 1 calc(33.333% - 1rem);
	min-width: 16rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.benefit:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(184, 255, 58, 0.3);
	transform: translateY(-0.25rem);
}

.benefit__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(184, 255, 58, 0.1);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.benefit h3 {
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 0.5rem;
}

.benefit p {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

/* ============== SERVERS ============== */
.servers {
	z-index: 1;
	padding: 7.5rem 0;
	position: relative;
	border-top: 1px solid var(--border);
}

.servers__grid {
	gap: 5rem;
	display: flex;
	align-items: start;
}

.servers__grid > *:first-child {
	flex: 1;
	min-width: 0;
}

.servers__grid > *:last-child {
	flex: 1;
	min-width: 0;
}

.check-list {
	list-style: none;
	margin-top: 1.75rem;
}

.check-list--margin-top {
	margin-top: 1.75rem;
}

.check-list--margin-bottom {
	margin-bottom: 1.75rem;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0;
	font-size: 1rem;
	color: var(--text);
}

.check-list span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: rgba(184, 255, 58, 0.15);
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 700;
}

.server-card {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: 0 2.5rem 6.25rem rgba(0, 0, 0, 0.4);
}

.server-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border);
	font-size: 0.8125rem;
	color: var(--text-muted);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.server-list {
	list-style: none;
	margin-top: 0.5rem;
}

.server-list li {
	gap: 0.875rem;
	display: flex;
	align-items: center;
	font-size: 0.9375rem;
	border-radius: 0.625rem;
	padding: 0.875rem 0.75rem;
	transition: background 0.2s;
	justify-content: space-between;
}

.server-list li > *:nth-child(2) {
	flex: 1;
	min-width: 0;
	text-align: right;
}

.server-list li:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(184, 255, 58, 0.3);
}

.flag {
	flex-shrink: 0;
	font-size: 1.25rem;
}

.flag img {
	width: auto;
	height: 1.5rem;
}

.ping {
	flex-shrink: 0;
	font-size: 0.8125rem;
	color: var(--accent);
}

/* ============== PRICING ============== */
.pricing {
	z-index: 1;
	padding: 7.5rem 0;
	position: relative;
	border-top: 1px solid var(--border);
}

.plans {
	display: flex;
	gap: 1.25rem;
	align-items: stretch;
}

.plan {
	flex: 1;
	min-width: 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.25rem 1.875rem;
	display: flex;
	flex-direction: column;
	position: relative;
}

.plan__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.plan h3 {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.plan__discount {
	color: var(--text-muted);
}

.plan__discount--six-months {
	color: #ffffff;
}

.plan__discount--one-year {
	color: var(--accent);
	font-weight: 500;
}

.plan__price {
	font-size: 3.5rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1em;
	margin-bottom: 1.75rem;
}

.plan__price span {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-muted);
	letter-spacing: 0;
}

.plan ul {
	list-style: none;
	margin-bottom: 2rem;
	flex: 1;
}

.plan ul li {
	padding: 0.625rem 0;
	border-top: 1px solid var(--border);
	font-size: 0.9375rem;
	color: var(--text);
}

.plan ul li:first-child {
	border-top: none;
}

.plan--featured {
	border-color: rgba(184, 255, 58, 0.4);
	box-shadow: 0 1.875rem 5rem rgba(184, 255, 58, 0.08);
	background: linear-gradient(180deg, #131c10, #0f1310);
}

.plan__tag {
	position: absolute;
	top: -0.75rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: #061500;
	font-weight: 600;
	font-size: 0.875rem;
	padding: 0.375rem 0.75rem;
	border-radius: 999px;
	letter-spacing: 0.05em;
}

.pricing__payment-methods {
	gap: 0.375rem;
	display: flex;
	margin-top: 3rem;
	align-items: center;
	justify-content: center;
}

.pricing__payment-methods img {
	width: auto;
	height: 1.5rem;
}

.pricing__payment-info {
	display: flex;
	margin-top: 1rem;
	align-items: center;
	justify-content: center;
}

.guarantee {
	margin-top: 1rem;
	text-align: center;
	font-size: 0.875rem;
	color: var(--text-muted);
}

/* ============== FAQ ============== */
.faq {
	z-index: 1;
	padding: 7.5rem 0;
	position: relative;
	border-top: 1px solid var(--border);
}

.faq__grid {
	gap: 5rem;
	display: flex;
	align-items: start;
}

.faq__grid > *:first-child {
	flex: 1;
	min-width: 0;
}

.faq__grid > *:last-child {
	flex: 1.4;
	min-width: 0;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

details {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 0.875rem;
	padding: 1.25rem 1.5rem;
	transition: border-color 0.2s;
}

details[open] {
	border-color: rgba(184, 255, 58, 0.25);
}

summary {
	cursor: pointer;
	list-style: none;
	font-weight: 500;
	font-size: 1.0625rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

summary::-webkit-details-marker {
	display: none;
}

summary::after {
	content: "+";
	font-size: 1.375rem;
	color: var(--accent);
	font-weight: 300;
	transition: transform 0.25s;
	flex-shrink: 0;
}

details[open] summary::after {
	transform: rotate(45deg);
}

details p {
	margin-top: 0.875rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* ============== FINAL CTA ============== */
.cta-final {
	z-index: 1;
	position: relative;
	padding: 6.25rem 0 7.5rem;
	border-top: 1px solid var(--border);
}

.cta-final__inner {
	position: relative;
	text-align: center;
	background: radial-gradient(circle at 50% 0%,
			rgba(184, 255, 58, 0.15),
			transparent 60%),
		var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 1.75rem;
	padding: 5rem 2.5rem;
}

.cta-final h2 {
	max-width: 35rem;
	margin: 0 auto;
	margin-bottom: 1rem;
}

.cta-final p {
	color: var(--text-muted);
	font-size: 1.0625rem;
	margin-bottom: 2rem;
}

/* ============== FOOTER ============== */
.footer {
	z-index: 1;
	position: relative;
	padding: 3.75rem 0 1.875rem;
	border-top: 1px solid var(--border);
}

.footer__grid {
	display: flex;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--border);
}

.footer__grid > *:first-child {
	flex: 1.4;
	min-width: 0;
}

.footer__grid > *:not(:first-child) {
	flex: 1;
	min-width: 0;
}

.footer h4 {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 1rem;
	font-weight: 500;
}

.footer a {
	padding: 0.375rem 0;
	color: var(--text);
	font-size: 0.9375rem;
	transition: color 0.2s;
}

.footer__block a {
	display: block;
}

.footer__block a:hover {
	color: var(--accent);
}

.footer__about {
	margin-top: 0.875rem;
	color: var(--text-muted);
	font-size: 0.875rem;
	max-width: 16.25rem;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 1.5rem;
	color: var(--text-dim);
	font-size: 0.8125rem;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 60rem) {
	.nav__links {
		display: none;
	}

	.hero {
		padding: 3.125rem 0 4.375rem;
	}

	.hero__grid {
		gap: 3rem;
		flex-direction: column;
	}

	.hero__content,
	.hero__visual {
		flex: none;
		width: 100%;
	}

	.hero__visual {
		order: -1;
		margin: 0 auto;
		max-width: 30rem;
	}

	.hero__content {
		text-align: center;
	}

	.hero__cta {
		justify-content: center;
	}

	.hero__cta .btn {
		width: 100%;
	}

	.hero__payment-methods {
		justify-content: center;
	}

	.hero__payment-info {
		justify-content: center;
	}

	.hero__sub {
		margin-left: auto;
		margin-right: auto;
	}

	.benefit-grid {
		flex-direction: column;
	}

	.benefit {
		width: 100%;
		display: flex;
		text-align: center;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}

	.section-head {
		text-align: center;
	}

	.plans {
		flex-direction: column;
	}

	.plan {
		flex: none;
		width: 100%;
		text-align: center;
	}

	.pricing__payment-methods {
		flex-wrap: wrap;
		text-align: center;
	}

	.pricing__payment-methods div:first-child {
		width: 100%;
	}

	.pricing__payment-methods div:last-child {
		width: 100%;
	}

	.servers__grid {
		gap: 0;
		align-items: center;
		flex-direction: column;
	}

	.servers__grid > *:first-child,
	.servers__grid > *:last-child {
		flex: none;
		width: 100%;
	}

	.check-list li {
		justify-content: center;
	}

	.faq__grid {
		gap: 0;
		align-items: center;
		flex-direction: column;
	}

	.faq__grid > *:first-child,
	.faq__grid > *:last-child {
		flex: none;
		width: 100%;
	}

	.trust,
	.pricing,
	.benefits,
	.servers,
	.faq {
		padding: 5rem 0;
	}

	.plan--featured {
		transform: none;
	}

	.cta-final__inner {
		padding: 3.125rem 1.5rem;
	}

	.cta-final .btn {
		width: 100%;
	}

	.footer__bottom {
		gap: 0.5rem;
		text-align: center;
		flex-direction: column;
	}
}

@media (max-width: 33.75rem) {
	.nav__cta .btn--ghost {
		display: none;
	}

	.trust__row {
		width: 100%;
	}

	.footer__grid {
		align-items: center;
		flex-direction: column;
	}

	.footer__grid .logo {
		display: block;
	}
	.footer__grid .footer__about,
	.footer__grid .footer__block {
		flex: 1;
		width: 100%;
		text-align: center;
	}
}