/* ── Pricing Section ──────────────────────────────────────── */

.pricing-section {
	background: #fff;
}

.pricing-section .section-header {
	margin-bottom: 40px;
}

/* ── Grid ────────────────────────────────────────────────── */

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

/* ── Card ────────────────────────────────────────────────── */

.pricing-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin-bottom: 8px;
}

.pricing-card-price {
	font-family: 'DM Sans', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--crimson, #B91C1C);
	line-height: 1.1;
	margin-bottom: 4px;
}

/* ── Price Tiers ─────────────────────────────────────────── */

.pricing-card-tiers {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 8px;
}

.pricing-tier {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-tier:last-child {
	border-bottom: none;
}

.pricing-tier-label {
	font-size: 14px;
	color: var(--gray-500, #6b7280);
}

.pricing-tier-price {
	font-family: 'DM Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--crimson, #B91C1C);
}

.pricing-card-note {
	font-size: 13px;
	color: var(--gray-500, #6b7280);
	font-style: italic;
	margin-bottom: 16px;
}

.pricing-card-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--gray-500, #6b7280);
	margin: 0;
	flex: 1;
	padding-bottom: 24px;
}

/* ── Card Button ─────────────────────────────────────────── */

.pricing-card-btn {
	display: block;
	text-align: center;
	padding: 14px;
	background: var(--ink, #0C1F3F);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card-btn:hover {
	background: #162d52;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(12, 31, 63, 0.3);
}

.pricing-card-btn:active {
	transform: translateY(0);
	box-shadow: none;
}

/* ── Terms ───────────────────────────────────────────────── */

.pricing-terms {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 32px;
}

.pricing-terms-heading {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin: 0 0 20px;
}

.pricing-terms-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pricing-terms-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray-500, #6b7280);
}

.pricing-terms-list li svg {
	flex-shrink: 0;
	margin-top: 2px;
}

/* ── Extras ──────────────────────────────────────────────── */

.pricing-extras {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 32px;
	margin-bottom: 24px;
}

.pricing-extras-heading {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin: 0 0 4px;
}

.pricing-extras-subtext {
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray-500, #6b7280);
	margin: 0 0 20px;
}

.pricing-extras-table {
	width: 100%;
	border-collapse: collapse;
}

.pricing-extras-table td {
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 14px;
	line-height: 1.5;
	vertical-align: baseline;
}

.pricing-extras-table tr:last-child td {
	border-bottom: none;
}

.pricing-extras-label {
	color: var(--ink, #0C1F3F);
	font-weight: 500;
}

.pricing-extras-price {
	text-align: right;
	white-space: nowrap;
	color: var(--ink, #0C1F3F);
	font-weight: 700;
}

.pricing-extras-unit {
	color: var(--gray-500, #6b7280);
	font-weight: 400;
}

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

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

	.pricing-extras,
	.pricing-terms {
		padding: 24px;
	}

	.pricing-extras-table,
	.pricing-extras-table tbody,
	.pricing-extras-table tr,
	.pricing-extras-table td {
		display: block;
		width: 100%;
	}

	.pricing-extras-table tr {
		padding: 14px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.pricing-extras-table tr:last-child {
		border-bottom: none;
	}

	.pricing-extras-table td {
		padding: 0;
		border-bottom: none;
	}

	.pricing-extras-label {
		margin-bottom: 4px;
	}

	.pricing-extras-price {
		text-align: left;
		white-space: normal;
	}
}
