/* =========================================================================
   Pricing / marketing pages — atmospheric hero, industries, industry detail.
   Calculator remains the hero centerpiece.
   ========================================================================= */

:root {
	--teal-light: #85C8CD;
}

/* ---- Section scaffolding ------------------------------------------------ */
.pc-section {
	padding: 96px 0;
	border-top: 1px solid var(--hairline);
	background: var(--bg);
}
.pc-section--tint { background: var(--bg-tint); }
.pc-section--dark {
	background: var(--bg-dark);
	border-top: none;
	color: var(--on-dark-body);
}
.pc-sechead { max-width: 680px; margin-bottom: 56px; }
.pc-sechead .uits-kicker { margin: 0 0 16px; }

.pc-h2 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.1;
	letter-spacing: var(--tracking-tight);
	color: var(--ink-strong);
	margin: 0 0 18px;
	text-wrap: balance;
}
.pc-h2--md { font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 0; }
.pc-h2--light { color: var(--on-dark); }

.pc-sechead__lede {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-muted);
	margin: 0;
	max-width: 560px;
}
.pc-sechead__lede--light { color: var(--on-dark-body); }

/* ---- Hero --------------------------------------------------------------- */
.pc-hero {
	position: relative;
	background: var(--bg);
	overflow: hidden;
}
.pc-hero__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-color: var(--bg);
	background-image:
		linear-gradient(115deg, rgba(247, 248, 249, 0.97) 0%, rgba(247, 248, 249, 0.88) 42%, rgba(38, 130, 137, 0.12) 100%),
		radial-gradient(ellipse 80% 60% at 100% 0%, rgba(47, 158, 166, 0.18), transparent 55%),
		var(--pc-hero-photo, none);
	background-size: auto, auto, cover;
	background-position: 0 0, 0 0, right center;
	background-repeat: no-repeat;
}
.pc-hero__atmosphere::after {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image:
		linear-gradient(rgba(42, 47, 51, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(42, 47, 51, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(90deg, transparent 0%, #000 55%, #000 100%);
}
.pc-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
	gap: 56px;
	align-items: center;
	padding-top: 64px;
	padding-bottom: 64px;
}
.pc-hero__copy .uits-kicker { margin-bottom: 18px; }
.pc-hero__calc {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.pc-brand-mark {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(22px, 2.4vw, 28px);
	letter-spacing: var(--tracking-tight);
	color: var(--ink-strong);
	margin: 0 0 18px;
}

.pc-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(36px, 4.4vw, 52px);
	line-height: 1.06;
	letter-spacing: var(--tracking-tight);
	color: var(--ink-strong);
	margin: 0 0 22px;
	text-wrap: balance;
}
.pc-lede {
	font-size: 17.5px;
	line-height: 1.65;
	color: var(--ink-muted);
	margin: 0 0 32px;
	max-width: 34em;
}

.pc-rates {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 32px;
	margin: 0;
	font-family: var(--font-mono);
	font-size: 13.5px;
	color: var(--ink-muted);
}
.pc-rate strong {
	font-weight: 600;
	font-size: 17px;
	color: var(--teal);
	margin-right: 6px;
}

/* Hero enter motion */
.pc-hero-enter {
	animation: pc-rise 700ms var(--ease-out) both;
}
.pc-hero-enter--delay {
	animation-delay: 120ms;
}
@keyframes pc-rise {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: none; }
}

/* ---- Calculator --------------------------------------------------------- */
.pc-calc {
	border: 1px solid var(--hairline);
	border-radius: var(--radius-md);
	background: var(--bg-paper);
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(42, 47, 51, 0.12);
}
.pc-calc__head {
	display: flex;
	align-items: center;
	padding: 12px 18px;
	background: var(--bg-paper);
	border-bottom: 1px solid var(--hairline);
}
.pc-calc__head-label {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-muted);
}
.pc-calc__head-hint { display: none; }
.pc-calc__rows { padding: 4px 18px; }

.pc-row-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 16px;
	border-bottom: 1px solid var(--hairline);
}
.pc-row-pair .pc-row {
	border-top: none;
	padding: 9px 0;
}
.pc-row-pair .pc-row + .pc-row {
	border-top: none;
	border-left: 1px solid var(--hairline);
	padding-left: 16px;
}

.pc-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 0;
}
.pc-row + .pc-row { border-top: 1px solid var(--hairline); }
.pc-row__label {
	font-weight: 600;
	font-size: 13.5px;
	color: var(--ink-strong);
	line-height: 1.2;
}
.pc-row__hint {
	font-size: 11px;
	color: var(--ink-subtle);
	margin-top: 1px;
	max-width: 20em;
	line-height: 1.3;
}

.pc-step {
	display: inline-flex;
	align-items: stretch;
	flex-shrink: 0;
	border: 1px solid var(--hairline-mid);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}
.pc-step__btn {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 0;
	background: #fff;
	color: var(--ink-muted);
	font-family: var(--font-mono);
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	transition: color 120ms ease, background 120ms ease;
}
.pc-step__btn:hover {
	border-color: transparent;
	color: var(--teal);
	background: var(--teal-wash);
}
.pc-step__num {
	width: 36px;
	height: 28px;
	text-align: center;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 14px;
	color: var(--ink-strong);
	font-variant-numeric: tabular-nums;
	border: none;
	border-left: 1px solid var(--hairline);
	border-right: 1px solid var(--hairline);
	border-radius: 0;
	background: #FAFBFC;
	padding: 0;
	appearance: textfield;
	-moz-appearance: textfield;
}
.pc-step__num::-webkit-outer-spin-button,
.pc-step__num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pc-step__num:hover { border-color: var(--hairline); }
.pc-step__num:focus {
	outline: none;
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--teal);
}

.pc-toggle {
	position: relative;
	width: 38px;
	height: 22px;
	flex-shrink: 0;
	border: none;
	border-radius: 999px;
	background: var(--hairline-mid);
	cursor: pointer;
	transition: background 140ms ease;
	padding: 0;
}
.pc-toggle__knob {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	transition: transform 140ms ease;
}
.pc-toggle.is-on { background: var(--teal); }
.pc-toggle.is-on .pc-toggle__knob { transform: translateX(16px); }

/* Expandable device panels (printers / network & phones) */
.pc-expand {
	margin: 0 -4px 2px;
	padding: 0 6px;
	background: var(--teal-wash);
	border-radius: 6px;
}
.pc-expand[hidden] { display: none; }
.pc-row--nested {
	padding: 7px 4px;
}
.pc-row--nested + .pc-row--nested {
	border-top: 1px solid rgba(38, 130, 137, 0.18);
}
.pc-row--nested .pc-row__label { font-size: 13px; }
.pc-row--nested .pc-row__hint { font-size: 10.5px; }

.pc-seg { display: flex; gap: 16px; flex-shrink: 0; }
.pc-seg__btn {
	border: none;
	background: none;
	padding: 2px 0;
	color: var(--ink-subtle);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 13.5px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: color 120ms ease, border-color 120ms ease;
}
.pc-seg__btn:hover { color: var(--ink); }
.pc-seg__btn.is-active {
	color: var(--ink-strong);
	border-bottom-color: var(--teal);
}

.pc-calc__summary {
	background: #F0F7F8;
	border-top: 1px solid var(--hairline);
	padding: 16px 18px 14px;
}
.pc-sum__top { display: contents; }
.pc-sum__label {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--ink-subtle);
}
.pc-sum__price { display: flex; align-items: baseline; gap: 5px; margin-top: 4px; }
.pc-sum__num {
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 36px;
	line-height: 1;
	color: var(--teal);
	font-variant-numeric: tabular-nums;
}
.pc-sum__per { font-family: var(--font-mono); font-size: 14px; color: var(--ink-subtle); }
.pc-sum__note {
	font-family: var(--font-mono);
	font-size: 11.5px;
	color: var(--ink-muted);
	margin-top: 6px;
	min-height: 0;
}
.pc-sum__lines {
	margin-top: 10px;
	padding-top: 8px;
	border-top: 1px solid rgba(38, 130, 137, 0.2);
}
.pc-line {
	display: flex;
	justify-content: space-between;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--ink-muted);
	padding: 2px 0;
	font-variant-numeric: tabular-nums;
}
.pc-sum__cta { margin-top: 12px; }
.pc-sum__cta .uits-btn {
	padding-top: 11px;
	padding-bottom: 11px;
	font-size: 14px;
}
.pc-sum__foot {
	margin-top: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--ink-subtle);
	text-align: center;
}
.pc-calc__disclaimer {
	margin: 10px 0 0;
	padding: 10px 0 0;
	border-top: 1px solid rgba(38, 130, 137, 0.2);
	font-size: 11.5px;
	line-height: 1.45;
	color: var(--ink-muted);
	text-align: left;
	max-width: none;
	background: transparent;
}

.pc-stats {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 56px;
	border-top: 1px solid var(--hairline);
	padding: 28px 0 36px;
}
.pc-stat { display: flex; flex-direction: column; gap: 2px; }
.pc-stat__num {
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 18px;
	color: var(--teal);
}
.pc-stat__label { font-size: 13px; color: var(--ink-muted); }

/* ---- Partners ----------------------------------------------------------- */
.pc-partners {
	padding: 56px 0;
	background: var(--bg-paper);
}
.pc-partners__head {
	max-width: 640px;
	margin-bottom: 36px;
}
.pc-partners__head .pc-h2 { margin-bottom: 0; }
.pc-partners__logos {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 20px 32px;
}
.pc-partners__logos li {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 8px;
	opacity: 0.88;
	transition: opacity 160ms ease;
}
.pc-partners__logos li:hover { opacity: 1; }
.pc-partners__logos img {
	display: block;
	width: 140px;
	height: 36px;
	object-fit: contain;
	object-position: center;
	filter: grayscale(1);
}

/* ---- Industries grid ---------------------------------------------------- */
.pc-industries {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}
.pc-industry {
	display: flex;
	flex-direction: column;
	color: inherit;
	background: var(--bg-paper);
	border-radius: var(--radius-md);
	overflow: hidden;
	isolation: isolate;
	transition: transform 220ms var(--ease-out);
}
.pc-industry:hover {
	color: inherit;
	transform: translateY(-4px);
}
.pc-industry__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--bg-tint) center / cover no-repeat;
	position: relative;
}
.pc-industry__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(42, 47, 51, 0.45) 100%);
	opacity: 0.85;
	transition: opacity 200ms ease;
}
.pc-industry:hover .pc-industry__media::after { opacity: 1; }
.pc-industry__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 18px 20px;
	border: 1px solid var(--hairline);
	border-top: none;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	flex: 1;
}
.pc-industry__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 17px;
	color: var(--ink-strong);
	letter-spacing: var(--tracking-tight);
}
.pc-industry__blurb {
	font-size: 14px;
	line-height: 1.5;
	color: var(--ink-muted);
}
.pc-industry__badge {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--teal);
	margin-top: 2px;
}
.pc-industry__more {
	margin-top: auto;
	padding-top: 10px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--teal);
}

/* ---- What's included ---------------------------------------------------- */
.pc-included__lists {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px 40px;
}
.pc-group {
	padding: 4px 0 4px 18px;
	border-left: 2px solid var(--teal);
}
.pc-group__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16px;
	color: var(--ink-strong);
	margin: 0 0 12px;
}
.pc-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pc-checklist li {
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--ink);
	padding: 4px 0;
}
.pc-checklist__mark { color: var(--teal); flex-shrink: 0; position: relative; top: 2px; }

/* ---- Rate sheet --------------------------------------------------------- */
.pc-ratesheet {
	border-top: 1px solid var(--hairline);
	background: var(--bg-paper);
	border-radius: var(--radius-md);
	padding: 0 28px;
	border: 1px solid var(--hairline);
}
.pc-rateline {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr) 190px;
	gap: 24px 48px;
	align-items: start;
	padding: 34px 0;
	border-bottom: 1px solid var(--hairline);
}
.pc-rateline:last-child { border-bottom: none; }
.pc-rateline__name {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 20px;
	color: var(--ink-strong);
	margin: 0 0 6px;
}
.pc-rateline__lede { font-size: 14.5px; color: var(--ink-muted); margin: 0; }
.pc-rateline__items li { font-size: 14.5px; padding: 3px 0; }
.pc-rateline__price { text-align: right; }
.pc-rateline__amt {
	display: block;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 30px;
	line-height: 1.1;
	color: var(--teal);
	font-variant-numeric: tabular-nums;
}
.pc-rateline__per {
	display: block;
	margin-top: 4px;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--ink-subtle);
}
.pc-rateline--addon {
	background: var(--teal-wash);
	margin: 0 -28px;
	padding: 30px 28px;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	border-bottom: none;
}
.pc-rateline__addonlabel {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--teal);
	margin: 0 0 6px;
}
.pc-rateline__addontext { font-size: 15px; line-height: 1.6; color: var(--ink-muted); margin: 0; }

.pc-pricing-note {
	margin: 28px 0 0;
	max-width: 720px;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--ink-muted);
	padding: 16px 18px;
	background: var(--bg-paper);
	border-left: 2px solid var(--teal);
}

/* ---- Emergency strip & emergency page ----------------------------------- */
.uits-btn--lg { height: 56px; padding: 0 30px; font-size: 17px; }

.pc-emergency {
	padding: 64px 0;
	background: var(--bg-paper);
}
.pc-emergency__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px 64px;
	align-items: center;
}
.pc-emergency__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 24px;
	letter-spacing: var(--tracking-tight);
	color: var(--ink-strong);
	margin: 0 0 12px;
}
.pc-emergency__rates {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	margin: 0 0 10px;
	font-family: var(--font-mono);
	font-size: 13.5px;
	color: var(--ink-muted);
}
.pc-emergency__rates strong {
	font-weight: 600;
	font-size: 16px;
	color: var(--teal);
}
.pc-emergency__honesty { font-size: 14px; color: var(--ink-muted); margin: 0; max-width: 46em; }
.pc-emergency__cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}
.pc-emergency__cta .uits-btn { height: 48px; padding: 0 24px; font-size: 15px; }
.pc-emergency__more { font-size: 14px; font-weight: 600; }

.em-hero {
	position: relative;
	padding: 88px 0 76px;
	background:
		radial-gradient(ellipse 70% 80% at 90% 20%, rgba(38, 130, 137, 0.14), transparent 55%),
		var(--bg);
}
.em-hero .pc-title { margin-bottom: 20px; }
.em-hero .pc-lede { margin-bottom: 30px; }
.em-honesty {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--ink-muted);
	margin: 14px 0 0;
	max-width: 46em;
}
.em-credit .pc-sechead { margin-bottom: 24px; }
.em-credit__text { font-size: 17px; line-height: 1.65; color: var(--ink-muted); margin: 0 0 18px; max-width: 620px; }
.em-credit__link { font-weight: 600; font-size: 15px; }
.em-cta__btn { margin-top: 26px; }
.em-cta__serving {
	margin: 16px 0 0;
	font-family: var(--font-mono);
	font-size: 12.5px;
	color: var(--on-dark-muted);
}

/* ---- Why us ------------------------------------------------------------- */
.pc-why {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 80px;
	align-items: start;
}
.pc-why__parent {
	margin: 28px 0 0;
	padding-top: 22px;
	border-top: 1px solid var(--hairline-dark);
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--on-dark-muted);
	max-width: 34em;
}
.pc-why__list {
	margin: 0;
	border-top: 1px solid var(--hairline-dark);
}
.pc-why__item { padding: 26px 0; border-bottom: 1px solid var(--hairline-dark); }
.pc-why__item dt {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 18px;
	color: var(--on-dark);
	margin-bottom: 6px;
}
.pc-why__item dd {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--on-dark-body);
}

/* ---- Terms -------------------------------------------------------------- */
.pc-terms {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 720px;
	border-top: 1px solid var(--hairline);
}
.pc-terms li {
	padding: 18px 0 18px 26px;
	border-bottom: 1px solid var(--hairline);
	font-size: 16.5px;
	line-height: 1.6;
	position: relative;
}
.pc-terms li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--teal);
	font-family: var(--font-mono);
}

/* ---- How it works ------------------------------------------------------- */
.pc-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px;
}
.pc-stepitem { display: flex; gap: 18px; align-items: baseline; }
.pc-stepitem__num {
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 15px;
	color: var(--teal);
	border: 1px solid var(--hairline-mid);
	border-radius: var(--radius-sm);
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	top: 4px;
	background: var(--bg-paper);
}
.pc-stepitem__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 17px;
	color: var(--ink-strong);
	margin: 0 0 6px;
}
.pc-stepitem p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }

/* ---- Service area ------------------------------------------------------- */
.pc-area__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 48px;
	align-items: end;
}
.pc-area__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
}
.pc-area__list li {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16px;
	color: var(--ink-strong);
	padding: 14px 0;
	border-bottom: 1px solid var(--hairline);
}

/* ---- Contact ------------------------------------------------------------ */
.pc-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 500px;
	gap: 72px;
	align-items: start;
}
.pc-contact__rows { margin: 40px 0 0; border-top: 1px solid var(--hairline-dark); }
.pc-contact__row {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 16px;
	padding: 15px 0;
	border-bottom: 1px solid var(--hairline-dark);
	align-items: baseline;
}
.pc-contact__row dt {
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--on-dark-muted);
}
.pc-contact__row dd { margin: 0; font-size: 15.5px; color: var(--on-dark); }
.pc-contact__link { color: var(--teal-light); text-decoration: underline; text-underline-offset: 3px; }
.pc-contact__link:hover { color: #fff; }
.pc-contact__link--mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.pc-quote {
	background: var(--bg-paper);
	border-radius: var(--radius-md);
	padding: 30px 32px 28px;
}
.pc-quote__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 20px;
	color: var(--ink-strong);
}
.pc-quote__hint { font-size: 13px; color: var(--ink-subtle); margin: 6px 0 20px; }
.pc-quote__error {
	background: var(--red-50);
	color: var(--red-500);
	font-size: 14px;
	border-radius: var(--radius-sm);
	padding: 10px 14px;
	margin: 0 0 18px;
}
.pc-hp { position: absolute; left: -9999px; top: -9999px; }

.pc-quote__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
}
.pc-field { display: flex; flex-direction: column; gap: 6px; }
.pc-field--stack { margin-top: 14px; }
.pc-field span {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink-muted);
}
.pc-field input,
.pc-field textarea {
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
	border: 1px solid var(--hairline-mid);
	border-radius: var(--radius-sm);
	padding: 11px 13px;
	background: #fff;
	transition: border-color 120ms ease, box-shadow 120ms ease;
}
.pc-field input::placeholder,
.pc-field textarea::placeholder { color: var(--ink-subtle); }
.pc-field input:focus,
.pc-field textarea:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 3px var(--focus-ring);
}
.pc-field textarea { resize: vertical; }

.pc-quote__attach {
	margin-top: 14px;
	padding: 12px 14px;
	background: var(--bg-tint);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}
.pc-quote__attach[hidden] { display: none; }
.pc-quote__attach-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.pc-quote__attach-label {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--teal);
}
.pc-quote__attach-text {
	font-family: var(--font-mono);
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--ink-muted);
}
.pc-quote__attach-edit {
	flex-shrink: 0;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 13px;
	color: var(--teal);
	border: 1px solid var(--teal);
	border-radius: var(--radius-sm);
	padding: 7px 12px;
	white-space: nowrap;
	transition: background 120ms ease, color 120ms ease;
}
.pc-quote__attach-edit:hover { background: var(--teal); color: #fff; }

.pc-quote__submit { margin-top: 20px; }
.pc-quote__foot {
	margin: 12px 0 0;
	font-family: var(--font-mono);
	font-size: 11.5px;
	color: var(--ink-subtle);
	text-align: center;
}
.pc-quote__disclaimer {
	margin: 14px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--ink-subtle);
	text-align: left;
}

.pc-quote__success { padding: 24px 4px; }
.pc-quote__thanks {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 22px;
	color: var(--ink-strong);
	margin-bottom: 8px;
}
.pc-quote__success p { margin: 0; font-size: 15px; color: var(--ink-muted); }

/* ---- Industry detail page ----------------------------------------------- */
.ind-stakes { max-width: 880px; }
.ind-stakes .pc-h2 { margin-bottom: 18px; }
.ind-stakes__text {
	font-size: 18px;
	line-height: 1.65;
	color: var(--ink);
	margin: 0 0 36px;
	max-width: 42em;
}
.ind-stakes__points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}
.ind-stakes__point {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 18px;
	border-top: 2px solid var(--teal);
}
.ind-stakes__point strong {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16px;
	color: var(--ink-strong);
	letter-spacing: var(--tracking-tight);
}
.ind-stakes__point span {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--ink-muted);
}

.ind-why {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 64px;
	align-items: start;
}
.ind-why__list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--hairline-dark);
}
.ind-why__list li {
	padding: 20px 0 20px 22px;
	border-bottom: 1px solid var(--hairline-dark);
	position: relative;
	font-size: 16px;
	line-height: 1.55;
	color: var(--on-dark-body);
}
.ind-why__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.45em;
	width: 8px;
	height: 2px;
	background: var(--teal-bright);
}

.ind-hero {
	position: relative;
	min-height: 58vh;
	display: flex;
	align-items: flex-end;
	padding: 120px 0 64px;
	background-color: var(--bg-dark);
	background-image:
		linear-gradient(180deg, rgba(34, 39, 43, 0.35) 0%, rgba(34, 39, 43, 0.82) 100%),
		var(--ind-hero-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--on-dark);
}
.ind-hero__veil { display: none; }
.ind-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.ind-hero__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(40px, 6vw, 64px);
	line-height: 1.05;
	letter-spacing: var(--tracking-tight);
	color: #fff;
	margin: 0 0 18px;
	text-wrap: balance;
}
.ind-hero__lede {
	font-size: 18px;
	line-height: 1.65;
	color: var(--on-dark-body);
	margin: 0 0 28px;
	max-width: 38em;
}
.ind-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 14px;
}
.ind-hero__actions .uits-btn { height: 48px; padding: 0 22px; font-size: 15px; }

.ind-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 64px;
}
.ind-list {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	border-top: 1px solid var(--hairline);
}
.ind-list li {
	padding: 16px 0 16px 22px;
	border-bottom: 1px solid var(--hairline);
	position: relative;
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink);
}
.ind-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.35em;
	width: 8px;
	height: 2px;
	background: var(--teal);
}
.ind-help { margin-top: 28px; }
.ind-compliance {
	margin: 22px 0 0;
	padding: 16px 18px;
	background: var(--teal-wash);
	border-left: 2px solid var(--teal);
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--ink-muted);
}

.ind-pricing .pc-sechead__lede { margin: 14px 0 22px; }
.ind-pricing__rates { margin: 0 0 28px; }
.ind-pricing .uits-btn { height: 48px; padding: 0 22px; }

.ind-others {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
}
.ind-other {
	display: block;
	color: inherit;
	transition: transform 200ms var(--ease-out);
}
.ind-other:hover { color: inherit; transform: translateY(-3px); }
.ind-other__media {
	display: block;
	aspect-ratio: 1;
	border-radius: var(--radius-sm);
	background: var(--bg-tint) center / cover no-repeat;
}
.ind-other__label {
	display: block;
	margin-top: 8px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
	color: var(--ink-strong);
}

.ind-cta__inner { max-width: 640px; }
.ind-cta .pc-sechead__lede { margin: 14px 0 26px; }
.ind-hub-hero { padding: 72px 0 48px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1100px) {
	.pc-industries { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ind-others { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
	.pc-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; padding-top: 56px; padding-bottom: 56px; }
	.pc-hero__atmosphere {
		background-image:
			linear-gradient(180deg, rgba(247, 248, 249, 0.94) 0%, rgba(247, 248, 249, 0.98) 70%),
			radial-gradient(ellipse 90% 50% at 50% 0%, rgba(47, 158, 166, 0.16), transparent 60%),
			var(--pc-hero-photo, none);
		background-position: 0 0, 0 0, center top;
	}
	.pc-calc { max-width: none; }
	.pc-hero__calc { max-width: 480px; }
	.pc-included__lists { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pc-why { grid-template-columns: minmax(0, 1fr); gap: 48px; }
	.pc-contact__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
	.pc-area__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
	.ind-split { grid-template-columns: minmax(0, 1fr); gap: 48px; }
	.ind-stakes__points { grid-template-columns: minmax(0, 1fr); gap: 22px; }
	.ind-why { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}

@media (max-width: 820px) {
	.pc-section { padding: 72px 0; }
	.pc-partners { padding: 48px 0; }
	.pc-row-pair {
		grid-template-columns: minmax(0, 1fr);
		border-bottom: none;
	}
	.pc-row-pair .pc-row + .pc-row {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid var(--hairline);
	}
	.pc-partners__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
	.pc-partners__logos li { flex: none; }
	.pc-rateline { grid-template-columns: minmax(0, 1fr); gap: 14px; }
	.pc-rateline__price { text-align: left; display: flex; align-items: baseline; gap: 10px; }
	.pc-rateline__per { margin-top: 0; }
	.pc-ratesheet { padding: 0 20px; }
	.pc-rateline--addon { margin: 0 -20px; padding: 26px 20px; }
	.pc-steps { grid-template-columns: minmax(0, 1fr); gap: 32px; }
	.pc-included__lists { grid-template-columns: minmax(0, 1fr); gap: 32px; }
	.pc-emergency__row { grid-template-columns: minmax(0, 1fr); gap: 22px; }
	.em-hero { padding: 60px 0 52px; }
	.ind-hero { min-height: 0; padding: 100px 0 48px; }
	.ind-others { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
	.pc-section { padding: 60px 0; }
	.pc-hero__grid { padding-top: 44px; padding-bottom: 44px; }
	.pc-calc__rows { padding: 4px 16px; }
	.pc-calc__summary { padding: 14px 16px 12px; }
	.pc-sum__num { font-size: 34px; }
	.pc-step__btn { width: 32px; height: 32px; }
	.pc-step__num { width: 38px; height: 32px; font-size: 14px; }
	.pc-stats { gap: 18px 36px; }
	.pc-rates { gap: 10px 18px; font-size: 12.5px; }
	.pc-rate strong { font-size: 15px; }
	.pc-quote { padding: 24px 20px 22px; }
	.pc-quote__grid { grid-template-columns: minmax(0, 1fr); }
	.pc-industries { grid-template-columns: minmax(0, 1fr); }
	.pc-area__list { grid-template-columns: minmax(0, 1fr); }
	.ind-others { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pc-partners__logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 16px;
	}
	.pc-partners__logos img {
		width: 120px;
		height: 32px;
	}
	.pc-calc__head-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.pc-hero-enter,
	.pc-hero-enter--delay {
		animation: none;
	}
}
