.navbar {
	background-color: rgb(15, 23, 42);
	width: 100%;
	height: auto;
}

body {
	background-image: linear-gradient(to top right, rgb(15, 23, 42), rgb(30, 50, 80));
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

.price-subheading {
	margin: 1rem 0;
	font-size: 16px;
	text-align: left;

}

.btn {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: none;
	cursor: pointer;
	font-size: 16px;
	line-height: 140%;
	font-weight: 500;
}

.btn-primary {
	background-color: #2563eb;
	color: white;
}

.btn-outline {
	background-color: transparent;
	color: white;
	border: 1px solid #4b5563;
}

.container {
	max-width: 1200px;
	margin: 4rem auto;
	text-align: center;
	background-color: transparent;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.subtitle {
	color: #9ca3af;
	margin-bottom: 2rem;
	text-align: center;
}

.toggle-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	position: relative;
	margin-bottom: 3rem;
}

.toggle {
	position: relative;
	width: 50px;
	height: 24px;
	background-color: #2563eb;
	border-radius: 12px;
	cursor: pointer;
}

.toggle-slider {
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: white;
	border-radius: 50%;
	top: 2px;
	left: 2px;
	transition: 0.3s;
}

.toggle.active .toggle-slider {
	left: 28px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.2rem;
	padding: 3.5rem 1.3rem;
}

.pricing-card {
	border-radius: 0.4rem;
	padding: 1rem;
	text-align: center;
	background-color: rgb(37 53 75 / var(--tw-bg-opacity, 1));
}

.pricing-card.highlighted {
	background-color: #fff;
	color: black !important;
}

.pricing-card.highlighted p,
.pricing-card.highlighted h2,
.pricing-card.highlighted .price,
.pricing-card.highlighted .price-subheading,
.pricing-card.highlighted .features-list li {
	color: black;
}

.price {
	font-size: 2rem;
	font-weight: bold;
	margin: 1rem 0;
}

.features-list {
	list-style: none;
	margin-top: 2rem;
}

.pricing-card h2 {
	font-size: 22px;
}

.pricing-card p {
	text-align: center;
	margin: 1.3rem 0;
	font-size: 14px;
	line-height: 20px;
}


.features-list li {
	margin: 1rem 0;
	display: flex;
	text-align: left;
	gap: 0.5rem;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
}

.features-list li::before {
	content: "•";
	color: #2563eb;
	font-size: 1.5rem;
}

.blue {
	text-align: center;
	color: #5384ee;
	margin-bottom: 1rem;

}

.price-container h1 {
	text-align: center;
}

.toggle-container svg {
	position: absolute;
	top: 103%;
	right: 26%;

}

.hline {
	margin-top: 1rem;
	margin-bottom: 1rem;
	height: 0;
	border-top: 1px solid rgb(71, 85, 105);
}

.price-container {
	margin-top: 8rem;
	margin-bottom: 4.5rem;
}

.price {
	font-size: 48px;
	line-height: 1.1;

}

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

.features-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.features-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="none" viewBox="0 0 25 25"><path d="M12.5 2.5C6.97715 2.5 2.5 6.97715 2.5 12.5C2.5 18.0228 6.97715 22.5 12.5 22.5C18.0228 22.5 22.5 18.0228 22.5 12.5C22.5 6.97715 18.0228 2.5 12.5 2.5Z" fill="%232563EB" stroke="%231854D8" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.5 12.3571L11 14.8572L16.3572 9.5" stroke="white" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
	background-size: contain;
}

.toggle-container span {
	font-size: 18px;
	line-height: 140%;

}

@media (max-width: 1000px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		padding: 2rem 1rem;
	}

	.price-container {
		margin-bottom: 3rem;
		padding: 0 1rem;
	}
}

@media (max-width: 768px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.5rem 1rem;
	}

	.toggle-container {
		gap: 0.5rem;
	}

	.toggle-container svg {
		position: static;
		transform: scale(0.8);
		margin-top: 1rem;
	}

	h1 {
		font-size: 2rem;
		padding: 0 1rem;
	}

	.subtitle {
		padding: 0 1rem;
		font-size: 0.9rem;
	}

	.price {
		font-size: 2.5rem;
	}

	.pricing-card {
		margin: 0 1rem;
	}
}

@media (max-width: 480px) {
	.pricing-grid {
		padding: 1rem 0.5rem;
	}

	h1 {
		font-size: 1.75rem;
	}

	.price {
		font-size: 2rem;
	}

	.features-list li {
		font-size: 0.9rem;
	}

	.btn {
		padding: 0.5rem;
		font-size: 0.9rem;
	}

	.toggle-container span {
		font-size: 0.9rem;
	}
}

* {
	max-width: 100%;
	box-sizing: border-box;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

@media (min-width: 1200px) {

	.pricing-grid {
		padding: 3.5rem 24.3rem;
	}
}

.pricing-info {
	display: none;
}

.pricing-info.active {
	display: block;
}

.hidden {
	display: none;
}