﻿.fwtn-pricing {
	position: relative;
	overflow: hidden;
	background: #09090d;
	color: #fff;
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.fwtn-pricing__container {
	position: relative;
	z-index: 1;
	width: min(96vw, 1440px);
	margin: 0 auto;
}

.fwtn-pricing__orb {
	position: absolute;
	border-radius: 999px;
	filter: blur(150px);
	pointer-events: none;
}

.fwtn-pricing__orb--left {
	width: min(44vw, 500px);
	aspect-ratio: 1;
	left: -9vw;
	top: 10%;
	background: rgba(107, 63, 160, 0.24);
}

.fwtn-pricing__orb--right {
	width: min(40vw, 430px);
	aspect-ratio: 1;
	right: -8vw;
	bottom: 8%;
	background: rgba(76, 43, 124, 0.2);
}

.fwtn-pricing__head {
	text-align: center;
	margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.fwtn-pricing__eyebrow {
	display: inline-flex;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #b892ff;
	font-size: 0.85rem;
	font-weight: 500;
}

.fwtn-pricing__head h2 {
	margin: 1rem 0 0;
	font-size: clamp(1.95rem, 4.2vw, 3.15rem);
	line-height: 1.1;
}

.fwtn-pricing__head p {
	margin: 0.85rem auto 0;
	max-width: 74ch;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.fwtn-pricing__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.fwtn-pricing-card {
	position: relative;
	border-radius: 24px;
	padding: 1.2rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04) 48%, rgba(76, 43, 124, 0.18));
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 20px 58px rgba(0, 0, 0, 0.46);
	backdrop-filter: blur(18px);
	display: flex;
	flex-direction: column;
}

.fwtn-pricing-card h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2.3vw, 1.55rem);
	line-height: 1.2;
}

.fwtn-pricing-card__price {
	margin-top: 0.55rem;
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 700;
	color: #c8a9ff;
}

.fwtn-pricing-card p {
	margin: 0.75rem 0 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.98rem;
	line-height: 1.45;
}

.fwtn-pricing-card ul {
	margin: 0.9rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.45rem;
	flex: 1;
}

.fwtn-pricing-card li {
	position: relative;
	padding-left: 1rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
	line-height: 1.35;
}

.fwtn-pricing-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.52rem;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 999px;
	background: #9d63ff;
}

.fwtn-pricing__bottom {
	text-align: center;
	margin-top: clamp(1.6rem, 3.6vw, 3rem);
}

.fwtn-pricing__bottom a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 62px;
	width: min(100%, 280px);
	padding: 0 1.6rem;
	border-radius: 20px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	background: linear-gradient(180deg, #5a3589, #4c2b7c);
	box-shadow: 0 14px 40px rgba(76, 43, 124, 0.5);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.fwtn-pricing__bottom a:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
}

@media (max-width: 767.98px) {
	.fwtn-pricing {
		padding: clamp(4.1rem, 11.6vw, 5.6rem) 0;
	}
	.fwtn-pricing__head {
		margin-bottom: 1.8rem;
	}
	.fwtn-pricing__grid {
		gap: 1.1rem;
	}
	.fwtn-pricing-card {
		border-radius: 18px;
		padding: 1.15rem;
	}
	.fwtn-pricing__bottom {
		margin-top: 1.8rem;
	}
	.fwtn-pricing__bottom a {
		min-height: 56px;
		border-radius: 16px;
	}
}

@media (min-width: 920px) {
	.fwtn-pricing__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.2rem;
	}

	.fwtn-pricing-card {
		padding: 1.3rem;
		min-height: 360px;
	}
}
