/*=========================================================================*\
  PSMPL public pricing page styles
\*=========================================================================*/
.psm-pricing-hero {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	color: #fff;
	padding: 48px 0 56px;
	text-align: center;
}
.psm-pricing-hero h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 12px;
}
.psm-pricing-hero .lead {
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	margin-bottom: 8px;
}
.psm-pricing-hero-note {
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	margin: 0;
}
.psm-pricing-wrap {
	background: #f4f6f9;
	padding: 0 0 60px;
	margin-top: -28px;
}
.psm-pricing-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}
.psm-pricing-col {
	padding: 0 12px;
	margin-bottom: 24px;
	display: flex;
}
.psm-pricing-card {
	background: #fff;
	border: 1px solid #e8ebf0;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.psm-pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}
.psm-pricing-card-featured {
	border-color: #c52d2f;
	box-shadow: 0 12px 32px rgba(197, 45, 47, 0.18);
}
.psm-pricing-card-featured:hover {
	box-shadow: 0 18px 36px rgba(197, 45, 47, 0.22);
}
.psm-pricing-badge {
	position: absolute;
	top: 14px;
	right: -32px;
	background: #c52d2f;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	padding: 6px 40px;
	transform: rotate(45deg);
}
.psm-pricing-card-head {
	padding: 28px 24px 18px;
	border-bottom: 1px solid #f0f2f5;
}
.psm-pricing-card-head h3 {
	margin: 0 0 14px;
	font-size: 20px;
	font-weight: 700;
	color: #1f2937;
	line-height: 1.3;
}
.psm-pricing-price {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 2px;
}
.psm-pricing-price .currency {
	font-size: 22px;
	font-weight: 700;
	color: #c52d2f;
	line-height: 1.2;
	margin-top: 6px;
}
.psm-pricing-price .amount {
	font-size: 44px;
	font-weight: 800;
	color: #111827;
	line-height: 1;
	letter-spacing: -1px;
}
.psm-pricing-price .period {
	align-self: flex-end;
	font-size: 14px;
	color: #6b7280;
	margin-left: 4px;
	margin-bottom: 6px;
}
.psm-pricing-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 18px 20px;
	background: #f8fafc;
	border-bottom: 1px solid #eef1f5;
}
.psm-pricing-metric {
	background: #fff;
	border: 1px solid #e8ebf0;
	border-radius: 8px;
	padding: 10px 12px;
	min-height: 68px;
}
.psm-pricing-metric-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	color: #6b7280;
	margin-bottom: 4px;
}
.psm-pricing-metric-value {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #111827;
	line-height: 1.35;
}
.psm-pricing-features {
	list-style: none;
	margin: 0;
	padding: 18px 22px 8px;
	flex: 1;
}
.psm-pricing-features li {
	position: relative;
	padding: 8px 0 8px 28px;
	font-size: 14px;
	color: #374151;
	line-height: 1.4;
}
.psm-pricing-features li:before {
	content: "\f00c";
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	top: 9px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	font-size: 11px;
	color: #fff;
	background: #16a34a;
	border-radius: 50%;
}
.psm-pricing-features li strong {
	color: #111827;
	font-weight: 700;
}
.psm-pricing-foot {
	padding: 0 22px 24px;
	margin-top: auto;
}
.psm-pricing-btn {
	display: block;
	width: 100%;
	padding: 12px 16px;
	border: 0;
	border-radius: 8px;
	background: #c52d2f;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-decoration: none !important;
	transition: background 0.2s ease, transform 0.15s ease;
}
.psm-pricing-btn:hover,
.psm-pricing-btn:focus {
	background: #a82426;
	color: #fff !important;
	transform: translateY(-1px);
}
.psm-pricing-card-featured .psm-pricing-btn {
	background: #111827;
}
.psm-pricing-card-featured .psm-pricing-btn:hover,
.psm-pricing-card-featured .psm-pricing-btn:focus {
	background: #000;
}
.psm-pricing-info {
	background: #fff;
	border: 1px solid #e8ebf0;
	border-radius: 12px;
	padding: 28px 32px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.psm-pricing-info h4 {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	color: #111827;
}
.psm-pricing-info p {
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 12px;
}
.psm-pricing-info p:last-child {
	margin-bottom: 0;
}
@media (min-width: 992px) {
	.psm-pricing-col {
		width: 25%;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.psm-pricing-col {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.psm-pricing-hero h2 {
		font-size: 26px;
	}
	.psm-pricing-col {
		width: 100%;
	}
	.psm-pricing-price .amount {
		font-size: 38px;
	}
}
