/**
 * Junk Removal page styles.
 * Tier cards and 4-step process follow prototype layout (stack ≤860px / ≤900px).
 * Shared section primitives come from home.css / about.css.
 */

.page-hero__actions {
	margin-top: 22px;
}

.section .ph--wide {
	margin-bottom: 44px;
}

.phase-row-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.tier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.tier-card {
	background: var(--nc-white);
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius-lg);
	padding: 26px;
}

.tier-scale {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	height: 22px;
	margin-bottom: 16px;
}

.tier-scale span {
	display: block;
	width: 8px;
	background: var(--nc-line-strong);
	border-radius: 1px;
}

.tier-scale span.is-filled {
	background: var(--nc-aqua);
}

.tier-card h3 {
	font-family: var(--nc-font-head);
	font-weight: 800;
	color: var(--nc-navy);
	font-size: 1.1rem;
	margin-bottom: 14px;
}

.tier-row {
	display: flex;
	gap: 14px;
	padding: 12px 0;
	border-top: 1px solid var(--nc-line);
	font-size: 0.88rem;
}

.tier-row:first-of-type {
	border-top: none;
}

.tier-row > span:first-child {
	flex-shrink: 0;
	width: 64px;
	color: var(--nc-text-soft);
	font-weight: 600;
}

.tier-row strong {
	color: var(--nc-text);
	font-weight: 500;
}

.junk-pricing-note {
	margin-top: 20px;
	color: var(--nc-text-soft);
	font-size: 0.88rem;
}

@media (max-width: 900px) {
	.phase-row-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.tier-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.phase-row-4 {
		grid-template-columns: 1fr;
	}
}
