/* === License Page Global === */
.execvitr-license-wrap {
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
	max-width: 860px;
	margin: 40px auto;
	background: #fff;
	border-radius: 20px;
	padding: 36px 40px 48px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	color: #111;
	position: relative;
}
.execvitr-license-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}
.execvitr-license-header h1 {
	font-size: 22px;
	margin: 0;
	font-weight: 600;
	letter-spacing: -0.25px;
}
.execvitr-status-badge {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(-20px, 20px);
	color: #fff;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 18px;
	padding: 8px 22px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
}
.execvitr-license-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 12px;
	margin-top: 60px;
}
.execvitr-license-table th {
	width: 160px;
	text-align: left;
	font-weight: 500;
	color: #666;
}
.execvitr-license-table td {
	font-weight: 500;
	color: #111;
}
.execvitr-license-actions {
	margin-top: 36px;
	display: flex;
	gap: 12px;
}
.execvitr-license-actions .button-primary {
	background: #007aff;
	border-color: #007aff;
	box-shadow: none;
	border-radius: 6px;
	padding: 0 20px;
	height: 38px;
	font-weight: 600;
}
.execvitr-license-actions .button-secondary {
	background: #f6f6f6;
	border-color: #ddd;
	border-radius: 6px;
	height: 38px;
	font-weight: 500;
}
.execvitr-meta {
	margin-top: 20px;
	font-size: 12px;
	color: #777;
	text-align: right;
}

/* === Pricing Section === */
.execvitr-pricing {
	text-align: center;
	margin-top: 10px;
}
.pricing-title {
	font-size: 30px;
	margin-bottom: 6px;
	color: #111;
	font-weight: 700;
}
.pricing-subtitle {
	color: #666;
	font-size: 15px;
	margin-bottom: 40px;
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
	align-items: start;
	justify-content: center;
	max-width: 720px;
	margin: 0 auto;
}

/* === Plan Cards === */
.plan {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	text-align: left;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.plan h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.plan .tag {
	font-size: 12px;
	background: #f3f4f6;
	color: #555;
	padding: 2px 6px;
	border-radius: 6px;
	font-weight: 600;
}
.plan ul {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}
.plan ul li {
	padding: 10px 0;
	border-bottom: 1px dashed #ddd;
	color: #222;
	font-size: 14px;
}
.plan.lite {
	background: #f9fafb;
}
.plan.pro {
	background: #eef6ff;
	border-color: #bce2ff;
	box-shadow: 0 4px 16px rgba(0, 118, 255, 0.1);
}
.plan.pro .badge {
	font-size: 12px;
	background: #007aff;
	color: #fff;
	padding: 3px 8px;
	border-radius: 6px;
	font-weight: 600;
	margin-left: 6px;
}

/* === Price Block === */
.price-block {
	text-align: center;
	margin-bottom: 18px;
}
.price-main {
	font-size: 36px;
	font-weight: 800;
	color: #007aff;
	line-height: 1;
}
.price-main .per {
	font-size: 16px;
	color: #444;
	font-weight: 600;
	margin-left: 4px;
}
.price-sub {
	font-size: 13px;
	color: #666;
	margin-top: 6px;
}

/* === Buy Button === */
.buy-pro {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 12px auto 16px;
	padding: 12px 28px;
	min-width: 200px;
	font-weight: 700;
	font-size: 15px;
	border-radius: 999px;
	letter-spacing: 0.2px;
	background: linear-gradient(135deg, #007aff, #00b3ff);
	color: #fff !important;
	border: none !important;
	box-shadow: 0 6px 16px rgba(0, 118, 255, 0.25);
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.buy-pro:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(0, 118, 255, 0.3);
	opacity: 0.95;
}

/* === Stripe / Trust Section === */
.execvitr-trust {
	margin: 34px auto 0;
	text-align: center;
	color: #667085;
	font-size: 12.5px;
	line-height: 1.6;
}
.execvitr-trust .icons {
	margin-top: 8px;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.execvitr-trust .pill {
	border: 1px solid #e6e9ef;
	background: #fafbff;
	color: #475569;
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
}

/* === Responsive === */
@media (max-width: 782px) {
	.execvitr-license-wrap {
		padding: 32px 24px;
	}
	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.price-main {
		font-size: 30px;
	}
}
