/* ==========================================================================
   Pricing Plans — webcirclez.com live style (website-design)
   ========================================================================== */

.wcz-service-live-pricing--live {
	padding: var(--wcz-section-pad-y, clamp(36px, 4.5vw, 56px)) 0;
	background: #fff;
}

.wcz-pricing-live-heading {
	text-align: center;
	margin-bottom: clamp(32px, 5vw, 48px);
}

.wcz-pricing-live-heading .wcz-pricing-live-title {
	margin: 0;
	font-family: var(--wcz-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #222;
	text-align: center;
}

.wcz-pricing-live-heading .wcz-pricing-live-title strong {
	font-weight: inherit;
	color: inherit;
}

.wcz-pricing-grid--live {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	align-items: stretch;
	max-width: 1100px;
	margin: 0 auto;
}

.wcz-pricing-live-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e6e6e6;
	text-align: center;
}

.wcz-pricing-live-card.featured {
	border-color: #c5dc3a;
	box-shadow: 0 8px 28px rgba(197, 220, 58, 0.25);
	position: relative;
	z-index: 1;
}

.wcz-pricing-live-head {
	padding: 28px 16px 22px;
	background: #f2f2f2;
	text-align: center;
}

.wcz-pricing-live-card.featured .wcz-pricing-live-head {
	background: #c5dc3a;
	color: #fff;
	position: relative;
}

.wcz-pricing-live-card.featured .wcz-pricing-live-head::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #c5dc3a;
}

.wcz-pricing-live-name {
	margin: 0 0 8px;
	font-family: var(--wcz-font-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #444;
}

.wcz-pricing-live-card.featured .wcz-pricing-live-name {
	color: #fff;
}

.wcz-pricing-live-price {
	margin: 0;
	font-family: var(--wcz-font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1;
	color: #c5dc3a;
}

.wcz-pricing-live-card.featured .wcz-pricing-live-price {
	color: #fff;
}

.wcz-pricing-live-features {
	list-style: none;
	margin: 0;
	padding: 28px 20px 24px;
	flex: 1;
	text-align: center;
}

.wcz-pricing-live-features li {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	border-bottom: 1px solid #f0f0f0;
}

.wcz-pricing-live-features li:last-child {
	border-bottom: none;
}

.wcz-pricing-live-features li.is-included::before {
	content: '✓ ';
	color: #c5dc3a;
	font-weight: 700;
}

.wcz-pricing-live-foot {
	padding: 22px 16px 26px;
	background: #f2f2f2;
	text-align: center;
}

.wcz-pricing-live-card.featured .wcz-pricing-live-foot {
	background: #c5dc3a;
}

.wcz-pricing-live-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	padding: 11px 24px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: #00c2e5;
	background: #fff;
	border-radius: 100px;
	border: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wcz-pricing-live-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	color: #00a8c9;
}

.wcz-pricing-live-card.featured .wcz-pricing-live-btn {
	color: #c5dc3a;
}

@media (max-width: 1024px) {
	.wcz-pricing-grid--live {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.wcz-pricing-live-card {
		border-radius: 4px;
		overflow: hidden;
	}
}

@media (max-width: 600px) {
	.wcz-pricing-grid--live {
		grid-template-columns: 1fr;
		max-width: 320px;
	}
}
