.ph-cat-shell {
	--ph-cat-primary: var(--primary-color, #2f6f56);
	--ph-cat-action: #285f49;
	--ph-cat-action-hover: #204c3b;
	--ph-cat-ink: #1f2924;
	--ph-cat-text: #4f5c55;
	--ph-cat-muted: #6d7971;
	--ph-cat-surface: #fff;
	--ph-cat-surface-soft: #f3f7f4;
	--ph-cat-surface-warm: #f8f6f1;
	--ph-cat-border: #dfe7e1;
	--ph-cat-radius-card: 14px;
	--ph-cat-radius-button: 8px;
	--ph-cat-shadow: 0 8px 28px rgba(24, 55, 41, .07);
	color: var(--ph-cat-text);
	font-size: 16px;
	line-height: 1.62;
}

.ph-cat-shell,
.ph-cat-shell * {
	box-sizing: border-box;
}

.ph-cat-shell h1,
.ph-cat-shell h2,
.ph-cat-shell h3,
.ph-cat-shell p {
	margin-top: 0;
}

.ph-cat-shell h1,
.ph-cat-shell h2,
.ph-cat-shell h3 {
	color: var(--ph-cat-ink);
	font-family: inherit;
}

.ph-cat-shell h1 {
	margin-bottom: 18px;
	font-size: clamp(38px, 3.2vw, 42px);
	line-height: 1.15;
}

.ph-cat-shell h2 {
	margin-bottom: 14px;
	font-size: clamp(30px, 2.6vw, 34px);
	line-height: 1.25;
}

.ph-cat-shell h3 {
	margin-bottom: 8px;
	font-size: 19px;
	line-height: 1.35;
}

.ph-cat-shell p,
.ph-cat-shell li,
.ph-cat-shell td,
.ph-cat-shell th,
.ph-cat-shell label,
.ph-cat-shell legend {
	font-size: 16px;
}

.ph-cat-section {
	padding: 58px 28px;
}

.ph-cat-section + .ph-cat-section {
	border-top: 1px solid var(--ph-cat-border);
}

.ph-cat-section--soft {
	background: var(--ph-cat-surface-soft);
}

.ph-cat-section--warm {
	background: var(--ph-cat-surface-warm);
}

.ph-cat-eyebrow {
	margin-bottom: 10px;
	color: var(--ph-cat-action);
	font-size: 13px !important;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.ph-cat-lead {
	max-width: 780px;
	margin-bottom: 0;
	color: var(--ph-cat-text);
}

.ph-cat-heading {
	max-width: 820px;
	margin-bottom: 28px;
}

.ph-cat-heading--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.ph-cat-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.ph-cat-button,
.ph-cat-shell .ph-cat-button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 11px 18px;
	border: 1px solid var(--ph-cat-action);
	border-radius: var(--ph-cat-radius-button);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.ph-cat-button--primary,
.ph-cat-shell input.ph-cat-button--primary {
	background: var(--ph-cat-action);
	color: #fff;
}

.ph-cat-button--primary:hover,
.ph-cat-button--primary:focus-visible,
.ph-cat-shell input.ph-cat-button--primary:hover,
.ph-cat-shell input.ph-cat-button--primary:focus-visible {
	border-color: var(--ph-cat-action-hover);
	background: var(--ph-cat-action-hover);
	color: #fff;
}

.ph-cat-button--secondary {
	background: #fff;
	color: var(--ph-cat-action);
}

.ph-cat-button--secondary:hover,
.ph-cat-button--secondary:focus-visible {
	background: var(--ph-cat-surface-soft);
	color: var(--ph-cat-action-hover);
}

.ph-cat-shell a:focus-visible,
.ph-cat-shell button:focus-visible,
.ph-cat-shell input:focus-visible,
.ph-cat-shell select:focus-visible,
.ph-cat-shell textarea:focus-visible,
.ph-cat-shell summary:focus-visible {
	outline: 3px solid rgba(40, 95, 73, .28);
	outline-offset: 3px;
}

.ph-cat-hero {
	border: 1px solid var(--ph-cat-border);
	border-radius: var(--ph-cat-radius-card);
	background: var(--ph-cat-surface-warm);
	box-shadow: var(--ph-cat-shadow);
}

.ph-cat-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
	gap: 32px;
	align-items: stretch;
}

.ph-cat-hero__promise {
	margin: 22px 0 0;
	padding-top: 16px;
	border-top: 1px solid rgba(40, 95, 73, .15);
	color: var(--ph-cat-muted);
	font-size: 14px !important;
}

.ph-cat-decision-panel {
	padding: 24px;
	border-radius: var(--ph-cat-radius-card);
	background: var(--ph-cat-action);
	color: #fff;
}

.ph-cat-decision-panel h2 {
	color: #fff;
	font-size: 21px;
}

.ph-cat-decision-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ph-cat-decision-list li {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 12px;
	align-items: center;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, .16);
	color: rgba(255, 255, 255, .92);
}

.ph-cat-decision-list strong {
	color: #a9d0be;
	font-size: 25px;
	line-height: 1;
}

.ph-cat-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ph-cat-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ph-cat-card-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ph-cat-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 22px;
	border: 1px solid var(--ph-cat-border);
	border-radius: var(--ph-cat-radius-card);
	background: var(--ph-cat-surface);
	box-shadow: 0 4px 18px rgba(24, 55, 41, .045);
	color: var(--ph-cat-text);
	text-decoration: none;
}

a.ph-cat-card:hover,
a.ph-cat-card:focus-visible {
	border-color: rgba(40, 95, 73, .55);
	box-shadow: var(--ph-cat-shadow);
	color: var(--ph-cat-text);
}

.ph-cat-card__number {
	display: block;
	margin-bottom: 14px;
	color: var(--ph-cat-primary);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.ph-cat-card__link {
	display: inline-block;
	margin-top: auto;
	padding-top: 14px;
	color: var(--ph-cat-action);
	font-size: 14px;
	font-weight: 700;
}

.ph-cat-consult {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 32px;
	align-items: start;
	background: var(--ph-cat-action);
	color: rgba(255, 255, 255, .9);
	scroll-margin-top: 140px;
}

.ph-cat-consult h2,
.ph-cat-consult h3,
.ph-cat-consult .ph-cat-eyebrow,
.ph-cat-consult a:not(.ph-cat-button) {
	color: #fff;
}

.ph-cat-consult__benefits {
	margin: 22px 0;
	padding-left: 20px;
}

.ph-cat-consult__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ph-cat-consult__form {
	padding: 26px;
	border-radius: var(--ph-cat-radius-card);
	background: #fff;
	color: var(--ph-cat-text);
}

.ph-cat-consult__form h3 {
	font-size: 22px;
}

.ph-cat-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.ph-cat-field {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.ph-cat-field--full,
.ph-cat-form__submit {
	grid-column: 1 / -1;
}

.ph-cat-field label,
.ph-cat-field legend {
	display: block;
	margin-bottom: 7px;
	color: var(--ph-cat-ink);
	font-size: 14px;
	font-weight: 600;
}

.ph-cat-field__hint {
	color: var(--ph-cat-muted);
	font-weight: 400;
}

.ph-cat-form input:not([type="checkbox"]):not([type="submit"]),
.ph-cat-form select,
.ph-cat-form textarea {
	width: 100%;
	min-height: 46px;
	margin: 0;
	border: 1px solid var(--ph-cat-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
	font-size: 16px;
}

.ph-cat-form textarea {
	min-height: 108px;
	resize: vertical;
}

.ph-cat-form .wpcf7-list-item {
	display: inline-flex;
	margin: 0 14px 8px 0;
}

.ph-cat-form .wpcf7-list-item label {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	font-weight: 400;
}

.ph-cat-form__submit {
	margin-top: 6px;
}

.ph-cat-form__submit input {
	width: 100%;
	white-space: normal;
}

.ph-cat-form .wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #a02d2d;
	font-size: 14px;
}

.ph-cat-form .wpcf7-response-output {
	margin: 16px 0 0 !important;
	border-radius: 8px;
	font-size: 15px;
}

.ph-cat-table-wrap {
	position: relative;
	overflow-x: auto;
	border: 1px solid var(--ph-cat-border);
	border-radius: var(--ph-cat-radius-card);
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.ph-cat-table {
	width: 100%;
	min-width: 760px;
	margin: 0;
	border-collapse: collapse;
}

.ph-cat-table th,
.ph-cat-table td {
	padding: 15px;
	border: 0;
	border-bottom: 1px solid var(--ph-cat-border);
	text-align: left;
	vertical-align: top;
}

.ph-cat-table th {
	background: var(--ph-cat-surface-soft);
	color: var(--ph-cat-ink);
}

.ph-cat-table tbody tr:last-child td {
	border-bottom: 0;
}

.ph-cat-table-cue {
	display: none;
	margin: 0 0 8px;
	color: var(--ph-cat-muted);
	font-size: 14px !important;
}

.ph-cat-steps {
	counter-reset: ph-cat-step;
}

.ph-cat-steps .ph-cat-card {
	counter-increment: ph-cat-step;
}

.ph-cat-steps .ph-cat-card__number::before {
	content: counter(ph-cat-step, decimal-leading-zero);
}

.ph-cat-faq {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
}

.ph-cat-faq details {
	align-self: start;
	border: 1px solid var(--ph-cat-border);
	border-radius: 10px;
	background: #fff;
}

.ph-cat-faq summary {
	position: relative;
	padding: 17px 46px 17px 18px;
	color: var(--ph-cat-ink);
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.ph-cat-faq summary::-webkit-details-marker {
	display: none;
}

.ph-cat-faq summary::after {
	position: absolute;
	top: 16px;
	right: 18px;
	content: "+";
	color: var(--ph-cat-action);
	font-size: 24px;
	line-height: 1;
}

.ph-cat-faq details[open] summary::after {
	content: "−";
}

.ph-cat-faq__answer {
	padding: 0 18px 18px;
}

.ph-cat-faq__answer p:last-child {
	margin-bottom: 0;
}

.ph-cat-related-link {
	margin: 24px 0 0;
	text-align: center;
}

body.ph-cat-v2 .phadin-native-archive-block--top,
body.ph-cat-v2 .phadin-native-archive-block--bottom {
	margin: 0 0 28px;
}

body.ph-cat-v2 .phadin-native-archive-block--bottom {
	margin-top: 28px;
}

@media (max-width: 1024px) {
	.ph-cat-section {
		padding: 46px 22px;
	}

	.ph-cat-hero__grid,
	.ph-cat-consult {
		grid-template-columns: 1fr;
	}

	.ph-cat-card-grid--four,
	.ph-cat-card-grid--five {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 849px) {
	.ph-cat-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.ph-cat-faq {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 549px) {
	.ph-cat-shell {
		font-size: 16px;
	}

	.ph-cat-shell h1 {
		font-size: 30px;
	}

	.ph-cat-shell h2 {
		font-size: 25px;
	}

	.ph-cat-section {
		padding: 34px 16px;
	}

	.ph-cat-card-grid,
	.ph-cat-card-grid--four,
	.ph-cat-card-grid--five,
	.ph-cat-form__grid {
		grid-template-columns: 1fr;
	}

	.ph-cat-card {
		padding: 18px;
	}

	.ph-cat-button-row,
	.ph-cat-consult__contacts {
		flex-direction: column;
	}

	.ph-cat-button {
		width: 100%;
		min-height: 46px;
	}

	.ph-cat-consult__form {
		padding: 20px 16px;
	}

	.ph-cat-table-cue {
		display: block;
	}

	.ph-cat-shell a,
	.ph-cat-shell button,
	.ph-cat-shell input,
	.ph-cat-shell select,
	.ph-cat-shell textarea {
		-webkit-tap-highlight-color: rgba(40, 95, 73, .16);
	}
}

@media (hover: none) {
	a.ph-cat-card:hover {
		border-color: var(--ph-cat-border);
		box-shadow: 0 4px 18px rgba(24, 55, 41, .045);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ph-cat-shell *,
	.ph-cat-shell *::before,
	.ph-cat-shell *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
