.form-group > label.error {
	display: block !important;
	text-transform: none;
}

.form-group input.valid ~ label.error,
.form-group input[type="text"] ~ label.error,
.form-group input[type="email"] ~ label.error,
.form-group input[type="number"] ~ label.error,
.form-group select ~ label.error {
	display: none !important;
}

.empty-box {
	background-color: #ffffff;
	min-height: 200px;
	width: 100%;
	border-radius: 12px;
	z-index: 0;
}

#oc-clients .oc-item img {
	width: 450px !important;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
}

.plan-hero {
	padding: 64px 0 24px;
	background: #f8f9fa;
}

.plan-card {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	padding: 2rem 2.25rem 1.25rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	overflow: hidden;
}

.plan-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 14px 28px rgba(0,0,0,.08);
}

.plan-icon {
	width: 56px;
	height: 56px;
}

.plan-title {
	font-size: .95rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: .75rem 0 0;
	font-weight: 600;
}

.plan-price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 1.5rem;
	font-weight: 700;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 6px;
	padding: .25rem .75rem;
	transition: all .2s ease;
	position: relative;
}

.plan-price input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.plan-price .radio-dot {
	width: 18px;
	height: 18px;
	border: 2px solid #adb5bd;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	flex: 0 0 18px;
	margin-right: 6px;
}

.plan-price:has(input[type="radio"]:checked) .radio-dot {
	border-color: #2e7d32;
}

.plan-price:has(input[type="radio"]:checked) .radio-dot::after {
	content: "";
	position: absolute;
	inset: 3px;
	background: #2e7d32;
	border-radius: 50%;
}

.plan-price:has(input[type="radio"]:checked) .amount {
	color: #2e7d32;
}

.plan-price .unit {
	font-size: 1rem;
	margin-right: .15rem;
	vertical-align: top;
}

.plan-price .amount {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
}

.plan-price .tenure {
	font-size: .95rem;
	margin-left: .25rem;
	color: #6c757d;
}

.plan-features {
	margin-top: .25rem;
	width: 100%;
}

.plan-features li {
	margin: .35rem 0;
	font-weight: 500;
	color: #6c757d;
}

.plan-features i {
	margin-right: .4rem;
}

.plan-card:has(.plan-price input[type="radio"]:checked) {
	border-color: #212529;
	box-shadow: 0 16px 32px rgba(0,0,0,.08);
}

abbr[title] {
	text-decoration: none;
	cursor: help;
}

@media (min-width: 1400px) {
	.plan-card {
		padding: 2.25rem 2rem 1.5rem;
	}
}
