﻿.grid-box {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 0;
	height: auto;
	font-size: 14px;
}

.plans-box {
	position:relative;
	top:80px;
	width: 100%;
}

p.pricingheader {
	font-size: 32pt;
	color: #808080;
}

span#pricingbanner {
	position: absolute;
	margin-left: 0;
	margin-right: 0;
	margin-top: 85px;
	width: 100%;
	text-align: center;
}

.pricing-container {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
}

.pricingfooter {
	position: relative;
	text-align: center;
}

	.pricingfooter h1 {
		color: #4f46e5;
		font-weight: bold;
	}

	.pricingfooter p {
		font-size: 1.1rem;
		color: #9ca3af;
		font-size: 14px;
	}

.pricing-grid {
	position: relative;
	top: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.card {
	position: relative;
	background: linear-gradient( to bottom, rgba(245, 245, 245, 1) 0%, rgba(250, 250, 250, 1) 40%, rgba(255, 255, 255, 1) 100% );
	border-radius: 1rem;
	padding: 1.5rem 1.5rem;
}

.plan-title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #4338ca;
}

.price {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.price-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.plan-desc {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 1.8rem;
}

.features {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

	.features li {
		margin: 0.6rem 0;
		position: relative;
		padding-left: 1.5rem;
		color: var(--text-dark);
	}

		.features li::before {
			content: "✔";
			color: var(--primary);
			position: absolute;
			left: 0;
		}

.button {
	display: inline-block;
	background-color: var(--primary);
	color: #ffffff;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

	.button:hover {
		background-color: #3730a3;
	}

.card.featured {
	border: 2px solid #4338ca;
}

/* Billing Toggle */
.billing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
	gap: 12px;
}

.toggle-label {
	font-size: 1rem;
	color: #a1a1a6;
	font-weight: 600;
	cursor: pointer;
}

	.toggle-label.active {
		color: #4338ca;
	}

/* Toggle Switch */
.switch {
	position: relative;
	display: inline-block;
	width: 54px;
	height: 28px;
}

	.switch input {
		opacity: 0;
		width: 0;
		height: 0;
	}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 34px;
}

	.slider:before {
		position: absolute;
		content: "";
		height: 22px;
		width: 22px;
		left: 3px;
		bottom: 3px;
		background-color: white;
		transition: .4s;
		border-radius: 50%;
	}

input:checked + .slider {
	background-color: #4338ca;
}

	input:checked + .slider:before {
		transform: translateX(26px);
	}

.save-tag {
	position: absolute;
	top: 7px;
	right: 7px;
	background: linear-gradient(to bottom, #ff3b3b 0%, #c40000 100%);
	color: #fff;
	padding: 4px 10px;
	font-size: 0.8rem;
	border-radius: 6px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 2px 4px rgba(0,0,0,0.15);
	margin-bottom: 10px;
}

	.save-tag s {
		margin-right: 6px;
		font-weight: 400;
		color: #ffdddd;
		text-decoration: line-through;
	}

.faq-section {
	background-color: #ffffff;
	padding: 3rem 2rem;
	max-width: 800px;
	margin: 0 auto;
}

	.faq-section h2 {
		text-align: center;
		margin-bottom: 2rem;
		color: #808080;
	}

.faq-item {
	margin-bottom: 1.5rem;
}

	.faq-item h3 {
		margin-bottom: 0.5rem;
		color: #4338ca;
	}

div.footer {
	position: relative;
	top: 23px;
	text-align: center;
}