/* ────── Page Hero ────── */
.page-hero {
	position: relative;
	overflow: hidden;
	padding: 56px 0 96px;
	background: radial-gradient(ellipse at 90% 10%, color-mix(in srgb, var(--y-400) 24%, transparent) 0%, transparent 55%), var(--bg-cream);
	border-bottom: 1px solid var(--border);
}
.page-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 60px;
	background: linear-gradient(to bottom, transparent, var(--bg));
	pointer-events: none;
}
html[data-theme="dark"] .page-hero {
	background: radial-gradient(ellipse at 90% 10%, rgba(255, 204, 0, 0.1) 0%, transparent 55%), var(--bg-cream);
}
.breadcrumb {
	font-size: 13px;
	color: var(--ink-500);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.breadcrumb a,
.breadcrumb .current {
	white-space: nowrap;
}
.breadcrumb a {
	transition: color 0.15s;
}
.breadcrumb a:hover {
	color: var(--ink-900);
}
.breadcrumb .sep {
	color: var(--ink-300);
}
.breadcrumb .current {
	color: var(--ink-900);
	font-weight: 600;
}

.page-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	align-items: center;
}
.page-hero h1 {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.035em;
	margin: 0 0 20px;
	color: var(--ink-900);
	text-wrap: balance;
}
.page-hero h1 em {
	font-style: normal;
	background: linear-gradient(180deg, transparent 60%, var(--y-200) 60%);
}
.page-hero .lead {
	font-size: 18px;
	line-height: 1.65;
	color: var(--ink-600);
	margin: 0 0 32px;
	max-width: 540px;
}
.page-hero .actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-illu {
	position: relative;
	aspect-ratio: 5/4;
	background: var(--surface);
	border-radius: var(--radius-xl);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-illu .placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	color: var(--ink-400);
	font-size: 13px;
	font-weight: 600;
}
.hero-illu .placeholder-icon {
	width: 96px;
	height: 96px;
	border-radius: 24px;
	background: var(--y-400);
	color: #1c1d1f;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-illu .placeholder-icon svg {
	width: 48px;
	height: 48px;
}

/* ────── Section base ────── */
.section {
	padding: 100px 0;
}
.section-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--y-700);
	background: var(--y-50);
	padding: 6px 14px;
	border-radius: 999px;
	letter-spacing: 0.04em;
	margin-bottom: 16px;
}
html[data-theme="dark"] .section-eyebrow {
	color: var(--y-400);
	background: rgba(255, 204, 0, 0.12);
}
.section-title {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
	text-wrap: balance;
}
.section-sub {
	font-size: 17px;
	color: var(--ink-600);
	line-height: 1.65;
	margin: 0;
}

/* ────── Feature Block (alternating split) ────── */
.feature-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.feature-block.flip {
	direction: rtl;
}
.feature-block.flip > * {
	direction: ltr;
}
.feature-block + .feature-block {
	margin-top: 120px;
}
.feature-block .text {
	max-width: 480px;
}
.feature-block .visual {
	aspect-ratio: 4/3;
	background: var(--bg-soft);
	border-radius: var(--radius-xl);
	border: 1px solid var(--border);
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-block .visual.dark {
	background: var(--ink-900);
	border-color: var(--ink-900);
}
.feature-block .visual.cream {
	background: var(--bg-cream);
}
.feature-block .visual .ph {
	color: var(--ink-400);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	padding: 20px;
}
.feature-block .visual.dark .ph {
	color: rgba(255, 255, 255, 0.4);
}
.feature-block .visual .ph-icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	background: var(--y-400);
	color: #1c1d1f;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}
.feature-block .visual .ph-icon svg {
	width: 36px;
	height: 36px;
}

/* Mock screen inside visual */
.mock-screen {
	width: 80%;
	background: var(--surface);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
	overflow: hidden;
}
.mock-screen-head {
	height: 36px;
	background: var(--ink-900);
	color: var(--bg);
	display: flex;
	align-items: center;
	padding: 0 14px;
	font-size: 12px;
	font-weight: 700;
	gap: 8px;
}
.mock-screen-head .dots {
	display: flex;
	gap: 5px;
}
.mock-screen-head .dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}
.mock-screen-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.mock-row {
	display: grid;
	grid-template-columns: 32px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 10px 12px;
	background: var(--bg-soft);
	border-radius: 10px;
	border: 1px solid var(--border);
}
.mock-row.hot {
	background: var(--y-50);
	border-color: var(--y-400);
}
.mock-num {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--ink-900);
	color: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 13px;
}
.mock-row.hot .mock-num {
	background: var(--y-400);
	color: #1c1d1f;
}
.mock-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink-900);
}
.mock-meta {
	font-size: 11px;
	color: var(--ink-500);
	margin-top: 2px;
}
.mock-tag {
	font-size: 11px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 6px;
	background: var(--ink-200);
	color: var(--ink-700);
}
.mock-tag.calling {
	background: var(--y-400);
	color: #1c1d1f;
	animation: pulse 1.6s infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

/* QR mockup */
.qr-mock {
	background: var(--surface);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
	padding: 24px;
	width: 70%;
	text-align: center;
}
.qr-grid {
	width: 140px;
	height: 140px;
	margin: 0 auto 16px;
	background: conic-gradient(
		from 0deg at 50% 50%,
		var(--ink-900) 0 90deg,
		transparent 90deg 180deg,
		var(--ink-900) 180deg 270deg,
		transparent 270deg
	);
	background-size: 20px 20px;
	background-color: var(--bg);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
}
.qr-grid::before,
.qr-grid::after {
	content: "";
	position: absolute;
	width: 32px;
	height: 32px;
	background: var(--bg);
	border: 6px solid var(--ink-900);
	border-radius: 4px;
}
.qr-grid::before {
	top: 8px;
	left: 8px;
}
.qr-grid::after {
	top: 8px;
	right: 8px;
}
.qr-mock .qr-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink-900);
}
.qr-mock .qr-meta {
	font-size: 11px;
	color: var(--ink-500);
	margin-top: 4px;
}

/* ────── Multibooth grid (4 cards) ────── */
.multibooth {
	background: var(--bg-soft);
}
.multibooth-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 56px;
}
.mb-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	transition:
		transform 0.2s,
		box-shadow 0.2s,
		border-color 0.2s;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.mb-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--y-400);
}
.mb-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--y-400);
	color: #1c1d1f;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mb-icon svg {
	width: 28px;
	height: 28px;
}
.mb-card h3 {
	font-size: 18px;
	font-weight: 800;
	margin: 0;
	color: var(--ink-900);
}
.mb-card p {
	font-size: 14px;
	color: var(--ink-600);
	line-height: 1.6;
	margin: 0;
}
.mb-card p strong {
	color: var(--ink-900);
	font-weight: 700;
}
@media (max-width: 1024px) {
	.multibooth-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ────── Two small features (창구/통계) ────── */
.extras-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 56px;
}
.extra-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.extra-card h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--ink-900);
	margin: 0;
}
.extra-card p {
	font-size: 14.5px;
	color: var(--ink-600);
	line-height: 1.65;
	margin: 0;
}
.extra-visual {
	aspect-ratio: 16/10;
	background: var(--bg-soft);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink-400);
	font-size: 12px;
	font-weight: 600;
	flex-direction: column;
	gap: 8px;
}
.extra-visual .ph-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--y-400);
	color: #1c1d1f;
	display: flex;
	align-items: center;
	justify-content: center;
}
.extra-visual .ph-icon svg {
	width: 22px;
	height: 22px;
}

/* ────── Footer ────── */
.footer {
	background: var(--bg-soft);
	border-top: 1px solid var(--border);
	padding: 48px 0 32px;
}
.footer-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.footer-meta {
	font-size: 12.5px;
	color: var(--ink-500);
	line-height: 1.7;
}
.footer-meta strong {
	color: var(--ink-700);
	margin-right: 4px;
	font-weight: 700;
}
.footer-meta span {
	margin-right: 12px;
}
.footer-links {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
}
.footer-links a {
	color: var(--ink-600);
}
.footer-links a:hover {
	color: var(--ink-900);
}
.footer-copy {
	border-top: 1px solid var(--border);
	padding-top: 20px;
	font-size: 12px;
	color: var(--ink-500);
	text-align: center;
}

/* ────── Responsive ────── */

@media (max-width: 1024px) {
	.page-hero h1 {
		font-size: 44px;
	}
	.page-hero-grid,
	.feature-block {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.feature-block + .feature-block {
		margin-top: 80px;
	}
	.feature-block.flip {
		direction: ltr;
	}
	.extras-grid {
		grid-template-columns: 1fr;
	}
	.nav {
		display: none;
	}
	.menu-toggle {
		display: inline-flex;
	}
	.header-actions .btn-ghost {
		display: none;
	}
	.section-title {
		font-size: 32px;
	}
}
@media (max-width: 640px) {
	.header-inner {
		height: 72px;
	}
	.page-hero {
		padding: 40px 0 60px;
	}
	.page-hero h1 {
		font-size: 34px;
	}
	.section {
		padding: 64px 0;
	}
	.multibooth-grid {
		grid-template-columns: 1fr;
	}
	.header-actions .btn:not(.btn-primary):not(.theme-toggle) {
		display: none;
	}
}
/* Inline styles moved from new\page-price.html */
.price-hero {
	padding: 80px 0 40px;
}
.price-hero-inner {
	max-width: 760px;
}
.price-eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: var(--y-50);
	color: var(--y-700);
	font-weight: 700;
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: 0.02em;
}
.price-title {
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.15;
	margin: 18px 0 16px;
}
.price-lead {
	font-size: 19px;
	color: var(--ink-600);
	line-height: 1.6;
}
.price-plan-section {
	padding: 40px 0 100px;
}
.price-plan-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 980px;
	margin: 0 auto;
}
.price-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 40px;
}
.price-card-premium {
	background: #1c1d1f;
	color: #fff;
	position: relative;
}
html[data-theme="dark"] .price-card-premium {
	background: linear-gradient(145deg, #292414 0%, #1c1d1f 42%);
	border-color: rgba(255, 204, 0, 0.48);
	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.32),
		0 0 0 1px rgba(255, 204, 0, 0.08),
		0 0 32px rgba(255, 204, 0, 0.08);
}
.price-badge {
	position: absolute;
	top: -12px;
	right: 24px;
	background: var(--y-400);
	color: #1c1d1f;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}
.price-plan-name {
	font-size: 14px;
	color: var(--ink-500);
	font-weight: 700;
	letter-spacing: 0.04em;
}
.price-card-premium .price-plan-name {
	color: #fff;
	opacity: 0.7;
}
.price-amount {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 12px 0 4px;
}
.price-number {
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.price-unit {
	font-size: 20px;
	color: var(--ink-600);
	font-weight: 600;
}
.price-card-premium .price-unit {
	color: #fff;
	opacity: 0.7;
}
.price-caption {
	color: var(--ink-500);
	font-size: 14px;
	margin-bottom: 28px;
}
.price-card-premium .price-caption {
	color: #fff;
	opacity: 0.7;
}
.price-feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: grid;
	gap: 12px;
	font-size: 15px;
	color: var(--ink-700);
}
.price-card-premium .price-feature-list {
	color: #fff;
	opacity: 0.92;
}
.price-btn {
	display: block;
	text-align: center;
	padding: 14px;
	border-radius: 12px;
	font-weight: 700;
}
.price-btn-outline {
	border: 1.5px solid var(--ink-900);
	color: var(--ink-900);
}
.price-btn-primary {
	background: var(--y-400);
	color: #1c1d1f;
	font-weight: 800;
}
.price-table-section {
	padding: 80px 0;
	background: var(--bg-soft);
}
.price-table-wrap {
	max-width: 980px;
}
.price-table-title {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 8px;
}
.price-table-sub {
	color: var(--ink-600);
	margin: 0 0 28px;
}
.price-table-box {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	overflow: hidden;
}
.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}
.price-table-head {
	background: var(--ink-100);
}
.price-table th {
	padding: 16px 20px;
	font-weight: 700;
}
.price-table th:first-child {
	text-align: left;
}
.price-table th:not(:first-child) {
	text-align: right;
}
.price-table th:last-child {
	color: var(--y-700);
}
.price-table td {
	padding: 16px 20px;
	border-top: 1px solid var(--border);
}
.price-table td:first-child {
	font-weight: 600;
}
.price-table td:not(:first-child) {
	text-align: right;
	color: var(--ink-600);
}
.price-table td:last-child {
	font-weight: 700;
	color: var(--y-700);
}
.price-note {
	font-size: 13px;
	color: var(--ink-500);
	margin: 18px 0 0;
}
.inline-page-price-1 {
	padding: 80px 0 40px;
}
.inline-page-price-2 {
	max-width: 760px;
}
.inline-page-price-3 {
	display: inline-block;
	padding: 6px 14px;
	background: var(--y-50);
	color: var(--y-700);
	font-weight: 700;
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: 0.02em;
}
.inline-page-price-4 {
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.15;
	margin: 18px 0 16px;
}
.inline-page-price-5 {
	font-size: 19px;
	color: var(--ink-600);
	line-height: 1.6;
}
.inline-page-price-6 {
	padding: 40px 0 100px;
}
.inline-page-price-7 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 980px;
	margin: 0 auto;
}
.inline-page-price-8 {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 40px;
}
.inline-page-price-9 {
	font-size: 14px;
	color: var(--ink-500);
	font-weight: 700;
	letter-spacing: 0.04em;
}
.inline-page-price-10 {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 12px 0 4px;
}
.inline-page-price-11 {
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.inline-page-price-12 {
	font-size: 20px;
	color: var(--ink-600);
	font-weight: 600;
}
.inline-page-price-13 {
	color: var(--ink-500);
	font-size: 14px;
	margin-bottom: 28px;
}
.inline-page-price-14 {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: grid;
	gap: 12px;
	font-size: 15px;
	color: var(--ink-700);
}
.inline-page-price-15 {
	display: block;
	text-align: center;
	padding: 14px;
	border: 1.5px solid var(--ink-900);
	border-radius: 12px;
	font-weight: 700;
	color: var(--ink-900);
}
.inline-page-price-16 {
	background: #1c1d1f;
	color: #fff;
	border-radius: 24px;
	padding: 40px;
	position: relative;
}
html[data-theme="dark"] .inline-page-price-16 {
	background: linear-gradient(145deg, #292414 0%, #1c1d1f 42%);
	border: 1px solid rgba(255, 204, 0, 0.48);
	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.32),
		0 0 0 1px rgba(255, 204, 0, 0.08),
		0 0 32px rgba(255, 204, 0, 0.08);
}
.inline-page-price-17 {
	position: absolute;
	top: -12px;
	right: 24px;
	background: var(--y-400);
	color: #1c1d1f;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}
.inline-page-price-18 {
	font-size: 14px;
	opacity: 0.7;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.inline-page-price-19 {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 12px 0 4px;
}
.inline-page-price-20 {
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.inline-page-price-21 {
	font-size: 20px;
	opacity: 0.7;
	font-weight: 600;
}
.inline-page-price-22 {
	opacity: 0.7;
	font-size: 14px;
	margin-bottom: 28px;
}
.inline-page-price-23 {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: grid;
	gap: 12px;
	font-size: 15px;
	opacity: 0.92;
}
.inline-page-price-24 {
	display: block;
	text-align: center;
	padding: 14px;
	background: var(--y-400);
	color: #1c1d1f;
	border-radius: 12px;
	font-weight: 800;
}
.inline-page-price-25 {
	padding: 80px 0;
	background: var(--bg-soft);
}
.inline-page-price-26 {
	max-width: 980px;
}
.inline-page-price-27 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 8px;
}
.inline-page-price-28 {
	color: var(--ink-600);
	margin: 0 0 28px;
}
.inline-page-price-29 {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	overflow: hidden;
}
.inline-page-price-30 {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}
.inline-page-price-31 {
	background: var(--ink-100);
}
.inline-page-price-32 {
	text-align: left;
	padding: 16px 20px;
	font-weight: 700;
}
.inline-page-price-33 {
	text-align: right;
	padding: 16px 20px;
	font-weight: 700;
}
.inline-page-price-34 {
	text-align: right;
	padding: 16px 20px;
	font-weight: 700;
	color: var(--y-700);
}
.inline-page-price-35 {
	border-top: 1px solid var(--border);
}
.inline-page-price-36 {
	padding: 16px 20px;
	font-weight: 600;
}
.inline-page-price-37 {
	padding: 16px 20px;
	text-align: right;
	color: var(--ink-600);
}
.inline-page-price-38 {
	padding: 16px 20px;
	text-align: right;
	font-weight: 700;
	color: var(--y-700);
}
.inline-page-price-39 {
	border-top: 1px solid var(--border);
}
.inline-page-price-40 {
	padding: 16px 20px;
	font-weight: 600;
}
.inline-page-price-41 {
	padding: 16px 20px;
	text-align: right;
	color: var(--ink-600);
}
.inline-page-price-42 {
	padding: 16px 20px;
	text-align: right;
	font-weight: 700;
	color: var(--y-700);
}
.inline-page-price-43 {
	border-top: 1px solid var(--border);
}
.inline-page-price-44 {
	padding: 16px 20px;
	font-weight: 600;
}
.inline-page-price-45 {
	padding: 16px 20px;
	text-align: right;
	color: var(--ink-600);
}
.inline-page-price-46 {
	padding: 16px 20px;
	text-align: right;
	font-weight: 700;
	color: var(--y-700);
}
.inline-page-price-47 {
	border-top: 1px solid var(--border);
}
.inline-page-price-48 {
	padding: 16px 20px;
	font-weight: 600;
}
.inline-page-price-49 {
	padding: 16px 20px;
	text-align: right;
	color: var(--ink-600);
}
.inline-page-price-50 {
	padding: 16px 20px;
	text-align: right;
	font-weight: 700;
	color: var(--y-700);
}
.inline-page-price-51 {
	border-top: 1px solid var(--border);
}
.inline-page-price-52 {
	padding: 16px 20px;
	font-weight: 600;
}
.inline-page-price-53 {
	padding: 16px 20px;
	text-align: right;
	color: var(--ink-600);
}
.inline-page-price-54 {
	padding: 16px 20px;
	text-align: right;
	font-weight: 700;
	color: var(--y-700);
}
.inline-page-price-55 {
	border-top: 1px solid var(--border);
}
.inline-page-price-56 {
	padding: 16px 20px;
	font-weight: 600;
}
.inline-page-price-57 {
	padding: 16px 20px;
	text-align: right;
	color: var(--ink-600);
}
.inline-page-price-58 {
	padding: 16px 20px;
	text-align: right;
	font-weight: 700;
	color: var(--y-700);
}
.inline-page-price-59 {
	font-size: 13px;
	color: var(--ink-500);
	margin: 18px 0 0;
}

@media (max-width: 1024px) {
	.price-title {
		font-size: 44px;
	}
}

@media (max-width: 640px) {
	.price-hero {
		padding: 40px 0 32px;
	}
	.price-title {
		font-size: 34px;
	}
	.price-lead {
		font-size: 16px;
	}
	.price-plan-grid {
		grid-template-columns: 1fr;
	}
}
