/* Dedicated pricing page for unified cross-border subscription plans */
.pricing-hero {
	padding: 84px 0 64px;
	background:
		linear-gradient(180deg, var(--green-surface) 0%, #fff 76%),
		var(--green-surface);
}
.pricing-hero-in {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
	gap: 52px;
	align-items: center;
}
.pricing-hero-copy,
.pricing-snapshot {
	animation: pricing-enter 0.72s ease both;
}
.pricing-snapshot {
	animation-delay: 0.12s;
}
.pricing-hero h1 {
	font-size: clamp(40px, 4.8vw, 62px);
	line-height: 1.03;
	letter-spacing: -0.035em;
	font-weight: 800;
	color: var(--grey-70);
	margin-top: 18px;
	text-wrap: balance;
}
.pricing-hero p {
	font-size: 19px;
	line-height: 1.6;
	color: var(--grey-60);
	margin-top: 22px;
	max-width: 38em;
	text-wrap: pretty;
}
.pricing-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}
.pricing-snapshot {
	background: linear-gradient(160deg, var(--green-70) 0%, var(--green-80) 100%);
	color: #fff;
	border-radius: 20px;
	padding: 32px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 24px 70px -34px rgba(17, 42, 31, 0.7);
}
.pricing-snapshot::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 80% at 90% 0%, rgba(132, 179, 154, 0.22), transparent 62%);
}
.pricing-snapshot > * {
	position: relative;
}
.pricing-snapshot .eyebrow {
	color: var(--green-30);
}
.pricing-snapshot .eyebrow::before {
	background: var(--green-40);
}
.snapshot-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 22px;
}
.snapshot-price .cur {
	font-size: 28px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.78);
}
.snapshot-price .num {
	font-size: 64px;
	line-height: 0.9;
	font-weight: 800;
	letter-spacing: -0.04em;
}
.snapshot-price .per {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
}
.pricing-snapshot p {
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
	margin-top: 16px;
}
.snapshot-list {
	list-style: none;
	margin-top: 24px;
	display: grid;
	gap: 12px;
}
.snapshot-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.9);
}
.snapshot-list svg {
	width: 17px;
	height: 17px;
	color: var(--green-30);
	flex: 0 0 auto;
}
.plans {
	padding-top: 72px;
}
.plan-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 46px;
}
.plan-card {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 26px 24px;
	background: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-shadow: 0 18px 52px -42px rgba(32, 38, 31, 0.45);
	transition:
		border-color 0.18s,
		box-shadow 0.18s,
		transform 0.18s,
		opacity 0.5s ease,
		translate 0.5s ease;
}
.plan-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px -22px rgba(20, 50, 35, 0.26);
	border-color: var(--green-20);
}
.plan-card.featured {
	border-color: var(--green-30);
	background: linear-gradient(180deg, var(--green-surface) 0%, #fff 44%);
}
.plan-card.featured.sr-visible {
	animation: featured-plan-pulse 1.1s ease 0.36s both;
}
.plan-kicker {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--green-40);
}
.plan-card h3 {
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	font-weight: 700;
	margin-top: 10px;
	color: var(--grey-70);
}
.plan-limit {
	font-size: 14px;
	color: var(--grey-50);
	margin-top: 9px;
	min-height: 42px;
}
.plan-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-top: 20px;
	color: var(--grey-70);
}
.plan-price .currency {
	font-size: 19px;
	font-weight: 700;
	color: var(--grey-50);
}
.plan-price .amount {
	font-size: 40px;
	line-height: 0.95;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.plan-price .period {
	font-size: 14px;
	color: var(--grey-50);
}
.plan-meta {
	margin-top: 18px;
	display: grid;
	gap: 10px;
}
.plan-meta div {
	border-top: 1px solid var(--border);
	padding-top: 10px;
}
.plan-meta span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: var(--grey-40);
}
.plan-meta strong {
	display: block;
	font-size: 16px;
	color: var(--grey-70);
	margin-top: 3px;
}
.plan-card .btn {
	justify-content: center;
	margin-top: 24px;
	width: 100%;
}
.pricing-table-wrap {
	margin-top: 48px;
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: auto;
	background: #fff;
}
.pricing-table {
	width: 100%;
	min-width: 780px;
	border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
	padding: 18px 20px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	font-size: 15px;
}
.pricing-table th {
	background: var(--grey-light);
	color: var(--grey-60);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.pricing-table tr:last-child td {
	border-bottom: 0;
}
.pricing-table td:first-child {
	font-weight: 700;
	color: var(--grey-70);
}
.pricing-note {
	margin-top: 16px;
	font-size: 14px;
	color: var(--grey-50);
}
.recommendations {
	background: var(--grey-light);
}
.recommendation-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 42px;
	align-items: start;
	margin-top: 44px;
}
.recommendation-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	transition:
		opacity 0.5s ease,
		translate 0.5s ease;
}
.recommendation-card h3 {
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	font-weight: 700;
	color: var(--grey-70);
}
.recommendation-card p {
	color: var(--grey-60);
	margin-top: 12px;
}
.coverage-list {
	list-style: none;
	display: grid;
	gap: 12px;
	margin-top: 20px;
}
.coverage-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--grey-60);
	font-size: 15px;
	transition:
		opacity 0.45s ease,
		translate 0.45s ease;
}
.coverage-list svg {
	width: 18px;
	height: 18px;
	color: var(--green);
	flex: 0 0 auto;
	margin-top: 2px;
}
.pricing-reveal:not(.sr-visible) {
	opacity: 0;
	translate: 0 28px;
}
.plan-grid .pricing-reveal.sr-visible:nth-child(2),
.coverage-list .pricing-reveal.sr-visible:nth-child(2) {
	transition-delay: 0.08s;
}
.plan-grid .pricing-reveal.sr-visible:nth-child(3),
.coverage-list .pricing-reveal.sr-visible:nth-child(3) {
	transition-delay: 0.16s;
}
.plan-grid .pricing-reveal.sr-visible:nth-child(4) {
	transition-delay: 0.24s;
}
.recommendation-grid .pricing-reveal.sr-visible:nth-child(2) {
	transition-delay: 0.1s;
}

@keyframes pricing-enter {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes featured-plan-pulse {
	0%,
	100% {
		box-shadow: 0 18px 52px -42px rgba(32, 38, 31, 0.45);
	}
	45% {
		box-shadow: 0 20px 44px -24px rgba(32, 75, 57, 0.42);
	}
}

@media (max-width: 1040px) {
	.plan-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 960px) {
	.pricing-hero-in,
	.recommendation-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {
	.pricing-hero {
		padding-top: 64px;
	}
	.pricing-hero-actions,
	.plan-grid {
		grid-template-columns: 1fr;
	}
	.plan-grid {
		display: grid;
	}
	.pricing-snapshot,
	.plan-card,
	.recommendation-card {
		border-radius: 14px;
		padding: 24px 20px;
	}
	.snapshot-price .num {
		font-size: 58px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.pricing-hero-copy,
	.pricing-snapshot,
	.plan-card.featured.sr-visible {
		animation: none;
	}
	.plan-card,
	.recommendation-card,
	.coverage-list li {
		transition: none;
	}
	.pricing-reveal:not(.sr-visible) {
		opacity: 1;
		translate: none;
	}
}
