.pro-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	padding: 2rem 0;
}

.pro-hero {
	text-align: center;
	max-width: 600px;
}

.pro-hero h1 {
	font-size: 2.25rem;
	margin-bottom: 1rem;
	border-bottom: none;
	padding-bottom: 0;
}

.pro-tagline {
	font-size: 1.125rem;
	color: var(--text-secondary);
}

.pro-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 400px;
	width: 100%;
	padding: 1.25rem;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.feature-icon {
	color: var(--warning);
	flex-shrink: 0;
}

.feature-icon svg {
	width: 24px;
	height: 24px;
}

.feature-text h3 {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.feature-text p {
	color: var(--text-secondary);
	font-size: 0.875rem;
	margin: 0;
}

.pro-pricing {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 500px;
	width: 100%;
}

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

.pricing-card {
	text-align: center;
	padding: 1.5rem;
	cursor: pointer;
	position: relative;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
	border-color: var(--text-dim);
}

.pricing-card.selected {
	border-color: var(--warning);
	box-shadow: 0 0 0 3px rgba(210, 153, 34, 0.25);
}

.pricing-card h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	color: var(--text-secondary);
}

.price {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.price span {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-dim);
}

.pricing-card p {
	font-size: 0.875rem;
	color: var(--text-dim);
	margin: 0.5rem 0 0 0;
}

.best-value {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--warning);
	color: var(--bg-primary);
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.25rem 0.625rem;
	border-radius: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pro-action {
	text-align: center;
}

.pro-action .btn {
	min-width: 200px;
}

.pro-action .btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.pro-payment-note {
	font-size: 0.8125rem;
	color: var(--text-dim);
	margin-top: 0.75rem;
}

.pro-already {
	text-align: center;
	max-width: 400px;
}

.pro-already p {
	margin: 1rem 0;
}

.pro-hero .pro-badge {
	margin-bottom: 1.5rem;
}
