/* ═══════════════════════════════════════════════
   PRICING SECTION V1
   Tilted plan card + perks list + alt-pricing note.
   Models .v2-pricing from PREVIEW/css/sections/v2-shared.css.
   Block-scoped — loaded only when rendered.
   ═══════════════════════════════════════════════ */

.pricing-v1 {
	padding: 100px 24px;
	border-top: 1px solid var(--border);
}
.pricing-v1__inner {
	max-width: var(--page-max);
	margin: 0 auto;
	text-align: center;
}

.pricing-v1__heading {
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 700;
	letter-spacing: -0.025em;
	margin-bottom: 48px;
}

.pricing-v1__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 940px;
	margin: 0 auto;
	text-align: left;
	align-items: start;
}

/* ── Tilted plan card ── */
.pricing-v1__card-wrap {
	display: flex;
	justify-content: center;
}
.pricing-v1__card {
	background: var(--surface);
	border: 2px solid var(--primary);
	border-radius: 20px;
	padding: 48px;
	max-width: 440px;
	width: 100%;
	transform: rotate(-2deg);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}
.pricing-v1__card:hover {
	transform: rotate(0deg) translateY(-4px);
}

.pricing-v1__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 4px 16px;
	font-size: 12px;
	font-weight: 600;
	background: var(--primary);
	color: var(--dark-brown);
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.pricing-v1__plan-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
}

.pricing-v1__price-top {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 4px;
}
.pricing-v1__price {
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
}

.pricing-v1__price-label {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 24px;
}

/* ── Feature list — WYSIWYG bullets restyled as orange checks ── */
.pricing-v1__features { margin-bottom: 28px; }
.pricing-v1__features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.pricing-v1__features li {
	padding: 8px 0 8px 26px;
	font-size: 14px;
	color: var(--fg-secondary);
	border-bottom: 1px solid var(--border);
	position: relative;
	line-height: 1.5;
}
.pricing-v1__features li:last-child { border: none; }
.pricing-v1__features li::before {
	content: "\2713"; /* ✓ */
	position: absolute;
	left: 0;
	top: 8px;
	color: var(--primary);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
}

.pricing-v1__cta {
	width: 100%;
	justify-content: center;
}

/* ── Perks ── */
.pricing-v1__perks-heading {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 24px;
}
.pricing-v1__perk {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}
.pricing-v1__perk:last-child { margin-bottom: 0; }
.pricing-v1__perk-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 153, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--primary);
}
.pricing-v1__perk-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}
.pricing-v1__perk-body {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
}

/* ── Alt-pricing note ── */
.pricing-v1__alt {
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid var(--border);
	text-align: center;
}
.pricing-v1__alt p {
	font-size: 16px;
	color: var(--fg-secondary);
}
.pricing-v1__alt strong {
	font-size: 28px;
	font-weight: 800;
	color: var(--fg);
}
.pricing-v1__alt a {
	color: var(--primary);
	text-decoration: underline;
}

@media (max-width: 900px) {
	.pricing-v1__layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.pricing-v1__card { transform: rotate(0); }
}
