.tnc3dprt-pricing-wrapper {
	font-family: 'Inter', sans-serif;
	color: #1f2937;
	background-color: transparent;
	/* Assuming section bg is handled by the theme */
	padding: 40px 0;
	box-sizing: border-box;
}

.tnc3dprt-pricing-wrapper *,
.tnc3dprt-pricing-wrapper *::before,
.tnc3dprt-pricing-wrapper *::after {
	box-sizing: inherit;
}

.tnc3dprt-pricing-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 20px;
}

.tnc3dprt-pricing-title {
	padding: 0;
	margin: 0;
	color: #0F2D35;
	text-align: center;
	font-family: 'Inter';
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.2px;
}

.tnc3dprt-pricing-toggle {
	display: flex;
	border-radius: 100px;
	background: #FCFCFC;
}

.tnc3dprt-toggle-btn {
	background: transparent;
	border: none;
	padding: 10px 24px;
	border-radius: 9999px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;

	color: #667175;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.tnc3dprt-toggle-btn.active {
	color: #ffffff;
	background: #0055D4;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.tnc3dprt-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.tnc3dprt-pricing-card {
	padding: 3rem 2.25rem;
	position: relative;

	border-radius: 10px;
	border: 1px solid #DBDBDB;
	background: #FFF;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

@keyframes tnc3dprtCardFadeIn {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.tnc3dprt-card-animate {
	animation: tnc3dprtCardFadeIn 0.4s ease-out both;
}

.tnc3dprt-pricing-card:hover {
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
	border: 1px solid #0055D4;
}

.tnc3dprt-pricing-card.tnc3dprt-featured {
	border-color: #2563eb;
	border-width: 2px;
}

.tnc3dprt-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
	min-height: 28px;
}

.tnc3dprt-card-title {
	color: #0F2D35;
	font-family: 'Inter';
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.8px;
	padding-bottom: 0px;
}

.tnc3dprt-card-license {
	margin: 5px 0 0;
	color: #667175;
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}

.tnc3dprt-badge {
	display: flex;
	padding: 6px 10px;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 20px;
	top: 20px;
	border-radius: 100px;
	background: #D2DAE6;

	color: #0F2D35;
	text-align: center;
	font-family: "DM Sans";
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.13px;
}

.tnc3dprt-card-price {
	display: none;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 8px;
}

.tnc3dprt-card-price.tnc3dprt-active {
	display: flex;
}

.tnc3dprt-amount {
	color: #111827;
	letter-spacing: -0.02em;

	color: #0F2D35;
	text-align: center;

	/* H3 */
	font-family: 'Inter';
	font-size: 36px;
	font-weight: 600;
	line-height: 1.4;
}

.tnc3dprt-period {
	color: #667175;
	text-align: center;

	/* Paragraph/16/Medium */
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.tnc3dprt-card-desc {
	color: #667175;

	font-family: "DM Sans";
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: -0.36px;
	margin-bottom: 30px;
}

.tnc3dprt-annual-desc-box,
.tnc3dprt-lifetime-desc-box,
.tnc3dprt-annual-btn-box,
.tnc3dprt-lifetime-btn-box {
	display: none;
}

.tnc3dprt-annual-desc-box.tnc3dprt-active,
.tnc3dprt-lifetime-desc-box.tnc3dprt-active,
.tnc3dprt-annual-btn-box.tnc3dprt-active,
.tnc3dprt-lifetime-btn-box.tnc3dprt-active {
	display: block;
}

.tnc3dprt-card-btn {
	width: 100%;
	text-align: center;
	padding: 12px 24px;
	border-radius: 9999px;
	background-color: transparent;
	text-decoration: none;
	transition: all 0.2s ease;
	margin-bottom: 3rem;

	border: 1px solid #8B9194;
	color: #0F2D35;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;

	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease-in-out;
}

.tnc3dprt-card-btn::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0055D4;
	z-index: -1;
	transform: translateX(-102%);
	transition: transform 0.3s ease-in-out;
}

.tnc3dprt-card-btn:hover::before {
	transform: translateX(0);
}

.tnc3dprt-card-btn:hover {
	color: #ffffff;
}

.tnc3dprt-card-features {
	margin-top: 24px;
}

.tnc3dprt-features-title {
	text-transform: none;
	margin-bottom: 1rem;
	padding-bottom: 0px;

	color: #9C9C9C;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.tnc3dprt-features-list {
	list-style: none;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tnc3dprt-features-list li {
	display: flex;
	align-items: center;
	gap: 10px;

	color: #667175;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.tnc3dprt-check-icon {
	color: #9ca3af;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.tnc3dprt-pricing-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.tnc3dprt-pricing-grid {
		grid-template-columns: 1fr;
	}
}