/*
 * PMBO Plans - pricing table + product-limit notice styles.
 */

/* =====================================================================
   Pricing table
   ===================================================================== */
.pmbo-plans {
	font-family: inherit;
	padding: 2rem 1rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

.pmbo-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.25rem;
	align-items: start;
}

.pmbo-plan {
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	padding: 1.5rem 1.25rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: box-shadow .2s;
}

.pmbo-plan:hover {
	box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.pmbo-plan--featured {
	border-color: #6366f1;
	box-shadow: 0 0 0 2px #6366f133;
}

.pmbo-plan-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #6366f1;
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: .25rem .7rem;
	border-radius: 99px;
	white-space: nowrap;
}

.pmbo-plan-header {
	text-align: center;
}

.pmbo-plan-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 .25rem;
}

.pmbo-plan-tagline {
	font-size: .82rem;
	color: #64748b;
	margin: 0 0 .5rem;
}

.pmbo-plan-price {
	font-size: 1.4rem;
	font-weight: 800;
	color: #1e293b;
}

.pmbo-plan-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	flex: 1;
}

.pmbo-plan-feature {
	font-size: .85rem;
	color: #334155;
	display: flex;
	gap: .5rem;
	align-items: flex-start;
}

.pmbo-plan-check {
	color: #22c55e;
	font-weight: 700;
	flex-shrink: 0;
	line-height: 1.4;
}

.pmbo-plan-footer {
	margin-top: auto;
	padding-top: .75rem;
}

.pmbo-plan-cta {
	display: block;
	width: 100%;
	text-align: center;
	padding: .6rem 1rem;
	border-radius: 8px;
	font-size: .85rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s, color .15s, border-color .15s;
	box-sizing: border-box;
}

.pmbo-plan-cta--primary {
	background: #6366f1;
	color: #fff;
	border: 1.5px solid #6366f1;
}
.pmbo-plan-cta--primary:hover {
	background: #4f46e5;
	border-color: #4f46e5;
	color: #fff;
}

.pmbo-plan-cta--ghost {
	background: transparent;
	color: #475569;
	border: 1.5px solid #cbd5e1;
}
.pmbo-plan-cta--ghost:hover {
	border-color: #94a3b8;
	color: #0f172a;
}

.pmbo-plans-note {
	text-align: center;
	font-size: .8rem;
	color: #94a3b8;
	margin-top: 1.5rem;
}

/* =====================================================================
   Product-limit notice (shown on Add Product page)
   ===================================================================== */
.pmbo-plan-limit-notice {
	padding: .85rem 1rem;
	border-radius: 8px;
	font-size: .88rem;
	line-height: 1.5;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem .75rem;
	margin-bottom: 1.25rem;
}

.pmbo-plan-limit-notice--blocked {
	background: #fef2f2;
	border: 1.5px solid #fca5a5;
	color: #7f1d1d;
}

.pmbo-plan-limit-notice--warn {
	background: #fffbeb;
	border: 1.5px solid #fcd34d;
	color: #78350f;
}

.pmbo-plan-limit-cta {
	display: inline-block;
	padding: .3rem .75rem;
	border-radius: 6px;
	font-size: .82rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	background: #0f172a;
	color: #fff;
	transition: background .15s;
}

.pmbo-plan-limit-cta:hover {
	background: #1e293b;
	color: #fff;
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 640px) {
	.pmbo-plans-grid {
		grid-template-columns: 1fr;
	}
}


/* =====================================================================
   Export-plans pricing page
   ===================================================================== */
.pmbo-export-plans { padding-top: 1rem; }

.pmbo-export-plans-head {
text-align: center;
max-width: 720px;
margin: 0 auto 2rem;
}
.pmbo-export-plans-head h2 {
font-size: 2rem;
font-weight: 800;
color: #0f172a;
margin: 0 0 .5rem;
letter-spacing: -.01em;
}
.pmbo-export-plans-head p {
font-size: 1rem;
color: #475569;
margin: 0;
line-height: 1.5;
}

.pmbo-export-plans .pmbo-plans-grid {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
align-items: stretch;
}

.pmbo-export-plans .pmbo-plan {
height: 100%;
}

/* Stack the price + note vertically and visually balance "Let's talk"
   against the numeric tiers so card heights stay consistent. */
.pmbo-export-plans .pmbo-plan-price {
display: flex;
flex-direction: column;
align-items: center;
gap: .15rem;
font-size: 1.6rem;
line-height: 1.1;
min-height: 2.6rem;
}
.pmbo-export-plans .pmbo-plan-price small {
font-size: .75rem;
font-weight: 500;
color: #94a3b8;
letter-spacing: .02em;
}

/* Tagline: lock to two lines so cards align even when copy length differs. */
.pmbo-export-plans .pmbo-plan-tagline {
min-height: 2.6em;
display: flex;
align-items: center;
justify-content: center;
}

/* Buttons: kill theme-injected underline + give CTAs a touch more height. */
.pmbo-export-plans .pmbo-plan-cta {
text-decoration: none !important;
padding: .75rem 1rem;
font-size: .9rem;
letter-spacing: .01em;
}
.pmbo-export-plans .pmbo-plan-cta:hover,
.pmbo-export-plans .pmbo-plan-cta:focus-visible {
text-decoration: none !important;
}

.pmbo-export-plans-note {
text-align: center;
font-size: .82rem;
color: #94a3b8;
margin: 2rem auto 0;
max-width: 640px;
line-height: 1.5;
}

@media (max-width: 640px) {
.pmbo-export-plans-head h2 { font-size: 1.5rem; }
.pmbo-export-plans .pmbo-plans-grid { grid-template-columns: 1fr; }
}