
.pricing-section {
	width: 100%;
	position: relative;
	overflow: visible;
	background-color: white;
}

.pricing-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 20px 80px 20px;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.pricing-wave-top {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 30px;
	background: white;
	border-radius: 50% 50% 0 0;
	z-index: 10;
}

.pricing-wave-bottom {
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 50px;
	background: white;
	border-radius: 0 0 50% 50%;
	z-index: 10;
}

.pricing-header {
	text-align: center;
	margin-bottom: 40px;
}

.pricing-subtitle {
	background: linear-gradient(
		0deg,
		rgba(0, 82, 204, 1) 0%,
		rgba(40, 163, 255, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 8px 0;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.pricing-title {
	color: #333;
	font-size: 45px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
	transition: all 0.3s ease;
}

.pricing-tabs {
	display: flex;
	justify-content: center;
	background-color: #f5f5f5;
	border-radius: 50px;
	padding: 5px;
	max-width: 500px;
	margin: 0 auto 50px;
	border: 1px solid #e0e0e0;
}

.pricing-tab {
	flex: 1 1;
	padding: 12px 24px;
	border: none;
	background: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	border-radius: 50px;
	transition: all 0.3s ease;
	color: #555;
}

.pricing-tab.active {
	background-color: #ffd84d;
	color: #333;
}

.pricing-tab:hover:not(.active) {
	background-color: #e9e9e9;
}

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

.pricing-card {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	background-color: white;
	cursor: pointer;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlighted {
	border-color: #2e7de9;
	box-shadow: 0 5px 15px rgba(46, 125, 233, 0.2);
}

.pricing-card-header {
	padding: 15px;
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	color: #333;
}

.pricing-card-header.free {
	background-color: #e6f4ff;
	color: #2e7de9;
}

.pricing-card-header.pro {
	background: linear-gradient(to right, #2e7de9, #4a9bff);
	color: white;
}

.pricing-card-header.business {
	background-color: #e6f4ff;
	color: #2e7de9;
}

.pricing-card-content {
	padding: 30px;
}

.pricing-price {
	margin-bottom: 30px;
}

.price-amount {
	font-size: 48px;
	font-weight: 700;
	color: #333;
}

.price-period {
	font-size: 16px;
	color: #777;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.pricing-features li {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	color: #555;
}

.check-icon {
	color: #2e7de9;
	font-weight: bold;
	margin-right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background-color: #e6f4ff;
	border-radius: 50%;
}

.upgrade-button {
	width: 100%;
	padding: 15px;
	background-color: #ffd84d;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #333;
}

.upgrade-button:hover {
	background-color: #ffc107;
	transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.pricing-cards {
		grid-template-columns: 1fr;
	}

	.pricing-tab {
		padding: 10px 15px;
		font-size: 14px;
	}

	.pricing-title {
		font-size: 28px;
	}
}

