/**
 * Post-Construction Cleaning page styles.
 * Comparison table/cards follow prototype interaction (table desktop, cards ≤760px).
 * Shared section primitives come from home.css / about.css.
 */

.page-hero__actions {
	margin-top: 22px;
}

.pcc-overview {
	max-width: 760px;
}

.pcc-overview h2 {
	margin-bottom: 10px;
}

.phase-card__desc {
	margin-bottom: 14px;
}

.content-note {
	display: inline-block;
	margin: 0 0 22px;
	padding: 10px 14px;
	max-width: 720px;
	font-size: 0.86rem;
	line-height: 1.45;
	color: var(--nc-navy);
	background: var(--nc-aqua-tint);
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius);
}

.cmp-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--nc-radius-lg);
	box-shadow: var(--nc-shadow-sm);
}

.cmp-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--nc-surface);
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius-lg);
	overflow: hidden;
}

.cmp-table th,
.cmp-table td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: 1px solid var(--nc-line);
	font-size: 0.92rem;
}

.cmp-table thead th {
	background: linear-gradient(160deg, var(--nc-navy-deep) 0%, var(--nc-navy) 100%);
	color: var(--nc-white);
	font-family: var(--nc-font-head);
	font-weight: 700;
	font-size: 0.86rem;
	letter-spacing: 0.01em;
}

.cmp-table tbody th {
	font-weight: 600;
	color: var(--nc-navy);
	text-align: left;
}

.cmp-table tbody tr:last-child th,
.cmp-table tbody tr:last-child td {
	border-bottom: none;
}

.cmp-table tbody tr:nth-child(odd) {
	background: rgba(243, 246, 248, 0.85);
}

.cmp-table tbody tr:hover th,
.cmp-table tbody tr:hover td {
	background: rgba(232, 245, 252, 0.65);
}

.cmp-table td:not(:first-child),
.cmp-table th:not(:first-child) {
	text-align: center;
}

.cmp-value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
	font-weight: 600;
	color: var(--nc-navy);
}

.cmp-value--yes {
	color: var(--nc-blue-dark);
}

.cmp-value--no {
	color: var(--nc-text-soft);
	opacity: 0.85;
}

.cmp-value--empty {
	font-weight: 500;
	color: var(--nc-text-soft);
}

.cmp-value__icon {
	width: 1.15em;
	height: 1.15em;
	display: block;
}

.cmp-proposed {
	color: var(--nc-aqua);
	font-weight: 700;
	font-size: 0.78em;
	line-height: 1;
}

.cmp-cards {
	display: none;
	flex-direction: column;
	gap: 14px;
}

.cmp-card {
	background: var(--nc-surface);
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius-lg);
	padding: 18px;
	box-shadow: 0 1px 0 rgba(11, 47, 85, 0.02);
}

.cmp-card h3 {
	font-size: 0.95rem;
	margin-bottom: 10px;
}

.cmp-card-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 8px 0;
	border-top: 1px solid var(--nc-line);
	font-size: 0.88rem;
}

.cmp-card-row:first-of-type {
	border-top: none;
}

.cmp-card-row > span:first-child {
	color: var(--nc-text-soft);
}

@media (max-width: 760px) {
	.cmp-table-wrap {
		display: none;
	}

	.cmp-cards {
		display: flex;
	}
}
