/* WORKONITY storefront component system. Compatibility selectors retain cihrm prefixes. */
.cihrm-storefront-page {
	display: block;
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: clip;
}

.cihrm-storefront-page > * {
	max-width: none;
}

.cihrm-product,
.cihrm-pricing,
.cihrm-shop-hero,
.cihrm-checkout-hero,
.cihrm-order-plan,
.cihrm-order-complete,
.cihrm-block-checkout-mount {
	--cihrm-navy: #071a3d;
	--cihrm-blue: #155eef;
	--cihrm-blue-dark: #0e49c2;
	--cihrm-coral: #ff674d;
	--cihrm-green: #00a878;
	--cihrm-green-soft: #e8f9f3;
	--cihrm-ink: #172033;
	--cihrm-muted: #5e687b;
	--cihrm-line: #dce3ed;
	--cihrm-surface: #ffffff;
	--cihrm-soft: #f5f7fb;
	box-sizing: border-box;
	color: var(--cihrm-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cihrm-product *,
.cihrm-pricing *,
.cihrm-shop-hero *,
.cihrm-checkout-hero *,
.cihrm-order-plan *,
.cihrm-order-complete *,
.cihrm-block-checkout-mount * {
	box-sizing: border-box;
}

.cihrm-eyebrow {
	display: inline-flex;
	margin: 0 0 12px;
	color: var(--cihrm-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.cihrm-pricing {
	max-width: 1180px;
	margin: 36px auto;
	padding: 0 18px;
}

.cihrm-pricing-hero,
.cihrm-shop-hero {
	position: relative;
	overflow: hidden;
	margin-bottom: 28px;
	border: 1px solid #203153;
	border-radius: 28px;
	background:
		radial-gradient(circle at 88% 15%, rgba(21, 94, 239, .38), transparent 30%),
		radial-gradient(circle at 13% 95%, rgba(0, 168, 120, .13), transparent 28%),
		linear-gradient(135deg, #07162f 0%, #10264d 100%);
	box-shadow: 0 22px 60px rgba(15, 23, 42, .18);
	color: #fff;
	text-align: center;
}

.cihrm-pricing-hero {
	padding: clamp(34px, 7vw, 72px) clamp(22px, 6vw, 64px);
}

.cihrm-pricing-hero::after,
.cihrm-shop-hero::after {
	position: absolute;
	top: -90px;
	right: -80px;
	width: 240px;
	height: 240px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.cihrm-pricing-hero .cihrm-eyebrow,
.cihrm-shop-hero .cihrm-eyebrow {
	color: #8fb0ff;
}

.cihrm-pricing-hero h1,
.cihrm-shop-hero h1,
.cihrm-checkout-hero h1 {
	margin: 0;
	color: inherit;
	font-size: clamp(30px, 5vw, 52px);
	font-weight: 780;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.cihrm-pricing-hero > p,
.cihrm-shop-hero > p,
.cihrm-checkout-hero > p {
	max-width: 720px;
	margin: 17px auto 25px;
	color: #d5ddec;
	font-size: clamp(15px, 2vw, 18px);
	line-height: 1.65;
}

.cihrm-cycle-control {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 14px;
}

.cihrm-cycle-label {
	font-size: 13px;
	font-weight: 750;
}

.cihrm-pricing-hero .cihrm-cycle-label,
.cihrm-shop-hero .cihrm-cycle-label {
	color: #dce5f7;
}

.cihrm-cycle-switch {
	display: inline-grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	padding: 4px;
	border: 1px solid var(--cihrm-line);
	border-radius: 999px;
	background: var(--cihrm-soft);
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, .05);
}

.cihrm-cycle-switch button {
	min-width: 118px;
	min-height: 42px;
	margin: 0;
	padding: 9px 15px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	color: #4e5a70;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.2;
	transition: background-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.cihrm-cycle-switch button small {
	display: block;
	margin-top: 2px;
	color: inherit;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.cihrm-cycle-switch button[aria-pressed="true"] {
	background: var(--cihrm-blue);
	box-shadow: 0 5px 14px rgba(21, 94, 239, .3);
	color: #fff;
}

.cihrm-cycle-switch button:focus-visible,
.cihrm-plan-button:focus-visible {
	outline: 3px solid rgba(77, 128, 255, .45);
	outline-offset: 3px;
}

.cihrm-cycle-control.is-loading .cihrm-cycle-switch {
	opacity: .65;
	pointer-events: none;
}

.cihrm-cycle-feedback {
	width: 100%;
	min-height: 1px;
	color: #b42318;
	font-size: 13px;
	text-align: center;
}

.cihrm-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 20px;
}

.cihrm-plan-card {
	display: flex;
	position: relative;
	flex-direction: column;
	min-width: 0;
	padding: 28px;
	border: 1px solid var(--cihrm-line);
	border-radius: 24px;
	background: var(--cihrm-surface);
	box-shadow: 0 14px 40px rgba(15, 23, 42, .07);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cihrm-plan-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 52px rgba(15, 23, 42, .12);
}

.cihrm-plan-card.is-featured {
	border: 2px solid var(--cihrm-blue);
	box-shadow: 0 18px 55px rgba(21, 94, 239, .15);
}

.cihrm-plan-badge,
.cihrm-saving-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #e9efff;
	color: #1745c7;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .04em;
	line-height: 1.2;
	text-transform: uppercase;
}

.cihrm-saving-badge {
	margin-top: 9px;
	background: var(--cihrm-green-soft);
	color: #087443;
}

.cihrm-renewal-note {
	margin: 9px 0 0;
	color: var(--cihrm-muted);
	font-size: 12px;
	line-height: 1.5;
}

.cihrm-plan-card-head h2 {
	margin: 18px 0 9px;
	color: var(--cihrm-navy);
	font-size: 28px;
	font-weight: 780;
	letter-spacing: -.025em;
	line-height: 1.15;
}

.cihrm-plan-card-head p {
	min-height: 72px;
	margin: 0;
	color: var(--cihrm-muted);
	font-size: 15px;
	line-height: 1.58;
}

.cihrm-plan-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 7px;
	min-height: 75px;
	margin-top: 22px;
}

.cihrm-plan-price strong,
.cihrm-plan-price .woocommerce-Price-amount {
	color: var(--cihrm-navy);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1.1;
}

.cihrm-plan-price del .woocommerce-Price-amount {
	font-size: 17px;
}

.cihrm-plan-price span {
	color: var(--cihrm-muted);
	font-size: 14px;
}

.cihrm-plan-features {
	display: grid;
	gap: 12px;
	margin: 23px 0 28px;
	padding: 22px 0 0;
	border-top: 1px solid var(--cihrm-line);
	list-style: none;
}

.cihrm-plan-features li {
	position: relative;
	margin: 0;
	padding-left: 28px;
	color: #3f4a5f;
	font-size: 14px;
	line-height: 1.45;
}

.cihrm-plan-features li::before {
	position: absolute;
	top: 1px;
	left: 0;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--cihrm-green-soft);
	color: #087443;
	content: "\2713";
	font-size: 12px;
	font-weight: 900;
	line-height: 19px;
	text-align: center;
}

.cihrm-plan-card > [data-cihrm-cycle-panel]:last-child,
.cihrm-plan-card > .cihrm-plan-button {
	margin-top: auto;
}

.cihrm-plan-button {
	display: block;
	width: 100%;
	min-height: 50px;
	padding: 14px 18px;
	border: 1px solid var(--cihrm-blue);
	border-radius: 12px;
	background: var(--cihrm-blue);
	box-shadow: 0 10px 22px rgba(21, 94, 239, .18);
	color: #fff !important;
	font-size: 15px;
	font-weight: 780;
	line-height: 1.35;
	text-align: center;
	text-decoration: none !important;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.cihrm-plan-button:hover {
	border-color: var(--cihrm-blue-dark);
	background: var(--cihrm-blue-dark);
	color: #fff !important;
	transform: translateY(-1px);
}

.cihrm-plan-button.is-secondary {
	border-color: #ccd5e2;
	background: #fff;
	box-shadow: none;
	color: var(--cihrm-navy) !important;
}

.cihrm-plan-button.is-secondary:hover {
	border-color: #99a8bc;
	background: var(--cihrm-soft);
}

.cihrm-plan-button.is-disabled {
	border-color: #d8dee8;
	background: #edf0f5;
	box-shadow: none;
	color: #687386 !important;
}

.cihrm-pricing-footnote {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 24px auto 0;
	color: var(--cihrm-muted);
	font-size: 13px;
	text-align: center;
}

.cihrm-feature-comparison {
	margin-top: 34px;
	padding: clamp(24px, 5vw, 42px);
	border: 1px solid var(--cihrm-line);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(15, 23, 42, .065);
}

.cihrm-feature-comparison header {
	max-width: 760px;
	margin-bottom: 24px;
}

.cihrm-feature-comparison h2 {
	margin: 0;
	color: var(--cihrm-navy);
	font-size: clamp(25px, 4vw, 38px);
	letter-spacing: -.03em;
	line-height: 1.15;
}

.cihrm-feature-comparison header p {
	margin: 12px 0 0;
	color: var(--cihrm-muted);
	line-height: 1.6;
}

.cihrm-feature-table-wrap {
	width: 100%;
	overflow-x: auto;
	border: 1px solid var(--cihrm-line);
	border-radius: 16px;
}

.cihrm-feature-table {
	width: 100%;
	min-width: 650px;
	border-collapse: collapse;
}

.cihrm-feature-table th,
.cihrm-feature-table td {
	padding: 15px 17px;
	border-bottom: 1px solid #e8edf3;
	color: #3f4a5f;
	font-size: 13px;
	text-align: left;
	vertical-align: middle;
}

.cihrm-feature-table th {
	background: #f6f8fb;
	color: var(--cihrm-navy);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.cihrm-feature-table th:not(:first-child),
.cihrm-feature-table td:not(:first-child) {
	width: 150px;
	text-align: center;
}

.cihrm-feature-table tbody tr:last-child td {
	border-bottom: 0;
}

.cihrm-feature-table .is-included,
.cihrm-feature-table .is-locked {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 27px;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--cihrm-green-soft);
	color: #087443;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.cihrm-feature-table .is-locked {
	background: #e9efff;
	color: #1745c7;
}

.cihrm-shop-hero {
	clear: both;
	width: 100%;
	margin: 12px 0 30px;
	padding: clamp(28px, 5vw, 52px) clamp(20px, 5vw, 48px);
}

.cihrm-shop-hero h1 {
	font-size: clamp(28px, 4vw, 44px);
}

body:not(.cihrm-cycle-monthly) .products .cihrm-package-product.cihrm-cycle-monthly,
body.cihrm-cycle-monthly .products .cihrm-package-product.cihrm-cycle-yearly {
	display: none !important;
}

.woocommerce ul.products li.product.cihrm-package-product {
	overflow: hidden;
	padding: 24px !important;
	border: 1px solid #dce3ed;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
	transition: transform .2s ease, box-shadow .2s ease;
}

.woocommerce ul.products li.product.cihrm-package-product:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 44px rgba(15, 23, 42, .12);
}

.woocommerce ul.products li.product.cihrm-package-product .woocommerce-loop-product__title {
	color: var(--cihrm-navy);
	font-size: 20px;
	line-height: 1.3;
}

.woocommerce ul.products li.product.cihrm-package-product .price {
	color: var(--cihrm-navy);
	font-size: 24px;
	font-weight: 800;
}

.woocommerce ul.products li.product.cihrm-package-product .button {
	width: 100%;
	padding: 13px 18px;
	border-radius: 10px;
	background: var(--cihrm-blue);
	color: #fff;
	font-weight: 750;
	text-align: center;
}

.cihrm-checkout-hero {
	max-width: 1180px;
	margin: 20px auto 28px;
	padding: clamp(26px, 5vw, 48px);
	border-radius: 24px;
	background: linear-gradient(135deg, var(--cihrm-navy), #102b5d);
	box-shadow: 0 18px 48px rgba(15, 23, 42, .16);
	color: #fff;
	text-align: center;
}

.cihrm-checkout-hero h1 {
	font-size: clamp(27px, 4vw, 42px);
}

.cihrm-checkout-hero > p {
	margin-bottom: 24px;
}

.cihrm-order-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 680px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.cihrm-order-steps li {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	color: #aebbd1;
	font-size: 12px;
	font-weight: 700;
}

.cihrm-order-steps li:not(:last-child)::after {
	position: absolute;
	top: 15px;
	right: -16%;
	width: 32%;
	height: 1px;
	background: #50617d;
	content: "";
}

.cihrm-order-steps li span {
	display: inline-grid;
	width: 30px;
	height: 30px;
	border: 1px solid #50617d;
	border-radius: 50%;
	place-items: center;
}

.cihrm-order-steps li.is-complete,
.cihrm-order-steps li.is-active {
	color: #fff;
}

.cihrm-order-steps li.is-complete span {
	border-color: var(--cihrm-green);
	background: var(--cihrm-green);
}

.cihrm-order-steps li.is-active span {
	border-color: #7ea2ff;
	background: var(--cihrm-blue);
}

.cihrm-order-plan {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 24px;
	padding: 20px 22px;
	border: 1px solid #dce3ed;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.cihrm-order-plan-copy {
	display: grid;
	gap: 3px;
	min-width: 180px;
}

.cihrm-order-plan-copy .cihrm-eyebrow {
	margin-bottom: 2px;
}

.cihrm-order-plan-copy strong {
	color: var(--cihrm-navy);
	font-size: 21px;
	line-height: 1.25;
}

.cihrm-order-plan-copy > span:last-child {
	color: #5e687b;
	font-size: 14px;
}

.cihrm-order-plan-copy small {
	max-width: 420px;
	color: #667085;
	font-size: 11px;
	line-height: 1.45;
}

.cihrm-order-plan .cihrm-cycle-label {
	color: #39455a;
}

.woocommerce-checkout form.checkout .col2-set .col-1,
.woocommerce-checkout form.checkout .col2-set .col-2,
.woocommerce-checkout #order_review,
.woocommerce-cart .cart_totals {
	padding: clamp(18px, 3vw, 28px);
	border: 1px solid #dce3ed;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select {
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #cfd8e5;
	border-radius: 10px;
	background: #fff;
	color: #172033;
}

.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus,
.woocommerce-checkout form .form-row select:focus {
	border-color: #5078f7;
	box-shadow: 0 0 0 3px rgba(21, 94, 239, .13);
	outline: 0;
}

.woocommerce-checkout #payment,
.wc-block-checkout__payment-method .wc-block-components-radio-control {
	border: 1px solid #dce3ed;
	border-radius: 14px;
	background: #f7f9fc;
}

.woocommerce-checkout #place_order,
.wc-block-components-checkout-place-order-button {
	min-height: 52px;
	border-radius: 11px !important;
	background: var(--cihrm-blue) !important;
	color: #fff !important;
	font-weight: 800 !important;
}

.cihrm-block-checkout-mount {
	max-width: 1180px;
	margin: 20px auto;
}

.cihrm-block-checkout-mount .cihrm-checkout-hero {
	margin-top: 0;
}

.cihrm-product {
	width: min(1180px, calc(100% - 36px));
	margin: 28px auto 56px;
	overflow: clip;
}

.cihrm-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	align-items: center;
	gap: clamp(30px, 6vw, 72px);
	min-height: 600px;
	padding: clamp(38px, 7vw, 76px);
	border: 1px solid #203153;
	border-radius: 32px;
	background:
		radial-gradient(circle at 87% 12%, rgba(21, 94, 239, .34), transparent 31%),
		radial-gradient(circle at 8% 90%, rgba(0, 168, 120, .12), transparent 29%),
		linear-gradient(135deg, #07162f 0%, #10264d 100%);
	box-shadow: 0 26px 70px rgba(15, 23, 42, .2);
	color: #fff;
}

.cihrm-product-hero .cihrm-eyebrow,
.cihrm-product-cta .cihrm-eyebrow {
	color: #95b4ff;
}

.cihrm-product-hero h1 {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font-size: clamp(38px, 5.5vw, 66px);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: 1.02;
}

.cihrm-product-hero__content > p {
	max-width: 650px;
	margin: 22px 0 0;
	color: #d3deef;
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.7;
}

.cihrm-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.cihrm-primary-link,
.cihrm-secondary-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 20px;
	border: 1px solid var(--cihrm-blue);
	border-radius: 12px;
	background: var(--cihrm-blue);
	box-shadow: 0 12px 28px rgba(21, 94, 239, .25);
	color: #fff !important;
	font-size: 15px;
	font-weight: 780;
	line-height: 1.3;
	text-decoration: none !important;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.cihrm-primary-link:hover {
	border-color: #527cff;
	background: #527cff;
	transform: translateY(-1px);
}

.cihrm-secondary-link {
	border-color: rgba(255, 255, 255, .27);
	background: rgba(255, 255, 255, .07);
	box-shadow: none;
}

.cihrm-secondary-link:hover {
	border-color: rgba(255, 255, 255, .5);
	background: rgba(255, 255, 255, .13);
	transform: translateY(-1px);
}

.cihrm-product-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 28px 0 0;
	padding: 0;
	color: #b9c8de;
	font-size: 13px;
	list-style: none;
}

.cihrm-product-trust li {
	position: relative;
	margin: 0;
	padding-left: 20px;
}

.cihrm-product-trust li::before {
	position: absolute;
	top: 1px;
	left: 0;
	color: #54d296;
	content: "\2713";
	font-weight: 900;
}

.cihrm-product-hero__preview {
	min-width: 0;
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 25px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 30px 65px rgba(0, 0, 0, .24);
	color: var(--cihrm-ink);
	transform: rotate(1deg);
}

.cihrm-preview-top {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
}

.cihrm-preview-top > div {
	display: grid;
	min-width: 0;
}

.cihrm-preview-top strong,
.cihrm-preview-top small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cihrm-preview-top strong {
	color: var(--cihrm-navy);
	font-size: 15px;
}

.cihrm-preview-top small {
	color: var(--cihrm-muted);
	font-size: 11px;
}

.cihrm-preview-logo {
	display: grid;
	overflow: hidden;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: linear-gradient(135deg, var(--cihrm-blue), var(--cihrm-coral) 52%, var(--cihrm-green));
	color: #fff;
	font-weight: 850;
	place-items: center;
}

.cihrm-preview-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cihrm-preview-live {
	padding: 6px 9px;
	border-radius: 999px;
	background: var(--cihrm-green-soft);
	color: #087443;
	font-size: 10px;
	font-weight: 800;
}

.cihrm-preview-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 24px;
}

.cihrm-preview-stats div {
	display: grid;
	gap: 6px;
	min-width: 0;
	padding: 16px 13px;
	border: 1px solid var(--cihrm-line);
	border-radius: 14px;
	background: var(--cihrm-soft);
}

.cihrm-preview-stats small {
	overflow: hidden;
	color: var(--cihrm-muted);
	font-size: 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cihrm-preview-stats strong {
	color: var(--cihrm-navy);
	font-size: 22px;
}

.cihrm-preview-list {
	display: grid;
	gap: 11px;
	margin-top: 24px;
}

.cihrm-preview-list span {
	height: 46px;
	border: 1px solid var(--cihrm-line);
	border-radius: 12px;
	background:
		linear-gradient(90deg, #e3e8f0 0 35px, transparent 35px),
		linear-gradient(90deg, transparent 48px, #e7ebf2 48px 76%, transparent 76%);
}

.cihrm-product-section {
	padding: clamp(64px, 9vw, 104px) clamp(6px, 3vw, 28px) 0;
}

.cihrm-section-heading {
	max-width: 720px;
}

.cihrm-section-heading h2,
.cihrm-product-cta h2 {
	margin: 0;
	color: var(--cihrm-navy);
	font-size: clamp(29px, 4vw, 46px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.12;
}

.cihrm-section-heading > p {
	margin: 16px 0 0;
	color: var(--cihrm-muted);
	font-size: 16px;
	line-height: 1.65;
}

.cihrm-capability-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.cihrm-capability-grid article {
	min-width: 0;
	padding: 25px;
	border: 1px solid var(--cihrm-line);
	border-radius: 20px;
	background: var(--cihrm-surface);
	box-shadow: 0 12px 34px rgba(15, 23, 42, .055);
}

.cihrm-capability-grid article > span {
	color: var(--cihrm-blue);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
}

.cihrm-capability-grid h3 {
	margin: 18px 0 10px;
	color: var(--cihrm-navy);
	font-size: 19px;
	line-height: 1.25;
}

.cihrm-capability-grid p {
	margin: 0;
	color: var(--cihrm-muted);
	font-size: 14px;
	line-height: 1.6;
}

.cihrm-product-how {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
	gap: clamp(30px, 7vw, 90px);
	align-items: start;
}

.cihrm-product-how ol {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cihrm-product-how li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 15px;
	margin: 0;
	padding: 19px;
	border: 1px solid var(--cihrm-line);
	border-radius: 17px;
	background: var(--cihrm-soft);
}

.cihrm-product-how li > span {
	display: grid;
	width: 37px;
	height: 37px;
	border-radius: 11px;
	background: var(--cihrm-navy);
	color: #fff;
	font-size: 13px;
	font-weight: 850;
	place-items: center;
}

.cihrm-product-how strong {
	color: var(--cihrm-navy);
	font-size: 16px;
}

.cihrm-product-how p {
	margin: 5px 0 0;
	color: var(--cihrm-muted);
	font-size: 14px;
	line-height: 1.5;
}

.cihrm-product-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-top: clamp(64px, 9vw, 104px);
	padding: clamp(30px, 5vw, 52px);
	border-radius: 26px;
	background: linear-gradient(135deg, var(--cihrm-navy), #102b5d);
	box-shadow: 0 20px 52px rgba(15, 23, 42, .17);
	color: #fff;
}

.cihrm-product-cta > div {
	max-width: 760px;
}

.cihrm-product-cta h2 {
	color: #fff;
}

.cihrm-product-cta p {
	margin: 13px 0 0;
	color: #c7d3e5;
	line-height: 1.6;
}

.cihrm-product-cta .cihrm-primary-link {
	flex: 0 0 auto;
}

.cihrm-order-complete {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 20px;
	max-width: 900px;
	margin: 26px auto;
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid #bfe9d3;
	border-radius: 20px;
	background: #f0fbf5;
	box-shadow: 0 12px 35px rgba(15, 23, 42, .07);
}

.cihrm-order-complete__icon {
	display: grid;
	width: 48px;
	height: 48px;
	border-radius: 15px;
	background: var(--cihrm-green);
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	place-items: center;
}

.cihrm-order-complete h2 {
	margin: 0;
	color: var(--cihrm-navy);
	font-size: clamp(24px, 4vw, 34px);
	line-height: 1.2;
}

.cihrm-order-complete p {
	max-width: 680px;
	margin: 10px 0 19px;
	color: var(--cihrm-muted);
	line-height: 1.6;
}

@media (max-width: 920px) {
	.cihrm-product-hero,
	.cihrm-product-how {
		grid-template-columns: 1fr;
	}

	.cihrm-product-hero {
		min-height: 0;
	}

	.cihrm-product-hero__preview {
		width: min(100%, 620px);
		transform: none;
	}

	.cihrm-capability-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cihrm-pricing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cihrm-plan-free {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.cihrm-product {
		width: min(100% - 20px, 1180px);
		margin-top: 10px;
	}

	.cihrm-product-hero {
		gap: 30px;
		padding: 30px 20px;
		border-radius: 21px;
	}

	.cihrm-product-hero h1 {
		font-size: clamp(34px, 11vw, 48px);
	}

	.cihrm-product-actions,
	.cihrm-product-actions a {
		width: 100%;
	}

	.cihrm-product-trust {
		display: grid;
		gap: 9px;
	}

	.cihrm-product-hero__preview {
		padding: 16px;
		border-radius: 18px;
	}

	.cihrm-preview-live {
		display: none;
	}

	.cihrm-preview-top {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.cihrm-preview-stats {
		gap: 6px;
	}

	.cihrm-preview-stats div {
		padding: 12px 8px;
	}

	.cihrm-capability-grid {
		grid-template-columns: 1fr;
	}

	.cihrm-product-how {
		grid-template-columns: minmax(0, 1fr);
	}

	.cihrm-product-cta {
		align-items: stretch;
		flex-direction: column;
		padding: 28px 22px;
		border-radius: 21px;
	}

	.cihrm-product-cta .cihrm-primary-link {
		width: 100%;
	}

	.cihrm-order-complete {
		grid-template-columns: 1fr;
		margin-inline: 10px;
	}

	.cihrm-pricing {
		margin: 20px auto;
		padding: 0 10px;
	}

	.cihrm-pricing-hero,
	.cihrm-shop-hero,
	.cihrm-checkout-hero {
		border-radius: 19px;
	}

	.cihrm-pricing-grid {
		grid-template-columns: 1fr;
	}

	.cihrm-plan-free {
		grid-column: auto;
	}

	.cihrm-plan-card {
		padding: 22px;
	}

	.cihrm-feature-comparison {
		padding: 20px 14px;
		border-radius: 19px;
	}

	.cihrm-plan-card-head p {
		min-height: 0;
	}

	.cihrm-order-plan {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
		padding: 18px;
	}

	.cihrm-order-plan .cihrm-cycle-control {
		align-items: stretch;
		justify-content: flex-start;
	}

	.cihrm-cycle-switch {
		width: 100%;
	}

	.cihrm-cycle-switch button {
		min-width: 0;
	}

	.cihrm-order-steps li {
		flex-direction: column;
		gap: 5px;
		font-size: 10px;
		text-align: center;
	}

	.cihrm-order-steps li:not(:last-child)::after {
		top: 15px;
		right: -25%;
		width: 50%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cihrm-plan-card,
	.cihrm-plan-button,
	.cihrm-primary-link,
	.cihrm-secondary-link,
	.cihrm-cycle-switch button,
	.woocommerce ul.products li.product.cihrm-package-product {
		transition: none;
	}
}
