.pprau-support-launcher,
.pprau-support-panel,
.pprau-support-panel * {
	box-sizing: border-box;
}

.pprau-support-launcher {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 99998;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 9px 16px 9px 10px;
	border: 1px solid rgba(0, 71, 153, .18);
	border-radius: 999px;
	background: #0067c5;
	color: #fff;
	box-shadow: 0 16px 36px rgba(0, 52, 116, .24);
	cursor: pointer;
}

.pprau-support-launcher span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	font-size: 20px;
	font-weight: 900;
}

.pprau-support-launcher strong {
	font-size: 14px;
	letter-spacing: .01em;
}

.pprau-support-panel {
	position: fixed;
	right: 22px;
	bottom: 82px;
	z-index: 99999;
	width: min(410px, calc(100vw - 32px));
	max-height: min(720px, calc(100vh - 112px));
	overflow: hidden;
	border: 1px solid #cfe0ef;
	border-radius: 16px;
	background: #fff;
	color: #10243e;
	box-shadow: 0 24px 70px rgba(5, 34, 72, .26);
}

.pprau-support-panel[hidden] {
	display: none !important;
}

.pprau-support-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	background: linear-gradient(135deg, #002f70, #0879d4);
	color: #fff;
}

.pprau-support-header small {
	display: block;
	margin-bottom: 3px;
	font-weight: 900;
	letter-spacing: .14em;
}

.pprau-support-header h2 {
	margin: 0;
	color: #fff;
	font-size: 22px;
	line-height: 1.2;
}

.pprau-support-close {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 9px;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.pprau-support-body {
	max-height: calc(min(720px, 100vh - 112px) - 90px);
	overflow-y: auto;
	padding: 18px 20px 20px;
}

.pprau-support-boundary {
	margin: 0 0 13px;
	padding: 12px;
	border-left: 4px solid #0879d4;
	border-radius: 7px;
	background: #eff8ff;
	font-size: 13px;
	line-height: 1.5;
}

.pprau-support-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
	margin-bottom: 16px;
}

.pprau-support-links a {
	display: grid;
	place-items: center;
	min-height: 44px;
	padding: 7px;
	border: 1px solid #d7e6f4;
	border-radius: 8px;
	background: #f8fbfe;
	color: #064e96;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
}

.pprau-support-form {
	display: grid;
	gap: 12px;
}

.pprau-support-form > label:not(.pprau-support-check) {
	display: grid;
	gap: 5px;
	font-size: 13px;
	font-weight: 800;
}

.pprau-support-form input[type="text"],
.pprau-support-form input[type="email"],
.pprau-support-form select,
.pprau-support-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 11px;
	border: 1px solid #bdd2e5;
	border-radius: 8px;
	background: #fff;
	color: #10243e;
	font: inherit;
}

.pprau-support-form textarea {
	min-height: 108px;
	resize: vertical;
}

.pprau-support-form :focus-visible {
	outline: 3px solid rgba(0, 103, 197, .2);
	outline-offset: 2px;
}

.pprau-support-check {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	font-size: 12px;
	line-height: 1.45;
}

.pprau-support-check input {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
}

.pprau-support-honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
}

.pprau-support-submit {
	min-height: 48px;
	border: 0;
	border-radius: 9px;
	background: #0067c5;
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

.pprau-support-submit[disabled] {
	opacity: .58;
	cursor: wait;
}

.pprau-support-status {
	min-height: 20px;
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.pprau-support-status.is-error { color: #a70000; }
.pprau-support-status.is-success { color: #075f2b; }

@media (max-width: 600px) {
	.pprau-support-launcher {
		right: 12px;
		bottom: 12px;
	}
	.pprau-support-panel {
		right: 8px;
		bottom: 72px;
		width: calc(100vw - 16px);
		max-height: calc(100vh - 88px);
	}
	.pprau-support-links {
		grid-template-columns: 1fr;
	}
}

