.package-container {
	display: flex;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	margin-bottom: 40px;
	margin-top: 20px;
	border-radius: 16px;
	overflow: visible;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.package-card {
	background: #fff;
	border: none;
	border: 1px solid #e5e5e5;
	padding: 32px 28px;
	flex: 1;
	min-width: 280px;
	text-align: left;
	position: relative;
	transition: background 0.15s ease;
	cursor: pointer;
}

.package-card:first-child {
	border-radius: 16px 0 0 16px;
}

.package-card:last-child {
	border-right: none;
	border-radius: 0 16px 16px 0;
}

.package-card:hover {
	background: #fafafa;
}

.package-card.selected {
	background: #fff;
	box-shadow: inset 0 0 0 2px #1f7cf8;
}

.package-card.selected {
	background: #f7f7f5;
}

.package-card.featured .package-name {
	margin-top: 0;
}

.package-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #0c3264;
	color: white;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	white-space: nowrap;
}

.package-name {
	font-size: 18px;
	font-weight: 600;
	color: #37352f;
	margin-bottom: 8px;
}

.package-tagline {
	font-size: 14px;
	color: #6b6b6b;
	margin-bottom: 20px;
	min-height: 40px;
	line-height: 1.5;
}

.package-price {
	margin-bottom: 20px;
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.package-price .currency {
	font-size: 20px;
	font-weight: 600;
	color: #37352f;
}

.package-price .amount {
	font-size: 36px;
	font-weight: 600;
	color: #37352f;
	line-height: 1;
}

.package-price .period {
	font-size: 14px;
	color: #6b6b6b;
	margin-left: 2px;
}

.package-price .monthly-equivalent {
	display: block;
	font-size: 13px;
	color: #a0a0a0;
	margin-top: 4px;
}

.package-includes {
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin-bottom: 12px;
	font-size: 13px;
	color: #37352f;
	font-weight: 500;
}

.package-features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	text-align: left;
}

.package-features li {
	padding: 6px 0;
	border-bottom: none;
	color: #37352f;
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.4;
}

.package-features .check {
	color: #2eaadc;
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 2px;
}

.package-selected-bar {
	background: #d2e5fd;
	color: #1f7cf8;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	padding: 10px;
	margin: 24px -28px -32px -28px;
	border-radius: 0 0 0 0;
	opacity: 0;
	transition: opacity 0.15s ease;
}

.package-card:first-child .package-selected-bar {
	border-radius: 0 0 0 16px;
}

.package-card:last-child .package-selected-bar {
	border-radius: 0 0 16px 0;
}

.package-card.selected .package-selected-bar {
	opacity: 1;
}

/* Billing Toggle Styles */
.billing-toggle-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	max-width: 700px;
	margin: 16px auto 40px auto;
	gap: 16px;
}

.billing-toggle {
	display: inline-flex;
	background: #ebebea;
	border-radius: 40px;
	padding: 4px;
	gap: 4px;
}

.billing-toggle-option {
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #6b6b6b;
	background: transparent;
	border: none;
	border-radius: 40px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.billing-toggle-option:hover {
	color: #37352f;
}

.billing-toggle-option.active {
	background: #fff;
	color: #37352f;
	box-shadow: 0 0 0 2px #1f7cf8;
}

.billing-save-tag {
	font-size: 13px;
	color: #358c5a;
	font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.package-container {
		flex-direction: column;
		border-radius: 12px;
	}
	.package-card {
		border-radius: 12px;
		border: 1px solid #e5e5e5;
	}
	.package-card:first-child, .package-card:last-child {
		border-radius: 12px;
	}
	.package-card:first-child .package-selected-bar {
		border-radius: 0 0 12px 12px;
	}
	.package-card:last-child .package-selected-bar {
		border-radius: 0 0 12px 12px;
	}
}