/**
 * Meetempo Client Proof & Validate — Admin styles.
 *
 * @package WP_Proof_Validate
 */

/* Badges */
.wppv-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.wppv-badge--intact {
	background-color: #ecf7ed;
	color: #2e7d32;
}

.wppv-badge--modified {
	background-color: #fbeaea;
	color: #b71c1c;
}

.wppv-badge--deleted {
	background-color: #f0f0f0;
	color: #666;
}

/* Filter row */
.wppv-filter-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
}

.wppv-filter-row input[type="email"],
.wppv-filter-row input[type="date"] {
	max-width: 200px;
}

/* Detail table */
.wppv-detail-table {
	max-width: 800px;
	margin-top: 12px;
}

.wppv-detail-table th {
	width: 160px;
	font-weight: 600;
	background: #f9f9f9;
}

.wppv-detail-table td {
	word-break: break-all;
}

.wppv-detail-table code {
	font-size: 12px;
	word-break: break-all;
}

/* User Agent raw display */
.wppv-ua-raw {
	color: #94a3b8;
	font-size: 12px;
}

/* ========================================
   Go Pro Page
   ======================================== */

/* Header */
.wppv-pro-header {
	text-align: center;
	padding: 40px 20px 20px;
}

.wppv-pro-header h1 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 8px;
}

.wppv-pro-gradient {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.wppv-pro-tagline {
	font-size: 16px;
	color: #64748b;
	font-style: italic;
	margin-top: 4px;
}

/* Current plan banner */
.wppv-pro-lite-banner {
	background: #f8fafc;
	border-left: 4px solid #cbd5e1;
	padding: 16px 24px;
	margin: 20px 0 30px;
	border-radius: 0 8px 8px 0;
}

.wppv-pro-lite-banner h2 {
	font-size: 18px;
	margin: 0 0 6px;
	color: #334155;
}

.wppv-pro-lite-banner p {
	margin: 0;
	color: #64748b;
}

/* Features card (dark background) */
.wppv-pro-features-card {
	background: #0f172a;
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 40px;
	position: relative;
	overflow: hidden;
	color: #e2e8f0;
}

.wppv-pro-features-glow {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.wppv-pro-features-card h2 {
	font-size: 28px;
	text-align: center;
	color: #f1f5f9;
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

.wppv-pro-features-desc {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 32px;
	font-size: 15px;
	line-height: 1.6;
	color: #94a3b8;
	position: relative;
	z-index: 1;
}

/* Features grid */
.wppv-pro-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	position: relative;
	z-index: 1;
}

.wppv-pro-feature-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 24px;
	transition: background 0.2s;
}

.wppv-pro-feature-card:hover {
	background: rgba(255, 255, 255, 0.08);
}

.wppv-pro-feature-icon {
	font-size: 28px;
	display: block;
	margin-bottom: 12px;
}

.wppv-pro-feature-card h3 {
	font-size: 16px;
	color: #f1f5f9;
	margin: 0 0 8px;
}

.wppv-pro-feature-card p {
	font-size: 14px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.5;
}

/* CTA button */
.wppv-pro-cta-wrapper {
	text-align: center;
	margin-top: 36px;
	position: relative;
	z-index: 1;
}

.wppv-pro-cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: #fff;
	padding: 14px 36px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.2s;
}

.wppv-pro-cta-button:hover,
.wppv-pro-cta-button:focus {
	opacity: 0.9;
	color: #fff;
}

/* Pricing section */
.wppv-pro-pricing {
	margin-bottom: 40px;
}

.wppv-pro-pricing h2 {
	text-align: center;
	font-size: 26px;
	margin-bottom: 24px;
	color: #1e293b;
}

.wppv-pro-pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 800px;
	margin: 0 auto;
}

.wppv-pro-pricing-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 32px;
	position: relative;
	text-align: center;
}

.wppv-pro-pricing-card--featured {
	border: 2px solid #6366f1;
}

.wppv-pro-pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #6366f1;
	color: #fff;
	padding: 4px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.wppv-pro-pricing-tier {
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 12px;
}

.wppv-pro-pricing-price-old {
	font-size: 18px;
	color: #94a3b8;
	text-decoration: line-through;
	margin-bottom: 4px;
}

.wppv-pro-pricing-price {
	font-size: 48px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1;
	margin-bottom: 8px;
}

.wppv-pro-pricing-period {
	font-size: 18px;
	font-weight: 400;
	color: #64748b;
}

.wppv-pro-pricing-earlybird {
	display: inline-block;
	background: #ecfdf5;
	color: #10b981;
	padding: 4px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 12px;
}

.wppv-pro-pricing-desc {
	color: #64748b;
	font-size: 14px;
	margin-bottom: 20px;
}

.wppv-pro-pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	text-align: left;
}

.wppv-pro-pricing-card li {
	padding: 6px 0;
	color: #334155;
	font-size: 14px;
}

.wppv-pro-pricing-card li::before {
	content: "\2713";
	color: #10b981;
	font-weight: 700;
	margin-right: 8px;
}

.wppv-pro-pricing-button {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #6366f1;
	color: #6366f1;
	background: transparent;
	transition: all 0.2s;
}

.wppv-pro-pricing-button:hover,
.wppv-pro-pricing-button:focus {
	background: #6366f1;
	color: #fff;
}

.wppv-pro-pricing-button--featured {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: #fff;
	border-color: transparent;
}

.wppv-pro-pricing-button--featured:hover,
.wppv-pro-pricing-button--featured:focus {
	opacity: 0.9;
	color: #fff;
}

/* Support */
.wppv-pro-support {
	text-align: center;
	padding: 20px;
	color: #64748b;
}

.wppv-pro-support a {
	color: #6366f1;
	text-decoration: none;
}

.wppv-pro-support a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.wppv-pro-pricing-grid {
		grid-template-columns: 1fr;
	}

	.wppv-pro-features-card {
		padding: 24px;
	}

	.wppv-pro-header h1 {
		font-size: 28px;
	}
}
