﻿.hw {
	--hw-bg: #f6f7f9;
	--hw-card: #ffffff;
	--hw-text: #111827;
	--hw-muted: #667085;
	--hw-border: #d9dee7;
	--hw-primary: #0f172a;
	--hw-positive: #047857;
	--hw-warning: #b45309;
	--hw-critical: #b91c1c;
	color: var(--hw-text);
	font-family: inherit;
}

.hw-ai-chat {
	--hw-chat-accent: #ff3f4b;
	--hw-chat-accent-dark: #d92332;
	--hw-chat-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
	bottom: 24px;
	opacity: 1;
	position: fixed;
	right: 24px;
	z-index: 99999;
}

.hw-ai-chat .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.hw-ai-chat-toggle {
	align-items: center;
	animation: hw-ai-chat-pulse 3.8s ease-in-out infinite;
	background: linear-gradient(135deg, var(--hw-chat-accent), var(--hw-chat-accent-dark));
	border: 0;
	border-radius: 50%;
	box-shadow: 0 14px 34px rgba(217, 35, 50, 0.32);
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font-size: 1.75rem;
	font-weight: 800;
	height: 60px;
	justify-content: center;
	line-height: 1;
	position: relative;
	transition: box-shadow 180ms ease, transform 180ms ease;
	width: 60px;
}

.hw-ai-chat-unread {
	background: #dc2626;
	border: 2px solid #ffffff;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.22);
	height: 14px;
	position: absolute;
	right: 8px;
	top: 8px;
	width: 14px;
}

.hw-ai-chat-unread[hidden] {
	display: none;
}

.hw-ai-chat.is-staff-support .hw-ai-chat-unread {
	align-items: center;
	background: #f97316;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	height: 22px;
	justify-content: center;
	min-width: 22px;
	padding: 0 7px;
	right: -4px;
	top: -4px;
	width: auto;
}

.hw-ai-chat.is-staff-support .hw-ai-chat-unread[hidden] {
	display: none;
}

.hw-ai-chat.is-staff-support.has-unread .hw-ai-chat-toggle::after {
	background: #ffffff;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
	color: #9a3412;
	content: "Klant heeft hulp nodig";
	font-size: 12px;
	font-weight: 900;
	line-height: 1.15;
	padding: 7px 10px;
	position: absolute;
	right: 66px;
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
}

.hw-ai-chat-toggle:hover,
.hw-ai-chat-toggle:focus {
	box-shadow: 0 18px 42px rgba(217, 35, 50, 0.4);
	outline: none;
	transform: translateY(-3px) scale(1.03);
}

.hw-ai-chat-panel {
	background: #ffffff;
	backdrop-filter: none;
	border: 1px solid rgba(217, 222, 231, 0.95);
	border-radius: 18px;
	bottom: 76px;
	box-shadow: var(--hw-chat-shadow);
	display: flex;
	flex-direction: column;
	max-height: min(620px, calc(100vh - 124px));
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	right: 0;
	transform: translateY(14px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	visibility: hidden;
	width: 400px;
	z-index: 99999;
}

.hw-ai-chat.is-open .hw-ai-chat-panel {
	background: #ffffff;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.hw-ai-chat-header {
	align-items: flex-start;
	background: #1f2433;
	color: #ffffff;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 18px 18px 16px;
}

.hw-ai-chat-header h2 {
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.2;
	margin: 0 0 5px;
}

.hw-ai-chat-header p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	line-height: 1.35;
	margin: 0;
}

.hw-ai-chat-close,
.hw-ai-chat-history-toggle,
.hw-ai-chat-send {
	align-items: center;
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}


.hw-ai-chat-header > div:first-child {
	min-width: 0;
}

.hw-ai-chat-header-actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.hw-ai-chat-history-toggle {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	color: #ffffff;
	flex: 0 0 44px;
	height: 44px;
	padding: 0;
	width: 44px;
}

.hw-ai-chat-history-toggle svg {
	display: block;
	fill: currentColor;
	height: 21px;
	width: 21px;
}

.hw-ai-chat-history-toggle .hw-ai-chat-icon-back,
.hw-ai-chat-history-toggle.is-active .hw-ai-chat-icon-history {
	display: none;
}

.hw-ai-chat-history-toggle.is-active .hw-ai-chat-icon-back {
	display: block;
}
.hw-ai-chat-history-toggle:hover,
.hw-ai-chat-history-toggle:focus,
.hw-ai-chat-history-toggle.is-active {
	background: rgba(255, 255, 255, 0.22);
	outline: none;
	transform: translateY(-1px);
}
.hw-ai-chat-close {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	color: #ffffff;
	flex: 0 0 44px;
	font-size: 1.45rem;
	font-weight: 600;
	height: 44px;
	line-height: 1;
	width: 44px;
}

.hw-ai-chat-close:hover,
.hw-ai-chat-close:focus {
	background: rgba(255, 255, 255, 0.2);
	outline: none;
	transform: rotate(4deg);
}

.hw-ai-chat-messages {
	background: #f8fafc;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 10px;
	min-height: 280px;
	overflow-y: auto;
	padding: 18px;
	scroll-behavior: smooth;
}

.hw-ai-chat-message {
	display: flex;
	width: 100%;
}

.hw-ai-chat-message-user {
	justify-content: flex-end;
}

.hw-ai-chat-message-bot {
	justify-content: flex-start;
}

.hw-ai-chat-bubble {
	border-radius: 18px;
	font-size: 0.92rem;
	line-height: 1.45;
	max-width: 84%;
	padding: 12px 14px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.hw-ai-chat-message-user .hw-ai-chat-bubble {
	background: var(--hw-chat-accent);
	border-bottom-right-radius: 5px;
	color: #ffffff;
}

.hw-ai-chat-message-bot .hw-ai-chat-bubble {
	background: #eef2f6;
	border: 1px solid #d9e0ea;
	border-bottom-left-radius: 5px;
	color: #172033;
}


.hw-ai-chat-history-toolbar {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #d9e0ea;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	gap: 12px;
	justify-content: space-between;
	padding: 12px;
}

.hw-ai-chat-history-toolbar strong {
	color: #172033;
	display: block;
	font-size: 0.94rem;
	line-height: 1.25;
}

.hw-ai-chat-history-actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.hw-ai-chat-history-action {
	background: #eef2f6;
	border: 1px solid #d9e0ea;
	border-radius: 999px;
	color: #172033;
	cursor: pointer;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.2;
	padding: 8px 10px;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hw-ai-chat-history-action-primary {
	background: var(--hw-chat-accent);
	border-color: var(--hw-chat-accent);
	color: #ffffff;
}

.hw-ai-chat-history-action:hover,
.hw-ai-chat-history-action:focus {
	border-color: var(--hw-chat-accent);
	outline: none;
	transform: translateY(-1px);
}

.hw-ai-chat-history-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hw-ai-chat-history-item {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #d9e0ea;
	border-radius: 12px;
	color: #172033;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	font: inherit;
	gap: 4px;
	padding: 12px;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 100%;
}

.hw-ai-chat-history-item strong {
	font-size: 0.9rem;
	line-height: 1.25;
}

.hw-ai-chat-history-item small {
	color: var(--hw-muted);
	font-size: 0.77rem;
	line-height: 1.25;
}

.hw-ai-chat-history-item em {
	background: #f97316;
	border-radius: 999px;
	color: #ffffff;
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
	padding: 4px 7px;
}

.hw-ai-chat-history-item:hover,
.hw-ai-chat-history-item:focus {
	border-color: var(--hw-chat-accent);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
	outline: none;
	transform: translateY(-1px);
}

.hw-ai-chat-history-item.is-active {
	border-color: var(--hw-chat-accent);
	box-shadow: inset 4px 0 0 var(--hw-chat-accent), 0 8px 20px rgba(15, 23, 42, 0.08);
}

.hw-ai-chat-history-empty {
	color: var(--hw-muted);
	font-size: 0.9rem;
	line-height: 1.4;
	margin: 0;
}

.hw-ai-chat.is-history-view .hw-ai-chat-messages,
.hw-ai-chat.is-history-detail .hw-ai-chat-messages {
	gap: 12px;
}
.hw-ai-chat-form[hidden] {
	display: none;
}

.hw-ai-chat-form {
	align-items: center;
	background: #ffffff;
	border-top: 1px solid var(--hw-border);
	display: flex;
	gap: 10px;
	padding: 12px;
}

.hw-ai-chat-form input {
	background: #f8fafc;
	border: 1px solid var(--hw-border);
	border-radius: 999px;
	color: var(--hw-text);
	flex: 1 1 auto;
	font: inherit;
	min-width: 0;
	padding: 12px 15px;
}

.hw-ai-chat-form input:focus {
	background: #ffffff;
	border-color: var(--hw-chat-accent);
	box-shadow: 0 0 0 3px rgba(255, 63, 75, 0.14);
	outline: none;
}

.hw-ai-chat-send {
	align-items: center;
	background: var(--hw-chat-accent);
	border: 0;
	border-radius: 50%;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 44px;
	height: 44px;
	justify-content: center;
	padding: 0;
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 44px;
}

.hw-ai-chat-send svg {
	display: block;
	fill: currentColor;
	height: 20px;
	width: 20px;
}

.hw-ai-chat-send:hover,
.hw-ai-chat-send:focus {
	background: var(--hw-chat-accent-dark);
	box-shadow: 0 10px 22px rgba(217, 35, 50, 0.28);
	outline: none;
	transform: scale(1.06);
}

.hw-ai-chat-send:active {
	transform: scale(0.94);
}

.hw-ai-chat-form.is-loading input,
.hw-ai-chat-form input:disabled {
	background: #eef2f6;
	color: #667085;
	cursor: wait;
}

.hw-ai-chat-form.is-loading .hw-ai-chat-send,
.hw-ai-chat-send:disabled {
	background: #f8a4aa;
	box-shadow: none;
	cursor: wait;
	transform: none;
}

.hw-ai-chat-form.is-loading .hw-ai-chat-send:hover,
.hw-ai-chat-form.is-loading .hw-ai-chat-send:focus,
.hw-ai-chat-send:disabled:hover,
.hw-ai-chat-send:disabled:focus {
	background: #f8a4aa;
	box-shadow: none;
	transform: none;
}

.hw-ai-chat-typing-row {
	min-height: 0;
}

.hw-ai-chat-typing {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-height: 44px;
	min-width: 76px;
	padding: 12px 16px;
}

.hw-ai-chat-typing-dots {
	align-items: center;
	display: inline-flex;
	gap: 6px;
	height: 16px;
}

.hw-ai-chat-typing-dots span {
	animation: hw-ai-chat-dot 1.05s cubic-bezier(0.4, 0, 0.2, 1) infinite;
	background: var(--hw-chat-accent);
	border-radius: 50%;
	display: block;
	height: 7px;
	opacity: 0.38;
	width: 7px;
}

.hw-ai-chat-typing-dots span:nth-child(2) {
	animation-delay: 0.15s;
}

.hw-ai-chat-typing-dots span:nth-child(3) {
	animation-delay: 0.3s;
}
@keyframes hw-ai-chat-pulse {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-2px);
	}
}

@keyframes hw-ai-chat-dot {
	0%,
	80%,
	100% {
		opacity: 0.35;
		transform: translateY(0);
	}

	40% {
		opacity: 1;
		transform: translateY(-4px);
	}
}

@media (max-width: 640px) {
	.hw-ai-chat {
		bottom: 16px;
		left: 14px;
		right: 14px;
	}

	.hw-ai-chat-toggle {
		height: 58px;
		margin-left: auto;
		width: 58px;
	}

	.hw-ai-chat-panel {
		bottom: 74px;
		max-height: calc(100vh - 106px);
		width: 100%;
	}

	.hw-ai-chat-messages {
		min-height: 260px;
	}
	.hw-ai-chat-header {
		gap: 10px;
		padding: 16px 14px 14px;
	}

	.hw-ai-chat-header-actions {
		gap: 6px;
	}

	.hw-ai-chat-close,
	.hw-ai-chat-history-toggle {
		flex-basis: 40px;
		height: 40px;
		width: 40px;
	}

	.hw-ai-chat-history-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.hw-ai-chat-history-actions {
		justify-content: flex-start;
	}
}

.hw-ai-chat.is-escalated .hw-ai-chat-header {
	background: #202432;
}

.hw-ai-chat.is-staff-support .hw-ai-chat-panel {
	height: min(680px, calc(100vh - 124px));
	max-height: min(680px, calc(100vh - 124px));
	width: 460px;
}

.hw-ai-chat.is-staff-support .hw-ai-chat-messages {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 12px;
	min-height: 0;
	overflow: hidden;
	padding: 14px;
}

.hw-ai-chat.is-staff-support .hw-ai-chat-panel,
.hw-ai-chat.is-staff-support .hw-ai-support-detail,
.hw-ai-chat.is-staff-support .hw-ai-support-body,
.hw-ai-chat.is-staff-support .hw-ai-support-chat-area {
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
}

.hw-ai-support-title,
.hw-ai-support-detail-header h3 {
	font-size: 16px;
	margin: 0;
}

.hw-ai-support-ticket-list {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 10px;
	min-height: 0;
	overflow-y: auto;
	padding-right: 2px;
}

.hw-ai-support-empty,
.hw-ai-support-meta,
.hw-ai-support-last {
	color: #667085;
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.hw-ai-support-meta,
.hw-ai-support-last {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 8px;
	padding: 10px 12px;
}

.hw-ai-support-info {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	gap: 12px;
	justify-content: space-between;
	min-height: 0;
	overflow: visible;
	padding: 12px;
}

.hw-ai-support-detail-header {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 0 0 auto;
	min-width: 0;
}

.hw-ai-support-detail-header h3 {
	text-align: center;
	overflow-wrap: anywhere;
}

.hw-ai-support-detail-header small {
	color: #667085;
	overflow-wrap: anywhere;
}

.hw-ai-support-actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 8px;
}

.hw-ai-support-actions .button {
	background: #ffffff;
	border: 1px solid #d9dee7;
	border-radius: 8px;
	color: #111827;
	cursor: pointer;
	font-weight: 800;
	min-height: 34px;
	padding: 7px 10px;
}

.hw-ai-support-actions .button-primary {
	background: #ff3f4b;
	border-color: #ff3f4b;
	color: #ffffff;
}

.hw-ai-support-actions .button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.hw-ai-support-splitter {
	align-items: center;
	background: #e5e7eb;
	border: 1px solid #d1d5db;
	border-left: 0;
	border-radius: 999px;
	border-right: 0;
	color: #475467;
	cursor: row-resize;
	display: flex;
	flex: 0 0 16px;
	justify-content: center;
	margin: 0;
	padding: 0;
	touch-action: none;
	transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
	width: 100%;
}

.hw-ai-support-splitter:hover,
.hw-ai-support-splitter:focus,
.hw-ai-support-detail.is-resizing .hw-ai-support-splitter {
	background: #d1d5db;
	border-color: #9ca3af;
	color: #111827;
	outline: none;
}

.hw-ai-support-splitter-grip {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	transform: rotate(0deg);
}

.hw-ai-support-resizing,
.hw-ai-support-resizing * {
	cursor: row-resize !important;
	user-select: none !important;
}

.hw-ai-chat.is-staff-support .hw-ai-support-thread {
	background: #ffffff;
	border: 1px solid #d9e2ee;
	border-radius: 10px;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 10px;
	min-height: 0;
	min-width: 0;
	overflow-y: auto;
	margin-bottom: 0;
	padding: 12px;
	scrollbar-gutter: stable;
}

.hw-ai-support-detail {
	--hw-ai-support-info-height: auto;
	--hw-ai-support-min-thread-height: 40px;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 12px;
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.hw-ai-chat.is-staff-support .hw-ai-chat-form {
	flex: 0 0 auto;
	margin-top: auto;
	position: relative;
	z-index: 2;
}

.hw-ai-chat.is-staff-support .hw-ai-chat-form[hidden] {
	display: none;
}

.hw-ai-chat.is-staff-support .hw-support-message {
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
	color: #111827;
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
	max-width: 88%;
	padding: 11px 13px;
}

.hw-ai-chat.is-staff-support .hw-support-message small {
	color: #475467;
	display: block;
	font-size: 11px;
	font-weight: 800;
	margin-bottom: 5px;
}

.hw-ai-chat.is-staff-support .hw-support-message p {
	color: #111827;
	margin: 0;
	overflow-wrap: anywhere;
	white-space: pre-wrap;
}

.hw-ai-chat.is-staff-support .hw-support-message-customer {
	align-self: flex-start;
	background: #ffffff;
	border-color: #cbd5e1;
}

.hw-ai-chat.is-staff-support .hw-support-message-staff {
	align-self: flex-end;
	background: #fff1f2;
	border-color: #fda4af;
}

.hw-ai-chat.is-staff-support .hw-support-message-system,
.hw-ai-chat.is-staff-support .hw-support-message-ai {
	align-self: center;
	background: #eef2ff;
	border-color: #c7d2fe;
	max-width: 94%;
}

@media (max-width: 640px) {
	.hw-ai-chat.is-staff-support .hw-ai-chat-panel {
		height: calc(100vh - 106px);
		max-height: calc(100vh - 106px);
		width: 100%;
	}

	.hw-ai-chat.is-staff-support .hw-ai-chat-messages {
		padding: 12px;
	}

	.hw-ai-support-info {
		align-items: stretch;
		flex: 0 0 auto;
		flex-direction: column;
		max-height: none;
		min-height: 0;
		overflow: visible;
	}

	.hw-ai-support-splitter {
		display: none;
	}

	.hw-ai-chat.is-staff-support.has-unread .hw-ai-chat-toggle::after {
		right: 64px;
		white-space: normal;
		width: 150px;
	}
}

.hw-support-admin {
	--hw-support-line: #dfe4ec;
	color: #0f172a;
	margin-top: 20px;
	max-width: 1480px;
}

.hw-support-admin-header,
.hw-support-list-card header,
.hw-support-detail-header,
.hw-support-detail-actions {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.hw-support-admin-header {
	background: #ffffff;
	border: 1px solid var(--hw-support-line);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
	margin-bottom: 20px;
	padding: 18px 20px;
}

.hw-support-admin-header h1 {
	color: #0f172a;
	font-size: 28px;
	margin: 0 0 6px;
}

.hw-support-admin-header p {
	color: #667085;
	margin: 0;
}

.hw-support-availability {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--hw-support-line);
	border-radius: 8px;
	display: flex;
	gap: 10px;
	padding: 10px 12px;
}

.hw-support-availability span {
	font-weight: 800;
}

.hw-support-availability select,
.hw-support-list-card select,
.hw-support-detail-actions select {
	border: 1px solid var(--hw-support-line);
	border-radius: 6px;
	min-height: 38px;
}

.hw-support-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 18px;
}

.hw-support-stats article,
.hw-support-staff-card,
.hw-support-list-card,
.hw-support-detail-card {
	background: #ffffff;
	border: 1px solid var(--hw-support-line);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.hw-support-stats article {
	align-items: flex-start;
	display: flex;
	flex: 1 1 190px;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	min-height: 84px;
	padding: 16px;
}

.hw-support-stats span {
	align-self: start;
	color: #667085;
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.35;
	margin: 0;
	text-transform: uppercase;
}

.hw-support-stats strong {
	align-self: end;
	color: #0f172a;
	display: block;
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	text-align: right;
	white-space: nowrap;
}

.hw-support-staff-card {
	margin-bottom: 18px;
	padding: 18px;
}

.hw-support-staff-card h2 {
	font-size: 17px;
	margin: 0 0 14px;
}

.hw-support-staff-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	overflow-x: auto;
}

.hw-support-staff {
	align-items: center;
	border-bottom: 1px solid #e5ebf3;
	display: flex;
	gap: 16px;
	min-width: 560px;
	padding: 12px 4px;
}

.hw-support-staff > strong {
	flex: 1.2 1 220px;
}

.hw-support-staff > span {
	flex: 0.6 1 130px;
}

.hw-support-staff > small {
	flex: 1 1 180px;
}

.hw-support-staff:first-child {
	border-top: 1px solid #e5ebf3;
}

.hw-support-staff-head {
	background: #f8fafc;
	color: #475467;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.hw-support-staff strong {
	min-width: 0;
	overflow-wrap: anywhere;
}

.hw-support-staff span {
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	padding: 6px 9px;
	width: fit-content;
}

.hw-support-staff-beschikbaar span {
	background: #ecfdf3;
	color: #047857;
}

.hw-support-staff-bezet span {
	background: #fffaeb;
	color: #b45309;
}

.hw-support-staff-afwezig span {
	background: #f2f4f7;
	color: #667085;
}

.hw-support-staff small {
	color: #667085;
	overflow-wrap: anywhere;
}

.hw-support-staff-head span {
	background: transparent;
	color: inherit;
	font-weight: inherit;
	padding: 0;
}

.hw-support-alerts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.hw-support-alert {
	background: #f8fafc;
	border: 1px solid var(--hw-support-line);
	border-radius: 999px;
	font-weight: 800;
	padding: 9px 12px;
}

.hw-support-alert-hoog {
	background: #fef3f2;
	border-color: #fecdca;
	color: #b91c1c;
}

.hw-support-layout {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.hw-support-list-card {
	flex: 0.9 1 320px;
}

.hw-support-detail-card {
	flex: 1.5 1 520px;
}

.hw-support-list-card,
.hw-support-detail-card {
	min-height: 540px;
	padding: 20px;
}

.hw-support-list-card header {
	border-bottom: 1px solid var(--hw-support-line);
	margin: -2px -2px 18px;
	padding: 0 0 16px;
}

.hw-support-list-card h2 {
	align-items: center;
	display: flex;
	font-size: 18px;
	gap: 10px;
	margin: 0;
}

.hw-support-list-card h2 span,
.hw-support-ticket em {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	justify-content: center;
	line-height: 1;
	padding: 6px 9px;
	text-align: center;
}

.hw-support-ticket em {
	padding: 5px 8px;
}

.hw-support-list-card h2 span {
	background: #fff1f2;
	color: #be123c;
}

.hw-support-ticket-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 0;
}

.hw-support-ticket {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	justify-content: space-between;
	padding: 14px;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hw-support-ticket > span {
	display: flex;
	flex: 1 1 220px;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.hw-support-ticket:hover,
.hw-support-ticket:focus {
	border-color: #cbd5e1;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	outline: none;
	transform: translateY(-1px);
}

.hw-support-ticket strong,
.hw-support-ticket small,
.hw-support-ticket p {
	display: block;
}

.hw-support-ticket small,
.hw-support-ticket p,
.hw-support-meta,
.hw-support-message small {
	color: #667085;
}

.hw-support-ticket p {
	flex: 1 0 100%;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hw-support-priority-laag {
	background: #eff8ff;
	color: #175cd3;
}

.hw-support-priority-middel {
	background: #fffaeb;
	color: #b45309;
}

.hw-support-priority-hoog {
	background: #fef3f2;
	color: #b91c1c;
}

.hw-support-detail-header {
	border-bottom: 1px solid var(--hw-support-line);
	margin: -2px -2px 16px;
	padding: 0 0 16px;
}

.hw-support-detail-header h2 {
	margin: 0 0 5px;
}

.hw-support-detail-header p {
	color: #667085;
	margin: 0;
}

.hw-support-meta {
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 8px;
	line-height: 1.5;
	margin-bottom: 16px;
	overflow-wrap: anywhere;
	padding: 12px 14px;
}

.hw-support-thread {
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 330px;
	margin-bottom: 14px;
	overflow-y: auto;
	padding: 14px;
}

.hw-support-message {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 8px;
	max-width: 82%;
	padding: 10px 12px;
}

.hw-support-message-customer {
	align-self: flex-start;
}

.hw-support-message-staff {
	align-self: flex-end;
	background: #fff1f2;
	border-color: #fecdd3;
}

.hw-support-message-system {
	align-self: center;
	background: #eef2ff;
}

.hw-support-message p {
	margin: 5px 0 0;
	white-space: pre-wrap;
}

.hw-support-reply {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hw-support-reply textarea {
	border: 1px solid var(--hw-support-line);
	border-radius: 8px;
	padding: 10px 12px;
	width: 100%;
}

.hw-support-toast {
	background: #0f172a;
	border-radius: 999px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
	color: #ffffff;
	font-weight: 900;
	opacity: 0;
	padding: 11px 15px;
	pointer-events: none;
	position: fixed;
	right: 28px;
	top: 58px;
	transform: translateY(-8px);
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 100000;
}

.hw-support-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1100px) {
	.hw-support-layout {
		flex-direction: column;
	}

	.hw-support-admin-header,
	.hw-support-list-card header,
	.hw-support-detail-header {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 782px) {
	.hw-support-admin-header {
		padding: 16px;
	}

	.hw-support-availability {
		align-items: stretch;
		flex-direction: column;
	}

	.hw-support-stats article {
		flex-basis: 100%;
		min-height: 0;
	}

	.hw-support-list-card,
	.hw-support-detail-card {
		min-height: auto;
		padding: 16px;
	}

	.hw-support-ticket {
		flex-direction: column;
	}

	.hw-support-ticket em {
		width: fit-content;
	}

	.hw-support-detail-actions {
		align-items: stretch;
	}
}

.hw *,
.hw *::before,
.hw *::after {
	box-sizing: border-box;
}

.hw-panel,
.hw-dashboard {
	background: var(--hw-bg);
	border: 1px solid var(--hw-border);
	border-radius: 8px;
	padding: 24px;
}

.hw h2,
.hw h3 {
	margin: 0 0 14px;
	color: var(--hw-primary);
	line-height: 1.2;
}

.hw-header,
.hw-card-heading {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 18px;
}

.hw-muted {
	color: var(--hw-muted);
	font-size: 0.94rem;
	margin: 0 0 14px;
}

.hw-flex,
.hw-card-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hw-flex-2 > * {
	flex: 1 1 calc(50% - 8px);
	min-width: 260px;
}

.hw-flex-3 > * {
	flex: 1 1 calc(33.333% - 11px);
	min-width: 220px;
}

.hw-card-flex {
	margin-bottom: 16px;
}

.hw-card-flex > * {
	flex: 1 1 calc(25% - 12px);
	min-width: 190px;
}

.hw-card {
	background: var(--hw-card);
	border: 1px solid var(--hw-border);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
	padding: 22px;
}

.hw-kpi span {
	color: var(--hw-muted);
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
}

.hw-kpi strong {
	display: block;
	font-size: clamp(1.55rem, 2vw, 2.25rem);
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.hw-kpi-positive strong,
.hw-positive-text {
	color: var(--hw-positive);
}

.hw-kpi-negative strong {
	color: var(--hw-critical);
}

.hw-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hw-weekly-fields fieldset {
	border: 0;
	margin: 0;
	min-width: 0;
	padding: 0;
}

.hw-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.hw-field span,
.hw-checkbox span {
	font-weight: 700;
}

.hw-field input,
.hw-field select,
.hw-field textarea {
	background: #ffffff;
	border: 1px solid var(--hw-border);
	border-radius: 6px;
	color: var(--hw-text);
	font: inherit;
	min-height: 44px;
	padding: 10px 12px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.hw-field input[readonly] {
	background: #f8fafc;
	color: #667085;
	cursor: default;
}

.hw-field select:hover,
.hw-field select:focus {
	background: #f8fbff;
	border-color: #cbd8ea;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
	outline: none;
}

.hw-checkbox {
	align-items: flex-start;
	display: flex;
	gap: 10px;
}

.hw-checkbox input {
	margin-top: 4px;
}

.hw-button {
	align-items: center;
	background: var(--hw-primary);
	border: 1px solid var(--hw-primary);
	border-radius: 6px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	width: fit-content;
}

.hw-button:hover,
.hw-button:focus {
	background: #111827;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
	color: #ffffff;
	transform: translateY(-1px);
}

.hw-button-secondary {
	background: #ffffff;
	color: var(--hw-primary);
}

.hw-notice {
	border-radius: 8px;
	margin: 0 0 16px;
	padding: 12px 14px;
}

.hw-notice-success {
	background: #ecfdf3;
	border: 1px solid #abefc6;
	color: #067647;
}

.hw-notice-warning {
	background: #fffaeb;
	border: 1px solid #fedf89;
	color: #93370d;
}

.hw-notice-error {
	background: #fef3f2;
	border: 1px solid #fecdca;
	color: var(--hw-critical);
}

.hw-error {
	color: var(--hw-critical);
	font-weight: 700;
}

.hw-list,
.hw-alert-list,
.hw-advice-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hw-list li {
	align-items: center;
	border-bottom: 1px solid var(--hw-border);
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 10px 0;
}

.hw-list li:last-child {
	border-bottom: 0;
}

.hw-list small {
	color: var(--hw-muted);
	display: block;
}

.hw-alert {
	border-radius: 6px;
	margin-bottom: 8px;
	padding: 10px 12px;
}

.hw-alert-warning {
	background: #fffaeb;
	color: var(--hw-warning);
}

.hw-alert-critical {
	background: #fef3f2;
	color: var(--hw-critical);
	font-weight: 700;
}

.hw-priority {
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 700;
	padding: 4px 9px;
}

.hw-priority-laag {
	background: #eff8ff;
	color: #175cd3;
}

.hw-priority-middel {
	background: #fffaeb;
	color: var(--hw-warning);
}

.hw-priority-hoog {
	background: #fef3f2;
	color: var(--hw-critical);
}

.hw-meta-block {
	background: #f9fafb;
	border: 1px solid var(--hw-border);
	border-radius: 6px;
	margin-top: 12px;
	padding: 12px;
}

.hw-meta-block strong,
.hw-meta-block span {
	display: block;
}

.hw-meta-block strong {
	margin-bottom: 4px;
}

.hw-table {
	border-collapse: collapse;
	width: 100%;
}

.hw-table th,
.hw-table td {
	border-bottom: 1px solid var(--hw-border);
	padding: 10px 8px;
	text-align: left;
	vertical-align: top;
}

.hw-table th {
	color: var(--hw-muted);
	font-size: 0.9rem;
}

.hw-analysis-row {
	border-top: 1px solid var(--hw-border);
	padding-top: 12px;
}

.hw-analysis-row p {
	margin-top: 6px;
}

.hw-detail {
	margin-bottom: 16px;
}

.hw-auth-page {
	align-items: center;
	background: #f4f6fb;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
	overflow-x: hidden;
	padding: 48px 18px;
	width: 100vw;
}

.hw-auth-card {
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 12px;
	box-shadow: 0 18px 45px rgba(16, 24, 39, 0.08);
	max-width: 440px;
	padding: 32px;
	width: 100%;
}

.hw-auth-card-wide {
	max-width: 760px;
}

.hw-auth-brand {
	margin-bottom: 24px;
}

.hw-auth-brand h1 {
	color: #030b18;
	font-size: 28px;
	line-height: 1.15;
	margin: 0 0 8px;
}

.hw-auth-brand p,
.hw-auth-switch {
	color: #5f6d85;
	font-size: 14px;
	margin: 0;
}

.hw-auth-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hw-auth-form-columns {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 18px 20px;
}

.hw-auth-form-columns .hw-field {
	flex: 1 1 calc(50% - 10px);
	min-width: 250px;
}

.hw-kvk-status {
	color: #5f6d85;
	font-size: 12px;
	font-weight: 700;
	min-height: 16px;
}

.hw-kvk-status:empty {
	display: none;
}

.hw-kvk-status[data-state="success"] {
	color: #067647;
}

.hw-kvk-status[data-state="error"] {
	color: #b91c1c;
}

.hw-password-input-wrap {
	display: flex;
	font-weight: inherit;
	position: relative;
	width: 100%;
}

.hw-field .hw-password-input-wrap input {
	padding-right: 48px;
}

.hw-password-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: #5f6d85;
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 44px;
}

.hw-password-toggle:hover,
.hw-password-toggle:focus {
	color: #ff3f4b;
	outline: none;
}

.hw-password-toggle:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(255, 63, 75, 0.28);
	border-radius: 6px;
}

.hw-password-icon-eye {
	border: 2px solid currentColor;
	border-radius: 70% 15%;
	display: inline-flex;
	height: 15px;
	position: relative;
	transform: rotate(45deg);
	width: 15px;
}

.hw-password-icon-eye::before {
	background: currentColor;
	border-radius: 50%;
	content: "";
	height: 5px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 5px;
}

.hw-password-icon-eye::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	display: none;
	height: 2px;
	left: -5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	width: 25px;
}

.hw-password-toggle[aria-pressed="true"] .hw-password-icon-eye::after {
	display: block;
}

.hw-password-generate {
	align-self: flex-start;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	color: #111827;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	margin-top: 8px;
	padding: 9px 12px;
}

.hw-password-generate:hover,
.hw-password-generate:focus {
	border-color: #ff3f4b;
	color: #ff3f4b;
	outline: none;
}

.hw-password-generate:focus-visible {
	box-shadow: 0 0 0 3px rgba(255, 63, 75, 0.18);
}

.hw-password-panel {
	background: #f8fafc;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	padding: 12px;
}

.hw-password-criteria {
	display: flex;
	flex-direction: column;
	gap: 7px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hw-password-criteria li {
	align-items: center;
	color: #8a1f1f;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	line-height: 1.35;
}

.hw-password-criteria li[data-valid="true"] {
	color: #067647;
}

.hw-password-icon {
	align-items: center;
	background: #fef3f2;
	border: 1px solid #fecdca;
	border-radius: 999px;
	color: #b91c1c;
	display: inline-flex;
	flex: 0 0 18px;
	font-size: 12px;
	font-weight: 900;
	height: 18px;
	justify-content: center;
	line-height: 1;
	width: 18px;
}

.hw-password-icon::before {
	content: "\00d7";
}

.hw-password-criteria li[data-valid="true"] .hw-password-icon {
	background: #ecfdf3;
	border-color: #abefc6;
	color: #067647;
}

.hw-password-criteria li[data-valid="true"] .hw-password-icon::before {
	content: "\2713";
}

.hw-password-strength {
	align-items: center;
	border-top: 1px solid #dfe4ec;
	color: #5f6d85;
	display: flex;
	font-size: 13px;
	gap: 10px;
	justify-content: space-between;
	margin-top: 10px;
	padding-top: 10px;
}

.hw-password-strength span {
	font-weight: 700;
}

.hw-password-strength strong {
	border-radius: 999px;
	background: #fef3f2;
	color: #b91c1c;
	font-size: 12px;
	padding: 4px 9px;
}

.hw-password-strength[data-strength="medium"] strong {
	background: #fffaeb;
	color: #93370d;
}

.hw-password-strength[data-strength="strong"] strong {
	background: #ecfdf3;
	color: #067647;
}

.hw-auth-full {
	flex: 1 1 100%;
}

.hw-auth-switch {
	margin-top: 10px;
}

.hw-auth-forgot {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
	margin: -4px 0 0;
}

.hw-auth-forgot a {
	color: #ff3f4b;
	text-decoration: none;
}

.hw-auth-forgot a:hover,
.hw-auth-forgot a:focus {
	color: #d92332;
}

.hw-password-reset-page .hw-auth-card {
	max-width: 500px;
}

.hw-password-reset-page .hw-password-panel {
	margin-top: 10px;
}
.hw-auth-switch a {
	color: #ff3f4b;
	font-weight: 800;
	text-decoration: none;
}

.hw-auth-page .hw-red-button {
	background: #ff3f4b;
	border-color: #ff3f4b;
	box-shadow: 0 12px 28px rgba(255, 63, 75, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hw-auth-page .hw-red-button:hover,
.hw-auth-page .hw-red-button:focus {
	background: #d92332;
	border-color: #d92332;
	box-shadow: 0 16px 34px rgba(255, 63, 75, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hw-auth-switch a {
	color: #ff3f4b;
}

.hw-auth-switch a:hover,
.hw-auth-switch a:focus {
	color: #d92332;
}

html:has(.hw-auth-page),
body:has(.hw-auth-page) {
	overflow-x: hidden;
}

@media (max-width: 900px) {
	.hw-flex-2,
	.hw-flex-3,
	.hw-card-flex {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.hw-panel,
	.hw-dashboard {
		padding: 16px;
	}

	.hw-header,
	.hw-card-heading,
	.hw-list li {
		align-items: stretch;
		flex-direction: column;
	}

	.hw-table {
		display: block;
		overflow-x: auto;
	}
}

/* Dashboard shell based on the Horecawaarheid MVP mockups. */
html:has(.hw-app),
body:has(.hw-app) {
	overflow-x: hidden;
}

.hw-app {
	--hw-shell-bg: #f4f6fb;
	--hw-sidebar: #101827;
	--hw-active: #ff3f4b;
	--hw-blue: #3478f6;
	--hw-green: #22a861;
	--hw-red: #ff3f4b;
	--hw-purple: #8a3ffc;
	--hw-orange: #ff951c;
	--hw-header-offset: 86px;
	align-items: stretch;
	background: var(--hw-shell-bg);
	color: #071225;
	display: flex;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - var(--hw-header-offset));
	overflow-x: clip;
	width: 100vw;
}

.hw-app + * {
	margin-top: 0;
}

.hw-app a,
.hw-app a:visited,
.hw-app a:hover,
.hw-app a:focus,
.hw-app a:active {
	box-shadow: none;
	text-decoration: none !important;
	text-underline-offset: 0;
}

@supports not (overflow: clip) {
	.hw-app {
		overflow-x: hidden;
	}
}

.hw-sidebar {
	background: linear-gradient(180deg, #111113 0%, #1f2025 100%);
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 18px 0 55px rgba(15, 23, 42, 0.12);
	flex: 0 0 292px;
	padding: 34px 20px 30px;
}

.hw-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 100%;
}

.hw-nav-heading {
	color: #aaaab2;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0 0 18px;
	padding: 0 4px;
	text-transform: uppercase;
}

.hw-nav-item {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 14px;
	color: #ebe8e1;
	display: flex;
	font-size: 15px;
	font-weight: 800;
	gap: 14px;
	line-height: 1.2;
	min-height: 52px;
	padding: 14px 16px;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.hw-nav-item:hover,
.hw-nav-item:focus {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	outline: none;
	transform: translateX(2px);
}

.hw-nav-active {
	background: linear-gradient(135deg, rgba(255, 63, 75, 0.2), rgba(255, 255, 255, 0.05));
	border-color: rgba(255, 63, 75, 0.42);
	box-shadow: inset 4px 0 0 var(--hw-active), 0 12px 28px rgba(255, 63, 75, 0.12);
	color: #ffffff;
}

.hw-nav-item .dashicons {
	align-items: center;
	color: #aaaab2;
	display: inline-flex;
	flex: 0 0 24px;
	font-size: 24px;
	height: 24px;
	justify-content: center;
	line-height: 1;
	width: 24px;
	transition: color 160ms ease, transform 160ms ease;
}

.hw-nav-item:hover .dashicons,
.hw-nav-item:focus .dashicons,
.hw-nav-active .dashicons {
	color: #ffffff;
	transform: scale(1.04);
}

.hw-nav-label {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hw-nav-logout {
	color: #ffc6c6;
	margin-top: 8px;
}

.hw-nav-logout .dashicons {
	color: #c9c9cf;
}

.hw-nav-logout:hover,
.hw-nav-logout:focus {
	border-color: rgba(255, 198, 198, 0.22);
	color: #ffd6d6;
}

.hw-main {
	flex: 1 1 auto;
	min-width: 0;
	padding: 38px 30px 40px;
}

.hw-dashboard-top {
	align-items: start;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 8px;
}

.hw-dashboard-top h1 {
	color: #030b18;
	font-size: 25px;
	line-height: 1.15;
	margin: 0 0 8px;
}

.hw-dashboard-top p {
	color: #5f6d85;
	font-size: 13px;
	margin: 0;
}

.hw-period {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	min-width: 360px;
}

.hw-period label {
	color: #68748a;
	font-size: 12px;
}

.hw-period select {
	appearance: none;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	color: #0c1424;
	font-weight: 700;
	height: 44px;
	padding: 0 42px 0 14px;
	width: 100%;
}

.hw-inline-empty {
	background: #fff8e7;
	border: 1px solid #ffd98a;
	border-radius: 8px;
	color: #8a5200;
	font-size: 13px;
	margin: 0 0 16px;
	padding: 11px 14px;
}

.hw-stat-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 8px 0 36px;
}

.hw-stat-card {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
	display: flex;
	gap: 18px;
	flex: 1 1 calc(25% - 12px);
	min-height: 118px;
	min-width: 210px;
	padding: 24px 22px;
}

.hw-stat-icon,
.hw-action-card span {
	align-items: center;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
}

.hw-stat-icon {
	height: 46px;
	width: 46px;
}

.hw-stat-icon svg {
	fill: none;
	height: 21px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 21px;
}

.hw-stat-icon.hw-bg-blue {
	font-size: 0;
}

.hw-stat-icon.hw-bg-blue::before {
	background: currentColor;
	content: "";
	display: block;
	height: 22px;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7H14a3.5 3.5 0 0 1 0 7H6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7H14a3.5 3.5 0 0 1 0 7H6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	width: 22px;
}

.hw-stat-flex .hw-stat-card:nth-child(2) .hw-stat-icon,
.hw-stat-flex .hw-stat-card:nth-child(3) .hw-stat-icon {
	font-size: 0;
}

.hw-stat-flex .hw-stat-card:nth-child(2) .hw-stat-icon::before,
.hw-stat-flex .hw-stat-card:nth-child(3) .hw-stat-icon::before {
	background: none;
	content: "\20AC";
	display: block;
	font-size: 24px;
	font-weight: 900;
	height: auto;
	line-height: 1;
	mask: none;
	-webkit-mask: none;
	width: auto;
}

.hw-stat-card small {
	color: #7b8798;
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 6px;
}

.hw-stat-card strong {
	color: #0f172a;
	display: block;
	font-size: 25px;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.hw-stat-card em {
	color: #08a040;
	display: block;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	margin-top: 8px;
}

.hw-bg-green {
	background: var(--hw-green);
}

.hw-bg-red {
	background: var(--hw-red);
}

.hw-bg-blue {
	background: var(--hw-blue);
}

.hw-bg-purple {
	background: var(--hw-purple);
}

.hw-bg-orange {
	background: var(--hw-orange);
}

.hw-bg-gray {
	background: #64748b;
}

.hw-dashboard-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 54px;
}

.hw-dashboard-flex > :first-child {
	flex: 1 1 560px;
}

.hw-dashboard-flex > :last-child {
	flex: 1 1 360px;
}

.hw-dashboard-card {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 14px;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
	padding: 24px;
}

.hw-dashboard-card h2 {
	color: #0f172a;
	font-size: 18px;
	line-height: 1.2;
	margin: 0 0 24px;
}

.hw-ring-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	padding: 20px 12px 24px;
}

.hw-ring-item {
	align-items: center;
	display: flex;
	flex: 1 1 105px;
	flex-direction: column;
	gap: 14px;
	text-align: center;
}

.hw-ring {
	--hw-ring-color: var(--hw-green);
	--hw-progress: 0;
	align-items: center;
	background: conic-gradient(var(--hw-ring-color) calc(var(--hw-progress) * 1%), #e8eaf0 0);
	border-radius: 999px;
	display: flex;
	height: 106px;
	justify-content: center;
	position: relative;
	width: 106px;
}

.hw-ring::after {
	background: #ffffff;
	border-radius: inherit;
	content: "";
	height: 88px;
	position: absolute;
	width: 88px;
}

.hw-ring span {
	color: #020b1a;
	font-size: 18px;
	font-weight: 900;
	position: relative;
	z-index: 1;
}

.hw-ring-item strong {
	color: #030b18;
	font-size: 14px;
}

.hw-ring-item small {
	font-size: 11px;
	font-weight: 800;
}

.hw-ring-green .hw-ring {
	--hw-ring-color: var(--hw-green);
}

.hw-ring-green small {
	color: #05a33c;
}

.hw-ring-orange .hw-ring {
	--hw-ring-color: var(--hw-orange);
}

.hw-ring-orange small {
	color: var(--hw-orange);
}

.hw-ring-red .hw-ring {
	--hw-ring-color: var(--hw-red);
}

.hw-ring-red small {
	color: var(--hw-red);
}

.hw-warning-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hw-warning-row {
	align-items: center;
	border-radius: 8px;
	display: flex;
	gap: 12px;
	min-height: 58px;
	padding: 12px 14px;
}

.hw-warning-icon {
	align-items: center;
	border-radius: 999px;
	color: #ffffff;
	display: flex;
	flex: 0 0 28px;
	font-size: 16px;
	font-weight: 900;
	height: 28px;
	justify-content: center;
	line-height: 1;
	width: 28px;
}

.hw-warning-icon svg {
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
	width: 16px;
}

.hw-warning-row strong {
	color: #030b18;
	display: block;
	font-size: 13px;
	margin-bottom: 4px;
}

.hw-warning-row small {
	color: #607089;
	font-size: 11px;
}

.hw-warning-red {
	background: #fff3f4;
}

.hw-warning-red .hw-warning-icon {
	background: var(--hw-red);
}

.hw-warning-orange {
	background: #fff8ea;
}

.hw-warning-orange .hw-warning-icon {
	background: var(--hw-orange);
}

.hw-warning-green {
	background: #effdf5;
}

.hw-warning-green .hw-warning-icon {
	background: var(--hw-green);
}

.hw-actions {
	padding: 20px 18px 26px;
}

.hw-action-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hw-action-card {
	align-items: center;
	border: 1px solid #dde2ea;
	border-radius: 8px;
	color: #071225;
	display: flex;
	flex: 1 1 calc(25% - 12px);
	gap: 12px;
	min-height: 73px;
	min-width: 210px;
	padding: 13px 16px;
	text-decoration: none;
}

.hw-action-card:hover,
.hw-action-card:focus {
	border-color: #b8c2d2;
	box-shadow: 0 6px 18px rgba(16, 24, 39, 0.08);
	color: #071225;
}

.hw-action-card span {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	flex: 0 0 46px;
	height: 46px;
	min-height: 46px;
	min-width: 46px;
	padding: 0;
	width: 46px;
}

.hw-action-card div {
	min-width: 0;
	width: 100%;
}

.hw-action-card strong,
.hw-action-card small {
	display: block;
	width: 100%;
}

.hw-action-card strong {
	font-size: 12px;
	margin-bottom: 3px;
}

.hw-action-card small {
	color: #6b7890;
	font-size: 11px;
}

/* Premium dashboard polish: one accent color, softer cards, calmer chart/status styling. */
.hw-app {
	--hw-shell-bg: #f7f8fb;
	--hw-card-surface: rgba(255, 255, 255, 0.88);
	--hw-card-border: rgba(148, 163, 184, 0.22);
	--hw-card-shadow: 0 18px 44px rgba(15, 23, 42, 0.075);
	--hw-card-shadow-hover: 0 24px 62px rgba(15, 23, 42, 0.105);
	--hw-sidebar: #101827;
	--hw-active: #ff3f4b;
	--hw-accent: #ff3f4b;
	--hw-accent-dark: #df2838;
	--hw-accent-soft: #fff1f2;
	--hw-accent-border: rgba(255, 63, 75, 0.2);
	--hw-blue: var(--hw-accent);
	--hw-purple: var(--hw-accent);
	--hw-orange: #f97316;
	--hw-green: #12a150;
	--hw-red: var(--hw-accent);
	--hw-text-strong: #08111f;
	--hw-text-soft: #65758b;
	background:
		radial-gradient(circle at 292px 62px, rgba(255, 63, 75, 0.1), transparent 280px),
		linear-gradient(180deg, #fbfcfe 0%, var(--hw-shell-bg) 48%, #f3f5f9 100%);
	color: var(--hw-text-strong);
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
}

.hw-sidebar {
	background:
		radial-gradient(circle at 18% 5%, rgba(255, 63, 75, 0.24), transparent 28%),
		radial-gradient(circle at 100% 34%, rgba(249, 115, 22, 0.16), transparent 26%),
		linear-gradient(180deg, #151720 0%, #10131c 48%, #0b0e16 100%);
	border-right-color: rgba(255, 255, 255, 0.075);
	box-shadow: 18px 0 54px rgba(15, 23, 42, 0.16);
	position: relative;
}

.hw-sidebar::after {
	background: linear-gradient(180deg, rgba(255, 63, 75, 0.28), rgba(249, 115, 22, 0.08), transparent);
	content: "";
	inset: 0 0 auto auto;
	height: 100%;
	opacity: 0.55;
	pointer-events: none;
	position: absolute;
	width: 1px;
}

.hw-nav {
	position: relative;
	z-index: 1;
}

.hw-nav-item {
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	min-height: 50px;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.hw-nav-item:hover,
.hw-nav-item:focus {
	background: rgba(255, 255, 255, 0.072);
	border-color: rgba(255, 255, 255, 0.115);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transform: translateX(2px);
}

.hw-nav-active {
	background: linear-gradient(135deg, rgba(255, 63, 75, 0.24), rgba(255, 255, 255, 0.065));
	border-color: rgba(255, 63, 75, 0.44);
	box-shadow: inset 3px 0 0 var(--hw-accent), 0 16px 34px rgba(255, 63, 75, 0.16);
	color: #ffffff;
}

.hw-nav-item .dashicons {
	color: rgba(255, 255, 255, 0.52);
}

.hw-dashboard-top,
.hw-app .hw-page-heading {
	margin-bottom: 22px;
}

.hw-dashboard-top h1,
.hw-app .hw-page-heading h1 {
	color: var(--hw-text-strong);
	font-size: clamp(24px, 2vw, 30px);
	font-weight: 700;
	letter-spacing: 0;
}

.hw-dashboard-top p,
.hw-app .hw-page-heading p {
	color: var(--hw-text-soft);
	font-size: 13px;
	line-height: 1.55;
}

.hw-period label {
	color: var(--hw-text-soft);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hw-period select {
	background:
		linear-gradient(45deg, transparent 50%, #7b8798 50%) calc(100% - 20px) 50% / 7px 7px no-repeat,
		linear-gradient(135deg, #7b8798 50%, transparent 50%) calc(100% - 14px) 50% / 7px 7px no-repeat,
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
	border-color: var(--hw-card-border);
	border-radius: 10px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hw-period select:hover,
.hw-period select:focus {
	border-color: var(--hw-accent-border);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.075), 0 0 0 4px rgba(255, 63, 75, 0.075);
	outline: none;
}

.hw-stat-card,
.hw-dashboard-card,
.hw-action-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
		radial-gradient(circle at 12% 0%, rgba(255, 63, 75, 0.055), transparent 30%);
	border: 1px solid var(--hw-card-border);
	box-shadow: var(--hw-card-shadow);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.hw-stat-card,
.hw-dashboard-card {
	border-radius: 18px;
}

.hw-action-card {
	border-radius: 14px;
}

.hw-stat-card:hover,
.hw-dashboard-card:hover,
.hw-action-card:hover,
.hw-action-card:focus {
	border-color: rgba(255, 63, 75, 0.18);
	box-shadow: var(--hw-card-shadow-hover);
	transform: translateY(-2px);
}

.hw-stat-card {
	gap: 16px;
	min-height: 124px;
	padding: 24px;
}

.hw-stat-card small {
	color: var(--hw-text-soft);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.hw-stat-card strong {
	color: var(--hw-text-strong);
	font-size: clamp(24px, 2vw, 30px);
	font-weight: 800;
	letter-spacing: 0;
}

.hw-stat-card em {
	background: #ecfdf3;
	border: 1px solid rgba(18, 161, 80, 0.14);
	border-radius: 999px;
	color: #047a3d;
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 6px 8px;
	width: fit-content;
}

.hw-stat-flex .hw-stat-card:nth-child(2) em {
	background: #fff1f2;
	border-color: rgba(255, 63, 75, 0.16);
	color: #be123c;
}

.hw-stat-icon,
.hw-action-card span {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
		linear-gradient(135deg, var(--hw-accent), var(--hw-accent-dark));
	box-shadow: 0 12px 28px rgba(255, 63, 75, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.32);
	color: #ffffff;
}

.hw-dashboard-card h2 {
	color: var(--hw-text-strong);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0;
	margin-top: 22px !important;
	margin-bottom: 22px;
}

.hw-ring {
	--hw-ring-color: var(--hw-accent);
	background:
		conic-gradient(var(--hw-ring-color) calc(var(--hw-progress) * 1%), #eef2f7 0);
	box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12), 0 12px 28px rgba(15, 23, 42, 0.06);
}

.hw-ring::after {
	background: linear-gradient(180deg, #ffffff, #f8fafc);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hw-ring span {
	color: var(--hw-text-strong);
	font-size: 17px;
	font-weight: 800;
}

.hw-ring-item strong {
	color: var(--hw-text-strong);
	font-weight: 700;
}

.hw-ring-item small {
	color: var(--hw-text-soft);
	font-weight: 700;
}

.hw-ring-green .hw-ring,
.hw-ring-orange .hw-ring {
	--hw-ring-color: var(--hw-accent);
}

.hw-ring-red .hw-ring {
	--hw-ring-color: #e11d48;
}

.hw-ring-red small {
	color: #be123c;
}

.hw-warning-row {
	background: #f8fafc;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 12px;
}

.hw-warning-red {
	background: linear-gradient(135deg, #fff1f2, #ffffff);
	border-color: rgba(255, 63, 75, 0.18);
}

.hw-warning-orange {
	background: linear-gradient(135deg, #fff7ed, #ffffff);
	border-color: rgba(249, 115, 22, 0.18);
}

.hw-warning-green {
	background: linear-gradient(135deg, #ecfdf3, #ffffff);
	border-color: rgba(18, 161, 80, 0.16);
}

.hw-warning-red .hw-warning-icon {
	background: #e11d48;
}

.hw-warning-orange .hw-warning-icon {
	background: #f97316;
}

.hw-warning-green .hw-warning-icon {
	background: #12a150;
}

.hw-warning-row strong {
	color: var(--hw-text-strong);
	font-weight: 700;
}

.hw-warning-row small,
.hw-action-card small {
	color: var(--hw-text-soft);
	line-height: 1.45;
}

.hw-action-card {
	color: var(--hw-text-strong);
	padding: 15px 16px;
}

.hw-action-card strong {
	color: var(--hw-text-strong);
	font-size: 13px;
	font-weight: 700;
}

.hw-app .hw-chart-blue,
.hw-app .hw-chart-point-blue {
	stroke: var(--hw-accent);
}

.hw-app .hw-chart-green,
.hw-app .hw-chart-point-green {
	stroke: #12a150;
}

.hw-app .hw-dot-blue {
	background: var(--hw-accent);
}

.hw-app .hw-dot-green {
	background: #12a150;
}

.hw-app .hw-chart-modern {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.82)),
		radial-gradient(circle at 8% 0%, rgba(255, 63, 75, 0.055), transparent 30%);
	border-color: var(--hw-card-border);
}

.hw-app .hw-chart-modern .hw-chart-gridline,
.hw-app .hw-chart line {
	stroke: #e9eef5;
}

@property --hw-ring-fill {
	syntax: "<number>";
	inherits: false;
	initial-value: 0;
}

@keyframes hwKpiCardIn {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.985);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes hwRingLoad {
	from {
		--hw-ring-fill: 0;
	}

	to {
		--hw-ring-fill: var(--hw-progress);
	}
}

.hw-app {
	--hw-positive-accent: #12a150;
	--hw-positive-soft: #ecfdf3;
	--hw-positive-border: rgba(18, 161, 80, 0.18);
	--hw-warning-accent: #f59e0b;
	--hw-warning-soft: #fffbeb;
	--hw-warning-border: rgba(245, 158, 11, 0.22);
	--hw-negative-accent: #e11d48;
	--hw-negative-soft: #fff1f2;
	--hw-negative-border: rgba(225, 29, 72, 0.2);
}

.hw-stat-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 10px 0 52px;
}

.hw-stat-card {
	align-items: center;
	animation: hwKpiCardIn 500ms ease both;
	border-radius: 22px;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.065);
	display: flex;
	flex: 1 1 calc(25% - 18px);
	gap: 20px;
	height: 100%;
	min-height: 178px;
	min-width: 0;
	padding: 28px 30px;
}

.hw-stat-card:hover,
.hw-stat-card:focus-within {
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.085);
	transform: translateY(-3px) scale(1.012);
}

.hw-stat-card:nth-child(2) {
	animation-delay: 60ms;
}

.hw-stat-card:nth-child(3) {
	animation-delay: 120ms;
}

.hw-stat-card:nth-child(4) {
	animation-delay: 180ms;
}

.hw-stat-card > div {
	align-content: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.hw-stat-icon {
	height: 58px;
	width: 58px;
}

.hw-stat-positive .hw-stat-icon {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
		linear-gradient(135deg, #22c55e, var(--hw-positive-accent));
	box-shadow: 0 16px 32px rgba(18, 161, 80, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hw-stat-negative .hw-stat-icon {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
		linear-gradient(135deg, #fb7185, var(--hw-negative-accent));
	box-shadow: 0 16px 32px rgba(225, 29, 72, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hw-stat-card small {
	color: #637083;
	font-size: 12px;
	margin: 0;
}

.hw-stat-card strong {
	font-size: clamp(28px, 2.5vw, 38px);
	font-weight: 850;
	line-height: 1.05;
}

.hw-stat-card em,
.hw-stat-card .hw-trend-positive,
.hw-stat-card .hw-trend-negative {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
	max-width: 100%;
	padding: 8px 11px;
	width: fit-content;
}

.hw-stat-card .hw-trend-positive {
	background: var(--hw-positive-soft);
	border: 1px solid var(--hw-positive-border);
	color: #047a3d;
}

.hw-stat-card .hw-trend-negative {
	background: var(--hw-negative-soft);
	border: 1px solid var(--hw-negative-border);
	color: #be123c;
}

.hw-kpi-overview {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
		radial-gradient(circle at 8% 10%, rgba(18, 161, 80, 0.08), transparent 24%),
		radial-gradient(circle at 92% 14%, rgba(245, 158, 11, 0.1), transparent 25%);
	overflow: hidden;
	padding: 30px 34px;
	position: relative;
}

.hw-kpi-overview::before {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
	content: "";
	height: 1px;
	left: 34px;
	position: absolute;
	right: 34px;
	top: 76px;
}

.hw-kpi-overview h2 {
	margin-bottom: 34px;
	position: relative;
	z-index: 1;
}

.hw-kpi-overview .hw-ring-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	padding: 0;
	position: relative;
	z-index: 1;
}

.hw-ring-item {
	background: rgba(255, 255, 255, 0.64);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	gap: 12px;
	min-height: 238px;
	padding: 22px 18px 18px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hw-ring-item:hover {
	border-color: rgba(148, 163, 184, 0.28);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 18px 36px rgba(15, 23, 42, 0.065);
	transform: translateY(-2px);
}

.hw-ring {
	--hw-ring-fill: var(--hw-progress);
	animation: hwRingLoad 1000ms cubic-bezier(0.19, 1, 0.22, 1) both;
	background:
		conic-gradient(var(--hw-ring-color) calc(var(--hw-ring-fill) * 1%), #e9eef5 0);
	height: 126px;
	width: 126px;
}

.hw-ring::after {
	height: 92px;
	width: 92px;
}

.hw-ring span {
	font-size: 20px;
	font-weight: 850;
}

.hw-ring-green .hw-ring {
	--hw-ring-color: var(--hw-positive-accent);
	box-shadow: inset 0 0 0 1px rgba(18, 161, 80, 0.12), 0 16px 34px rgba(18, 161, 80, 0.1);
}

.hw-ring-orange .hw-ring {
	--hw-ring-color: var(--hw-warning-accent);
	box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.14), 0 16px 34px rgba(245, 158, 11, 0.12);
}

.hw-ring-red .hw-ring {
	--hw-ring-color: var(--hw-negative-accent);
	box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.12), 0 16px 34px rgba(225, 29, 72, 0.11);
}

.hw-ring-item strong {
	font-size: 15px;
	line-height: 1.25;
	min-height: 38px;
}

.hw-kpi-status {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	gap: 6px;
	line-height: 1;
	padding: 8px 10px;
}

.hw-kpi-status::before {
	background: currentColor;
	content: "";
	display: inline-block;
	flex: 0 0 13px;
	height: 13px;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	width: 13px;
}

.hw-ring-green .hw-kpi-status {
	background: var(--hw-positive-soft);
	border: 1px solid var(--hw-positive-border);
	color: #047a3d;
}

.hw-ring-green .hw-kpi-status::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9.2 16.2-3.7-3.7L4 14l5.2 5.2L20.5 7.9 19 6.4z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9.2 16.2-3.7-3.7L4 14l5.2 5.2L20.5 7.9 19 6.4z'/%3E%3C/svg%3E");
}

.hw-ring-orange .hw-kpi-status {
	background: var(--hw-warning-soft);
	border: 1px solid var(--hw-warning-border);
	color: #b45309;
}

.hw-ring-orange .hw-kpi-status::before,
.hw-ring-red .hw-kpi-status::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 1.8 20.5h20.4zm1 14h-2v-2h2zm0-4h-2V8h2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 1.8 20.5h20.4zm1 14h-2v-2h2zm0-4h-2V8h2z'/%3E%3C/svg%3E");
}

.hw-ring-red .hw-kpi-status {
	background: var(--hw-negative-soft);
	border: 1px solid var(--hw-negative-border);
	color: #be123c;
}

@media (max-width: 1220px) {
	.hw-stat-card {
		flex-basis: calc(50% - 12px);
	}

	.hw-kpi-overview .hw-ring-item {
		flex-basis: calc(50% - 9px);
	}
}

@media (max-width: 760px) {
	.hw-stat-flex,
	.hw-kpi-overview .hw-ring-flex {
		flex-direction: column;
	}

	.hw-stat-card {
		flex-basis: auto;
		min-height: 156px;
		padding: 22px;
		width: 100%;
	}

	.hw-kpi-overview .hw-ring-item {
		flex-basis: auto;
		width: 100%;
	}

	.hw-kpi-overview {
		padding: 24px 18px;
	}

	.hw-kpi-overview::before {
		left: 18px;
		right: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hw-stat-card,
	.hw-ring {
		animation: none;
	}

	.hw-stat-card:hover,
	.hw-stat-card:focus-within,
	.hw-ring-item:hover {
		transform: none;
	}
}

/* KPI card readability refinements. */
.hw-stat-flex {
	gap: 20px;
	margin: 8px 0 44px;
}

.hw-stat-card {
	align-content: center;
	align-items: center;
	border-color: rgba(148, 163, 184, 0.2);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
	container-type: inline-size;
	gap: 16px;
	min-height: 150px;
	padding: 22px 24px;
}

.hw-stat-card:hover,
.hw-stat-card:focus-within {
	border-color: rgba(148, 163, 184, 0.28);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.075);
	transform: translateY(-2px) scale(1.006);
}

.hw-stat-card > div {
	align-content: center;
	gap: 8px;
	align-items: flex-start;
}

.hw-stat-card small {
	font-size: 11px;
	line-height: 1.25;
	max-width: 14ch;
}

.hw-stat-card strong {
	font-size: clamp(23px, 2vw, 34px);
	font-size: clamp(23px, 10.5cqw, 34px);
	font-variant-numeric: tabular-nums;
	letter-spacing: 0;
	line-height: 1;
	overflow-wrap: normal;
	white-space: nowrap;
	word-break: keep-all;
}

.hw-stat-card:nth-child(4) strong {
	font-size: clamp(25px, 2.2vw, 36px);
	font-size: clamp(25px, 11cqw, 36px);
}

.hw-stat-icon {
	height: 52px;
	width: 52px;
}

.hw-stat-icon svg {
	height: 19px;
	width: 19px;
}

.hw-stat-flex .hw-stat-card:nth-child(2) .hw-stat-icon::before,
.hw-stat-flex .hw-stat-card:nth-child(3) .hw-stat-icon::before {
	font-size: 22px;
}

.hw-stat-positive .hw-stat-icon {
	box-shadow: 0 10px 22px rgba(18, 161, 80, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hw-stat-negative .hw-stat-icon {
	box-shadow: 0 10px 22px rgba(225, 29, 72, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hw-stat-card em,
.hw-stat-card .hw-trend-positive,
.hw-stat-card .hw-trend-negative {
	font-size: 10.5px;
	justify-content: center;
	line-height: 1.15;
	min-width: 126px;
	padding: 6px 9px;
	white-space: nowrap;
}

@media (max-width: 1380px) {
	.hw-stat-card {
		gap: 14px;
		padding: 20px;
	}

	.hw-stat-icon {
		height: 48px;
		width: 48px;
	}

	.hw-stat-card strong {
		font-size: clamp(22px, 1.9vw, 30px);
		font-size: clamp(22px, 10cqw, 30px);
	}

	.hw-stat-card em,
	.hw-stat-card .hw-trend-positive,
	.hw-stat-card .hw-trend-negative {
		font-size: 10px;
		min-width: 118px;
		padding: 6px 8px;
	}
}

@media (max-width: 1220px) {
	.hw-stat-card strong {
		font-size: clamp(28px, 3vw, 38px);
		font-size: clamp(28px, 8.5cqw, 38px);
	}
}

@media (max-width: 760px) {
	.hw-stat-card {
		min-height: 132px;
		padding: 18px;
	}

	.hw-stat-card strong {
		font-size: clamp(28px, 7vw, 40px);
		font-size: clamp(28px, 11cqw, 40px);
	}

	.hw-stat-card small {
		max-width: none;
	}
}

/* Premium fintech KPI-card polish. */
.hw-app {
	--hw-kpi-card-border: rgba(148, 163, 184, 0.18);
	--hw-kpi-card-border-hover: rgba(148, 163, 184, 0.26);
	--hw-kpi-green: #16a35a;
	--hw-kpi-green-soft: rgba(22, 163, 90, 0.1);
	--hw-kpi-green-border: rgba(22, 163, 90, 0.16);
	--hw-kpi-red: #e84d67;
	--hw-kpi-red-deep: #c72a48;
	--hw-kpi-red-soft: rgba(232, 77, 103, 0.09);
	--hw-kpi-red-border: rgba(232, 77, 103, 0.14);
}

.hw-stat-flex {
	background:
		radial-gradient(circle at 8% -12%, rgba(255, 255, 255, 0.95), transparent 26%),
		radial-gradient(circle at 52% 118%, rgba(148, 163, 184, 0.12), transparent 32%);
	border-radius: 26px;
	padding: 6px 0 2px;
}

.hw-stat-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(248, 250, 252, 0.88) 100%),
		radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.75), transparent 34%);
	border-color: var(--hw-kpi-card-border);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.052);
	gap: 15px;
	min-height: 142px;
	overflow: hidden;
	padding: 20px 24px 22px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.hw-stat-card:hover,
.hw-stat-card:focus-within {
	border-color: var(--hw-kpi-card-border-hover);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
	transform: translateY(-2px);
}

.hw-stat-card > div {
	align-content: center;
	gap: 0;
}

.hw-stat-card small {
	color: #5f6d82;
	font-size: 10.5px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 12px;
}

.hw-stat-card strong {
	font-size: clamp(23px, 9.5cqw, 33px);
	font-weight: 850;
	line-height: 0.98;
	margin-bottom: 20px;
}

.hw-stat-card:nth-child(4) strong {
	font-size: clamp(25px, 10cqw, 35px);
}

.hw-stat-icon {
	height: 46px;
	width: 46px;
}

.hw-stat-icon svg {
	height: 17px;
	width: 17px;
}

.hw-stat-flex .hw-stat-card:nth-child(2) .hw-stat-icon::before,
.hw-stat-flex .hw-stat-card:nth-child(3) .hw-stat-icon::before {
	font-size: 20px;
}

.hw-stat-positive .hw-stat-icon {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.24), transparent 52%),
		linear-gradient(145deg, #47d889 0%, var(--hw-kpi-green) 100%);
	box-shadow: 0 8px 18px rgba(22, 163, 90, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hw-stat-negative .hw-stat-icon {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 55%),
		linear-gradient(145deg, #ff8aa0 0%, var(--hw-kpi-red) 100%);
	box-shadow: 0 8px 18px rgba(232, 77, 103, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hw-stat-card em,
.hw-stat-card .hw-trend-positive,
.hw-stat-card .hw-trend-negative {
	border-width: 1px;
	font-size: 9.75px;
	font-weight: 800;
	line-height: 1.1;
	min-width: 112px;
	padding: 5px 7px;
}

.hw-stat-card .hw-trend-positive {
	background: var(--hw-kpi-green-soft);
	border-color: var(--hw-kpi-green-border);
	color: #047a3d;
}

.hw-stat-card .hw-trend-negative {
	background: var(--hw-kpi-red-soft);
	border-color: var(--hw-kpi-red-border);
	color: var(--hw-kpi-red-deep);
}

@media (max-width: 1380px) {
	.hw-stat-card {
		padding: 18px 20px 20px;
	}

	.hw-stat-icon {
		height: 44px;
		width: 44px;
	}

	.hw-stat-card small {
		margin-bottom: 10px;
	}

	.hw-stat-card strong {
		font-size: clamp(22px, 9.6cqw, 30px);
		margin-bottom: 18px;
	}

	.hw-stat-card em,
	.hw-stat-card .hw-trend-positive,
	.hw-stat-card .hw-trend-negative {
		font-size: 9.5px;
		min-width: 108px;
		padding-left: 6px;
		padding-right: 6px;
	}
}

@media (max-width: 760px) {
	.hw-stat-flex {
		padding: 0;
	}

	.hw-stat-card {
		min-height: 128px;
	}

	.hw-stat-card strong {
		font-size: clamp(28px, 10.5cqw, 40px);
	}
}

/* Keep KPI titles and trend pills readable on one line. */
.hw-stat-card small {
	max-width: none;
	white-space: nowrap;
}

.hw-stat-card em,
.hw-stat-card .hw-trend-positive,
.hw-stat-card .hw-trend-negative {
	max-width: 100%;
	min-width: min(148px, 100%);
	padding-left: 11px;
	padding-right: 11px;
}

@media (max-width: 1380px) {
	.hw-stat-card {
		gap: 12px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.hw-stat-icon {
		height: 40px;
		width: 40px;
	}

	.hw-stat-card em,
	.hw-stat-card .hw-trend-positive,
	.hw-stat-card .hw-trend-negative {
		min-width: min(136px, 100%);
		padding-left: 10px;
		padding-right: 10px;
	}
}

.hw-page-heading {
	margin-bottom: 30px;
}

/* Premium quick-actions section. */
.hw-actions {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
		radial-gradient(circle at 7% 0%, rgba(18, 161, 80, 0.055), transparent 26%),
		radial-gradient(circle at 95% 10%, rgba(37, 99, 235, 0.06), transparent 28%);
	border-color: rgba(148, 163, 184, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 44px rgba(15, 23, 42, 0.075);
	padding: 28px 28px 34px;
}

.hw-actions h2 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 28px;
}

.hw-action-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

.hw-action-card {
	--hw-action-accent: #2563eb;
	--hw-action-soft: rgba(37, 99, 235, 0.1);
	--hw-action-border: rgba(37, 99, 235, 0.18);
	align-items: center;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
		radial-gradient(circle at 12% 0%, var(--hw-action-soft), transparent 34%);
	border-color: rgba(148, 163, 184, 0.2);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
	cursor: pointer;
	display: flex;
	flex: 1 1 calc(50% - 11px);
	gap: 14px;
	min-height: 104px;
	min-width: 0;
	padding: 18px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.hw-action-card:hover,
.hw-action-card:focus {
	border-color: var(--hw-action-border);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.075), 0 0 0 4px var(--hw-action-soft);
	transform: translateY(-3px);
}

.hw-action-card span {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent 52%),
		linear-gradient(145deg, color-mix(in srgb, var(--hw-action-accent) 78%, #ffffff), var(--hw-action-accent));
	box-shadow: 0 10px 22px color-mix(in srgb, var(--hw-action-accent) 18%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.34);
	color: #ffffff;
	height: 46px;
	width: 46px;
}

.hw-action-card svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.1;
	width: 22px;
}

.hw-action-card div {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.hw-action-card strong {
	color: #08111f;
	font-size: clamp(12px, 0.95vw, 14px);
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
	overflow-wrap: normal;
}

.hw-action-card small {
	color: rgba(95, 109, 130, 0.82);
	font-size: 12px;
	line-height: 1.35;
}

.hw-action-financial {
	--hw-action-accent: #16a35a;
	--hw-action-soft: rgba(22, 163, 90, 0.1);
	--hw-action-border: rgba(22, 163, 90, 0.2);
}

.hw-action-contracts {
	--hw-action-accent: #e84d67;
	--hw-action-soft: rgba(232, 77, 103, 0.1);
	--hw-action-border: rgba(232, 77, 103, 0.2);
}

.hw-action-advice {
	--hw-action-accent: #f59e0b;
	--hw-action-soft: rgba(245, 158, 11, 0.11);
	--hw-action-border: rgba(245, 158, 11, 0.22);
}

.hw-action-reports {
	--hw-action-accent: #2563eb;
	--hw-action-soft: rgba(37, 99, 235, 0.1);
	--hw-action-border: rgba(37, 99, 235, 0.2);
}

@supports not (color: color-mix(in srgb, #000 50%, transparent)) {
	.hw-action-card span {
		background: linear-gradient(145deg, var(--hw-action-accent), var(--hw-action-accent));
		box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.34);
	}
}

@media (max-width: 1180px) {
	.hw-action-flex {
		gap: 18px;
	}

	.hw-action-card {
		flex-basis: calc(50% - 9px);
	}
}

@media (max-width: 760px) {
	.hw-actions {
		padding: 22px 18px 24px;
	}

	.hw-action-card {
		min-height: 92px;
	}

	.hw-action-flex {
		flex-direction: column;
	}

	.hw-action-card {
		flex-basis: auto;
		width: 100%;
	}
}

.hw-page-heading h1 {
	color: #030b18;
	font-size: 25px;
	line-height: 1.15;
	margin: 0 0 8px;
}

.hw-page-heading p {
	color: #5f6d85;
	font-size: 13px;
	margin: 0;
}

.hw-screen-flex,
.hw-contract-flex,
.hw-profile-flex,
.hw-report-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.hw-screen-flex > :first-child,
.hw-contract-flex > :first-child,
.hw-profile-flex > :first-child,
.hw-report-flex > :first-child {
	flex: 1 1 560px;
}

.hw-contract-primary-column {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.hw-screen-flex > :last-child,
.hw-contract-flex > :last-child,
.hw-profile-flex > :last-child,
.hw-report-flex > :last-child {
	flex: 1 1 330px;
}

.hw-financial-screen .hw-dashboard-card,
.hw-contract-flex .hw-dashboard-card,
.hw-profile-flex .hw-dashboard-card {
	min-height: 190px;
}

.hw-mock-form {
	display: flex;
	flex-wrap: wrap;
	gap: 28px 36px;
	margin-top: 28px;
}

.hw-entry-mode {
	border: 0;
	display: flex;
	flex: 1 1 100%;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.hw-entry-mode legend {
	color: #030b18;
	flex: 1 1 100%;
	font-size: 12px;
	font-weight: 800;
	margin: 0 0 2px;
}

.hw-entry-mode-option {
	align-items: center;
	border: 1px solid #dbe1ea;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	gap: 9px;
	min-height: 39px;
	padding: 0 14px;
}

.hw-entry-mode-option:has(input:checked) {
	border-color: #ff3f4b;
	box-shadow: 0 0 0 1px rgba(255, 63, 75, 0.2);
}

.hw-entry-mode-option input {
	accent-color: #ff3f4b;
	border: 0;
	height: 16px;
	margin: 0;
	padding: 0;
	width: 16px;
}

.hw-weekly-fields {
	display: contents;
}

.hw-daily-revenue-fields {
	display: contents;
}

.hw-weekly-fields[hidden] {
	display: none;
}

.hw-mock-form [hidden] {
	display: none !important;
}

.hw-live-list [hidden] {
	display: none !important;
}

.hw-mock-form .hw-field {
	flex: 1 1 calc(50% - 18px);
	min-width: 250px;
}

.hw-mock-form .hw-field {
	gap: 8px;
}

.hw-mock-form .hw-weekly-fields .hw-field {
	margin-bottom: 20px;
}

.hw-mock-form .hw-weekly-fields .hw-field:last-child {
	margin-bottom: 0;
}

.hw-mock-form .hw-field span,
.hw-profile-form span {
	color: #030b18;
	font-size: 12px;
	font-weight: 800;
}

.hw-mock-form input,
.hw-profile-form input,
.hw-profile-form select {
	border: 1px solid #dbe1ea;
	border-radius: 8px;
	color: #030b18;
	height: 39px;
	padding: 0 14px;
}

.hw-red-button {
	background: #ff3f4b;
	border-color: #ff3f4b;
	border-radius: 8px;
	min-width: 198px;
}

.hw-button-danger {
	background: #ffffff;
	border-color: #fecdca;
	color: #b42318;
}

.hw-button-danger:hover,
.hw-button-danger:focus {
	background: #fef3f2;
	border-color: #f97066;
	color: #b42318;
}

.hw-modal-open {
	overflow: hidden;
}

.hw-modal-backdrop {
	align-items: center;
	background: rgba(15, 23, 42, 0.42);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 100000;
}

.hw-modal-backdrop[hidden] {
	display: none !important;
}

.hw-modal-panel {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
		radial-gradient(circle at 12% 0%, rgba(255, 63, 75, 0.06), transparent 34%);
	border: 1px solid #e5ebf3;
	border-radius: 14px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
	max-width: 520px;
	outline: none;
	padding: 24px;
	width: min(100%, 520px);
}

.hw-modal-header {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 10px;
}

.hw-modal-header h2 {
	color: #0f172a;
	font-size: 20px;
	line-height: 1.2;
	margin: 0;
}

.hw-modal-close {
	align-items: center;
	background: #f8fafc;
	border: 1px solid #dfe4ec;
	border-radius: 999px;
	color: #475467;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 36px;
	font-size: 24px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 2px;
	width: 36px;
}

.hw-modal-close:hover,
.hw-modal-close:focus {
	background: #fff1f2;
	border-color: rgba(255, 63, 75, 0.34);
	color: #ff3f4b;
	outline: none;
}

.hw-modal-panel p {
	color: #5f6d85;
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 20px;
}

.hw-modal-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hw-modal-actions .hw-button {
	min-height: 42px;
}

.hw-modal-cancel {
	background: transparent;
	border: 0;
	color: #667085;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	min-height: 42px;
	padding: 0 8px;
}

.hw-modal-cancel:hover,
.hw-modal-cancel:focus {
	color: #0f172a;
	outline: none;
}

.hw-live-card {
	align-content: start;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.hw-live-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hw-live-list div {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	min-height: 53px;
	padding: 0 20px;
}

.hw-live-list span,
.hw-live-card p {
	color: #5f6d85;
	font-size: 12px;
}

.hw-live-list strong {
	font-size: 14px;
}

.hw-green-text {
	color: #08a040;
}

.hw-orange-text {
	color: #ff951c;
}

.hw-red-text {
	color: #ff3f4b;
}

@media (max-width: 640px) {
	.hw-modal-backdrop {
		align-items: flex-end;
		padding: 12px;
	}

	.hw-modal-panel {
		border-radius: 14px;
		padding: 20px;
	}

	.hw-modal-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hw-modal-actions .hw-button,
	.hw-modal-cancel {
		justify-content: center;
		width: 100%;
	}
}

.hw-upload-box {
	align-items: center;
	border: 1px dashed #d8dee8;
	border-radius: 10px;
	color: #657189;
	cursor: pointer;
	display: flex;
	font-weight: 800;
	justify-content: center;
	min-height: 101px;
	text-align: center;
}

.hw-upload-box {
	flex-direction: column;
	gap: 8px;
	padding: 22px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.hw-upload-box > .dashicons {
	align-items: center;
	background: #fff1f2;
	border-radius: 999px;
	color: #ff3f4b;
	display: inline-flex;
	font-size: 24px;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.hw-upload-box strong,
.hw-upload-box small,
.hw-upload-box em {
	display: block;
}

.hw-upload-box small {
	color: #5f6d85;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

.hw-upload-box em {
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 999px;
	color: #475467;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	padding: 8px 10px;
}

.hw-upload-box:hover,
.hw-upload-box:focus-within,
.hw-upload-box.is-dragover {
	background: #fff7f8;
	border-color: #ff3f4b;
	box-shadow: 0 12px 28px rgba(255, 63, 75, 0.1);
	color: #071225;
	transform: translateY(-1px);
}

.hw-upload-box.has-file {
	background: #ecfdf3;
	border-color: #22a861;
}

.hw-upload-box.has-file > .dashicons {
	background: #ffffff;
	color: #22a861;
}

.hw-upload-box.has-error {
	background: #fef3f2;
	border-color: #ff3f4b;
	color: #b91c1c;
}

.hw-upload-box input {
	display: none;
}

.hw-contract-form {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 26px;
}

.hw-contract-form fieldset {
	border: 0;
	display: contents;
	margin: 0;
	min-width: 0;
	padding: 0;
}

.hw-contract-form.is-locked {
	opacity: 0.72;
}

.hw-contract-form.is-locked .hw-upload-box,
.hw-contract-form.is-locked .hw-button {
	cursor: not-allowed;
}

.hw-contract-limit-lock {
	align-items: center;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 10px;
	color: #9a3412;
	display: flex;
	gap: 14px;
	margin-top: 18px;
	padding: 14px 16px;
}

.hw-contract-limit-lock > .dashicons {
	align-items: center;
	background: #ffedd5;
	border-radius: 999px;
	color: #ea580c;
	display: inline-flex;
	flex: 0 0 42px;
	font-size: 22px;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.hw-contract-limit-lock strong {
	color: #7c2d12;
	display: block;
	font-size: 14px;
	line-height: 1.2;
}

.hw-contract-limit-lock p {
	color: #9a3412;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	margin: 3px 0 0;
}
.hw-contract-form-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hw-contract-form-grid > * {
	flex: 1 1 calc(50% - 8px);
	min-width: 240px;
}

.hw-contract-form-grid .hw-field span,
.hw-contract-filters .hw-field span {
	color: #030b18;
	font-size: 12px;
	font-weight: 800;
}

.hw-upload-progress {
	background: #edf2f7;
	border-radius: 999px;
	display: none;
	height: 8px;
	overflow: hidden;
}

.hw-upload-progress span {
	animation: hwUploadProgress 1.1s ease-in-out infinite;
	background: linear-gradient(90deg, #ff3f4b, #22a861);
	border-radius: inherit;
	display: block;
	height: 100%;
	width: 42%;
}

.hw-contract-form.is-uploading .hw-upload-progress {
	display: block;
}

.hw-ai-checks,
.hw-guideline-list,
.hw-settings-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hw-ai-checks-heading {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin: 22px 0 12px;
}

.hw-ai-checks-heading strong {
	color: #0f172a;
	font-size: 15px;
	line-height: 1.25;
}

.hw-ai-checks-heading span {
	color: #5f6d85;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	text-align: right;
}

.hw-ai-checks-heading-positive {
	margin-top: 26px;
}

.hw-ai-checks-positive {
	padding-bottom: 52px;
}

.hw-ai-check {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px 16px;
	min-height: 50px;
	min-width: 0;
	padding: 0;
	position: relative;
}

.hw-ai-check-laag {
	background: #f0fdf4;
	border-color: rgba(4, 120, 87, 0.22);
}

.hw-ai-check-middel {
	background: #fff7ed;
	border-color: rgba(194, 65, 12, 0.22);
}

.hw-ai-check-review {
	background: #eff6ff;
	border-color: rgba(37, 99, 235, 0.2);
}

.hw-ai-check-attention {
	background: #f5f3ff;
	border-color: rgba(124, 58, 237, 0.2);
}

.hw-ai-check-neutral {
	background: #f8fafc;
	border-color: rgba(100, 116, 139, 0.22);
}

.hw-ai-check-hoog {
	background: #fef3f2;
	border-color: rgba(185, 28, 28, 0.22);
}

.hw-ai-check-toggle {
	align-items: flex-start;
	background: transparent;
	border: 0;
	border-radius: 14px;
	color: #0f172a;
	cursor: pointer;
	display: flex;
	gap: 14px;
	min-height: 58px;
	padding: 15px;
	text-align: left;
	width: 100%;
}

.hw-ai-check-toggle > span:first-child {
	flex: 0 0 30px;
}

.hw-ai-check-toggle > .hw-ai-check-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.hw-ai-check-toggle > .hw-ai-check-caret {
	flex: 0 0 18px;
}

.hw-ai-check-toggle:hover,
.hw-ai-check-toggle:focus {
	outline: none;
}

.hw-ai-check-laag .hw-ai-check-toggle:hover,
.hw-ai-check-laag .hw-ai-check-toggle:focus {
	background: #dcfce7;
}

.hw-ai-check-middel .hw-ai-check-toggle:hover,
.hw-ai-check-middel .hw-ai-check-toggle:focus {
	background: #ffedd5;
}

.hw-ai-check-hoog .hw-ai-check-toggle:hover,
.hw-ai-check-hoog .hw-ai-check-toggle:focus {
	background: #fee2e2;
}

.hw-ai-check-review .hw-ai-check-toggle:hover,
.hw-ai-check-review .hw-ai-check-toggle:focus {
	background: #dbeafe;
}

.hw-ai-check-attention .hw-ai-check-toggle:hover,
.hw-ai-check-attention .hw-ai-check-toggle:focus {
	background: #ede9fe;
}

.hw-ai-check-neutral .hw-ai-check-toggle:hover,
.hw-ai-check-neutral .hw-ai-check-toggle:focus {
	background: #eef2f7;
}

.hw-ai-check-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(255, 63, 75, 0.18);
}

.hw-ai-check-laag .hw-ai-check-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.18);
}

.hw-ai-check-middel .hw-ai-check-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.18);
}

.hw-ai-check-review .hw-ai-check-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.hw-ai-check-attention .hw-ai-check-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

.hw-ai-check-neutral .hw-ai-check-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.18);
}

.hw-ai-check-toggle > span:first-child {
	align-items: center;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-size: 10px;
	font-weight: 900;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.hw-ai-check-copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.hw-ai-check-copy strong {
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.hw-ai-checks span svg {
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
	width: 16px;
}

.hw-ai-checks span i {
	font-size: 16px;
	height: 16px;
	line-height: 16px;
	width: 16px;
}

.hw-ai-check-copy small {
	color: #5f6d85;
	line-height: 1.45;
	white-space: normal;
}

.hw-ai-check-copy em {
	align-items: center;
	border-radius: 999px;
	color: #667085;
	display: inline-flex;
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	width: fit-content;
}

.hw-ai-check-laag .hw-ai-check-copy em {
	color: #047857;
}

.hw-ai-check-middel .hw-ai-check-copy em {
	color: #c2410c;
}

.hw-ai-check-hoog .hw-ai-check-copy em {
	color: #b91c1c;
}

.hw-ai-check-review .hw-ai-check-copy em {
	color: #2563eb;
}

.hw-ai-check-attention .hw-ai-check-copy em {
	color: #7c3aed;
}

.hw-ai-check-neutral .hw-ai-check-copy em {
	color: #64748b;
}

.hw-ai-check-caret {
	color: #667085;
	font-size: 17px;
	height: 18px;
	line-height: 18px;
	margin-top: 5px;
	transition: transform 180ms ease;
	width: 18px;
}

.hw-ai-check-toggle[aria-expanded="true"] .hw-ai-check-caret {
	transform: rotate(180deg);
}

.hw-ai-check-panel {
	border-top: 1px solid #eef2f7;
	color: #5f6d85;
	display: flex;
	flex-direction: column;
	font-size: 13px;
	gap: 10px;
	line-height: 1.55;
	margin: 0 14px 14px 58px;
	padding-top: 12px;
}

.hw-ai-check-panel[hidden] {
	display: none;
}

.hw-ai-check.is-opening .hw-ai-check-panel {
	animation: hwAccordionOpen 180ms ease-out both;
}

.hw-ai-check-panel p {
	margin: 0;
}

.hw-ai-check-panel p strong {
	color: #344054;
	display: block;
	font-size: 11px;
	line-height: 1.3;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.hw-ai-priority {
	align-self: flex-start;
	border: 1px solid #e5ebf3;
	border-radius: 999px;
	color: #475467;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 6px 9px;
}

.hw-ai-priority-high {
	background: #fef3f2;
	border-color: rgba(185, 28, 28, 0.18);
	color: #b91c1c;
}

.hw-ai-priority-medium {
	background: #fff7ed;
	border-color: rgba(194, 65, 12, 0.18);
	color: #c2410c;
}

.hw-ai-priority-low {
	background: #f0fdf4;
	border-color: rgba(4, 120, 87, 0.18);
	color: #047857;
}

.hw-contract-ai-card {
	padding-bottom: 72px;
}

.hw-contract-ai-card .hw-ai-checks {
	gap: 8px;
}

.hw-contract-ai-card .hw-ai-checks-heading {
	margin: 14px 0 8px;
}

.hw-contract-ai-card .hw-ai-checks-heading + .hw-ai-checks {
	margin-top: 0;
}

.hw-contract-ai-card .hw-ai-check {
	border-radius: 12px;
	min-height: 0;
}

.hw-contract-ai-card .hw-ai-check-toggle {
	align-items: center;
	border-radius: 12px;
	gap: 12px;
	min-height: 0;
	padding: 12px 14px;
}

.hw-contract-ai-card .hw-ai-check-copy {
	gap: 3px;
}

.hw-contract-ai-card .hw-ai-check-caret {
	margin-top: 0;
}

.hw-contract-ai-card .hw-ai-check-panel {
	margin: 0 14px 12px 56px;
	padding-top: 8px;
}
.hw-contract-analysis-loading {
	align-items: center;
	background:
		radial-gradient(circle at 50% 0%, rgba(255, 63, 75, 0.08), transparent 58%),
		linear-gradient(180deg, #fff 0%, #fffafb 100%);
	border: 1px solid #f2dfe2;
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 18px;
	min-height: 330px;
	padding: 42px 30px;
	text-align: center;
}

.hw-contract-analysis-loading[hidden],
.hw-contract-analysis-content[hidden] {
	display: none;
}

.hw-contract-analysis-loader {
	align-items: center;
	background: #fff;
	border: 1px solid #f2dfe2;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(104, 34, 45, 0.1);
	display: flex;
	gap: 7px;
	height: 68px;
	justify-content: center;
	margin-bottom: 22px;
	width: 68px;
}

.hw-contract-analysis-loader span {
	animation: hwContractLoadingDot 1.25s ease-in-out infinite;
	background: #ff3f4b;
	border-radius: 999px;
	height: 8px;
	width: 8px;
}

.hw-contract-analysis-loader span:nth-child(2) {
	animation-delay: 140ms;
}

.hw-contract-analysis-loader span:nth-child(3) {
	animation-delay: 280ms;
}

.hw-contract-analysis-loading strong {
	color: #172033;
	font-size: 18px;
	line-height: 1.35;
}

.hw-contract-analysis-loading p {
	color: #5f6d85;
	font-size: 14px;
	font-weight: 700;
	margin: 10px 0 20px;
	min-height: 22px;
}

.hw-contract-analysis-loading p.is-changing {
	animation: hwContractStatusIn 280ms ease-out both;
}

.hw-contract-analysis-loading small {
	color: #8791a5;
	font-size: 12px;
	margin-top: 14px;
}

.hw-contract-analysis-loading-bar {
	background: #f3e8ea;
	border-radius: 999px;
	height: 5px;
	overflow: hidden;
	width: min(260px, 80%);
}

.hw-contract-analysis-loading-bar span {
	animation: hwContractLoadingBar 1.8s ease-in-out infinite;
	background: linear-gradient(90deg, #ff6973, #ff3f4b);
	border-radius: inherit;
	display: block;
	height: 100%;
	width: 42%;
}

[data-hw-analysis-start].is-disabled,
[data-hw-analysis-start][aria-disabled="true"] {
	cursor: wait;
	opacity: 0.62;
	pointer-events: none;
}

@keyframes hwContractLoadingDot {
	0%,
	60%,
	100% {
		opacity: 0.35;
		transform: translateY(0) scale(0.82);
	}

	30% {
		opacity: 1;
		transform: translateY(-5px) scale(1);
	}
}

@keyframes hwContractLoadingBar {
	0% {
		transform: translateX(-110%);
	}

	50% {
		transform: translateX(75%);
	}

	100% {
		transform: translateX(250%);
	}
}

@keyframes hwContractStatusIn {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hw-contract-analysis-loader span,
	.hw-contract-analysis-loading-bar span,
	.hw-contract-analysis-loading p.is-changing {
		animation-duration: 1ms;
		animation-iteration-count: 1;
	}
}

.hw-contract-ai-card .hw-ai-checks {
	padding-bottom: 10px;
}

body:has(.hw-contract-help) {
	padding-bottom: calc(156px + env(safe-area-inset-bottom, 0px));
}

@keyframes hwAccordionOpen {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hw-contract-table-card,
.hw-report-table-card {
	margin-top: 34px;
}

.hw-contract-section-heading {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 20px;
}

.hw-contract-section-heading h2 {
	margin-bottom: 6px;
}

.hw-contract-section-heading p,
.hw-example-contract em {
	color: #5f6d85;
	font-size: 12px;
	margin: 0;
}

.hw-contract-alerts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 22px;
}

.hw-contract-expiry-alert {
	align-items: center;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 12px;
	color: #9a3412;
	display: flex;
	gap: 12px;
	padding: 13px 14px;
}

.hw-contract-expiry-alert.is-expired {
	background: #fef3f2;
	border-color: #fecdca;
	color: #b91c1c;
}

.hw-contract-expiry-alert > .dashicons {
	font-size: 22px;
	height: 22px;
	width: 22px;
}

.hw-contract-expiry-alert div {
	flex: 1 1 auto;
	min-width: 0;
}

.hw-contract-expiry-alert strong,
.hw-contract-expiry-alert small {
	display: block;
}

.hw-contract-expiry-alert small {
	font-size: 12px;
	font-weight: 800;
}

.hw-example-contracts {
	margin-bottom: 28px;
}

.hw-example-contract-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hw-example-contract {
	align-items: flex-start;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	color: #071225;
	display: flex;
	flex: 1 1 260px;
	gap: 14px;
	min-height: 76px;
	padding: 14px 16px;
	text-decoration: none;
}

.hw-example-contract > div {
	min-width: 0;
}

.hw-example-contract:hover,
.hw-example-contract:focus {
	border-color: #b8c2d2;
	box-shadow: 0 6px 18px rgba(16, 24, 39, 0.08);
	color: #071225;
}

.hw-example-contract span {
	align-items: center;
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	flex: 0 0 48px;
	font-size: 11px;
	font-weight: 900;
	height: 48px;
	justify-content: center;
	letter-spacing: 0;
	width: 48px;
}

.hw-example-contract-green span {
	background: var(--hw-green);
}

.hw-example-contract-red span {
	background: var(--hw-red);
}

.hw-example-contract strong,
.hw-example-contract small {
	display: block;
}

.hw-example-contract strong {
	font-size: 14px;
	line-height: 1.25;
}

.hw-example-contract small {
	color: #5f6d85;
	font-size: 12px;
	margin-top: 4px;
}

.hw-example-contract em {
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 999px;
	display: inline-flex;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	margin: 8px 0;
	padding: 7px 9px;
}

.hw-contract-inline-actions,
.hw-contract-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.hw-contract-pdf-preview-card {
	margin-top: 0;
}

.hw-contract-pdf-preview-card .hw-contract-section-heading {
	align-items: flex-start;
	gap: 16px;
}

.hw-contract-pdf-preview {
	background: #f8fafc;
	border: 1px solid #d9dee7;
	border-radius: 8px;
	display: block;
	height: min(78vh, 920px);
	min-height: 520px;
	width: 100%;
}

.hw-contract-score {
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
	display: flex;
	gap: 20px;
	margin-bottom: 18px;
	min-width: 0;
	padding: 18px;
}

.hw-contract-score .hw-ring {
	animation: hwScoreFill 780ms ease-out both;
	flex: 0 0 112px;
	height: 112px;
	transition: background 220ms ease, box-shadow 220ms ease;
	width: 112px;
}

.hw-contract-score .hw-ring::after {
	height: 86px;
	width: 86px;
}

.hw-contract-score .hw-ring span {
	font-size: 26px;
	font-weight: 900;
}

.hw-contract-score strong,
.hw-contract-score small {
	display: block;
	min-width: 0;
	overflow-wrap: anywhere;
}

.hw-contract-score small {
	color: #5f6d85;
	font-size: 12px;
	margin: 5px 0 8px;
}

.hw-contract-score .hw-ring.hw-ring-green {
	--hw-ring-color: #047857;
	box-shadow: inset 0 0 0 1px rgba(4, 120, 87, 0.16), 0 16px 34px rgba(4, 120, 87, 0.12);
}

.hw-contract-score .hw-ring.hw-ring-orange {
	--hw-ring-color: #c2410c;
	box-shadow: inset 0 0 0 1px rgba(194, 65, 12, 0.16), 0 16px 34px rgba(194, 65, 12, 0.12);
}

.hw-contract-score .hw-ring.hw-ring-red {
	--hw-ring-color: #b91c1c;
	box-shadow: inset 0 0 0 1px rgba(185, 28, 28, 0.16), 0 16px 34px rgba(185, 28, 28, 0.12);
}

.hw-contract-score .hw-ring.hw-ring-neutral {
	--hw-ring-color: #64748b;
	box-shadow: inset 0 0 0 1px rgba(100, 116, 139, 0.16), 0 16px 34px rgba(100, 116, 139, 0.1);
}

.hw-contract-score-laag {
	border-color: rgba(4, 120, 87, 0.22);
}

.hw-contract-score-middel {
	border-color: rgba(194, 65, 12, 0.22);
}

.hw-contract-score-hoog {
	border-color: rgba(185, 28, 28, 0.22);
}

.hw-contract-score- {
	border-color: rgba(100, 116, 139, 0.22);
}

.hw-contract-score-body {
	min-width: 0;
}

.hw-contract-score-body > strong {
	font-size: 18px;
	line-height: 1.25;
}

.hw-contract-score-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.hw-contract-score-meta > span {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 999px;
	color: #5f6d85;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 7px 10px;
}

.hw-contract-ai-summary {
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 14px;
	margin: 0 0 16px;
	padding: 16px;
}

.hw-contract-ai-summary strong {
	color: #0f172a;
	display: block;
	font-size: 13px;
	margin-bottom: 6px;
}

.hw-contract-ai-summary p {
	color: #5f6d85;
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
}

.hw-contract-analysis-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
}

.hw-contract-analysis-meta span {
	flex: 1 1 136px;
}

.hw-contract-analysis-meta span {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 12px;
	color: #667085;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
	min-width: 0;
	overflow-wrap: normal;
	padding: 13px;
	word-break: keep-all;
}

.hw-contract-analysis-meta strong {
	color: #0f172a;
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
	overflow-wrap: normal;
	word-break: keep-all;
}

.hw-contract-analysis-progress {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 14px;
	margin: 0 0 18px;
	padding: 14px;
}

.hw-contract-analysis-progress > div {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 10px;
}

.hw-contract-analysis-progress strong {
	color: #0f172a;
	font-size: 13px;
}

.hw-contract-analysis-progress span {
	color: #5f6d85;
	font-size: 12px;
	font-weight: 800;
	text-align: right;
}

.hw-contract-analysis-progress progress {
	appearance: none;
	display: block;
	height: 9px;
	width: 100%;
}

.hw-contract-analysis-progress progress::-webkit-progress-bar {
	background: #eef2f7;
	border-radius: 999px;
}

.hw-contract-analysis-progress progress::-webkit-progress-value {
	background: var(--hw-ring-color, #047857);
	border-radius: 999px;
}

.hw-contract-analysis-progress progress::-moz-progress-bar {
	background: var(--hw-ring-color, #047857);
	border-radius: 999px;
}

.hw-contract-score-laag ~ .hw-contract-analysis-progress {
	--hw-ring-color: #047857;
}

.hw-contract-score-middel ~ .hw-contract-analysis-progress {
	--hw-ring-color: #c2410c;
}

.hw-contract-score-hoog ~ .hw-contract-analysis-progress {
	--hw-ring-color: #b91c1c;
}

@keyframes hwScoreFill {
	from {
		--hw-ring-fill: 0;
	}

	to {
		--hw-ring-fill: var(--hw-progress);
	}
}

.hw-contract-empty-analysis {
	align-items: center;
	background: #f8fafc;
	border: 1px dashed #d8dee8;
	border-radius: 14px;
	color: #5f6d85;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 260px;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.hw-contract-empty-analysis > .dashicons {
	background: #fff1f2;
	border-radius: 999px;
	color: #ff3f4b;
	font-size: 28px;
	height: 54px;
	line-height: 54px;
	width: 54px;
}

.hw-contract-empty-analysis strong {
	color: #030b18;
}

.hw-contract-empty-analysis p {
	margin: 0;
	max-width: 360px;
}

.hw-risk-badge,
.hw-contract-status {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	gap: 6px;
	line-height: 1;
	padding: 7px 10px;
	white-space: nowrap;
}

.hw-risk-badge i {
	background: currentColor;
	border-radius: 999px;
	display: inline-block;
	height: 7px;
	width: 7px;
}

.hw-risk-laag {
	background: #ecfdf3;
	color: #047857;
}

.hw-risk-middel {
	background: #fff7ed;
	color: #c2410c;
}

.hw-risk-hoog {
	background: #fef3f2;
	color: #b91c1c;
}

.hw-risk-unknown {
	background: #f1f5f9;
	color: #475569;
}

.hw-contract-status {
	background: #f2f4f7;
	color: #475467;
}

.hw-contract-status-actief {
	background: #ecfdf3;
	color: #047857;
}

.hw-contract-status-loopt-af {
	background: #fff7ed;
	color: #c2410c;
}

.hw-contract-status-verlopen {
	background: #fef3f2;
	color: #b91c1c;
}

.hw-contract-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 18px;
}

.hw-contract-filters > * {
	flex: 1 1 150px;
}

.hw-contract-filters > *:first-child {
	flex-grow: 1.4;
	min-width: 220px;
}

.hw-contract-table-scroll {
	border: 1px solid #e5ebf3;
	border-radius: 12px;
	overflow-x: auto;
}

.hw-contract-table th,
.hw-contract-table td {
	white-space: nowrap;
}

.hw-contract-table td:first-child {
	font-weight: 800;
	white-space: normal;
}

.hw-contract-row.is-expired {
	background: #fffafa;
	box-shadow: inset 3px 0 0 #ff3f4b;
}

.hw-icon-button {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	color: #071225;
	display: inline-flex;
	height: 34px;
	justify-content: center;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
	width: 34px;
}

.hw-icon-button:hover,
.hw-icon-button:focus {
	background: #f8fafc;
	border-color: #b8c2d2;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	color: #071225;
	transform: translateY(-1px);
}

.hw-icon-button-danger {
	color: #b91c1c;
}

.hw-contract-empty-row td {
	color: #5f6d85;
	font-weight: 800;
	text-align: center;
}

.hw-mock-table {
	border-collapse: collapse;
	width: 100%;
}

.hw-mock-table th {
	background: #f0f2f6;
	border: 0;
	font-size: 11px;
	padding: 10px;
	text-align: left;
}

.hw-mock-table td {
	border-bottom: 1px solid #dfe4ec;
	font-size: 12px;
	padding: 16px 10px;
}

.hw-advice-stack {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.hw-advice-row {
	align-items: center;
	background: #fff;
	border: 1px solid #dfe4ec;
	border-radius: 12px;
	display: flex;
	gap: 16px;
	min-height: 122px;
	padding: 22px 28px;
}

.hw-advice-icon {
	align-items: center;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-weight: 900;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.hw-advice-icon svg {
	fill: none;
	height: 24px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
	width: 24px;
}

.hw-bg-red {
	background: #ff3f4b;
}

.hw-advice-row h2 {
	font-size: 18px;
	margin: 0 0 9px;
}

.hw-advice-row p,
.hw-dashboard-card p {
	color: #5f6d85;
	font-size: 12px;
	margin: 0;
}

.hw-impact {
	background: #f1f3f7;
	border-radius: 999px;
	font-size: 11px;
	margin-left: auto;
	padding: 9px 18px;
	text-align: center;
	width: 137px;
}

.hw-impact-red {
	color: #ff3f4b;
}

.hw-impact-orange {
	color: #ff951c;
}

.hw-impact-green {
	color: var(--hw-green);
}

.hw-impact-purple {
	color: #8a3ffc;
}

.hw-advice-board {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.hw-advice-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hw-advice-summary-card {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
	flex: 1 1 210px;
	min-height: 112px;
	padding: 20px;
	position: relative;
}

.hw-advice-summary-card::before {
	background: #dfe7f2;
	border-radius: 999px;
	content: "";
	height: 6px;
	left: 20px;
	position: absolute;
	right: 20px;
	top: 0;
}

.hw-advice-summary-card:nth-child(1)::before {
	background: #3478f6;
}

.hw-advice-summary-card:nth-child(2)::before {
	background: #ff3f4b;
}

.hw-advice-summary-card:nth-child(3)::before {
	background: #22a861;
}

.hw-advice-summary-card:nth-child(4)::before {
	background: #ff951c;
}

.hw-advice-summary-card span,
.hw-advice-summary-card small {
	color: #667085;
	display: block;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
}

.hw-advice-summary-card span {
	letter-spacing: 0.02em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.hw-advice-summary-card strong {
	color: #0f172a;
	display: block;
	font-size: 24px;
	line-height: 1.15;
	margin-bottom: 8px;
	overflow-wrap: anywhere;
}

.hw-filter-control {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.hw-advice-filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hw-advice-filters label {
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 999px;
	color: #344054;
	cursor: pointer;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 11px 14px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.hw-advice-filters label:hover,
.hw-advice-filters label:focus-within {
	border-color: #c9d4e4;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

#hw-filter-all:checked ~ .hw-advice-filters label[for="hw-filter-all"],
#hw-filter-warnings:checked ~ .hw-advice-filters label[for="hw-filter-warnings"],
#hw-filter-positive:checked ~ .hw-advice-filters label[for="hw-filter-positive"],
#hw-filter-impact:checked ~ .hw-advice-filters label[for="hw-filter-impact"] {
	background: #0f172a;
	border-color: #0f172a;
	color: #ffffff;
}

.hw-advice-list-modern {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

#hw-filter-warnings:checked ~ .hw-advice-list-modern .hw-advice-row:not(.hw-advice-warning),
#hw-filter-positive:checked ~ .hw-advice-list-modern .hw-advice-row:not(.hw-advice-positive),
#hw-filter-impact:checked ~ .hw-advice-list-modern .hw-advice-row:not(.hw-advice-high-impact) {
	display: none;
}

.hw-advice-list-modern .hw-advice-row {
	align-items: flex-start;
	border-color: #e1e8f2;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.035);
	gap: 18px;
	min-height: 0;
	padding: 24px;
	position: relative;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hw-advice-list-modern .hw-advice-row::before {
	border-radius: 14px 0 0 14px;
	bottom: -1px;
	content: "";
	left: -1px;
	position: absolute;
	top: -1px;
	width: 5px;
}

.hw-advice-list-modern .hw-advice-row:hover {
	border-color: #d3ddea;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
	transform: translateY(-2px);
}

.hw-advice-red::before {
	background: #ff3f4b;
}

.hw-advice-orange::before {
	background: #ff951c;
}

.hw-advice-green::before {
	background: #22a861;
}

.hw-advice-content {
	flex: 1 1 auto;
	min-width: 0;
}

.hw-advice-title-row {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 8px;
}

.hw-advice-title-row h2 {
	color: #0b1220;
	font-size: 19px;
	line-height: 1.25;
	margin: 0;
}

.hw-advice-list-modern .hw-advice-row p {
	color: #4f5f77;
	font-size: 13px;
	line-height: 1.55;
	max-width: 820px;
}

.hw-advice-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.hw-advice-meta span {
	background: #f6f8fb;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	color: #344054;
	font-size: 12px;
	font-weight: 800;
	padding: 8px 11px;
}

.hw-advice-list-modern .hw-impact {
	align-items: center;
	border: 1px solid transparent;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 7px;
	justify-content: center;
	margin-left: 0;
	min-width: 130px;
	padding: 9px 12px;
	width: auto;
}

.hw-advice-list-modern .hw-impact span {
	align-items: center;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 10px;
	height: 18px;
	justify-content: center;
	line-height: 1;
	width: 18px;
}

.hw-advice-list-modern .hw-impact-red {
	background: #fff1f2;
	border-color: #fecdd3;
	color: #be123c;
}

.hw-advice-list-modern .hw-impact-red span {
	background: #ff3f4b;
}

.hw-advice-list-modern .hw-impact-orange {
	background: #fff7ed;
	border-color: #fed7aa;
	color: #c2410c;
}

.hw-advice-list-modern .hw-impact-orange span {
	background: #ff951c;
}

.hw-advice-list-modern .hw-impact-green {
	background: #ecfdf3;
	border-color: #bbf7d0;
	color: #047857;
}

.hw-advice-list-modern .hw-impact-green span {
	background: #22a861;
}

.hw-advice-reason {
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 10px;
	margin-top: 14px;
	max-width: 900px;
	padding: 0;
}

.hw-advice-reason summary {
	color: #1f2937;
	cursor: pointer;
	font-size: 12px;
	font-weight: 900;
	list-style: none;
	padding: 12px 14px;
}

.hw-advice-reason summary::-webkit-details-marker {
	display: none;
}

.hw-advice-reason summary::after {
	color: #667085;
	content: "+";
	float: right;
	font-size: 15px;
	line-height: 1;
}

.hw-advice-reason[open] summary::after {
	content: "-";
}

.hw-advice-reason ul {
	border-top: 1px solid #e5ebf3;
	color: #5f6d85;
	font-size: 12px;
	line-height: 1.55;
	margin: 0;
	padding: 12px 18px 14px 30px;
}

.hw-priority-panel {
	padding: 26px;
}

.hw-priority-heading {
	align-items: flex-start;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 20px;
}

.hw-priority-heading h2 {
	margin-bottom: 8px;
}

.hw-priority-heading span {
	background: #eef2f7;
	border-radius: 999px;
	color: #344054;
	font-size: 11px;
	font-weight: 900;
	padding: 8px 11px;
	white-space: nowrap;
}

.hw-priority-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hw-priority-item {
	background: #fbfcfe;
	border: 1px solid #e5ebf3;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 13px;
	padding: 16px;
}

.hw-priority-item h3 {
	color: #0f172a;
	font-size: 15px;
	line-height: 1.3;
	margin: 8px 0 6px;
}

.hw-priority-item p {
	font-size: 12px;
	line-height: 1.5;
}

.hw-priority-pill {
	border-radius: 999px;
	display: inline-flex;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	padding: 7px 9px;
	text-transform: uppercase;
}

.hw-priority-pill-hoog {
	background: #fff1f2;
	color: #be123c;
}

.hw-priority-pill-middel {
	background: #fff7ed;
	color: #c2410c;
}

.hw-priority-pill-laag {
	background: #ecfdf3;
	color: #047857;
}

.hw-priority-progress {
	background: #edf2f7;
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
	width: 100%;
}

.hw-priority-progress span {
	background: #3478f6;
	border-radius: inherit;
	display: block;
	height: 100%;
}

.hw-priority-item-red .hw-priority-progress span {
	background: #ff3f4b;
}

.hw-priority-item-orange .hw-priority-progress span {
	background: #ff951c;
}

.hw-priority-item-green .hw-priority-progress span {
	background: #22a861;
}

.hw-chart {
	min-height: 245px;
}

.hw-chart svg {
	height: 230px;
	width: 100%;
}

.hw-chart line {
	stroke: #edf2f7;
	stroke-width: 0.8;
	transition: stroke 180ms ease;
}

.hw-chart polyline {
	fill: none;
	stroke-linecap: round;
	stroke-width: 3.2;
	transition: filter 180ms ease, opacity 180ms ease, stroke-width 180ms ease;
}

.hw-chart-blue {
	stroke: #3478f6;
}

.hw-chart-green {
	stroke: #16a34a;
	stroke-width: 3.4;
}

.hw-chart svg:hover line {
	stroke: #e8edf5;
}

.hw-chart polyline:hover {
	filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.11));
	opacity: 0.96;
	stroke-width: 4.4;
}

.hw-chart-point {
	fill: #fff;
	stroke-width: 2.4;
	transform-box: fill-box;
	transform-origin: center;
	transition: filter 180ms ease, r 180ms ease, stroke-width 180ms ease, transform 180ms ease;
}

.hw-chart-point-blue {
	stroke: #3478f6;
}

.hw-chart-point-green {
	stroke: #16a34a;
}

.hw-chart-point:hover {
	filter: drop-shadow(0 5px 9px rgba(15, 23, 42, 0.13));
	r: 5px;
	stroke-width: 3.2;
	transform: scale(1.08);
}

.hw-chart text {
	fill: #64748b;
	font-size: 10px;
}

.hw-chart-modern .hw-chart-axis-label {
	fill: #8a97aa;
	font-size: 9px;
	font-weight: 800;
}

.hw-chart-labels {
	display: flex;
	gap: 34px;
	justify-content: flex-end;
}

.hw-chart-labels span:first-child {
	color: #3478f6;
}

.hw-chart-labels span:last-child,
.hw-guideline-list span,
.hw-system-status p {
	color: #16a34a;
}

.hw-guideline-list div {
	align-items: center;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	min-height: 53px;
	padding: 0 18px;
}

.hw-guideline-list strong {
	font-size: 13px;
}

.hw-report-toolbar {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
}

.hw-report-toolbar .hw-field {
	min-width: 190px;
}

.hw-report-summary {
	border-top: 1px solid #e4e9f1;
	margin-top: 18px;
	padding-top: 18px;
}

.hw-report-summary h3 {
	font-size: 15px;
	margin: 0 0 10px;
}

.hw-report-summary ul,
.hw-report-preview-panel ul {
	color: #5f6d85;
	font-size: 12px;
	line-height: 1.6;
	margin: 0;
	padding-left: 18px;
}

.hw-export-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hw-export-item {
	align-items: flex-start;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 0;
	padding: 18px;
	position: relative;
}

.hw-export-icon {
	align-items: center;
	background: #f2f5fa;
	border-radius: 8px;
	color: #3478f6;
	display: flex;
	flex: 0 0 44px;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.hw-export-icon svg,
.hw-mini-button svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 18px;
}

.hw-export-main {
	min-width: 0;
	width: 100%;
}

.hw-export-main strong,
.hw-export-main small {
	display: block;
}

.hw-export-main strong {
	color: #030b18;
	font-size: 15px;
	line-height: 1.25;
	margin-bottom: 6px;
}

.hw-export-main small {
	color: #5f6d85;
	font-size: 12px;
	line-height: 1.45;
	margin-bottom: 10px;
}

.hw-status-pill {
	border-radius: 999px;
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 6px 10px;
}

.hw-status-ready {
	background: #effdf5;
	color: #08a040;
}

.hw-status-processing {
	background: #fff8ea;
	color: #c96700;
}

.hw-export-actions {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	width: 100%;
}

.hw-mini-button {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 7px;
	color: #071225;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 11px;
	font-weight: 800;
	justify-content: center;
	min-height: 34px;
	padding: 8px 12px;
	text-decoration: none;
	white-space: nowrap;
}

.hw-mini-button:hover,
.hw-mini-button:focus {
	border-color: #b8c2d2;
	color: #071225;
}

.hw-mini-button-primary {
	background: #ff3f4b;
	border-color: #ff3f4b;
	color: #ffffff;
	min-width: 134px;
}

.hw-mini-button-primary:hover,
.hw-mini-button-primary:focus {
	background: #111827;
	border-color: #111827;
	color: #ffffff;
}

.hw-export-menu {
	position: relative;
	z-index: 30;
}

.hw-export-menu[open] {
	z-index: 120;
}

.hw-export-menu summary {
	align-items: center;
	border: 1px solid #dfe4ec;
	border-radius: 7px;
	color: #071225;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	line-height: 1;
	list-style: none;
	width: 34px;
}

.hw-export-menu summary::-webkit-details-marker {
	display: none;
}

.hw-export-menu div {
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(16, 24, 39, 0.14);
	display: flex;
	flex-direction: column;
	min-width: 180px;
	padding: 6px;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 130;
}

.hw-export-menu:not([open]):not(:hover):not(:focus-within) > div {
	display: none;
}

.hw-export-menu:hover,
.hw-export-menu:focus-within {
	z-index: 120;
}

.hw-export-menu:hover > div,
.hw-export-menu:focus-within > div {
	display: flex;
}

.hw-export-menu:hover summary,
.hw-export-menu:focus-within summary {
	background: #f8fafc;
	border-color: #c9d4e4;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.hw-export-menu div::before {
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	right: 0;
	top: -9px;
}

.hw-export-item-premium:last-child .hw-export-menu div {
	bottom: calc(100% + 8px);
	top: auto;
}

.hw-export-item-premium:last-child .hw-export-menu div::before {
	bottom: -9px;
	top: auto;
}

.hw-export-menu a,
.hw-export-menu span {
	border-radius: 6px;
	color: #071225;
	font-size: 12px;
	font-weight: 800;
	padding: 9px 10px;
	text-decoration: none;
	white-space: nowrap;
}

.hw-export-menu a:hover,
.hw-export-menu a:focus {
	background: #f2f5fa;
	color: #071225;
}

.hw-export-menu span {
	color: #9aa5b5;
}

.hw-report-preview {
	display: none;
	inset: 0;
	position: fixed;
	z-index: 1000;
}

.hw-report-preview:target,
.hw-report-preview.is-open {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 24px;
}

.hw-report-preview-backdrop {
	background: rgba(7, 18, 37, 0.58);
	border: 0;
	cursor: pointer;
	inset: 0;
	padding: 0;
	position: absolute;
}

.hw-report-preview-panel {
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 24px 60px rgba(7, 18, 37, 0.28);
	max-width: 520px;
	padding: 24px;
	position: relative;
	width: min(100%, 520px);
	z-index: 1;
}

.hw-report-preview-panel header {
	align-items: flex-start;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 18px;
}

.hw-report-preview-panel header small {
	color: #5f6d85;
	display: block;
	font-size: 11px;
	font-weight: 800;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.hw-report-preview-panel h2 {
	font-size: 20px;
	margin: 0;
}

.hw-report-preview-panel header > a,
.hw-report-preview-close {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 999px;
	color: #071225;
	cursor: pointer;
	display: flex;
	flex: 0 0 34px;
	font: inherit;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	text-decoration: none;
	width: 34px;
}

.hw-report-preview-panel footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	margin-top: 22px;
}

.hw-report-toolbar-modern {
	align-items: flex-end;
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
	margin-bottom: 18px;
	padding: 18px;
}

.hw-report-toolbar-modern .hw-button span {
	align-items: center;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	display: inline-flex;
	font-size: 16px;
	height: 22px;
	justify-content: center;
	line-height: 1;
	margin-right: 8px;
	width: 22px;
}

.hw-report-kpi-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0 0 28px;
}

.hw-report-kpi-card {
	align-items: center;
	animation: hwFadeUp 460ms ease both;
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
	display: flex;
	flex: 1 1 220px;
	gap: 16px;
	min-height: 118px;
	padding: 22px;
	position: relative;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hw-report-kpi-card:nth-child(2) {
	animation-delay: 60ms;
}

.hw-report-kpi-card:nth-child(3) {
	animation-delay: 120ms;
}

.hw-report-kpi-card:nth-child(4) {
	animation-delay: 180ms;
}

.hw-report-kpi-card:hover {
	border-color: #d4deeb;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
	transform: translateY(-2px);
}

.hw-report-kpi-icon {
	align-items: center;
	background: #eff6ff;
	border-radius: 12px;
	color: #3478f6;
	display: inline-flex;
	flex: 0 0 48px;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.hw-report-kpi-profit .hw-report-kpi-icon,
.hw-report-kpi-margin .hw-report-kpi-icon {
	background: #ecfdf3;
	color: #22a861;
}

.hw-report-kpi-growth .hw-report-kpi-icon {
	background: #fff7ed;
	color: #ff951c;
}

.hw-report-kpi-icon svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.3;
	width: 22px;
}

.hw-report-kpi-card small {
	color: #667085;
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.02em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.hw-report-kpi-card strong {
	color: #0f172a;
	display: block;
	font-size: 24px;
	line-height: 1.15;
	margin-bottom: 8px;
	overflow-wrap: anywhere;
}

.hw-report-kpi-card em {
	border-radius: 999px;
	display: inline-flex;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	padding: 7px 9px;
}

.hw-trend-positive {
	background: #ecfdf3;
	color: #047857;
}

.hw-trend-negative {
	background: #fff1f2;
	color: #be123c;
}

.hw-trend-neutral {
	background: #eef2f7;
	color: #475467;
}

.hw-report-flex-modern {
	align-items: stretch;
	margin-bottom: 34px;
}

.hw-report-flex-modern > :first-child {
	flex: 1 1 660px;
}

.hw-report-flex-modern > :last-child {
	flex: 1 1 390px;
}

.hw-report-section-heading {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 20px;
}

.hw-report-section-heading h2 {
	margin-bottom: 7px;
}

.hw-report-section-heading p {
	color: #5f6d85;
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
}

.hw-report-chart-card {
	overflow: visible;
	position: relative;
	z-index: 20;
}

.hw-chart-modern {
	background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
	border: 1px solid #eef2f7;
	border-radius: 14px;
	min-height: 280px;
	overflow: visible;
	padding: 14px;
	position: relative;
	z-index: 30;
}

.hw-chart-modern svg {
	height: 260px;
	overflow: visible;
}

.hw-chart-skeleton {
	background: linear-gradient(90deg, #f3f6fb 0%, #eef2f7 45%, #f8fafc 80%);
	background-size: 220% 100%;
	border-radius: 12px;
	inset: 14px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 220ms ease;
	z-index: 2;
}

.hw-chart-tooltip {
	background: #0f172a;
	border-radius: 8px;
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
	max-width: min(420px, calc(100vw - 40px));
	min-width: 260px;
	opacity: 0;
	padding: 10px 12px;
	pointer-events: none;
	position: absolute;
	transform: translateY(4px);
	transition: opacity 160ms ease, transform 160ms ease;
	white-space: normal;
	z-index: 100000;
}

.hw-chart-tooltip.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hw-report-chart-card.is-loading .hw-chart-skeleton {
	animation: hwSkeleton 1s ease infinite;
	opacity: 1;
}

.hw-chart-modern .hw-chart-gridline {
	stroke: #edf2f7;
	stroke-width: 1;
}

.hw-chart-area {
	pointer-events: none;
}

.hw-chart-area-blue {
	fill: url(#hw-chart-blue-area);
}

.hw-chart-area-green {
	fill: url(#hw-chart-green-area);
}

.hw-chart-line {
	animation: hwChartDraw 950ms ease both;
	fill: none;
	stroke-dasharray: 900;
	stroke-dashoffset: 900;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 4;
}

.hw-chart-modern .hw-chart-green {
	stroke-width: 4;
}

.hw-chart-modern .hw-chart-point {
	filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.12));
	stroke-width: 3;
}

.hw-chart-point-group {
	cursor: pointer;
	outline: none;
}

.hw-chart-point-group:hover .hw-chart-point,
.hw-chart-point-group:focus .hw-chart-point {
	filter: drop-shadow(0 7px 12px rgba(15, 23, 42, 0.18));
	transform: scale(1.18);
}

.hw-chart-legend {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.hw-chart-legend span {
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 999px;
	color: #344054;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	gap: 7px;
	line-height: 1;
	padding: 8px 10px;
}

.hw-chart-legend i {
	border-radius: 999px;
	display: inline-block;
	height: 8px;
	width: 8px;
}

.hw-dot-blue {
	background: #3478f6;
}

.hw-dot-green {
	background: #22a861;
}

.hw-ai-summary-modern {
	border-top: 1px solid #e4e9f1;
	margin-top: 22px;
	padding-top: 22px;
}

.hw-ai-summary-title {
	align-items: center;
	display: flex;
	gap: 13px;
	margin-bottom: 16px;
}

.hw-ai-summary-title > span {
	align-items: center;
	background: #0f172a;
	border-radius: 10px;
	color: #ffffff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.hw-ai-summary-title h3 {
	font-size: 16px;
	margin: 0 0 4px;
}

.hw-ai-summary-title p {
	color: #667085;
	font-size: 12px;
	margin: 0;
}

.hw-ai-insight-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hw-ai-insight {
	align-items: flex-start;
	animation: hwFadeUp 520ms ease both;
	background: #fbfcfe;
	border: 1px solid #e5ebf3;
	border-radius: 12px;
	display: flex;
	flex: 1 1 250px;
	gap: 12px;
	padding: 14px;
}

.hw-ai-insight > span {
	align-items: center;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	flex: 0 0 26px;
	font-size: 12px;
	font-weight: 900;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.hw-ai-insight-green > span {
	background: #22a861;
}

.hw-ai-insight-orange > span {
	background: #ff951c;
}

.hw-ai-insight small {
	border-radius: 999px;
	display: inline-flex;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 7px;
	padding: 6px 8px;
	text-transform: uppercase;
}

.hw-ai-insight-green small {
	background: #ecfdf3;
	color: #047857;
}

.hw-ai-insight-orange small {
	background: #fff7ed;
	color: #c2410c;
}

.hw-ai-insight strong {
	color: #0f172a;
	display: block;
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 5px;
}

.hw-ai-insight p {
	color: #667085;
	font-size: 12px;
	line-height: 1.45;
	margin: 0;
}

.hw-report-export-card {
	overflow: visible;
}

.hw-export-item-premium {
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
	padding: 20px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hw-export-item-premium:hover {
	border-color: #d2dce9;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
	transform: translateY(-3px);
}

.hw-export-topline {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	width: 100%;
}

.hw-export-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: flex-end;
}

.hw-export-tags span {
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 999px;
	color: #475467;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	padding: 7px 8px;
}

.hw-export-tags span:first-child {
	background: #fff1f2;
	border-color: #fecdd3;
	color: #be123c;
}

.hw-export-icon-chart {
	background: #ecfdf3;
	color: #22a861;
}

.hw-export-icon-shield {
	background: #fff7ed;
	color: #ff951c;
}

.hw-export-actions .hw-mini-button {
	gap: 7px;
	min-height: 40px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.hw-export-actions .hw-mini-button:hover,
.hw-export-actions .hw-mini-button:focus {
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
	transform: translateY(-1px);
}

.hw-export-menu summary {
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hw-export-menu summary:hover,
.hw-export-menu summary:focus {
	background: #f8fafc;
	border-color: #c9d4e4;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.hw-export-menu summary svg {
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.hw-report-table-modern {
	overflow: hidden;
	padding-bottom: 28px;
}

.hw-table-scroll {
	border: 1px solid #e5ebf3;
	border-radius: 12px;
	overflow: hidden;
}

.hw-report-table-modern .hw-mock-table th {
	background: #f8fafc;
	padding: 0;
}

.hw-report-table-modern .hw-mock-table th button {
	align-items: center;
	background: transparent;
	border: 0;
	color: #0f172a;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 11px;
	font-weight: 900;
	gap: 7px;
	min-height: 44px;
	padding: 12px;
	text-align: left;
	width: 100%;
}

.hw-report-table-modern .hw-mock-table th button::after {
	color: #98a2b3;
	content: "sort";
	font-size: 11px;
}

.hw-report-table-modern .hw-mock-table th button[aria-sort="ascending"]::after {
	content: "asc";
}

.hw-report-table-modern .hw-mock-table th button[aria-sort="descending"]::after {
	content: "desc";
}

.hw-report-table-modern .hw-mock-table tbody tr {
	transition: background-color 180ms ease, transform 180ms ease;
}

.hw-report-table-modern .hw-mock-table tbody tr:nth-child(even) {
	background: #fbfcfe;
}

.hw-report-table-modern .hw-mock-table tbody tr:hover {
	background: #f5f8fc;
}

.hw-report-table-modern .hw-mock-table td {
	font-size: 13px;
	padding: 17px 12px;
}

.hw-table-status {
	border-radius: 999px;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	padding: 7px 10px;
}

.hw-table-status-sterk,
.hw-table-status-gezond,
.hw-table-status-goed {
	background: #ecfdf3;
	color: #047857;
}

.hw-table-status-let-op {
	background: #fff7ed;
	color: #c2410c;
}

.hw-table-status-risico {
	background: #fff1f2;
	color: #be123c;
}

.hw-sidebar-toggle {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
	cursor: pointer;
	display: none;
	flex-direction: column;
	gap: 3px;
	height: 38px;
	justify-content: center;
	left: 14px;
	position: fixed;
	top: calc(var(--wp-admin--admin-bar--height, 0px) + 84px);
	width: 38px;
	z-index: 100;
}

.hw-sidebar-toggle span {
	background: #0f172a;
	border-radius: 999px;
	display: block;
	height: 2px;
	width: 16px;
}

.hw-sidebar-collapsed .hw-sidebar {
	flex-basis: 78px;
}

.hw-sidebar-collapsed .hw-nav-item {
	font-size: 0;
	justify-content: center;
	padding: 0;
}

.hw-sidebar-collapsed .hw-nav-item span {
	font-size: 18px;
}

@keyframes hwFadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hwChartDraw {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes hwSkeleton {
	0% {
		background-position: 160% 0;
	}

	100% {
		background-position: -80% 0;
	}
}

.hw-report-toast {
	background: #0f172a;
	border: 1px solid #263244;
	border-radius: 999px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
	color: #ffffff;
	font-size: 12px;
	font-weight: 900;
	opacity: 0;
	padding: 10px 14px;
	pointer-events: none;
	position: fixed;
	right: 24px;
	top: calc(var(--wp-admin--admin-bar--height, 0px) + 96px);
	transform: translateY(-8px);
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 1200;
}

.hw-report-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hw-report-toolbar-modern {
	position: relative;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.hw-report-toolbar-modern.is-generating {
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
}

.hw-report-toolbar-modern.is-generating .hw-button {
	pointer-events: none;
}

.hw-report-toolbar-modern.is-generating .hw-button::after {
	animation: hwSpin 700ms linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	border-top-color: #ffffff;
	content: "";
	height: 16px;
	margin-left: 10px;
	width: 16px;
}

.hw-report-kpi-card {
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.065);
	gap: 18px;
}

.hw-report-kpi-card:hover {
	box-shadow: 0 24px 58px rgba(15, 23, 42, 0.11);
}

.hw-report-kpi-icon {
	background: linear-gradient(135deg, #eff6ff 0%, #e6f0ff 100%);
}

.hw-report-kpi-profit .hw-report-kpi-icon,
.hw-report-kpi-margin .hw-report-kpi-icon {
	background: linear-gradient(135deg, #ecfdf3 0%, #dcfce7 100%);
}

.hw-report-kpi-growth .hw-report-kpi-icon {
	background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.hw-report-kpi-card small {
	margin-bottom: 10px;
}

.hw-report-kpi-card strong {
	margin-bottom: 12px;
}

.hw-chart-hover-line {
	opacity: 0;
	pointer-events: none;
	stroke: #94a3b8;
	stroke-dasharray: 4 6;
	stroke-width: 1.2;
	transition: opacity 160ms ease;
}

.hw-chart-hover-line.is-visible {
	opacity: 0.7;
}

.hw-chart-line,
.hw-chart-area,
.hw-chart-point-group {
	transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.hw-chart-area.is-muted,
.hw-chart-line.is-muted,
.hw-chart-point-group.is-muted {
	opacity: 0.14;
}

.hw-chart-point-group:hover .hw-chart-point,
.hw-chart-point-group:focus .hw-chart-point {
	filter: drop-shadow(0 0 8px rgba(52, 120, 246, 0.32)) drop-shadow(0 7px 12px rgba(15, 23, 42, 0.18));
}

.hw-chart-legend button {
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 999px;
	color: #344054;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 11px;
	font-weight: 900;
	gap: 7px;
	line-height: 1;
	padding: 8px 10px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hw-chart-legend button:hover,
.hw-chart-legend button:focus {
	border-color: #cbd5e1;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.hw-chart-legend button:not(.is-active) {
	opacity: 0.45;
}

.hw-ai-summary-title > span {
	background: linear-gradient(135deg, #0f172a 0%, #263244 100%);
}

.hw-ai-summary-title > span::after {
	content: "*";
	font-size: 12px;
	margin-left: 1px;
	margin-top: -10px;
	opacity: 0.75;
}

.hw-ai-insight {
	display: block;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hw-ai-insight:hover,
.hw-ai-insight:focus-within {
	border-color: #d3ddea;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.hw-ai-insight summary {
	align-items: flex-start;
	cursor: pointer;
	display: flex;
	gap: 12px;
	list-style: none;
}

.hw-ai-insight summary::-webkit-details-marker {
	display: none;
}

.hw-ai-insight-icon {
	align-items: center;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	flex: 0 0 26px;
	font-size: 12px;
	font-weight: 900;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.hw-ai-insight-green .hw-ai-insight-icon {
	background: #22a861;
}

.hw-ai-insight-orange .hw-ai-insight-icon {
	background: #ff951c;
}

.hw-ai-insight > span {
	display: none;
}

.hw-ai-insight-body {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
}

.hw-ai-insight-text {
	color: #667085;
	display: block;
	font-size: 12px;
	line-height: 1.45;
}

.hw-ai-insight p {
	margin: 12px 0 0 38px;
}

.hw-ai-confidence {
	align-items: flex-end;
	display: flex;
	flex: 0 0 64px;
	flex-direction: column;
	gap: 6px;
	margin-top: 3px;
}

.hw-ai-confidence::before {
	background: #edf2f7;
	border-radius: 999px;
	content: "";
	height: 6px;
	width: 64px;
}

.hw-ai-confidence i {
	background: #22a861;
	border-radius: 999px;
	display: block;
	height: 6px;
	margin-top: -12px;
	max-width: 64px;
}

.hw-ai-insight-orange .hw-ai-confidence i {
	background: #ff951c;
}

.hw-ai-confidence b {
	color: #667085;
	font-size: 10px;
	font-weight: 900;
}

.hw-export-item-premium {
	gap: 12px;
	padding: 18px;
}

.hw-export-item-premium:has(.hw-export-menu[open]),
.hw-export-item-premium:has(.hw-export-menu:hover),
.hw-export-item-premium:has(.hw-export-menu:focus-within) {
	position: relative;
	z-index: 90;
}

.hw-export-menu[open] summary {
	background: #f8fafc;
	border-color: #c9d4e4;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.hw-export-main strong {
	font-size: 16px;
	margin-bottom: 8px;
}

.hw-export-meta-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}

.hw-export-meta-grid span {
	background: #f8fafc;
	border: 1px solid #edf2f7;
	border-radius: 10px;
	flex: 1 1 calc(50% - 4px);
	padding: 10px;
}

.hw-export-meta-grid small,
.hw-export-mini-kpi small {
	color: #667085;
	display: block;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.hw-export-meta-grid strong,
.hw-export-mini-kpi strong {
	color: #0f172a;
	display: block;
	font-size: 12px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.hw-export-mini-kpi {
	align-items: center;
	background: linear-gradient(135deg, #fbfcff 0%, #f8fafc 100%);
	border: 1px solid #e5ebf3;
	border-radius: 12px;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 12px;
	width: 100%;
}

.hw-export-mini-kpi em {
	flex: 0 0 auto;
	white-space: nowrap;
}

.hw-report-table-modern .hw-mock-table th {
	position: sticky;
	top: 0;
	z-index: 2;
}

.hw-report-table-modern .hw-mock-table th button::after {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #98a2b3;
	content: "";
	height: 0;
	margin-top: 2px;
	width: 0;
}

.hw-report-table-modern .hw-mock-table th button[aria-sort="ascending"]::after {
	border-bottom: 5px solid #0f172a;
	border-top: 0;
}

.hw-report-table-modern .hw-mock-table th button[aria-sort="descending"]::after {
	border-top-color: #0f172a;
}

.hw-report-table-modern .hw-mock-table tbody tr:hover {
	box-shadow: inset 3px 0 0 #3478f6;
}

.hw-table-status {
	align-items: center;
	gap: 6px;
}

.hw-table-status i {
	background: currentColor;
	border-radius: 999px;
	display: inline-block;
	height: 7px;
	width: 7px;
}

.hw-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 420ms ease, transform 420ms ease;
}

.hw-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes hwSpin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes hwUploadProgress {
	0% {
		transform: translateX(-120%);
	}

	100% {
		transform: translateX(260%);
	}
}

.hw-contract-help {
	bottom: 96px;
	position: fixed;
	right: 24px;
	z-index: 9998;
}

.hw-contract-help-toggle {
	align-items: center;
	background: linear-gradient(135deg, #ff3f4b, #d92332);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(217, 35, 50, 0.28);
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font-size: 24px;
	font-weight: 900;
	height: 52px;
	justify-content: center;
	width: 52px;
}

.hw-contract-help-toggle:hover,
.hw-contract-help-toggle:focus {
	box-shadow: 0 18px 42px rgba(217, 35, 50, 0.36);
	outline: none;
	transform: translateY(-2px);
}

.hw-contract-help-panel {
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 16px;
	bottom: 64px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
	max-height: min(620px, calc(100vh - 132px));
	opacity: 0;
	overflow-y: auto;
	padding: 18px;
	pointer-events: none;
	position: absolute;
	right: 0;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	visibility: hidden;
	width: 370px;
}

.hw-contract-help.is-open .hw-contract-help-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.hw-contract-help-panel header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
}

.hw-contract-help-panel h2 {
	font-size: 18px;
	margin: 0;
}

.hw-contract-help-panel h3 {
	font-size: 14px;
	margin: 0 0 6px;
}

.hw-contract-help-panel p {
	color: #5f6d85;
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
}

.hw-contract-help-panel section {
	border-top: 1px solid #edf2f7;
	padding: 14px 0;
}

.hw-contract-help-panel header + section {
	border-top: 0;
	padding-top: 0;
}

.hw-contract-help-panel header button {
	align-items: center;
	background: #f2f4f7;
	border: 0;
	border-radius: 999px;
	color: #0f172a;
	cursor: pointer;
	display: inline-flex;
	height: 32px;
	justify-content: center;
	width: 32px;
}

.hw-profile-form {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin-top: 20px;
}

.hw-profile-form label {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

.hw-profile-form label span {
	flex: 0 0 154px;
}

.hw-profile-form label input,
.hw-profile-form label select {
	flex: 1 1 auto;
	min-width: 0;
}

.hw-profile-form label .hw-error {
	flex: 1 1 100%;
	margin-left: 176px;
}

.hw-profile-summary {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 12px;
}

.hw-profile-row {
	align-items: center;
	border-bottom: 1px solid #dfe4ec;
	display: flex;
	gap: 22px;
	justify-content: space-between;
	padding: 12px 0;
}

.hw-profile-row:last-child {
	border-bottom: 0;
}

.hw-profile-row span {
	color: #5f6d85;
	font-size: 12px;
	font-weight: 800;
}

.hw-profile-row strong {
	color: #030b18;
	font-size: 14px;
	text-align: right;
}

.hw-card-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.hw-setting-row {
	align-items: center;
	background: #fff;
	border: 1px solid #dfe4ec;
	border-radius: 12px;
	display: flex;
	gap: 16px;
	min-height: 82px;
	padding: 18px;
}

.hw-setting-row > span {
	align-items: center;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-weight: 900;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.hw-setting-row h2 {
	font-size: 17px;
	margin: 0 0 5px;
}

.hw-setting-row p {
	color: #5f6d85;
	font-size: 12px;
	margin: 0;
}

.hw-setting-row a {
	background: #f1f3f7;
	border-radius: 999px;
	color: #030b18;
	font-size: 12px;
	font-weight: 800;
	margin-left: auto;
	padding: 10px 22px;
}

.hw-settings-editor {
	max-width: 920px;
}

.hw-settings-editor .hw-form {
	gap: 18px;
}

.hw-toggle-row {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 12px;
	display: flex;
	gap: 14px;
	padding: 16px;
}

.hw-toggle-row input {
	accent-color: #ff3f4b;
	flex: 0 0 auto;
	height: 18px;
	margin-top: 3px;
	width: 18px;
}

.hw-toggle-row span {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hw-toggle-row strong {
	color: #030b18;
	font-size: 15px;
	line-height: 1.25;
}

.hw-toggle-row small {
	color: #5f6d85;
	font-size: 12px;
	line-height: 1.45;
}

.hw-security-mail-status {
	background: #f7f9fc;
	border: 1px solid #dfe4ec;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 14px 16px;
}

.hw-security-mail-status strong {
	color: #030b18;
	font-size: 14px;
}

.hw-security-mail-status span,
.hw-security-mail-status small {
	color: #5f6d85;
	font-size: 12px;
	line-height: 1.45;
}

.hw-system-status {
	margin-top: 26px;
}

.hw-system-status p {
	font-weight: 800;
}

@media (max-width: 1180px) {
	.hw-sidebar {
		flex-basis: 92px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.hw-nav-heading {
		font-size: 0;
		margin-bottom: 12px;
	}

	.hw-nav-item {
		justify-content: center;
		padding: 14px 0;
	}

	.hw-nav-label {
		display: none;
	}

	.hw-stat-flex,
	.hw-action-flex {
		flex-wrap: wrap;
	}
}

@media (max-width: 760px) {
	.hw-app {
		display: block;
	}

	.hw-sidebar {
		display: none;
	}

	.hw-main {
		padding: 20px 14px;
	}

	.hw-dashboard-top {
		display: flex;
		flex-direction: column;
	}

	.hw-period {
		min-width: 0;
		width: 100%;
	}

	.hw-stat-flex,
	.hw-ring-flex,
	.hw-action-flex {
		flex-direction: column;
	}

	.hw-report-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.hw-report-toolbar .hw-field,
	.hw-report-toolbar .hw-button {
		width: 100%;
	}

	.hw-report-toolbar-modern {
		padding: 14px;
	}

	.hw-report-kpi-flex {
		flex-direction: column;
	}

	.hw-report-kpi-card {
		min-height: 0;
		padding: 18px;
	}

	.hw-report-section-heading {
		flex-direction: column;
	}

	.hw-chart-legend {
		justify-content: flex-start;
	}

	.hw-chart-modern {
		margin-left: -4px;
		margin-right: -4px;
		overflow: visible;
		padding: 10px;
	}

	.hw-chart-modern svg {
		min-width: 650px;
	}

	.hw-ai-insight-list {
		flex-direction: column;
	}

	.hw-export-actions {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.hw-export-actions .hw-mini-button {
		flex: 1 1 auto;
	}

	.hw-export-topline {
		flex-direction: column;
	}

	.hw-export-tags {
		justify-content: flex-start;
	}

	.hw-export-menu div {
		left: auto;
		right: 0;
	}

	.hw-report-preview:target,
	.hw-report-preview.is-open {
		align-items: flex-end;
		padding: 12px;
	}

	.hw-report-preview-panel {
		max-height: calc(100vh - 24px);
		overflow-y: auto;
	}

	.hw-table-scroll {
		border: 0;
		overflow: visible;
	}

	.hw-report-table-modern .hw-mock-table,
	.hw-report-table-modern .hw-mock-table thead,
	.hw-report-table-modern .hw-mock-table tbody,
	.hw-report-table-modern .hw-mock-table tr,
	.hw-report-table-modern .hw-mock-table th,
	.hw-report-table-modern .hw-mock-table td {
		display: block;
		width: 100%;
	}

	.hw-report-table-modern .hw-mock-table thead {
		border: 0;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		height: 1px;
		overflow: hidden;
		position: absolute;
		white-space: nowrap;
		width: 1px;
	}

	.hw-report-table-modern .hw-mock-table tbody {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.hw-report-table-modern .hw-mock-table tbody tr {
		background: #ffffff;
		border: 1px solid #e5ebf3;
		border-radius: 12px;
		box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
		padding: 8px 0;
	}

	.hw-report-table-modern .hw-mock-table td {
		align-items: center;
		border-bottom: 1px solid #eef2f7;
		display: flex;
		justify-content: space-between;
		padding: 12px 14px;
		text-align: right;
	}

	.hw-report-table-modern .hw-mock-table td:last-child {
		border-bottom: 0;
	}

	.hw-report-table-modern .hw-mock-table td::before {
		color: #667085;
		content: attr(data-label);
		font-size: 11px;
		font-weight: 900;
		margin-right: 14px;
		text-align: left;
		text-transform: uppercase;
	}

	.hw-sidebar-toggle {
		display: flex;
		top: calc(var(--wp-admin--admin-bar--height, 0px) + 74px);
	}

	.hw-advice-summary {
		flex-direction: column;
	}

	.hw-advice-summary-card {
		min-height: 0;
	}

	.hw-advice-filters {
		align-items: stretch;
		display: flex;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.hw-advice-filters label {
		flex: 0 0 auto;
	}

	.hw-advice-list-modern .hw-advice-row {
		flex-direction: column;
		padding: 22px 18px;
	}

	.hw-advice-title-row {
		flex-direction: column;
		gap: 10px;
	}

	.hw-advice-list-modern .hw-impact {
		justify-content: flex-start;
		min-width: 0;
		width: fit-content;
	}

	.hw-advice-meta {
		align-items: stretch;
		flex-direction: column;
	}

	.hw-advice-meta span {
		width: 100%;
	}

	.hw-priority-heading {
		flex-direction: column;
	}

	.hw-priority-heading span {
		width: fit-content;
	}
}

@media (max-width: 760px) {
	.hw-sidebar-toggle {
		display: none !important;
	}
}

@media (max-width: 900px) {
	.hw-contract-form-grid,
	.hw-contract-filters {
		flex-direction: column;
	}

	.hw-contract-expiry-alert,
	.hw-contract-section-heading {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 760px) {
	.hw-contract-table-scroll {
		border: 0;
		overflow: visible;
	}

	.hw-contract-table,
	.hw-contract-table thead,
	.hw-contract-table tbody,
	.hw-contract-table tr,
	.hw-contract-table th,
	.hw-contract-table td {
		display: block;
		width: 100%;
	}

	.hw-contract-table thead {
		border: 0;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		height: 1px;
		overflow: hidden;
		position: absolute;
		white-space: nowrap;
		width: 1px;
	}

	.hw-contract-table tbody {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.hw-contract-table tbody tr {
		background: #ffffff;
		border: 1px solid #e5ebf3;
		border-radius: 12px;
		box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
		padding: 8px 0;
	}

	.hw-contract-table td {
		align-items: center;
		border-bottom: 1px solid #eef2f7;
		display: flex;
		justify-content: space-between;
		padding: 12px 14px;
		text-align: right;
		white-space: normal;
	}

	.hw-contract-table td:last-child {
		border-bottom: 0;
	}

	.hw-contract-table td::before {
		color: #667085;
		content: attr(data-label);
		font-size: 11px;
		font-weight: 900;
		margin-right: 14px;
		text-align: left;
		text-transform: uppercase;
	}

	.hw-contract-actions {
		justify-content: flex-end;
		margin-top: 0;
	}

	.hw-contract-pdf-preview {
		height: 68vh;
		min-height: 420px;
	}

	.hw-contract-score {
		align-items: flex-start;
		flex-direction: column;
		width: 100%;
	}

	.hw-contract-score .hw-ring {
		flex-basis: 104px;
		height: 104px;
		width: 104px;
	}

	.hw-contract-score .hw-ring::after {
		height: 80px;
		width: 80px;
	}

	.hw-contract-analysis-meta {
		gap: 12px;
	}

	.hw-contract-ai-card {
		padding-bottom: 54px;
	}
	.hw-contract-ai-card .hw-ai-checks {
		gap: 8px;
		padding-bottom: 16px;
	}

	.hw-contract-ai-card .hw-ai-checks-heading {
		margin: 12px 0 8px;
	}

	.hw-contract-ai-card .hw-ai-check-toggle {
		padding: 11px 12px;
	}

	.hw-contract-ai-card .hw-ai-check-panel {
		margin-left: 56px;
		margin-right: 12px;
	}

	.hw-contract-help {
		bottom: calc(86px + env(safe-area-inset-bottom, 0px));
		left: 14px;
		right: 14px;
	}

	.hw-contract-help-toggle {
		margin-left: auto;
	}

	.hw-contract-help-panel {
		bottom: 62px;
		max-height: calc(100vh - 112px);
		width: 100%;
	}

	body:has(.hw-contract-help) {
		padding-bottom: calc(156px + env(safe-area-inset-bottom, 0px));
	}
}

@media (max-width: 480px) {
	.hw-contract-analysis-meta span {
		flex-basis: calc(50% - 6px);
		padding: 12px 10px;
	}

	.hw-contract-analysis-progress > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.hw-contract-analysis-progress span {
		text-align: left;
	}
}

@media (max-width: 374px) {
	.hw-contract-score {
		padding: 16px 14px;
	}

	.hw-contract-analysis-meta {
		flex-direction: column;
	}

	.hw-ai-check-toggle {
		gap: 10px;
		padding: 14px 10px;
	}

	.hw-ai-check-panel {
		margin-left: 52px;
	}
}

.hw-topbar .hw-header-menu-toggle,
.hw-topbar .hw-header-menu {
	display: none !important;
}

html:has(.hw-legal-page),
body:has(.hw-legal-page) {
	overflow-x: hidden;
}

body:has(.hw-legal-page) .hw-topbar {
	border-bottom: 0;
	box-shadow: none;
}

body:has(.hw-legal-page) .hw-topbar::after {
	display: none;
}

.hw-legal-page {
	background: #f7f8fb;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100%;
	min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
	overflow-x: hidden;
	padding: 52px 18px 72px;
	width: 100vw;
}

.hw-legal-document {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
	margin: 0 auto;
	max-width: 920px;
	overflow: hidden;
}

.hw-legal-hero {
	background: linear-gradient(135deg, #101827 0%, #202432 100%);
	color: #ffffff;
	padding: 42px;
}

.hw-legal-hero p,
.hw-legal-hero h1,
.hw-legal-hero span {
	margin: 0;
}

.hw-legal-hero p {
	color: #ffb3ba;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.hw-legal-hero h1 {
	color: #ffffff;
	font-size: 34px;
	line-height: 1.15;
	margin-top: 10px;
}

.hw-legal-hero span {
	color: #cbd5e1;
	display: block;
	font-size: 13px;
	margin-top: 12px;
}

.hw-legal-section {
	border-top: 1px solid #edf2f7;
	padding: 26px 42px;
}

.hw-legal-section:first-of-type {
	border-top: 0;
}

.hw-legal-section h2 {
	color: #0f172a;
	font-size: 18px;
	line-height: 1.25;
	margin: 0 0 10px;
}

.hw-legal-section p {
	color: #475467;
	font-size: 15px;
	line-height: 1.75;
	margin: 0;
}

@media (max-width: 640px) {
	.hw-legal-page {
		padding: 24px 12px 44px;
	}

	.hw-legal-hero,
	.hw-legal-section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hw-legal-hero {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.hw-legal-hero h1 {
		font-size: 27px;
	}
}

@media (max-width: 760px) {
	.hw-topbar .hw-header-menu-toggle {
		display: inline-flex !important;
	}

	.hw-topbar .hw-header-menu {
		display: block !important;
	}
}


/* Dynamic KPI guideline cards on the company profile. */
.hw-guidelines-card {
	align-self: flex-start;
}

.hw-guidelines-heading {
	align-items: flex-start;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-bottom: 18px;
}

.hw-guidelines-heading h2 {
	margin-bottom: 6px;
}

.hw-guidelines-heading p {
	color: #5f6d85;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.hw-guideline-legend {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 142px;
}

.hw-guideline-legend span {
	align-items: center;
	color: #5f6d85;
	display: flex;
	font-size: 11px;
	font-weight: 800;
	gap: 7px;
	line-height: 1.2;
	white-space: nowrap;
}

.hw-guideline-legend span::before {
	border-radius: 999px;
	content: "";
	flex: 0 0 9px;
	height: 9px;
	width: 9px;
}

.hw-guideline-dot-green::before {
	background: #16a34a;
}

.hw-guideline-dot-orange::before {
	background: #f59e0b;
}

.hw-guideline-dot-red::before {
	background: #e11d48;
}

.hw-guideline-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hw-guideline-grid > * {
	flex: 1 1 220px;
}

.hw-guideline-card {
	--hw-guideline-accent: #64748b;
	--hw-guideline-soft: #f8fafc;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-left: 4px solid var(--hw-guideline-accent);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 14px;
}

.hw-guideline-card header,
.hw-guideline-values {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.hw-guideline-card header strong {
	color: #030b18;
	font-size: 13px;
	line-height: 1.25;
}

.hw-guideline-info {
	align-items: center;
	background: #f2f4f7;
	border: 1px solid #dfe4ec;
	border-radius: 999px;
	color: #475467;
	cursor: help;
	display: inline-flex;
	flex: 0 0 24px;
	font-size: 12px;
	font-weight: 900;
	height: 24px;
	justify-content: center;
	line-height: 1;
	position: relative;
	width: 24px;
}

.hw-guideline-info span {
	background: #101828;
	border-radius: 8px;
	bottom: calc(100% + 8px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	left: 50%;
	line-height: 1.35;
	opacity: 0;
	padding: 9px 10px;
	pointer-events: none;
	position: absolute;
	transform: translate(-50%, 4px);
	transition: opacity 160ms ease, transform 160ms ease;
	width: min(230px, 70vw);
	z-index: 5;
}

.hw-guideline-info:hover span,
.hw-guideline-info:focus span {
	opacity: 1;
	transform: translate(-50%, 0);
}

.hw-guideline-values span {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.hw-guideline-values span:last-child {
	text-align: right;
}

.hw-guideline-values small {
	color: #667085;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.hw-guideline-values b {
	color: #0f172a;
	font-size: 14px;
	font-variant-numeric: tabular-nums;
	line-height: 1.2;
}

.hw-guideline-progress {
	background: #edf2f7;
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
}

.hw-guideline-progress span {
	background: var(--hw-guideline-accent);
	border-radius: inherit;
	display: block;
	height: 100%;
	min-width: 4px;
}

.hw-guideline-card em {
	align-self: flex-start;
	background: var(--hw-guideline-soft);
	border: 1px solid color-mix(in srgb, var(--hw-guideline-accent) 22%, transparent);
	border-radius: 999px;
	color: var(--hw-guideline-accent);
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	padding: 7px 9px;
}

.hw-guideline-green {
	--hw-guideline-accent: #16a34a;
	--hw-guideline-soft: #ecfdf3;
}

.hw-guideline-orange {
	--hw-guideline-accent: #f59e0b;
	--hw-guideline-soft: #fffbeb;
}

.hw-guideline-red {
	--hw-guideline-accent: #e11d48;
	--hw-guideline-soft: #fff1f2;
}

.hw-guideline-neutral {
	--hw-guideline-accent: #64748b;
	--hw-guideline-soft: #f8fafc;
}

.hw-guideline-neutral .hw-guideline-progress span {
	min-width: 0;
}

@supports not (color: color-mix(in srgb, #000 50%, transparent)) {
	.hw-guideline-card em {
		border-color: #dfe4ec;
	}
}

@media (max-width: 900px) {
	.hw-guidelines-heading {
		flex-direction: column;
	}

	.hw-guideline-legend {
		flex-direction: row;
		flex-wrap: wrap;
		min-width: 0;
	}
}

@media (max-width: 640px) {
	.hw-profile-flex {
		gap: 16px;
	}

	.hw-profile-flex .hw-dashboard-card,
	.hw-guidelines-card {
		padding: 16px;
	}

	.hw-profile-summary {
		gap: 8px;
	}

	.hw-profile-row {
		padding: 9px 0;
	}

	.hw-guideline-grid {
		gap: 10px;
	}

	.hw-guideline-card {
		gap: 10px;
		padding: 12px;
	}

	.hw-guideline-values b {
		font-size: 13px;
	}

	.hw-profile-form {
		gap: 16px;
	}

	.hw-profile-form label {
		align-items: stretch;
		gap: 8px;
	}

	.hw-profile-form label span,
	.hw-profile-form label .hw-error {
		flex-basis: 100%;
		margin-left: 0;
	}
}


/* KPI guideline zone scale refinements. */
.hw-guideline-legend {
	align-items: flex-end;
	flex-direction: row;
	gap: 0;
	min-width: 0;
}

.hw-guideline-legend span {
	background: #f8fafc;
	border: 1px solid #e5ebf3;
	border-radius: 999px;
	color: #475467;
	display: inline-flex;
	font-size: 11px;
	gap: 0;
	padding: 7px 10px;
	white-space: normal;
}

.hw-guideline-legend span::before {
	display: none;
}

.hw-guideline-card {
	gap: 11px;
}

.hw-guideline-info span {
	display: flex;
	flex-direction: column;
	gap: 5px;
	text-align: left;
	width: min(280px, 76vw);
}

.hw-guideline-info span b {
	color: #ffffff;
	display: block;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.15;
	margin-top: 3px;
	text-transform: uppercase;
}

.hw-guideline-info span b:first-child {
	margin-top: 0;
}

.hw-guideline-values i {
	color: #667085;
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.2;
}

.hw-guideline-scale {
	--hw-green-start: 0%;
	--hw-green-end: 50%;
	--hw-orange-start: 50%;
	--hw-orange-end: 75%;
	--hw-red-start: 75%;
	--hw-red-end: 100%;
	--hw-marker: 0%;
	background:
		linear-gradient(
			90deg,
			#16a34a var(--hw-green-start),
			#16a34a var(--hw-green-end),
			#f59e0b var(--hw-orange-start),
			#f59e0b var(--hw-orange-end),
			#e11d48 var(--hw-red-start),
			#e11d48 var(--hw-red-end)
		);
	border-radius: 999px;
	height: 12px;
	position: relative;
}



.hw-guideline-scale-min {
	background:
		linear-gradient(
			90deg,
			#e11d48 var(--hw-red-start),
			#e11d48 var(--hw-red-end),
			#f59e0b var(--hw-orange-start),
			#f59e0b var(--hw-orange-end),
			#16a34a var(--hw-green-start),
			#16a34a var(--hw-green-end)
		);
}

.hw-guideline-scale span {
	background: #ffffff;
	border: 2px solid #101828;
	border-radius: 999px;
	box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
	height: 22px;
	left: var(--hw-marker);
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
}

.hw-guideline-neutral .hw-guideline-scale {
	background: #edf2f7;
}

.hw-guideline-neutral .hw-guideline-scale span {
	display: none;
}

.hw-guideline-footer {
	align-items: center;
	display: flex;
	gap: 9px;
	justify-content: space-between;
}

.hw-guideline-footer p {
	color: #5f6d85;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
	text-align: right;
}

.hw-guideline-red .hw-guideline-footer p {
	color: #be123c;
}

.hw-guideline-orange .hw-guideline-footer p {
	color: #b45309;
}

.hw-guideline-green .hw-guideline-footer p {
	color: #047a3d;
}

@media (max-width: 900px) {
	.hw-guideline-legend {
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.hw-ai-chat {
		bottom: 10px;
		left: 10px;
		right: 10px;
	}

	.hw-ai-chat-toggle {
		height: 48px;
		width: 48px;
	}

	.hw-contract-help {
		bottom: 12px;
		left: 10px;
		right: 10px;
	}

	.hw-contract-help-toggle {
		height: 48px;
		width: 48px;
	}

	.hw-guidelines-heading {
		gap: 10px;
	}

	.hw-guideline-legend span {
		border-radius: 8px;
		font-size: 10.5px;
		line-height: 1.35;
		padding: 7px 8px;
	}

	.hw-guideline-values {
		align-items: flex-start;
	}

	.hw-guideline-footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.hw-guideline-footer p {
		text-align: left;
	}

	.hw-guideline-info span {
		left: auto;
		right: -4px;
		transform: translate(0, 4px);
		width: min(265px, calc(100vw - 36px));
	}

	.hw-guideline-info:hover span,
	.hw-guideline-info:focus span {
		transform: translate(0, 0);
	}
}


/* Compact, low-emphasis KPI guideline legend. */
.hw-guidelines-heading {
	align-items: flex-start;
}

.hw-guideline-legend {
	align-items: flex-start;
	align-self: flex-start;
	background: rgba(248, 250, 252, 0.62);
	border: 1px solid rgba(226, 232, 240, 0.72);
	border-radius: 999px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	justify-content: flex-end;
	margin-top: 0;
	max-width: min(100%, 620px);
	padding: 7px 12px;
}

.hw-guideline-legend .hw-guideline-legend-item {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #667085;
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	gap: 7px;
	line-height: 1.2;
	padding: 0;
	white-space: nowrap;
}

.hw-guideline-legend .hw-guideline-legend-item i {
	align-items: center;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	flex: 0 0 18px;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	height: 18px;
	justify-content: center;
	line-height: 1;
	width: 18px;
}

.hw-guideline-legend-green i {
	background: #16a34a;
}

.hw-guideline-legend-orange i {
	background: #f59e0b;
}

.hw-guideline-legend-red i {
	background: #e11d48;
}

@media (max-width: 900px) {
	.hw-guideline-legend {
		justify-content: flex-start;
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.hw-guideline-legend {
		border-radius: 10px;
		gap: 7px 14px;
		padding: 8px 9px;
		width: 100%;
	}

	.hw-guideline-legend .hw-guideline-legend-item {
		font-size: 10.5px;
	}
}

@media (max-width: 360px) {
	.hw-guideline-legend {
		gap: 7px 10px;
	}

	.hw-guideline-legend .hw-guideline-legend-item {
		font-size: 10px;
	}

	.hw-guideline-legend .hw-guideline-legend-item i {
		flex-basis: 17px;
		height: 17px;
		width: 17px;
	}
}


@media (min-width: 641px) {
	.hw-guidelines-heading {
		align-items: flex-start;
		flex-direction: row;
	}

	.hw-guidelines-heading > div:first-child {
		flex: 1 1 auto;
		min-width: 190px;
	}

	.hw-guideline-legend {
		flex: 0 1 auto;
	}
}


.hw-guideline-legend-red i {
	font-size: 14px;
	line-height: 18px;
	padding-bottom: 1px;
}

.hw-feature-lock {
	align-items: center;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 8px;
	color: #9a3412;
	display: inline-flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 700;
	gap: 6px;
	padding: 7px 10px;
}

.hw-feature-lock a {
	color: #dc2626;
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hw-subscription-lock-notice {
	align-items: flex-start;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 8px;
	color: #7c2d12;
	display: flex;
	gap: 12px;
	margin: 12px 0;
	padding: 14px;
}

.hw-subscription-lock-notice > .dashicons {
	background: #ffedd5;
	border-radius: 8px;
	color: #dc2626;
	flex: 0 0 auto;
	height: 32px;
	line-height: 32px;
	text-align: center;
	width: 32px;
}

.hw-subscription-lock-notice strong {
	color: #111827;
	display: block;
	font-size: 15px;
	line-height: 1.25;
	margin-bottom: 4px;
}

.hw-subscription-lock-notice p {
	color: #7c2d12;
	margin: 0 0 10px;
}

.hw-subscription-summary {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hw-subscription-summary-head,
.hw-subscription-usage,
.hw-feature-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hw-subscription-summary-head {
	align-items: center;
	justify-content: space-between;
}

.hw-subscription-summary-head span {
	color: #64748b;
	display: block;
	font-size: 13px;
	font-weight: 700;
}

.hw-subscription-summary-head strong {
	color: #111827;
	display: block;
	font-size: 24px;
	line-height: 1.2;
}

.hw-active-plan-label {
	align-items: center;
	background: #ecfdf5;
	border: 1px solid #bbf7d0;
	border-radius: 999px;
	color: #166534;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	margin-top: 8px;
	padding: 7px 10px;
}

.hw-subscription-usage span,
.hw-feature-pills span,
.hw-plan-badge {
	background: #eef2ff;
	border: 1px solid #c7d2fe;
	border-radius: 999px;
	color: #3730a3;
	font-size: 12px;
	font-weight: 800;
	padding: 7px 10px;
}

.hw-subscriptions-page {
	box-sizing: border-box;
	margin: 0;
	max-width: 100%;
	padding: 0;
	width: 100%;
}

.hw-subscriptions-hero {
	margin-bottom: 22px;
}

.hw-subscriptions-hero h1 {
	font-size: 42px;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 8px;
}

.hw-subscriptions-hero p {
	color: #64748b;
	font-size: 17px;
	margin: 0;
}

.hw-subscription-cards {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 100%;
	min-width: 0;
}

.hw-subscription-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
	display: flex;
	flex: 1 1 240px;
	flex-direction: column;
	gap: 14px;
	min-width: 48%;
	padding: 22px;
	position: relative;
}

.hw-current-subscription-usage {
	margin-bottom: 18px;
}

.hw-subscription-popular {
	border-color: #ef4444;
	box-shadow: 0 22px 55px rgba(239, 68, 68, 0.15);
}

.hw-subscription-card h2 {
	font-size: 26px;
	margin: 0;
}

.hw-plan-price {
	color: #dc2626;
	font-size: 20px;
	line-height: 1.2;
}

.hw-subscription-card p {
	color: #475569;
	margin: 0;
}

.hw-subscription-card ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0 0 0 18px;
}

.hw-subscription-card li {
	color: #1f2937;
	font-size: 14px;
}

.hw-plan-limits {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: auto;
}

.hw-plan-limits span {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #334155;
	font-size: 13px;
	font-weight: 700;
	padding: 8px 10px;
}

.hw-plan-badge {
	align-self: flex-start;
	background: #fee2e2;
	border-color: #fecaca;
	color: #991b1b;
}

.hw-plan-checkout-form,
.hw-subscription-management form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hw-plan-checkout-form .hw-button {
	justify-content: center;
	width: 100%;
}

.hw-current-plan-button {
	justify-content: center;
	width: 100%;
}

.hw-current-plan-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hw-subscription-cancel-card {
	max-width: 760px;
}

.hw-subscription-cancel-form {
	display: grid;
	gap: 14px;
}

.hw-subscription-detail-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	margin: 14px 0 18px;
}

.hw-subscription-detail-grid div {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 12px;
}

.hw-subscription-detail-grid small {
	color: #64748b;
	display: block;
	font-size: 12px;
	font-weight: 800;
	margin-bottom: 5px;
}

.hw-subscription-detail-grid strong {
	color: #111827;
	display: block;
	font-size: 16px;
	line-height: 1.25;
}

.hw-subscription-usage-overview {
	border-top: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 4px 0 18px;
	padding-top: 18px;
}

.hw-subscription-usage-heading h3 {
	color: #111827;
	font-size: 20px;
	line-height: 1.25;
	margin: 0 0 4px;
}

.hw-subscription-usage-heading p {
	color: #64748b;
	margin: 0;
}

.hw-subscription-usage-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hw-subscription-usage-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 11px;
	padding: 14px;
}

.hw-subscription-usage-card.is-limit-reached {
	background: #fff7ed;
	border-color: #fed7aa;
}

.hw-subscription-usage-card-head,
.hw-subscription-usage-numbers {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.hw-subscription-usage-card-head strong {
	color: #111827;
	display: block;
	font-size: 15px;
	line-height: 1.3;
}

.hw-subscription-usage-card-head small {
	color: #64748b;
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 3px;
}

.hw-subscription-limit-status {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	color: #334155;
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	padding: 8px 10px;
}

.is-limit-reached .hw-subscription-limit-status {
	background: #fee2e2;
	border-color: #fecaca;
	color: #991b1b;
}

.hw-subscription-usage-numbers span {
	color: #334155;
	font-size: 13px;
	font-weight: 800;
}

.hw-subscription-usage-numbers em {
	color: #64748b;
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
}

.hw-subscription-progress {
	background: #f1f5f9;
	border-radius: 999px;
	height: 10px;
	overflow: hidden;
	width: 100%;
}

.hw-subscription-progress span {
	background: #dc2626;
	border-radius: inherit;
	display: block;
	height: 100%;
	min-width: 0;
	transition: width 180ms ease;
}

.hw-subscription-progress-unlimited span {
	background: linear-gradient(90deg, #16a34a, #22c55e);
	width: 100%;
}

.hw-payment-history,
.hw-invoice-history {
	border-color: #e6ebf2;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
	margin-top: 16px;
	padding: 24px;
}

.hw-payment-history h2,
.hw-invoice-history h2 {
	font-size: 24px;
	line-height: 1.2;
	margin: 0 0 16px;
}

.hw-history-filters {
	align-items: end;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: -2px 0 14px;
}

.hw-history-filters label {
	display: grid;
	gap: 5px;
}

.hw-history-filters span {
	color: #64748b;
	font-size: 11px;
	font-weight: 900;
}

.hw-history-filters select {
	background: #ffffff;
	border: 1px solid #dbe3ee;
	border-radius: 8px;
	color: #111827;
	font-size: 13px;
	min-height: 34px;
	min-width: 150px;
	padding: 6px 30px 6px 10px;
}

.hw-history-table-scroll {
	margin: 0 -4px;
	overflow-x: auto;
	padding: 0 4px;
}

.hw-history-table {
	border-collapse: separate;
	border-spacing: 0;
	color: #111827;
	min-width: 760px;
	table-layout: fixed;
	width: 100%;
}

.hw-payment-history .hw-col-date {
	width: 18%;
}

.hw-payment-history .hw-col-plan {
	width: 22%;
}

.hw-payment-history .hw-col-amount {
	width: 14%;
}

.hw-payment-history .hw-col-discount {
	width: 15%;
}

.hw-payment-history .hw-col-status {
	width: 13%;
}

.hw-payment-history .hw-col-reference {
	width: 18%;
}

.hw-invoice-history .hw-col-invoice-number {
	width: 19%;
}

.hw-invoice-history .hw-col-date {
	width: 14%;
}

.hw-invoice-history .hw-col-period {
	width: 24%;
}

.hw-invoice-history .hw-col-amount {
	width: 14%;
}

.hw-invoice-history .hw-col-status {
	width: 13%;
}

.hw-invoice-history .hw-col-action {
	width: 16%;
}

.hw-history-table th,
.hw-history-table td {
	border-bottom: 1px solid #e2e8f0;
	padding: 10px 10px;
	text-align: left;
	vertical-align: middle;
}

.hw-history-table th {
	color: #64748b;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
}

.hw-history-table tbody tr:last-child td {
	border-bottom: 0;
}

.hw-history-table tbody tr:nth-child(even) {
	background: #fbfcfe;
}

.hw-history-table tbody tr:hover {
	background: #f8fafc;
}

.hw-money-cell {
	font-variant-numeric: tabular-nums;
	text-align: right !important;
	white-space: nowrap;
}

.hw-history-discount-cell {
	font-variant-numeric: tabular-nums;
	text-align: right !important;
	white-space: nowrap;
}

.hw-history-status-cell {
	text-align: center !important;
	white-space: nowrap;
}

.hw-history-action-cell {
	text-align: right !important;
	white-space: nowrap;
}

.hw-history-empty {
	color: #64748b;
	padding: 18px 12px !important;
	text-align: center !important;
}

.hw-payment-status {
	border-radius: 999px;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	padding: 7px 10px;
	white-space: nowrap;
}

.hw-payment-status-paid {
	background: #ecfdf3;
	color: #047857;
}

.hw-payment-status-pending {
	background: #fff7ed;
	color: #c2410c;
}

.hw-payment-status-failed,
.hw-payment-status-cancelled {
	background: #fff1f2;
	color: #be123c;
}

.hw-payment-status-refunded {
	background: #eef2ff;
	color: #4338ca;
}

.hw-invoice-number-link {
	color: #111827;
	font-weight: 800;
	text-decoration: none;
	text-underline-offset: 3px;
}

.hw-invoice-number-link:hover,
.hw-invoice-number-link:focus {
	color: #be123c;
	text-decoration: underline;
}

.hw-history-download-button {
	align-items: center;
	background: #ffffff;
	border-color: #dfe4ec;
	color: #071225;
	display: inline-flex;
	gap: 6px;
	justify-content: center;
	min-height: 32px;
	min-width: 126px;
	padding: 6px 10px;
}

.hw-history-download-button .dashicons {
	font-size: 13px;
	height: 13px;
	line-height: 13px;
	opacity: 0.78;
	width: 13px;
}

.hw-history-download-button:hover,
.hw-history-download-button:focus {
	background: #fff1f2;
	border-color: #ffb3ba;
	color: #be123c;
}

.hw-history-pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	justify-content: flex-end;
	margin-top: 14px;
}

.hw-history-page-link {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dbe3ee;
	border-radius: 8px;
	color: #334155;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	justify-content: center;
	min-height: 32px;
	min-width: 32px;
	padding: 6px 10px;
	text-decoration: none;
}

.hw-history-page-link:hover,
.hw-history-page-link:focus {
	background: #f8fafc;
	border-color: #cbd5e1;
	color: #111827;
}

.hw-history-page-link.is-current {
	background: #be123c;
	border-color: #be123c;
	color: #ffffff;
}

.hw-history-page-link.is-disabled {
	color: #94a3b8;
	cursor: default;
	pointer-events: none;
}

.hw-checkout-steps {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 18px;
}

.hw-checkout-steps span {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #475569;
	font-size: 12px;
	font-weight: 800;
	padding: 10px 12px;
	text-align: center;
}

.hw-checkout-steps .is-active {
	background: #fee2e2;
	border-color: #fecaca;
	color: #991b1b;
}

.hw-order-layout {
	align-items: flex-start;
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.hw-order-main h2,
.hw-order-summary h2 {
	margin-top: 0;
}

.hw-order-feature-list {
	display: grid;
	gap: 8px 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 0 18px;
	padding-left: 18px;
}

.hw-order-feature-list li {
	color: #1f2937;
	font-size: 14px;
}

.hw-order-summary {
	position: sticky;
	top: 18px;
}

.hw-price-row {
	align-items: center;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
}

.hw-price-row span {
	color: #475569;
	font-weight: 700;
}

.hw-price-row strong {
	color: #111827;
	font-size: 16px;
}

.hw-price-total {
	border-bottom: 0;
	margin-bottom: 12px;
	padding-top: 16px;
}

.hw-price-total strong {
	color: #dc2626;
	font-size: 22px;
}

.hw-discount-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 14px 0;
}

.hw-invoice-fields {
	border-top: 1px solid #e2e8f0;
	margin-top: 16px;
	padding-top: 16px;
}

.hw-order-summary .hw-invoice-fields {
	border-bottom: 1px solid #e2e8f0;
	border-top: 0;
	margin: 0 0 16px;
	padding: 0 0 16px;
}

.hw-period-options {
	border-bottom: 1px solid #e2e8f0;
	display: grid;
	gap: 10px;
	margin: 0 0 14px;
	padding: 0 0 16px;
}

.hw-period-options h3 {
	font-size: 15px;
	margin: 0 0 2px;
}

.hw-period-option {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #dbe3ee;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	gap: 10px;
	padding: 11px 12px;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hw-period-option:hover,
.hw-period-option.is-selected,
.hw-period-option:has(input:checked) {
	background: #fff7f7;
	border-color: #fecaca;
	box-shadow: 0 10px 22px rgba(239, 68, 68, 0.09);
}

.hw-period-option input {
	flex: 0 0 auto;
	margin-top: 3px;
}

.hw-period-option strong,
.hw-period-option small {
	display: block;
	line-height: 1.35;
}

.hw-period-option strong {
	color: #111827;
	font-size: 14px;
}

.hw-period-option small,
.hw-recurring-note {
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
}

.hw-recurring-note {
	line-height: 1.45;
	margin: -2px 0 12px;
}

.hw-invoice-fields h3 {
	font-size: 15px;
	margin: 0 0 12px;
}

.hw-checkout-form-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr;
}

.hw-order-pay-button {
	justify-content: center;
	margin-top: 4px;
	width: 100%;
}

.hw-cancel-modal[hidden] {
	display: none;
}

.hw-cancel-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 18px;
	position: fixed;
	z-index: 10000;
}

.hw-cancel-modal-backdrop {
	background: rgba(15, 23, 42, 0.58);
	inset: 0;
	position: absolute;
}

.hw-cancel-modal-dialog {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
	max-width: 560px;
	padding: 24px;
	position: relative;
	width: min(100%, 560px);
}

.hw-cancel-modal-dialog h3 {
	color: #111827;
	font-size: 22px;
	line-height: 1.25;
	margin: 0 0 10px;
}

.hw-cancel-modal-dialog p {
	color: #475569;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 12px;
}

@media (max-width: 900px) {
	.hw-order-layout {
		grid-template-columns: 1fr;
	}

	.hw-order-summary {
		position: static;
	}
}

@media (max-width: 640px) {
	.hw-checkout-steps {
		grid-template-columns: 1fr 1fr;
	}

	.hw-order-feature-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hw-subscriptions-page {
		padding: 24px 14px 42px;
	}

	.hw-subscriptions-hero h1 {
		font-size: 32px;
	}

	.hw-subscription-card {
		flex-basis: 100%;
	}

	.hw-subscription-usage-card-head,
	.hw-subscription-usage-numbers {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
	}

	.hw-subscription-limit-status {
		align-self: flex-start;
	}

	.hw-payment-history,
	.hw-invoice-history {
		margin-top: 14px;
		padding: 18px 14px;
	}

	.hw-payment-history h2,
	.hw-invoice-history h2 {
		font-size: 21px;
		margin-bottom: 12px;
	}

	.hw-history-filters {
		align-items: stretch;
		gap: 8px;
	}

	.hw-history-filters label,
	.hw-history-filters select {
		min-width: 0;
		width: 100%;
	}

	.hw-history-filters .hw-mini-button {
		justify-content: center;
		width: 100%;
	}

	.hw-history-table-scroll {
		margin: 0;
		overflow-x: visible;
		padding: 0;
	}

	.hw-history-table,
	.hw-history-table thead,
	.hw-history-table tbody,
	.hw-history-table tr,
	.hw-history-table th,
	.hw-history-table td {
		display: block;
		min-width: 0;
		width: 100%;
	}

	.hw-history-table thead {
		height: 1px;
		overflow: hidden;
		position: absolute;
		width: 1px;
	}

	.hw-history-table tbody {
		display: grid;
		gap: 10px;
	}

	.hw-history-table tbody tr {
		background: #ffffff;
		border: 1px solid #e2e8f0;
		border-radius: 8px;
		padding: 10px 12px;
	}

	.hw-history-table tbody tr:nth-child(even) {
		background: #ffffff;
	}

	.hw-history-table tbody tr:hover {
		background: #ffffff;
	}

	.hw-history-table td {
		align-items: center;
		border-bottom: 0;
		display: flex;
		gap: 14px;
		justify-content: space-between;
		padding: 7px 0;
		text-align: right;
	}

	.hw-history-table td::before {
		color: #64748b;
		content: attr(data-label);
		font-size: 12px;
		font-weight: 900;
		text-align: left;
	}

	.hw-money-cell,
	.hw-history-discount-cell,
	.hw-history-status-cell,
	.hw-history-action-cell {
		text-align: right !important;
	}

	.hw-history-download-button {
		min-width: 128px;
	}

	.hw-history-pagination {
		justify-content: flex-start;
	}

	.hw-history-page-link {
		min-height: 30px;
		min-width: 30px;
		padding: 5px 9px;
	}
}

html:has(.hw-home-page),
body:has(.hw-home-page) {
	background: #ffffff;
	margin: 0;
	overflow-x: hidden;
}

body:has(.hw-home-page) > footer:not(.hw-home-footer),
body:has(.hw-home-page) .site-footer,
body:has(.hw-home-page) .wp-site-blocks > footer,
body:has(.hw-home-page) footer.wp-block-template-part,
body:has(.hw-home-page) .wp-block-template-part:has(footer) {
	display: none !important;
}

body:has(.hw-home-page)::before,
body:has(.hw-home-page)::after,
body:has(.hw-home-page) .wp-site-blocks::before,
body:has(.hw-home-page) .wp-site-blocks::after {
	display: none !important;
}

.hw-home-page {
	--hw-home-red: #ff3042;
	--hw-home-red-dark: #e32132;
	--hw-home-bordeaux: #330713;
	--hw-home-pink: #fff6f7;
	--hw-home-text: #171b2b;
	--hw-home-muted: #818ca2;
	--hw-home-border: #e6e9ef;
	background: #ffffff;
	color: var(--hw-home-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.4;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: 100vh;
	overflow-x: hidden;
	width: 100vw;
}

.hw-home-page *,
.hw-home-page *::before,
.hw-home-page *::after {
	box-sizing: border-box;
}

.hw-home-container {
	margin: 0 auto;
	max-width: 1296px;
	padding: 0 56px;
	width: 100%;
}

.hw-home-header {
	align-items: center;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid #edf0f5;
	display: flex;
	gap: 36px;
	height: 80px;
	justify-content: space-between;
	padding: 0 36px;
}

.hw-home-logo {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	height: 100%;
	justify-content: center;
	text-decoration: none;
	width: 108px;
}

.hw-home-logo img {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	max-width: 80px;
	width: auto;
}

.hw-home-logo strong {
	color: var(--hw-home-red);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.hw-home-nav {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	gap: clamp(28px, 5vw, 82px);
	justify-content: center;
}

.hw-home-nav a,
.hw-home-actions a,
.hw-home-mobile-menu a {
	text-decoration: none;
}

.hw-home-nav a {
	color: #566074;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.hw-home-nav a:hover,
.hw-home-nav a:focus-visible,
.hw-home-nav a.is-active {
	color: var(--hw-home-red);
}

.hw-home-actions,
.hw-home-cta-row {
	align-items: center;
	display: flex;
	gap: 18px;
}

.hw-home-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	justify-content: center;
	line-height: 1;
	min-height: 37px;
	min-width: 118px;
	padding: 12px 22px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.hw-home-button:focus-visible,
.hw-home-menu-toggle:focus-visible,
.hw-home-mobile-menu button:focus-visible,
.hw-home-mobile-menu a:focus-visible {
	outline: 3px solid rgba(255, 48, 66, 0.32);
	outline-offset: 3px;
}

.hw-home-button:hover {
	transform: translateY(-1px);
}

.hw-home-button-red {
	background: var(--hw-home-red);
	border-color: var(--hw-home-red);
	color: #ffffff;
}

.hw-home-button-red:hover,
.hw-home-button-red:focus-visible {
	background: var(--hw-home-red-dark);
	border-color: var(--hw-home-red-dark);
	color: #ffffff;
}

.hw-home-button-light {
	background: #ffffff;
	border-color: #dde3ec;
	color: #1e2636;
}

.hw-home-button-light:hover,
.hw-home-button-light:focus-visible {
	border-color: #c7ceda;
	color: #111827;
}

.hw-home-actions .hw-home-button {
	min-width: 119px;
}

.hw-home-actions .hw-home-button-red {
	min-width: 178px;
}

.hw-home-menu-toggle,
.hw-home-mobile-menu,
.hw-home-menu-overlay {
	display: none;
}

.hw-home-hero {
	background: var(--hw-home-pink);
	min-height: 406px;
	padding: 45px 0 55px;
	position: relative;
}

.hw-home-hero::before,
.hw-home-hero::after {
	display: none !important;
}

.hw-home-hero-grid {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 72px;
}

.hw-home-hero-copy {
	flex: 1 1 330px;
	max-width: 520px;
	min-width: 0;
}

.hw-home-hero-grid > .hw-home-dashboard-preview {
	flex: 1 1 560px;
	min-width: 0;
}

.hw-home-hero-copy h1,
.hw-home-section-copy h2,
.hw-home-section-heading h2,
.hw-home-dark-copy h2 {
	color: var(--hw-home-text);
	font-size: 36px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.99;
	margin: 0;
	white-space: pre-line;
}

.hw-home-hero-copy h1 {
	font-size: clamp(40px, 4vw, 54px);
	max-width: 570px;
}

.hw-home-hero-copy p,
.hw-home-section-copy p,
.hw-home-dark-copy p {
	color: var(--hw-home-muted);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.42;
	margin: 22px 0 0;
	max-width: 520px;
}

.hw-home-cta-row {
	margin-top: 27px;
}

.hw-home-cta-row .hw-home-button {
	min-width: 151px;
}

.hw-home-cta-row .hw-home-button-light {
	min-width: 214px;
}

.hw-home-button-light span,
.hw-home-label span,
.hw-home-section-copy h2 span,
.hw-home-section-heading h2 span,
.hw-home-section-copy p span,
.hw-home-card h3 span,
.hw-home-card p span,
.hw-home-checklist li span,
.hw-home-dark-copy h2 span,
.hw-home-footer p span {
	display: none;
}

.hw-home-proof {
	align-items: center;
	color: #7f8798;
	display: flex;
	flex-wrap: wrap;
	font-size: 11px;
	font-weight: 900;
	gap: 4px 10px;
	margin-top: 11px;
}
.hw-home-proof-item {
	align-items: center;
	display: inline-flex;
	gap: 5px;
}

.hw-home-proof-icon {
	align-items: center;
	color: var(--hw-home-red);
	display: inline-flex;
	font-size: 14px;
	height: 14px;
	justify-content: center;
	line-height: 1;
	width: 14px;
}

.hw-home-proof-text {
	display: inline-block;
	line-height: 1.2;
}

.hw-home-dashboard-preview {
	background: #ffffff;
	border: 1px solid #dfe5ee;
	border-radius: 19px;
	display: flex;
	margin-left: auto;
	min-height: 251px;
	overflow: hidden;
	width: min(100%, 654px);
}

.hw-home-dashboard-preview aside {
	background: var(--hw-home-bordeaux);
	border-radius: 19px;
	color: #ffffff;
	display: flex;
	flex: 0 0 119px;
	flex-direction: column;
	gap: 17px;
	padding: 23px 23px;
}

.hw-home-dashboard-preview aside strong {
	font-size: 12px;
	font-weight: 950;
}

.hw-home-dashboard-preview aside strong span {
	display: none;
}

.hw-home-dashboard-preview aside small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 10px;
	font-weight: 800;
}

.hw-home-preview-panel {
	flex: 1 1 auto;
	min-width: 0;
	padding: 20px 18px 24px;
}

.hw-home-preview-panel h3 {
	color: #1d2334;
	font-size: 17px;
	font-weight: 950;
	margin: 0 0 16px;
}

.hw-home-preview-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hw-home-preview-stats span {
	background: #ffffff;
	border: 1px solid #e3e8f0;
	border-radius: 10px;
	display: block;
	flex: 1 1 calc(25% - 8px);
	min-height: 54px;
	min-width: 94px;
	padding: 9px 34px 8px 12px;
	position: relative;
}

.hw-home-preview-stats small,
.hw-home-preview-stats strong {
	display: block;
}

.hw-home-preview-stats small {
	color: #727d92;
	font-size: 9px;
	font-weight: 900;
}

.hw-home-preview-stats strong {
	color: #151c2b;
	font-size: 15px;
	font-weight: 950;
	margin-top: 2px;
}

.hw-home-preview-stats i {
	background: #1fbc73;
	border-radius: 999px;
	height: 18px;
	position: absolute;
	right: 11px;
	top: 18px;
	width: 27px;
}

.hw-home-preview-stats span:nth-child(2) i {
	background: var(--hw-home-red);
}

.hw-home-chart {
	background: #f5f7fa;
	border-radius: 10px;
	height: 101px;
	margin-top: 16px;
	overflow: hidden;
	padding: 17px 20px;
}

.hw-home-chart svg {
	display: block;
	height: 100%;
	width: 100%;
}

.hw-home-chart path {
	fill: none;
	stroke: var(--hw-home-red);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 5;
}

.hw-home-dashboard-preview.is-hero {
	background: transparent;
	border: 0;
	border-radius: 0;
	display: block;
	margin: 0 auto;
	min-height: 468px;
	overflow: visible;
	position: relative;
	width: min(100%, 628px);
}

.hw-home-dashboard-preview.is-hero::before,
.hw-home-dashboard-preview.is-hero::after {
	display: none !important;
}

.hw-home-dashboard-preview.is-hero > *:not(.hw-home-hero-panel):not(.hw-home-hero-blob):not(.hw-home-float-card)::before,
.hw-home-dashboard-preview.is-hero > *:not(.hw-home-hero-panel):not(.hw-home-hero-blob):not(.hw-home-float-card)::after {
	display: none !important;
}

.hw-home-hero-blob {
	background: radial-gradient(circle at 50% 48%, rgba(255, 48, 66, 0.14), rgba(255, 48, 66, 0.06) 46%, rgba(255, 48, 66, 0) 68%);
	border-radius: 50%;
	height: 430px;
	left: 22px;
	position: absolute;
	top: -20px;
	width: 585px;
	z-index: 0;
}

.hw-home-hero-panel {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(218, 226, 238, 0.9);
	border-radius: 18px;
	box-shadow: 0 18px 54px rgba(15, 23, 42, 0.1);
	margin-left: auto;
	margin-right: 26px;
	margin-top: 62px;
	min-height: 310px;
	padding: 26px 25px 18px;
	position: relative;
	transform: rotate(1.4deg);
	width: 552px;
	z-index: 2;
}

.hw-home-hero-panel h3 {
	color: #171b2b;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.1;
	margin: 0 0 20px;
	padding-right: 118px;
	white-space: nowrap;
}

.hw-home-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.hw-home-hero-stats span {
	align-items: stretch;
	background: #ffffff;
	border: 1px solid #e3e8f0;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
	min-height: 76px;
	padding: 12px 47px 9px 11px;
	position: relative;
}

.hw-home-hero-stats small,
.hw-home-hero-stats strong,
.hw-home-hero-stats em {
	display: block;
	max-width: 100%;
}

.hw-home-hero-stats small {
	color: #7a8599;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.1;
}

.hw-home-hero-stats strong {
	color: #171b2b;
	font-size: 14px;
	font-weight: 950;
	line-height: 1;
	margin-top: 11px;
	white-space: nowrap;
}

.hw-home-hero-stats em {
	background: #dff8e9;
	border-radius: 8px;
	color: #0e9f55;
	font-size: 9px;
	font-style: normal;
	font-weight: 950;
	line-height: 1;
	margin-top: 10px;
	padding: 4px 6px;
	width: max-content;
}

.hw-home-hero-stats .is-cost em {
	background: #ffe0e5;
	color: #f21f39;
}

.hw-home-hero-stats i {
	align-items: center;
	background: #d8f5e5;
	border-radius: 50%;
	color: #16a95c;
	display: flex;
	font-size: 17px;
	font-style: normal;
	font-weight: 950;
	height: 31px;
	justify-content: center;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 31px;
}

.hw-home-hero-stats span:nth-child(1) i,
.hw-home-hero-stats span:nth-child(3) i {
	font-size: 0;
}

.hw-home-hero-stats span:nth-child(1) i::before {
	background: currentColor;
	content: "";
	display: block;
	height: 18px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17h18M7 14l4-4 3 3 5-6M19 7h-5M19 7v5' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17h18M7 14l4-4 3 3 5-6M19 7h-5M19 7v5' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
	width: 18px;
}

.hw-home-hero-stats span:nth-child(3) i::before {
	content: "\20AC";
	font-size: 17px;
	line-height: 1;
}

.hw-home-hero-stats .is-cost i {
	background: #ffe1e7;
	color: #ee243a;
}

.hw-home-hero-chart {
	background: #ffffff;
	border: 1px solid #e3e8f0;
	border-radius: 12px;
	margin-top: 12px;
	padding: 14px 15px 8px;
}

.hw-home-hero-chart > div {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.hw-home-hero-chart strong {
	color: #171b2b;
	font-size: 14px;
	font-weight: 950;
}

.hw-home-hero-chart span {
	align-items: center;
	color: #233044;
	display: flex;
	font-size: 12px;
	font-weight: 850;
	gap: 8px;
}

.hw-home-hero-chart span i {
	background: var(--hw-home-red);
	border-radius: 999px;
	display: inline-block;
	height: 3px;
	width: 20px;
}

.hw-home-hero-chart span i:nth-of-type(2) {
	background: #14b85f;
	margin-left: 12px;
}

.hw-home-hero-chart svg {
	display: block;
	height: 150px;
	width: 100%;
}

.hw-home-gridlines path {
	fill: none;
	stroke: #dfe5ee;
	stroke-dasharray: 5 7;
	stroke-width: 1;
}

.hw-home-axis text {
	fill: #8490a4;
	font-size: 12px;
	font-weight: 800;
}

.hw-home-line-red,
.hw-home-line-green {
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 4;
}

.hw-home-line-red {
	stroke: var(--hw-home-red);
}

.hw-home-line-green {
	stroke: #13b75f;
}

.hw-home-points-red circle {
	fill: var(--hw-home-red);
}

.hw-home-points-green circle {
	fill: #13b75f;
}

.hw-home-float-card {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 14px;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.11);
	display: flex;
	gap: 14px;
	position: absolute;
	z-index: 4;
}

.hw-home-float-card > span {
	align-items: center;
	border-radius: 50%;
	display: flex;
	flex: 0 0 auto;
	font-weight: 950;
	justify-content: center;
}

.hw-home-float-card strong,
.hw-home-float-card small,
.hw-home-float-card em,
.hw-home-float-card b,
.hw-home-float-card a {
	display: block;
	line-height: 1.2;
}

.hw-home-float-card strong {
	color: #171b2b;
	font-size: 13px;
	font-weight: 950;
}

.hw-home-float-card small {
	color: #4e5b70;
	font-size: 10px;
	font-weight: 750;
	margin-top: 5px;
}

.hw-home-float-card em {
	background: #dff8e9;
	border-radius: 8px;
	color: #0e9f55;
	font-size: 9px;
	font-style: normal;
	font-weight: 950;
	margin-top: 6px;
	padding: 4px 7px;
	width: max-content;
}

.hw-home-contract-ok {
	padding: 15px 17px;
	right: -35px;
	top: -24px;
	width: 232px;
}

.hw-home-contract-ok > span {
	background: linear-gradient(135deg, #20d276, #18bd67);
	color: #ffffff;
	font-size: 25px;
	height: 48px;
	width: 48px;
}

.hw-home-profit-up {
	bottom: -8px;
	left: -110px;
	padding: 17px 19px;
	width: 212px;
}

.hw-home-profit-up > span {
	background: #ffe5e8;
	color: var(--hw-home-red);
	font-size: 24px;
	height: 52px;
	width: 52px;
}

.hw-home-profit-up b {
	color: var(--hw-home-red);
	font-size: 25px;
	font-weight: 950;
	letter-spacing: 0;
	margin-top: 6px;
}

.hw-home-profit-up em {
	font-size: 9px;
	margin-top: 8px;
}

.hw-home-advice-card {
	bottom: -74px;
	padding: 16px 17px;
	right: -16px;
	width: 224px;
}

.hw-home-advice-card > span {
	background: #fff1bf;
	color: #171b2b;
	font-size: 20px;
	height: 48px;
	width: 48px;
}

.hw-home-advice-card a {
	color: var(--hw-home-red);
	font-size: 11px;
	font-weight: 950;
	margin-top: 12px;
	text-decoration: none;
}

.hw-home-section {
	background: #ffffff;
	padding: 57px 0;
}

.hw-home-anchor {
	display: block;
	height: 1px;
	margin-top: -80px;
	position: absolute;
	width: 1px;
}

.hw-home-values {
	padding-bottom: 54px;
}

.hw-home-values-grid {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 88px;
}

.hw-home-values-grid > .hw-home-section-copy {
	flex: 1 1 360px;
	max-width: 495px;
	min-width: 0;
}

.hw-home-values-grid > .hw-home-card-grid {
	flex: 1 1 560px;
	min-width: 0;
}

.hw-home-label {
	color: var(--hw-home-red);
	display: block;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.hw-home-section-copy h2,
.hw-home-section-heading h2,
.hw-home-dark-copy h2 {
	font-size: 34px;
	line-height: 1.12;
}

.hw-home-section-copy p {
	font-size: 16px;
	margin-top: 18px;
	max-width: 520px;
}

.hw-home-card-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.hw-home-card-grid-3 .hw-home-card {
	flex: 1 1 calc(33.333% - 19px);
}

.hw-home-card-grid-4 .hw-home-card {
	flex: 1 1 calc(25% - 21px);
}

.hw-home-card {
	background: #ffffff;
	border: 1px solid var(--hw-home-border);
	border-radius: 16px;
	min-height: 142px;
	padding: 20px 24px;
}

.hw-home-card-grid-4 .hw-home-card {
	min-height: 151px;
}

.hw-home-icon {
	align-items: center;
	background: #ffe9ec;
	border-radius: 9px;
	color: var(--hw-home-red);
	display: flex;
	font-size: 14px;
	font-weight: 950;
	height: 28px;
	justify-content: center;
	margin-bottom: 13px;
	width: 44px;
}

.hw-home-card h3 {
	color: #202638;
	font-size: 17px;
	font-weight: 950;
	line-height: 1.15;
	margin: 0;
}

.hw-home-card p {
	color: #7e889c;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	margin: 10px 0 0;
	max-width: 215px;
}

.hw-home-features {
	padding-top: 22px;
}

.hw-home-section-heading {
	margin: 0 auto 25px;
	max-width: 700px;
	text-align: center;
}

.hw-home-section-heading .hw-home-label {
	margin-bottom: 10px;
}

.hw-home-dark-section {
	background: var(--hw-home-bordeaux);
	color: #ffffff;
	padding: 40px 0;
}

.hw-home-split {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 72px;
}

.hw-home-split > * {
	flex: 1 1 320px;
	min-width: 0;
}

.hw-home-split > :first-child {
	flex-basis: 470px;
}

.hw-home-dark-section .hw-home-split {
	min-height: 252px;
}

.hw-home-dark-copy h2,
.hw-home-dark-copy p {
	color: #ffffff;
}

.hw-home-dark-copy p {
	color: rgba(255, 255, 255, 0.76);
}

.hw-home-dark-copy .hw-home-label {
	color: #ff8d98;
}

.hw-home-checklist {
	color: rgba(255, 255, 255, 0.78);
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 24px 0 31px;
	padding: 0;
}

.hw-home-checklist li {
	font-size: 15px;
	font-weight: 650;
	line-height: 1.2;
}

.hw-home-checklist li::before {
	content: "\2713\00a0";
}

.hw-home-dashboard-preview.is-compact {
	min-height: 239px;
	width: min(100%, 625px);
}

.hw-home-dashboard-preview.is-compact .hw-home-preview-panel {
	padding-top: 17px;
}

.hw-home-dashboard-preview.is-advice-visual {
	background: transparent;
	border: 0;
	display: block;
	margin-left: auto;
	min-height: 292px;
	overflow: visible;
	padding: 16px 18px 26px 0;
	position: relative;
	width: min(100%, 625px);
}

.hw-home-advice-visual-panel {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.92);
	border-radius: 18px;
	box-shadow: 0 20px 56px rgba(15, 23, 42, 0.14);
	padding: 25px 24px 34px;
	position: relative;
}

.hw-home-advice-visual-panel h3 {
	color: #171b2b;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.1;
	margin: 0 0 18px;
}

.hw-home-advice-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hw-home-advice-metric {
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	flex: 1 1 calc(25% - 8px);
	min-height: 106px;
	min-width: 112px;
	padding: 17px 12px 12px;
	position: relative;
}

.hw-home-advice-metric::before {
	background: #dfe7f2;
	border-radius: 999px;
	content: "";
	height: 5px;
	left: 12px;
	position: absolute;
	right: 12px;
	top: 0;
}

.hw-home-advice-metric.is-score::before {
	background: var(--hw-blue, #3478f6);
}

.hw-home-advice-metric.is-focus::before {
	background: var(--hw-red, #ff3f4b);
}

.hw-home-advice-metric.is-positive::before {
	background: var(--hw-green, #22a861);
}

.hw-home-advice-metric.is-warning::before {
	background: var(--hw-orange, #ff951c);
}

.hw-home-advice-metric span,
.hw-home-advice-metric small,
.hw-home-advice-highlight span,
.hw-home-advice-highlight small {
	display: block;
	line-height: 1.25;
}

.hw-home-advice-metric span {
	color: #667085;
	font-size: 9px;
	font-weight: 900;
	text-transform: uppercase;
}

.hw-home-advice-metric strong {
	color: #111827;
	display: block;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.05;
	margin-top: 10px;
	overflow-wrap: anywhere;
}

.hw-home-advice-metric small {
	color: #667085;
	font-size: 10px;
	font-weight: 750;
	margin-top: 8px;
}

.hw-home-advice-highlight {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e5ebf3;
	border-left: 5px solid var(--hw-orange, #ff951c);
	border-radius: 14px;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-left: -20px;
	margin-top: 18px;
	width: 100%;
	padding: 17px 18px;
	transform: translate(18px, 12px);
}

.hw-home-advice-highlight span {
	color: var(--hw-home-red);
	font-size: 10px;
	font-weight: 950;
	text-transform: uppercase;
}

.hw-home-advice-highlight strong {
	color: #111827;
	display: block;
	font-size: 17px;
	font-weight: 950;
	line-height: 1.15;
	margin-top: 5px;
}

.hw-home-advice-highlight small {
	color: #667085;
	font-size: 11px;
	font-weight: 750;
	margin-top: 5px;
}

.hw-home-advice-highlight a {
	background: var(--hw-home-red);
	border-radius: 8px;
	color: #ffffff;
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 950;
	line-height: 1;
	padding: 11px 13px;
	text-decoration: none;
	white-space: nowrap;
}

.hw-home-contracts {
	padding: 30px 0 58px;
}

.hw-home-contracts .hw-home-split > :first-child {
	flex-basis: 505px;
}

.hw-home-contracts .hw-home-button {
	margin-top: 31px;
	min-width: 202px;
}

.hw-home-contract-preview {
	background: var(--hw-home-pink);
	border: 1px solid #f0dce0;
	border-radius: 16px;
	min-height: 198px;
	padding: 37px 26px 20px;
}

.hw-home-contract-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	position: relative;
	text-align: center;
}

.hw-home-contract-steps::before {
	background: #eadde2;
	content: "";
	height: 2px;
	left: 13%;
	position: absolute;
	right: 13%;
	top: 18px;
}

.hw-home-contract-steps span {
	align-items: center;
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.hw-home-contract-steps b {
	align-items: center;
	background: #ffe6ea;
	border-radius: 999px;
	color: var(--hw-home-red);
	display: flex;
	font-size: 13px;
	font-weight: 950;
	height: 36px;
	justify-content: center;
	width: 56px;
}

.hw-home-contract-steps strong {
	color: #22283a;
	font-size: 13px;
	font-weight: 950;
	margin-top: 20px;
}

.hw-home-contract-result {
	background: #ffffff;
	border: 1px solid #dfe5ee;
	border-radius: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin: 30px auto 0;
	max-width: 508px;
	padding: 16px 26px;
}

.hw-home-contract-result span {
	color: #202638;
	font-size: 13px;
	font-weight: 900;
}

.hw-home-steps {
	padding: 4px 0 69px;
}

.hw-home-timeline {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
	margin-top: 52px;
	position: relative;
}

.hw-home-step {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
}

.hw-home-step:not(:last-child)::after {
	background: #dfe4ec;
	content: "";
	height: 2px;
	left: 58%;
	position: absolute;
	top: 19px;
	width: 36%;
}

.hw-home-step span {
	align-items: center;
	background: #ffe9ec;
	border-radius: 999px;
	color: var(--hw-home-red);
	display: flex;
	font-size: 13px;
	font-weight: 950;
	height: 40px;
	justify-content: center;
	margin-bottom: 19px;
	width: 56px;
}

.hw-home-step h3 {
	color: #202638;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.15;
	margin: 0 0 7px;
}

.hw-home-step p {
	color: #7c879b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	max-width: 190px;
}

.hw-home-support {
	padding: 52px 0 66px;
}

.hw-home-support .hw-home-split {
	justify-content: space-between;
}

.hw-home-support .hw-home-split > :first-child {
	flex-basis: 575px;
}

.hw-home-support .hw-home-split > :last-child {
	flex-basis: 520px;
}

.hw-home-chat-preview {
	background: #ffffff;
	border-radius: 12px;
	color: #1d2434;
	min-height: 200px;
	padding: 23px 30px;
}

.hw-home-chat-preview h3 {
	color: #202638;
	font-size: 15px;
	font-weight: 950;
	margin: 0 0 16px;
}

.hw-home-chat-preview p {
	background: #f6f7f9;
	border-radius: 9px;
	color: #536074;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 18px;
	padding: 11px 18px;
}

.hw-home-support .hw-home-button {
	margin-top: 28px;
	min-width: 190px;
}

.hw-home-footer {
	background: var(--hw-home-bordeaux);
	color: rgba(255, 255, 255, 0.72);
	isolation: isolate;
	overflow: clip;
    padding-top: 35px;
	position: relative;
	z-index: 1;
}

.home .hw-home-footer {
	padding-top: 0px;
}

@supports not (overflow: clip) {
	.hw-home-footer {
		overflow: hidden;
	}
}

.hw-home-footer-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 74px;
}

.hw-home-footer-grid > * {
	flex: 1 1 150px;
	min-width: 0;
}

.hw-home-footer-grid > :first-child {
	flex-basis: 390px;
}

.hw-home-footer .hw-home-logo {
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 7px;
	display: inline-flex;
	height: 38px;
	margin-bottom: 13px;
	width: 118px;
}

.hw-home-footer .hw-home-logo img {
	display: block;
	height: 100%;
	max-width: 88px;
	object-fit: contain;
	width: 100%;
}

.hw-home-footer p {
	font-size: 13px;
	font-weight: 650;
	line-height: 1.55;
	margin: 0;
	max-width: 292px;
}

.hw-home-footer p strong {
	color: #ffffff;
	display: block;
	font-weight: 950;
}

.hw-home-footer small {
	color: rgba(255, 255, 255, 0.58);
	display: block;
	font-size: 12px;
	font-weight: 650;
	margin-top: 46px;
}

.hw-home-footer h2 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 950;
	margin: 0 0 13px;
}

.hw-home-footer nav {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.hw-home-footer nav a {
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
}

.hw-home-footer nav a:hover,
.hw-home-footer nav a:focus-visible {
	color: #ffffff;
}

@media (max-width: 1180px) {
	.hw-home-header {
		gap: 22px;
		padding: 0 24px;
	}

	.hw-home-nav {
		gap: 26px;
	}

	.hw-home-container {
		padding-left: 32px;
		padding-right: 32px;
	}

	.hw-home-hero-grid,
	.hw-home-split {
		gap: 40px;
	}

	.hw-home-hero-copy,
	.hw-home-split > :first-child {
		flex-basis: 300px;
	}

	.hw-home-hero-grid > .hw-home-dashboard-preview,
	.hw-home-split > :last-child {
		flex-basis: 460px;
	}

	.hw-home-values-grid {
		gap: 42px;
	}

	.hw-home-values-grid > .hw-home-section-copy,
	.hw-home-values-grid > .hw-home-card-grid {
		flex-basis: 100%;
		max-width: none;
	}

	.hw-home-dashboard-preview.is-advice-visual {
		max-width: 560px;
		padding-right: 0;
	}

	.hw-home-advice-metric {
		flex-basis: calc(50% - 5px);
	}

	.hw-home-advice-metric {
		min-height: 96px;
	}

	.hw-home-advice-highlight {
		max-width: 100%;
	}
}

@media (max-width: 920px) {
	.hw-home-header {
		padding: 0 16px;
	}

	.hw-home-nav,
	.hw-home-actions {
		display: none;
	}

	.hw-home-menu-toggle {
		align-items: center;
		background: #ffffff;
		border: 1px solid #e5e9f0;
		border-radius: 7px;
		display: flex;
		flex-direction: column;
		gap: 3px;
		height: 50px;
		justify-content: center;
		padding: 0;
		width: 50px;
	}

	.hw-home-menu-toggle span {
		background: #6b7280;
		border-radius: 999px;
		height: 2px;
		width: 20px;
	}

	.hw-home-mobile-menu {
		background: #ffffff;
		border-left: 1px solid #e5e9f0;
		box-shadow: -20px 0 50px rgba(15, 23, 42, 0.16);
		display: flex;
		flex-direction: column;
		gap: 2px;
		inset: 0 0 0 auto;
		max-width: 330px;
		padding: 18px;
		position: fixed;
		transform: translateX(105%);
		transition: transform 180ms ease;
		width: min(86vw, 330px);
		z-index: 9993;
	}

	.hw-home-menu-overlay {
		background: rgba(15, 23, 42, 0.35);
		display: block;
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 180ms ease;
		z-index: 9992;
	}

	.hw-home-header.is-menu-open .hw-home-mobile-menu {
		transform: translateX(0);
	}

	.hw-home-header.is-menu-open .hw-home-menu-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.hw-home-menu-lock {
		overflow: hidden;
	}

	.hw-home-mobile-menu-head {
		align-items: center;
		display: flex;
		justify-content: space-between;
		margin-bottom: 10px;
	}

	.hw-home-mobile-menu-head span {
		color: #1f2937;
		font-size: 14px;
		font-weight: 950;
	}

	.hw-home-mobile-menu button {
		background: #fff2f3;
		border: 0;
		border-radius: 8px;
		color: var(--hw-home-red);
		cursor: pointer;
		font-size: 22px;
		height: 34px;
		line-height: 1;
		width: 34px;
	}

	.hw-home-mobile-menu a {
		border-radius: 8px;
		color: #253044;
		font-size: 14px;
		font-weight: 850;
		padding: 12px 10px;
	}

	.hw-home-mobile-menu a.is-active {
		color: var(--hw-home-red);
	}

	.hw-home-mobile-menu a.hw-home-button-light {
		align-items: center;
		background: #ffffff;
		border: 1px solid #dde3ec;
		color: #1e2636;
		display: inline-flex;
		font-weight: 900;
		justify-content: center;
		margin-top: 8px;
		min-height: 54px;
		padding: 12px 18px;
		text-align: center;
	}

	.hw-home-mobile-menu a.hw-home-button-light:hover,
	.hw-home-mobile-menu a.hw-home-button-light:focus-visible {
		border-color: #c7ceda;
		color: #111827;
	}

	.hw-home-mobile-menu a.is-cta {
		background: var(--hw-home-red);
		color: #ffffff;
		margin-top: 8px;
		text-align: center;
	}

	.hw-home-hero-copy,
	.hw-home-hero-grid > .hw-home-dashboard-preview,
	.hw-home-split > *,
	.hw-home-contracts .hw-home-split > *,
	.hw-home-support .hw-home-split > * {
		flex-basis: 100%;
	}

	.hw-home-dashboard-preview.is-hero {
		margin: 16px auto 0;
		min-height: 560px;
		width: min(100%, 608px);
	}

	.hw-home-hero-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.hw-home-hero-copy h1, .hw-home-hero-copy p {
		text-align: center;
	}

	.hw-home-dashboard-preview.is-hero .hw-home-hero-panel {
		margin-left: auto;
		margin-right: auto;
		margin-top: 54px;
		width: min(100%, 540px);
	}

	.hw-home-profit-up {
		bottom: 18px;
		left: -58px;
	}

	.hw-home-advice-card {
		bottom: 6px;
		right: -58px;
		width: 190px;
	}

	.hw-home-dashboard-preview.is-hero .hw-home-hero-blob {
		left: 50%;
		transform: translateX(-50%);
	}

	.hw-home-card-grid-3 .hw-home-card,
	.hw-home-card-grid-4 .hw-home-card {
		flex-basis: calc(50% - 14px);
	}

	.hw-home-dashboard-preview.is-advice-visual {
		margin: 10px auto 0;
		width: min(100%, 590px);
	}

	.hw-home-section-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.hw-home-section-copy span, .hw-home-section-copy h2, .hw-home-section-copy p {
		text-align: center;
	}

	.hw-home-dark-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.hw-home-dark-copy h2, .hw-home-dark-copy ul, .hw-home-dark-copy p {
		text-align: center;
	}

	.hw-home-contract-result {
		max-width: 100%;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.hw-home-page {
		background: #ffffff;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}

	.hw-home-container {
		max-width: 430px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.hw-home-page .hw-home-container {
		max-width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}

	.hw-home-logo {
		height: 100%;
		width: 60px;
	}

	.hw-home-logo img {
		max-height: 100%;
		max-width: 100px;
	}

	.hw-home-hero {
		min-height: 0;
		padding: 18px 0 26px;
	}

	.hw-home-hero-grid {
		gap: 18px;
		min-width: 0;
	}

	.hw-home-hero-copy {
		flex-basis: 100%;
		width: min(100%, calc(100vw - 32px));
	}

	.hw-home-hero-copy h1,
	.hw-home-section-copy h2,
	.hw-home-section-heading h2,
	.hw-home-dark-copy h2 {
		font-size: 28px;
		line-height: 1.03;
	}

	.hw-home-hero-copy h1 {
		font-size: clamp(26px, 8vw, 32px);
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.hw-home-hero-copy p,
	.hw-home-section-copy p,
	.hw-home-dark-copy p {
		font-size: 12px;
		line-height: 1.45;
		margin-top: 12px;
		max-width: 330px;
	}

	.hw-home-cta-row {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		margin-top: 18px;
		width: min(100%, 330px);
	}

	.hw-home-cta-row .hw-home-button {
		flex: 0 0 auto;
		font-size: 11px;
		min-height: 40px;
		min-width: 0;
		padding: 11px 10px;
		width: 100%;
	}

	.hw-home-cta-row .hw-home-button-light {
		min-width: 0;
	}

	.hw-home-cta-row .hw-home-button-light {
		font-size: 0;
	}

	.hw-home-cta-row .hw-home-button-light span {
		display: inline;
		font-size: 11px;
	}

	.hw-home-proof {
		display: none;
	}

	.hw-home-dashboard-preview,
	.hw-home-dashboard-preview.is-compact {
		border-radius: 12px;
		min-height: 151px;
		width: 100%;
	}

	.hw-home-dashboard-preview aside,
	.hw-home-dashboard-preview.is-compact aside {
		flex-basis: 75px;
	}

	.hw-home-dashboard-preview aside {
		border-radius: 11px;
		gap: 0;
		padding: 13px 10px;
	}

	.hw-home-dashboard-preview aside strong {
		font-size: 0;
	}

	.hw-home-dashboard-preview aside strong span {
		display: inline;
		font-size: 11px;
	}

	.hw-home-dashboard-preview aside small {
		display: none;
	}

	.hw-home-preview-panel {
		padding: 16px 13px 12px;
	}

	.hw-home-preview-panel h3 {
		font-size: 10px;
		margin-bottom: 12px;
	}

	.hw-home-preview-stats {
		gap: 8px;
	}

	.hw-home-preview-stats span {
		flex-basis: calc(50% - 4px);
	}

	.hw-home-preview-stats span:nth-child(2),
	.hw-home-preview-stats span:nth-child(4) {
		display: none;
	}

	.hw-home-preview-stats span {
		border-radius: 7px;
		min-height: 51px;
		padding: 9px 8px;
	}

	.hw-home-preview-stats small {
		font-size: 7px;
	}

	.hw-home-preview-stats strong {
		font-size: 11px;
	}

	.hw-home-preview-stats i {
		display: none;
	}

	.hw-home-chart {
		border-radius: 8px;
		height: 57px;
		margin-top: 12px;
		padding: 8px 9px;
	}

	.hw-home-chart path {
		stroke-width: 7;
	}

	.hw-home-dashboard-preview.is-advice-visual,
	.hw-home-dashboard-preview.is-compact.is-advice-visual {
		border-radius: 0;
		display: block;
		margin-top: 2px;
		min-height: 0;
		overflow: visible;
		padding: 0;
		width: 100%;
	}

	.hw-home-advice-visual-panel {
		border-radius: 13px;
		padding: 18px 15px 16px;
	}

	.hw-home-advice-visual-panel h3 {
		font-size: 14px;
		margin-bottom: 14px;
	}

	.hw-home-advice-metrics {
		gap: 9px;
	}

	.hw-home-advice-metric {
		flex-basis: calc(50% - 5px);
	}

	.hw-home-advice-metric {
		border-radius: 9px;
		min-height: 94px;
		padding: 15px 10px 10px;
	}

	.hw-home-advice-metric::before {
		left: 10px;
		right: 10px;
	}

	.hw-home-advice-metric span {
		font-size: 7px;
	}

	.hw-home-advice-metric strong {
		font-size: 14px;
		margin-top: 8px;
	}

	.hw-home-advice-metric small {
		font-size: 8px;
		margin-top: 6px;
	}

	.hw-home-advice-highlight {
		align-items: flex-start;
		border-radius: 10px;
		flex-direction: column;
		gap: 12px;
		margin-top: 12px;
		margin-left: 0px;
		max-width: 100%;
		padding: 14px;
		transform: none;
	}

	.hw-home-advice-highlight strong {
		font-size: 14px;
	}

	.hw-home-advice-highlight small {
		font-size: 9px;
	}

	.hw-home-advice-highlight a {
		font-size: 10px;
		padding: 10px 12px;
	}

	.hw-home-dashboard-preview.is-hero {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin: 0;
		min-height: 0;
		overflow: visible;
		width: 100%;
	}

	.hw-home-dashboard-preview.is-hero .hw-home-hero-blob {
		height: 280px;
		left: -24px;
		top: 6px;
		transform: none;
		width: 390px;
	}

	.hw-home-dashboard-preview.is-hero .hw-home-hero-panel {
		border-radius: 13px;
		margin: 0;
		margin-top: 0;
		max-width: 100%;
		min-height: 236px;
		order: 2;
		padding: 18px 16px 14px;
		transform: none;
		width: 100%;
	}

	.hw-home-dashboard-preview.is-hero .hw-home-hero-panel h3 {
		text-align: center;
		font-size: 13px;
		margin-bottom: 14px;
		padding-right: 0;
		white-space: normal;
	}

	.hw-home-hero-stats {
		gap: 8px;
	}

	.hw-home-hero-stats span {
		border-radius: 9px;
		flex: 1 1 calc(50% - 4px);
		min-height: 72px;
		padding: 12px 45px 10px 11px;
	}

	.hw-home-hero-stats span:nth-child(4) {
		display: flex;
	}

	.hw-home-hero-stats small {
		font-size: 8px;
	}

	.hw-home-hero-stats strong {
		font-size: 13px;
		margin-top: 8px;
	}

	.hw-home-hero-stats em {
		font-size: 8px;
		margin-top: 7px;
		padding: 4px 5px;
	}

	.hw-home-hero-stats i {
		font-size: 15px;
		height: 30px;
		right: 8px;
		width: 30px;
	}

	.hw-home-hero-chart {
		border-radius: 9px;
		margin-top: 10px;
		padding: 11px 10px 5px;
	}

	.hw-home-hero-chart > div {
		justify-content: center;
		margin-bottom: 3px;
	}

	.hw-home-hero-chart strong {
		font-size: 9px;
	}

	.hw-home-hero-chart span {
		display: none;
	}

	.hw-home-hero-chart svg {
		height: 95px;
	}

	.hw-home-axis text {
		font-size: 13px;
	}

	.hw-home-line-red,
	.hw-home-line-green {
		stroke-width: 6;
	}

	.hw-home-points-red circle,
	.hw-home-points-green circle {
		r: 6px;
	}

	.hw-home-float-card {
		border-radius: 10px;
		box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
		gap: 8px;
		position: relative;
	}

	.hw-home-contract-ok {
		align-self: center;
		order: 1;
		padding: 10px 12px;
		right: auto;
		top: auto;
		width: min(100%, 190px);
	}

	.hw-home-contract-ok > span {
		font-size: 19px;
		height: 36px;
		width: 36px;
	}

	.hw-home-contract-ok strong {
		font-size: 9px;
	}

	.hw-home-contract-ok small {
		font-size: 7px;
		margin-top: 4px;
	}

	.hw-home-contract-ok em {
		font-size: 7px;
		margin-top: 4px;
		padding: 3px 5px;
	}

	.hw-home-profit-up {
		align-self: center;
		bottom: auto;
		left: auto;
		order: 3;
		padding: 11px 13px;
		width: min(100%, 190px);
	}

	.hw-home-profit-up > span {
		font-size: 18px;
		height: 38px;
		width: 38px;
	}

	.hw-home-profit-up strong {
		font-size: 8px;
	}

	.hw-home-profit-up b {
		font-size: 17px;
		margin-top: 3px;
	}

	.hw-home-profit-up small,
	.hw-home-profit-up em {
		font-size: 7px;
		margin-top: 4px;
	}

	.hw-home-advice-card {
		align-self: center;
		bottom: auto;
		display: flex;
		order: 4;
		padding: 11px 12px;
		right: auto;
		width: min(100%, 220px);
	}

	.hw-home-advice-card > span {
		font-size: 18px;
		height: 38px;
		width: 38px;
	}

	.hw-home-advice-card strong {
		font-size: 9px;
	}

	.hw-home-advice-card small,
	.hw-home-advice-card a {
		font-size: 7px;
		margin-top: 4px;
	}

	.hw-home-section {
		padding: 31px 0;
	}

	.hw-home-values {
		padding-top: 33px;
	}

	.hw-home-values-grid {
		gap: 22px;
	}

	.hw-home-label {
		font-size: 9px;
		margin-bottom: 8px;
	}

	.hw-home-values .hw-home-label,
	.hw-home-features .hw-home-label,
	.hw-home-steps .hw-home-label,
	.hw-home-support .hw-home-label {
		font-size: 0;
	}

	.hw-home-values .hw-home-label span,
	.hw-home-features .hw-home-label span,
	.hw-home-steps .hw-home-label span,
	.hw-home-support .hw-home-label span {
		display: inline;
		font-size: 9px;
	}

	.hw-home-section-copy h2,
	.hw-home-section-heading h2,
	.hw-home-dark-copy h2 {
		font-size: 22px;
		line-height: 1.14;
	}

	.hw-home-values .hw-home-section-copy h2,
	.hw-home-features .hw-home-section-heading h2,
	.hw-home-steps .hw-home-section-heading h2,
	.hw-home-support .hw-home-dark-copy h2,
	.hw-home-section-copy p {
		font-size: 0;
	}

	.hw-home-values .hw-home-section-copy h2 span,
	.hw-home-features .hw-home-section-heading h2 span,
	.hw-home-steps .hw-home-section-heading h2 span,
	.hw-home-support .hw-home-dark-copy h2 span {
		display: inline;
		font-size: 22px;
	}

	.hw-home-section-copy p span {
		display: inline;
		font-size: 11px;
	}

	.hw-home-values .hw-home-section-copy p {
		display: none;
	}

	.hw-home-card-grid-3,
	.hw-home-card-grid-4 {
		gap: 12px;
	}

	.hw-home-card-grid-3 .hw-home-card,
	.hw-home-card-grid-4 .hw-home-card {
		flex-basis: 100%;
	}

	.hw-home-card,
	.hw-home-card-grid-4 .hw-home-card {
		align-items: center;
		border-radius: 10px;
		display: flex;
		flex-wrap: wrap;
		gap: 0 8px;
		min-height: 74px;
		padding: 14px 17px;
	}

	.hw-home-icon {
		border-radius: 9px;
		font-size: 12px;
		height: 34px;
		margin: 0;
		width: 34px;
	}

	.hw-home-card h3 {
		font-size: 14px;
	}

	.hw-home-card p {
		flex: 1 1 100%;
		font-size: 0;
		margin-left: 42px;
		margin-top: 4px;
		max-width: none;
	}

	.hw-home-card p span {
		display: inline;
		font-size: 9px;
	}

	.hw-home-card-grid-4 .hw-home-card p {
		display: none;
	}

	.hw-home-card h3 span {
		display: none;
	}

	.hw-home-features {
		padding-top: 20px;
	}

	.hw-home-section-heading {
		margin-bottom: 18px;
		text-align: center;
	}

	.hw-home-dark-section {
		padding: 26px 0 30px;
	}

	.hw-home-dark-section .hw-home-split {
		gap: 21px;
		min-height: 0;
	}

	.hw-home-dark-copy p {
		display: none;
	}

	.hw-home-checklist {
		gap: 8px;
		margin: 14px 0 20px;
	}

	.hw-home-checklist li {
		font-size: 11px;
	}

	.hw-home-checklist li {
		font-size: 0;
	}

	.hw-home-checklist li::before {
		font-size: 11px;
	}

	.hw-home-checklist li span {
		display: inline;
		font-size: 11px;
	}

	.hw-home-checklist li:nth-child(4) {
		display: none;
	}

	.hw-home-dark-copy .hw-home-button {
		display: none;
	}

	.hw-home-contracts {
		padding: 29px 0 28px;
	}

	.hw-home-contracts .hw-home-split {
		gap: 20px;
	}

	.hw-home-contracts .hw-home-section-copy h2 {
		font-size: 26px;
	}

	.hw-home-contracts .hw-home-section-copy h2 span {
		font-size: 26px;
	}

	.hw-home-contracts .hw-home-section-copy p {
		display: block;
		font-size: 0;
		margin-top: 11px;
	}

	.hw-home-contracts .hw-home-section-copy p span {
		display: inline;
		font-size: 11px;
	}

	.hw-home-contract-preview {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		border-radius: 10px;
		min-height: 100px;
		padding: 22px 18px;
	}

	.hw-home-contract-steps {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.hw-home-contract-steps::before {
		display: none;
	}

	.hw-home-contract-steps span {
		align-items: baseline;
		flex: 0 1 auto;
		flex-direction: row;
		justify-content: center;
		gap: 4px;
	}

	.hw-home-contract-steps b {
		background: transparent;
		color: #202638;
		display: inline;
		font-size: 11px;
		height: auto;
		width: auto;
	}

	.hw-home-contract-steps strong {
		font-size: 11px;
		margin-top: 0;
	}

	.hw-home-contract-result {
		display: none;
	}

	.hw-home-contracts .hw-home-button {
		font-size: 11px;
		margin-top: 16px;
		min-height: 38px;
		min-width: 0;
		width: 204px;
	}

	.hw-home-steps {
		padding: 21px 0 31px;
	}

	.hw-home-timeline {
		gap: 25px;
		margin-top: 24px;
	}

	.hw-home-step {
		display: flex;
		justify-content: center;
		align-items: center;
		flex: 1 1 100%;
		gap: 18px;
	}

	.hw-home-step:not(:last-child)::after {
		display: none;
	}

	.hw-home-step span {
		font-size: 10px;
		height: 28px;
		margin: 0;
		width: 28px;
	}

	.hw-home-step h3 {
		font-size: 12px;
		margin: 0;
	}

	.hw-home-step p {
		display: none;
	}

	.hw-home-support {
		padding: 29px 0 37px;
	}

	.hw-home-support .hw-home-split {
		display: flex;
		flex-direction: column-reverse;
		gap: 17px;
	}

	.hw-home-chat-preview {
		border-radius: 10px;
		min-height: 130px;
		padding: 15px 17px;
		width: 100%;
	}

	.hw-home-chat-preview h3 {
		font-size: 12px;
		margin-bottom: 12px;
	}

	.hw-home-chat-preview p {
		font-size: 8px;
		margin-bottom: 8px;
		padding: 9px 13px;
	}

	.hw-home-support .hw-home-button {
		display: inline-flex;
		font-size: 11px;
		margin-top: 16px;
		min-height: 39px;
		min-width: 199px;
	}

	.home .hw-home-footer {
		padding: 0 0 26px;
	}

	.hw-home-footer-grid {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.hw-home-footer-grid div {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.hw-home-footer-grid > *,
	.hw-home-footer-grid > :first-child {
		flex: 0 1 auto;
	}

	.hw-home-footer .hw-home-logo {
		height: 34px;
		margin-bottom: 12px;
		padding: 5px 11px;
		width: 104px;
	}

	.hw-home-footer .hw-home-logo img {
		max-height: 23px;
		max-width: 78px;
	}

	.hw-home-footer p {
		font-size: 0;
		max-width: 250px;
		text-align: center;
	}

	.hw-home-footer p strong,
	.hw-home-footer p span {
		display: block;
		font-size: 12px;
	}

	.hw-home-footer p {
		color: rgba(255, 255, 255, 0.62);
	}

	.hw-home-footer small {
		display: none;
	}

	.hw-home-footer h2 {
		text-align: center;
		font-size: 12px;
		margin-bottom: 6px;
	}

	.hw-home-footer nav {
		display: block;
	}

	.hw-home-footer nav a {
		display: inline;
		font-size: 10px;
	}

	.hw-home-footer nav a:not(:last-child)::after {
		color: rgba(255, 255, 255, 0.45);
		content: " - ";
	}
}

@media (max-width: 360px) {
	.hw-home-container {
		padding-left: 13px;
		padding-right: 13px;
	}

	.hw-home-hero-copy h1 {
		font-size: 24px;
		line-height: 1.06;
	}

	.hw-home-dashboard-preview aside,
	.hw-home-dashboard-preview.is-compact aside {
		flex-basis: 64px;
	}

	.hw-home-dashboard-preview.is-hero {
		max-width: min(100%, 280px);
		width: min(100%, 280px);
	}

	.hw-home-cta-row {
		width: min(100%, 280px);
	}
}

.hw-possibilities-page .hw-home-nav {
	gap: clamp(24px, 4.4vw, 74px);
}

.hw-possibilities-hero {
	align-items: center;
	background: var(--hw-home-pink);
	display: grid;
	min-height: calc(100vh - 80px);
	padding: 24px 0;
}

.hw-possibilities-hero-grid {
	align-items: center;
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(300px, 0.95fr) minmax(470px, 1.05fr);
	min-height: 0;
}

.hw-possibilities-hero-copy h1 {
	color: var(--hw-home-text);
	font-size: 36px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
}

.hw-possibilities-hero-copy p {
	color: var(--hw-home-muted);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.7;
	margin: 24px 0 0;
	max-width: 545px;
}

.hw-possibilities-section {
	background: #ffffff;
	padding: 63px 0 126px;
}

.hw-possibilities-grid {
	display: grid;
	gap: 44px 42px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hw-possibilities-card {
	background: #ffffff;
	border: 1px solid var(--hw-home-border);
	border-radius: 17px;
	min-height: 245px;
	padding: 25px 24px;
}

.hw-possibilities-icon {
	align-items: center;
	background: #ffecef;
	border-radius: 12px;
	color: var(--hw-home-red);
	display: inline-flex;
	height: 45px;
	justify-content: center;
	width: 45px;
}

.hw-possibilities-icon .dashicons {
	font-size: 21px;
	height: 21px;
	line-height: 1;
	width: 21px;
}

.hw-possibilities-card h2 {
	color: var(--hw-home-text);
	font-size: 18px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 18px 0 0;
}

.hw-possibilities-card p {
	color: #7e899e;
	font-size: 13px;
	font-weight: 650;
	line-height: 2.15;
	margin: 25px 0 0;
	max-width: 320px;
}

.hw-possibilities-card p span {
	display: none;
}

.hw-contract-analysis-page .hw-home-nav {
	gap: clamp(18px, 3.8vw, 66px);
}

.hw-contract-analysis-hero {
	align-items: center;
	background: var(--hw-home-pink);
	display: grid;
	min-height: 392px;
	padding: 42px 0 56px;
}

.hw-contract-analysis-hero-grid {
	align-items: center;
	display: grid;
	gap: 72px;
	grid-template-columns: minmax(310px, 0.95fr) minmax(460px, 1.05fr);
}

.hw-contract-analysis-hero-copy h1 {
	color: var(--hw-home-text);
	font-size: 36px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
}

.hw-contract-analysis-hero-copy p {
	color: var(--hw-home-muted);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.95;
	margin: 32px 0 0;
	max-width: 565px;
}

.hw-contract-analysis-hero-copy p span + span,
.hw-contract-analysis-result > span,
.hw-contract-analysis-feature-card h2 span + span,
.hw-contract-analysis-feature-card p span + span {
	display: none;
}

.hw-contract-analysis-visual {
	align-items: center;
	background: #ffffff;
	border: 1px solid #dde3ec;
	border-radius: 17px;
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr);
	justify-self: end;
	min-height: 270px;
	padding: 44px 42px;
	width: min(100%, 550px);
}

.hw-contract-analysis-document,
.hw-contract-analysis-result {
	background: #ffffff;
	border: 1px solid #e3e8f0;
	border-radius: 12px;
	min-width: 0;
}

.hw-contract-analysis-document {
	align-items: flex-start;
	background: #f7f8fa;
	display: flex;
	justify-content: center;
	min-height: 198px;
	padding-top: 54px;
}

.hw-contract-analysis-document strong,
.hw-contract-analysis-result > span {
	color: var(--hw-home-text);
	font-size: 13px;
	font-weight: 950;
	line-height: 1.2;
}

.hw-contract-analysis-result {
	min-height: 198px;
	padding: 34px 24px 24px;
}

.hw-contract-analysis-result small {
	color: #7a8599;
	display: block;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 12px;
}

.hw-contract-analysis-result strong {
	color: #ff8a00;
	display: block;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.1;
	margin-bottom: 34px;
}

.hw-contract-analysis-result ul {
	display: grid;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hw-contract-analysis-result li {
	align-items: center;
	color: #1e2636;
	display: flex;
	font-size: 11px;
	font-weight: 900;
	gap: 5px;
	line-height: 1.25;
}

.hw-contract-analysis-result li .dashicons {
	font-size: 13px;
	height: 13px;
	line-height: 1;
	width: 13px;
}

.hw-contract-analysis-result li:nth-child(1) .dashicons {
	color: #18b969;
}

.hw-contract-analysis-result li:nth-child(2) .dashicons,
.hw-contract-analysis-result strong {
	color: #ff8a00;
}

.hw-contract-analysis-result li:nth-child(3) .dashicons {
	color: #64748b;
}

.hw-contract-analysis-features {
	background: #ffffff;
	padding: 66px 0 125px;
}

.hw-contract-analysis-feature-grid {
	display: grid;
	gap: 44px 42px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hw-contract-analysis-feature-card {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid var(--hw-home-border);
	border-radius: 17px;
	display: flex;
	gap: 0;
	min-height: 246px;
	padding: 25px 24px;
}

.hw-contract-analysis-badge {
	align-items: center;
	background: #ffecef;
	border-radius: 12px;
	color: var(--hw-home-red);
	display: inline-flex;
	flex: 0 0 45px;
	font-size: 14px;
	font-weight: 950;
	height: 45px;
	justify-content: center;
	line-height: 1;
	width: 45px;
}

.hw-contract-analysis-feature-card > div {
	min-width: 0;
}

.hw-contract-analysis-feature-card h2 {
	color: var(--hw-home-text);
	font-size: 18px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 73px 0 0;
}

.hw-contract-analysis-feature-card p {
	color: #7e899e;
	font-size: 13px;
	font-weight: 650;
	line-height: 2.15;
	margin: 25px 0 0;
	max-width: 320px;
}

.hw-capabilities-visual {
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	justify-self: end;
	max-width: 560px;
	min-height: 0;
	position: relative;
	width: min(100%, 560px);
}

.hw-capabilities-visual::before {
	background: rgba(255, 48, 66, 0.08);
	border-radius: 50%;
	content: "";
	height: 260px;
	position: absolute;
	right: 4px;
	top: 42px;
	width: 260px;
	z-index: 0;
}

.hw-capability-card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #e3e8f0;
	border-radius: 14px;
	box-shadow: 0 12px 26px rgba(23, 27, 43, 0.09);
	color: var(--hw-home-text);
	min-width: 0;
	position: relative;
	z-index: 1;
}

.hw-capability-card header {
	align-items: center;
	display: flex;
	gap: 11px;
	margin: 0;
}

.hw-capability-card h2 {
	color: var(--hw-home-text);
	font-size: 14px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0;
}

.hw-capability-icon {
	align-items: center;
	background: #ffecef;
	border-radius: 10px;
	color: var(--hw-home-red);
	display: inline-flex;
	flex: 0 0 36px;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.hw-capability-icon .dashicons {
	font-size: 19px;
	height: 19px;
	line-height: 1;
	width: 19px;
}

.hw-card-menu {
	display: block;
	height: 22px;
	margin-left: auto;
	position: relative;
	width: 5px;
}

.hw-card-menu::before {
	background: #667085;
	border-radius: 999px;
	box-shadow: 0 7px 0 #667085, 0 14px 0 #667085;
	content: "";
	display: block;
	height: 4px;
	width: 4px;
}

.hw-financial-card {
	grid-column: 1 / -1;
	padding: 14px 16px;
	justify-self: end;
	width: min(100%, 520px);
}

.hw-financial-card-body {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(104px, 0.36fr) minmax(190px, 1fr);
	margin-top: 10px;
}

.hw-financial-metric span,
.hw-financial-metric strong,
.hw-financial-metric small {
	display: block;
}

.hw-financial-metric span {
	color: #344054;
	font-size: 12px;
	font-weight: 700;
}

.hw-financial-metric strong {
	color: #060b18;
	font-size: 32px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1;
	margin-top: 6px;
}

.hw-financial-metric em {
	align-items: center;
	background: #18b969;
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	font-style: normal;
	height: 21px;
	justify-content: center;
	margin-left: 8px;
	vertical-align: 5px;
	width: 21px;
}

.hw-financial-metric em .dashicons {
	font-size: 16px;
	height: 16px;
	line-height: 1;
	width: 16px;
}

.hw-financial-metric small {
	align-items: center;
	background: #dff8e9;
	border-radius: 999px;
	color: #0d9a58;
	display: inline-flex;
	font-size: 9px;
	font-weight: 900;
	line-height: 1;
	margin-top: 10px;
	padding: 6px 8px;
}

.hw-financial-metric small::before {
	content: "\2191";
	margin-right: 5px;
}

.hw-financial-chart {
	min-width: 0;
}

.hw-financial-chart svg {
	display: block;
	height: 118px;
	width: 100%;
}

.hw-financial-chart g path {
	fill: none;
	stroke: #eef1f6;
	stroke-dasharray: 4 6;
	stroke-width: 1.5;
}

.hw-financial-chart polyline {
	fill: none;
	stroke: var(--hw-home-red);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3.5;
}

.hw-financial-chart circle {
	fill: var(--hw-home-red);
	stroke: #ffd6da;
	stroke-width: 5;
}

.hw-contract-card {
	grid-column: 1 / 2;
	margin-top: 0;
	padding: 14px;
	width: 100%;
	z-index: 2;
}

.hw-capability-status {
	align-items: center;
	border-bottom: 1px solid #edf0f5;
	display: flex;
	gap: 10px;
	margin-top: 12px;
	padding-bottom: 10px;
}

.hw-capability-status strong,
.hw-advice-card-body strong,
.hw-support-card-body strong {
	color: #060b18;
	font-size: 13px;
	font-weight: 950;
	line-height: 1.25;
}

.hw-status-dot {
	align-items: center;
	border-radius: 50%;
	display: inline-flex;
	flex: 0 0 20px;
	height: 20px;
	justify-content: center;
	margin-left: auto;
	width: 20px;
}

.hw-status-dot.is-ok {
	background: #18b969;
	color: #ffffff;
}

.hw-status-dot .dashicons {
	font-size: 15px;
	height: 15px;
	line-height: 1;
	width: 15px;
}

.hw-contract-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hw-contract-card li {
	align-items: center;
	border-bottom: 1px solid #edf0f5;
	color: #2f3748;
	display: flex;
	font-size: 11px;
	font-weight: 650;
	gap: 14px;
	justify-content: space-between;
	padding: 8px 0;
}

.hw-contract-card li .dashicons {
	font-size: 18px;
	height: 18px;
	line-height: 1;
	width: 18px;
}

.hw-contract-card .is-ok {
	color: #18b969;
}

.hw-contract-card .is-warning {
	color: #f59e0b;
}

.hw-contract-card a,
.hw-advice-card a {
	align-items: center;
	color: var(--hw-home-red);
	display: inline-flex;
	font-size: 11px;
	font-weight: 950;
	gap: 7px;
	margin-top: 10px;
	text-decoration: none;
}

.hw-contract-card a .dashicons,
.hw-advice-card a .dashicons {
	font-size: 18px;
	height: 18px;
	line-height: 1;
	width: 18px;
}

.hw-advice-card {
	grid-column: 2 / 3;
	margin-top: 12px;
	padding: 14px;
	width: 100%;
	z-index: 2;
}

.hw-advice-card-body {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) 58px;
	margin-top: 12px;
}

.hw-advice-card-body p,
.hw-support-card-body p {
	color: #344054;
	font-size: 11px;
	font-weight: 650;
	line-height: 1.45;
	margin: 7px 0 0;
}

.hw-advice-growth {
	align-items: center;
	background: #fff0f2;
	border-radius: 50%;
	color: var(--hw-home-red);
	display: flex;
	height: 58px;
	justify-content: center;
	width: 58px;
}

.hw-advice-growth .dashicons {
	font-size: 29px;
	height: 29px;
	line-height: 1;
	width: 29px;
}

.hw-support-card {
	grid-column: 1 / -1;
	justify-self: center;
	margin-top: 0;
	padding: 14px 18px;
	width: min(100%, 450px);
	z-index: 3;
}

.hw-support-card-body {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-top: 10px;
}

.hw-support-actions {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.hw-support-chat-button {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(255, 48, 66, 0.45);
	border-radius: 10px;
	color: var(--hw-home-red);
	display: inline-flex;
	font-size: 11px;
	font-weight: 950;
	justify-content: center;
	min-height: 34px;
	min-width: 116px;
	padding: 8px 12px;
	text-decoration: none;
}

.hw-support-actions span {
	align-items: center;
	background: #ddf8e9;
	border-radius: 999px;
	color: #0d7f4b;
	display: inline-flex;
	font-size: 9px;
	font-weight: 850;
	gap: 7px;
	line-height: 1;
	padding: 6px 8px;
	white-space: nowrap;
}

.hw-support-actions span i {
	background: #18b969;
	border-radius: 50%;
	display: block;
	height: 9px;
	width: 9px;
}

@media (max-width: 1180px) {
	.hw-contract-analysis-page .hw-home-nav,
	.hw-home-nav {
		gap: 16px;
	}

	.hw-contract-analysis-page .hw-home-actions .hw-home-button,
	.hw-home-actions .hw-home-button {
		min-width: 105px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.hw-contract-analysis-page .hw-home-actions .hw-home-button-red,
	.hw-home-actions .hw-home-button-red {
		min-width: 150px;
	}

	.hw-contract-analysis-hero-grid {
		gap: 38px;
		grid-template-columns: minmax(280px, 0.9fr) minmax(430px, 1.1fr);
	}

	.hw-contract-analysis-hero-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.hw-contract-analysis-visual {
		gap: 28px;
		padding-left: 34px;
		padding-right: 34px;
	}

	.hw-contract-analysis-feature-grid {
		gap: 34px 28px;
	}

	.hw-possibilities-page .hw-home-nav {
		gap: 18px;
	}

	.hw-possibilities-page .hw-home-actions .hw-home-button {
		min-width: 108px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.hw-possibilities-page .hw-home-actions .hw-home-button-red {
		min-width: 158px;
	}

	.hw-possibilities-hero-grid {
		gap: 30px;
		grid-template-columns: minmax(260px, 0.9fr) minmax(430px, 1.1fr);
	}

	.hw-possibilities-grid {
		gap: 34px 28px;
	}

	.hw-capabilities-visual {
		gap: 12px;
		max-width: 540px;
		min-height: 0;
		width: min(100%, 540px);
	}

	.hw-financial-card {
		width: min(100%, 500px);
	}

	.hw-contract-card {
		width: 100%;
	}

	.hw-advice-card {
		width: 100%;
	}

	.hw-support-card {
		width: min(100%, 460px);
	}
}

@media (max-width: 1080px) {
	.hw-home-nav,
	.hw-home-actions,
	.hw-possibilities-page .hw-home-nav,
	.hw-possibilities-page .hw-home-actions {
		display: none;
	}

	.hw-home-menu-toggle,
	.hw-possibilities-page .hw-home-menu-toggle {
		align-items: center;
		background: #ffffff;
		border: 1px solid #e5e9f0;
		border-radius: 7px;
		display: flex;
		flex-direction: column;
		gap: 3px;
		height: 50px;
		justify-content: center;
		padding: 0;
		width: 50px;
	}

	.hw-home-menu-toggle span,
	.hw-possibilities-page .hw-home-menu-toggle span {
		background: #6b7280;
		border-radius: 999px;
		height: 2px;
		width: 20px;
	}

	.hw-home-mobile-menu,
	.hw-possibilities-page .hw-home-mobile-menu {
		background: #ffffff;
		border-left: 1px solid #e5e9f0;
		box-shadow: -20px 0 50px rgba(15, 23, 42, 0.16);
		display: flex;
		flex-direction: column;
		gap: 2px;
		inset: 0 0 0 auto;
		max-width: 330px;
		padding: 18px;
		position: fixed;
		transform: translateX(105%);
		transition: transform 180ms ease;
		width: min(86vw, 330px);
		z-index: 9993;
	}

	.hw-home-menu-overlay,
	.hw-possibilities-page .hw-home-menu-overlay {
		background: rgba(15, 23, 42, 0.35);
		display: block;
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 180ms ease;
		z-index: 9992;
	}

	.hw-home-header.is-menu-open .hw-home-mobile-menu,
	.hw-possibilities-page .hw-home-header.is-menu-open .hw-home-mobile-menu {
		transform: translateX(0);
	}

	.hw-home-header.is-menu-open .hw-home-menu-overlay,
	.hw-possibilities-page .hw-home-header.is-menu-open .hw-home-menu-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.hw-home-mobile-menu-head,
	.hw-possibilities-page .hw-home-mobile-menu-head {
		align-items: center;
		display: flex;
		justify-content: space-between;
		margin-bottom: 10px;
	}

	.hw-home-mobile-menu-head span,
	.hw-possibilities-page .hw-home-mobile-menu-head span {
		color: #1f2937;
		font-size: 14px;
		font-weight: 950;
	}

	.hw-home-mobile-menu button,
	.hw-possibilities-page .hw-home-mobile-menu button {
		background: #fff2f3;
		border: 0;
		border-radius: 8px;
		color: var(--hw-home-red);
		cursor: pointer;
		font-size: 22px;
		height: 34px;
		line-height: 1;
		width: 34px;
	}

	.hw-home-mobile-menu a,
	.hw-possibilities-page .hw-home-mobile-menu a {
		border-radius: 8px;
		color: #253044;
		font-size: 14px;
		font-weight: 850;
		padding: 12px 10px;
	}

	.hw-home-mobile-menu a.is-active,
	.hw-possibilities-page .hw-home-mobile-menu a.is-active {
		color: var(--hw-home-red);
	}

	.hw-home-mobile-menu a.hw-home-button-light,
	.hw-possibilities-page .hw-home-mobile-menu a.hw-home-button-light {
		align-items: center;
		background: #ffffff;
		border: 1px solid #dde3ec;
		color: #1e2636;
		display: inline-flex;
		font-weight: 900;
		justify-content: center;
		margin-top: 8px;
		min-height: 54px;
		padding: 12px 18px;
		text-align: center;
	}

	.hw-home-mobile-menu a.is-cta,
	.hw-possibilities-page .hw-home-mobile-menu a.is-cta {
		background: var(--hw-home-red);
		color: #ffffff;
		margin-top: 8px;
		text-align: center;
	}
}

@media (max-height: 850px) and (min-width: 1024px) {
	.hw-possibilities-hero {
		min-height: calc(100vh - 80px);
		padding: 18px 0;
	}

	.hw-possibilities-hero-grid {
		gap: 28px;
		grid-template-columns: minmax(300px, 1fr) minmax(420px, 0.95fr);
	}

	.hw-possibilities-hero-copy h1 {
		font-size: 34px;
	}

	.hw-possibilities-hero-copy p {
		font-size: 15px;
		line-height: 1.6;
		margin-top: 20px;
	}

	.hw-capabilities-visual {
		gap: 8px;
		max-width: 505px;
		width: min(100%, 505px);
	}

	.hw-capabilities-visual::before {
		height: 230px;
		top: 70px;
		right: 150px;
		width: 230px;
	}

	.hw-capability-card {
		border-radius: 13px;
	}

	.hw-capability-card header {
		gap: 9px;
	}

	.hw-capability-card h2 {
		font-size: 13px;
	}

	.hw-capability-icon {
		flex-basis: 32px;
		height: 32px;
		width: 32px;
	}

	.hw-capability-icon .dashicons {
		font-size: 17px;
		height: 17px;
		width: 17px;
	}

	.hw-financial-card {
		padding: 12px 14px;
		width: min(100%, 480px);
	}

	.hw-financial-card-body {
		gap: 12px;
		grid-template-columns: minmax(94px, 0.34fr) minmax(180px, 1fr);
		margin-top: 8px;
	}

	.hw-financial-metric strong {
		font-size: 30px;
	}

	.hw-financial-metric small {
		margin-top: 8px;
	}

	.hw-financial-chart svg {
		height: 96px;
	}

	.hw-contract-card,
	.hw-advice-card {
		padding: 12px;
	}

	.hw-advice-card {
		margin-top: 8px;
	}

	.hw-capability-status {
		margin-top: 10px;
		padding-bottom: 8px;
	}

	.hw-capability-status strong,
	.hw-advice-card-body strong,
	.hw-support-card-body strong {
		font-size: 12px;
	}

	.hw-contract-card li {
		font-size: 10px;
		padding: 7px 0;
	}

	.hw-contract-card a,
	.hw-advice-card a {
		font-size: 10px;
		margin-top: 8px;
	}

	.hw-advice-card-body {
		grid-template-columns: minmax(0, 1fr) 50px;
		margin-top: 10px;
	}

	.hw-advice-card-body p,
	.hw-support-card-body p {
		font-size: 10px;
		line-height: 1.4;
	}

	.hw-advice-growth {
		height: 50px;
		width: 50px;
	}

	.hw-advice-growth .dashicons {
		font-size: 25px;
		height: 25px;
		width: 25px;
	}

	.hw-support-card {
		padding: 12px 16px;
		width: min(100%, 420px);
	}

	.hw-support-card-body {
		gap: 12px;
		margin-top: 8px;
	}

	.hw-support-chat-button {
		font-size: 10px;
		min-height: 30px;
		min-width: 108px;
	}
}

@media (max-width: 920px) {
	.hw-contract-analysis-hero {
		min-height: 0;
		padding: 35px 0 47px;
	}

	.hw-contract-analysis-hero-grid {
		gap: 42px;
		grid-template-columns: minmax(0, 1fr);
	}

	.hw-contract-analysis-hero-copy h1,
	.hw-contract-analysis-hero-copy p {
		max-width: 560px;
		text-align: center;
	}

	.hw-contract-analysis-visual {
		justify-self: center;
		width: min(100%, 620px);
	}

	.hw-contract-analysis-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hw-possibilities-hero {
		padding: 30px 0 31px;
		min-height: 0;
	}

	.hw-possibilities-hero-grid {
		display: block;
		min-height: 0;
	}

	.hw-possibilities-hero-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.hw-possibilities-hero-copy h1 {
		font-size: 31px;
		line-height: 1.05;
	}

	.hw-possibilities-hero-copy p {
		text-align: center;
		font-size: 16px;
		line-height: 1.7;
		margin-top: 43px;
		max-width: 370px;
	}

	.hw-capabilities-visual {
		display: grid;
		gap: 14px;
		grid-template-columns: 1fr;
		margin-top: 43px;
		min-height: 0;
		width: 100%;
	}

	.hw-capabilities-visual::before {
		height: 280px;
		right: 8%;
		top: 40px;
		width: 280px;
	}

	.hw-capability-card,
	.hw-financial-card,
	.hw-contract-card,
	.hw-advice-card,
	.hw-support-card {
		bottom: auto;
		grid-column: auto;
		left: auto;
		margin-top: 0;
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
	}

	.hw-financial-card {
		z-index: 1;
	}

	.hw-contract-card,
	.hw-advice-card {
		z-index: 2;
	}

	.hw-support-card {
		z-index: 3;
	}

	.hw-financial-card-body,
	.hw-support-card-body {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.hw-financial-metric strong {
		font-size: 38px;
	}

	.hw-financial-chart {
		width: min(100%, 280px);
	}

	.hw-possibilities-section {
		padding: 57px 0 46px;
	}

	.hw-possibilities-grid {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.hw-possibilities-card {
		align-items: center;
		border-radius: 16px;
		display: flex;
		gap: 18px;
		min-height: 0;
		padding: 22px 17px;
	}

	.hw-possibilities-icon {
		flex: 0 0 46px;
		height: 46px;
		width: 46px;
	}

	.hw-possibilities-card h2 {
		font-size: 18px;
		margin-top: 9px;
	}

	.hw-possibilities-card p {
		font-size: 0;
		line-height: 1.65;
		margin-top: 11px;
		max-width: none;
	}

	.hw-possibilities-card p span {
		display: inline;
		font-size: 14px;
	}
}

@media (max-width: 640px) {
	.hw-possibilities-page .hw-home-header {
		height: 74px;
		padding-left: 17px;
		padding-right: 17px;
	}

	.hw-possibilities-page .hw-home-logo {
		width: 90px;
	}

	.hw-possibilities-page .hw-home-logo img {
		max-height: 44px;
		max-width: 90px;
	}

	.hw-capability-card {
		border-radius: 18px;
		box-shadow: 0 12px 30px rgba(23, 27, 43, 0.1);
		padding: 18px;
	}

	.hw-capability-card h2 {
		font-size: 16px;
	}

	.hw-capability-icon {
		flex-basis: 42px;
		height: 42px;
		width: 42px;
	}

	.hw-capability-icon .dashicons {
		font-size: 23px;
		height: 23px;
		width: 23px;
	}

	.hw-financial-card-body,
	.hw-advice-card-body,
	.hw-support-card-body {
		display: block;
	}

	.hw-financial-chart {
		margin-top: 18px;
		width: 100%;
	}

	.hw-financial-metric strong {
		font-size: 38px;
	}

	.hw-advice-growth {
		display: none;
	}

	.hw-support-actions {
		align-items: flex-start;
		margin-top: 18px;
	}

	.hw-support-chat-button {
		width: 100%;
	}

	.hw-possibilities-page .hw-home-footer {
		padding: 33px 0 35px;
	}

	.hw-possibilities-page .hw-home-footer .hw-home-logo {
		margin-bottom: 20px;
	}

	.hw-possibilities-page .hw-home-footer p,
	.hw-possibilities-page .hw-home-footer h2 {
		text-align: center;
	}

	.hw-possibilities-page .hw-home-footer p strong {
		font-size: 17px;
		margin-bottom: 12px;
	}

	.hw-possibilities-page .hw-home-footer p span {
		font-size: 15px;
		font-weight: 500;
	}

	.hw-possibilities-page .hw-home-footer h2 {
		font-size: 15px;
		margin-bottom: 11px;
	}

	.hw-possibilities-page .hw-home-footer nav a {
		font-size: 13px;
		line-height: 2.1;
	}

	.hw-possibilities-page .hw-home-footer nav a:not(:last-child)::after {
		content: " - ";
	}
}

@media (max-width: 640px) {
	.hw-contract-analysis-page .hw-home-header {
		height: 76px;
		padding: 0 17px;
	}

	.hw-contract-analysis-page .hw-home-logo {
		background: #ffffff;
		border: 1px solid #e5e9f0;
		border-radius: 8px;
		height: 44px;
		width: 89px;
	}

	.hw-contract-analysis-page .hw-home-logo img {
		max-width: 66px;
	}

	.hw-contract-analysis-page .hw-home-menu-toggle {
		height: 40px;
		width: 44px;
	}

	.hw-contract-analysis-hero {
		padding: 29px 0 47px;
	}

	.hw-contract-analysis-hero-grid {
		gap: 49px;
	}

	.hw-contract-analysis-hero-copy h1 {
		font-size: 30px;
		line-height: 1.1;
	}

	.hw-contract-analysis-hero-copy p {
		font-size: 16px;
		line-height: 1.75;
		margin-top: 42px;
		max-width: 330px;
	}

	.hw-contract-analysis-hero-copy p span:first-child,
	.hw-contract-analysis-document,
	.hw-contract-analysis-result ul,
	.hw-contract-analysis-feature-card h2 span:first-child,
	.hw-contract-analysis-feature-card p span:first-child {
		display: none;
	}

	.hw-contract-analysis-hero-copy p span + span,
	.hw-contract-analysis-result > span,
	.hw-contract-analysis-feature-card h2 span + span,
	.hw-contract-analysis-feature-card p span + span {
		display: inline;
	}

	.hw-contract-analysis-visual {
		display: block;
		min-height: 212px;
		padding: 0;
		width: 100%;
	}

	.hw-contract-analysis-result {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		border: 0;
		min-height: 210px;
		padding: 31px 22px 35px;
	}

	.hw-contract-analysis-result > span {
		display: block;
		font-size: 16px;
		margin-bottom: 35px;
	}

	.hw-contract-analysis-result small {
		font-size: 12px;
		margin-bottom: 14px;
	}

	.hw-contract-analysis-result strong {
		font-size: 24px;
		margin-bottom: 0;
	}

	.hw-contract-analysis-features {
		padding: 58px 0 34px;
	}

	.hw-contract-analysis-feature-grid {
		gap: 23px;
		grid-template-columns: 1fr;
	}

	.hw-contract-analysis-feature-card {
		align-items: flex-start;
		border-radius: 16px;
		gap: 18px;
		min-height: 143px;
		padding: 22px 17px;
	}

	.hw-contract-analysis-badge {
		border-radius: 11px;
		flex-basis: 47px;
		font-size: 16px;
		height: 47px;
		width: 47px;
	}

	.hw-contract-analysis-feature-card h2 {
		font-size: 18px;
		line-height: 1.15;
		margin: 11px 0 0;
	}

	.hw-contract-analysis-feature-card p {
		font-size: 14px;
		line-height: 1.65;
		margin-top: 12px;
		max-width: 250px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hw-home-page *,
	.hw-home-page *::before,
	.hw-home-page *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
