/* Basic Layout */
.pt-2bc24527-wrapper {
	font-family: inherit;
}

/* Toggle Switcher */
.pt-2bc24527-toggle-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	gap: 15px;
}
.pt-2bc24527-toggle-label {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	transition: color 0.3s;
	display: flex;
	align-items: center;
	gap: 10px;
}
.pt-2bc24527-toggle-label.active {
	font-weight: 600;
}
.pt-2bc24527-switch {
	position: relative;
	width: 50px;
	height: 26px;
}
.pt-2bc24527-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.pt-2bc24527-slider {
	position: absolute;
	cursor: pointer;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: #0B192C;
	transition: .4s;
	border-radius: 34px;
}
.pt-2bc24527-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}
.pt-2bc24527-checkbox:checked + .pt-2bc24527-slider {
	background-color: #0B192C;
}
.pt-2bc24527-checkbox:checked + .pt-2bc24527-slider:before {
	transform: translateX(24px);
}
.pt-2bc24527-discount-badge {
	background: #E8F5E9;
	color: #2E7D32;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 20px;
	font-weight: 600;
}

/* Grid & Cards */
.pt-2bc24527-grid {
	display: grid;
	gap: 30px;
}
@media (max-width: 767px) {
	.pt-2bc24527-grid {
		grid-template-columns: 1fr !important;
	}
}
.pt-2bc24527-card {
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 24px;
	padding: 40px;
	text-align: left;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}
.pt-2bc24527-card.is-popular {
	background-color: #0B192C;
	color: #fff;
	border: none;
	box-shadow: 0 20px 40px rgba(11, 25, 44, 0.15);
	transform: scale(1.02);
	z-index: 1;
}

/* Hover Effects */
.pt-2bc24527-wrapper[data-hover="lift"] .pt-2bc24527-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.pt-2bc24527-wrapper[data-hover="scale"] .pt-2bc24527-card:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.pt-2bc24527-wrapper[data-hover="glow"] .pt-2bc24527-card:hover {
	box-shadow: 0 0 20px rgba(11, 25, 44, 0.2);
}

/* Ribbon */
.pt-2bc24527-ribbon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #22C55E;
	color: #fff;
	padding: 6px 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 0 0 8px 8px;
}

/* Header & Pricing */
.pt-2bc24527-icon {
	font-size: 30px;
	color: #333;
	margin-bottom: 20px;
}
.pt-2bc24527-svg-icon img {
	max-width: 40px;
	height: auto;
}
.pt-2bc24527-title {
	margin: 0 0 15px;
	font-size: 20px;
	font-weight: 700;
	color: inherit;
}
.pt-2bc24527-price-wrap {
	display: flex;
	align-items: baseline;
	margin-bottom: 15px;
}
.pt-2bc24527-currency {
	/* Removed defaults */
}
.pt-2bc24527-price {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -1px;
	animation: fadeIn 0.4s ease-in-out;
}
.pt-2bc24527-period {
	margin-left: 4px;
}
.pt-2bc24527-card.is-popular .pt-2bc24527-period {
	color: rgba(255, 255, 255, 0.7);
}
.pt-2bc24527-subtitle {
	font-size: 14px;
	color: #6B7280;
	margin: 0 0 30px;
	line-height: 1.5;
}
.pt-2bc24527-card.is-popular .pt-2bc24527-subtitle {
	color: rgba(255, 255, 255, 0.8);
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Features */
.pt-2bc24527-features {
	flex-grow: 1;
	margin-bottom: 40px;
}
.pt-2bc24527-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.pt-2bc24527-features li {
	display: flex;
	align-items: center;
	color: #374151;
	/* Removed default padding */
}
.pt-2bc24527-card.is-popular .pt-2bc24527-features li {
	color: #F9FAFB;
}
.pt-2bc24527-feature-disabled {
	opacity: 0.5;
}
.pt-2bc24527-feature-icon {
	color: #22C55E;
	margin-right: 12px;
	font-size: 14px;
	min-width: 14px;
	display: flex;
	align-items: center;
}

/* Button */
.pt-2bc24527-btn {
	display: inline-block;
	width: 100%;
	padding: 16px 20px;
	background: #fff;
	color: #111;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s;
}
.pt-2bc24527-btn:hover {
	background: #F3F4F6;
}
.pt-2bc24527-card.is-popular .pt-2bc24527-btn {
	background: #fff;
	color: #0B192C;
	border: none;
}
.pt-2bc24527-card.is-popular .pt-2bc24527-btn:hover {
	background: #F9FAFB;
}
