.hect-vtc-wrap {
	--hect-vtc-blue: #4285F4;
	--hect-vtc-blue-dark: #2f73e5;
	--hect-vtc-red: #F44336;
	--hect-vtc-green: #34A853;
	--hect-vtc-text: #2d3748;
	--hect-vtc-muted: #6b7280;
	--hect-vtc-border: #e7ebf0;
	direction: rtl;
	text-align: right;
	font-family: inherit;
	max-width: 680px;
	margin: 0 auto;
	color: var(--hect-vtc-text);
}

.hect-vtc-form {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	align-items: stretch;
	margin: 0 auto 18px;
}

.hect-vtc-form input[type=text] {
	padding: 1rem 1.15rem;
	border: 1px solid #d7dce3;
	border-radius: 17px;
	text-align: center;
	width: 100%;
	max-width: 100%;
	background: #fff;
	box-shadow: 0 7px 24px rgba(15, 23, 42, .05);
	color: #344054;
	font-weight: 700;
	letter-spacing: .2px;
	transition: border-color .2s ease, box-shadow .2s ease;
	box-sizing: border-box;
}

.hect-vtc-form input[type=text]:focus {
	outline: 0;
	border-color: rgba(66, 133, 244, .55);
	box-shadow: 0 0 0 4px rgba(66, 133, 244, .12), 0 9px 26px rgba(15, 23, 42, .07);
}

.hect-vtc-submit {
	padding: .78rem 1.3rem;
	border: 0;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 800;
	background: linear-gradient(135deg, var(--hect-vtc-blue), var(--hect-vtc-blue-dark));
	color: #fff;
	width: auto;
	align-self: center;
	min-width: 170px;
	box-shadow: 0 8px 18px rgba(66, 133, 244, .28);
	transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}

.hect-vtc-submit:hover,
.hect-vtc-submit:focus {
	filter: brightness(1.03);
	box-shadow: 0 10px 24px rgba(66, 133, 244, .34);
}

.hect-vtc-submit:active {
	transform: translateY(1px);
}

.hect-vtc-submit:disabled {
	opacity: .7;
	cursor: not-allowed;
	box-shadow: none;
}

.hect-vtc-note {
	font-size: .9rem;
	color: var(--hect-vtc-muted);
	margin-top: 2px;
	text-align: center;
}

.hect-vtc-result {
	margin-top: 18px;
}

.hect-vtc-status {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 16px;
	border-radius: 18px;
	font-weight: 900;
	line-height: 1.8;
	text-align: center;
	flex-direction: row;
}

.hect-vtc-status-success {
	color: #17823d;
	background: linear-gradient(135deg, #ecfff3, #f7fffa);
	border: 1px solid #bfeecf;
}

.hect-vtc-status-error {
	color: #c62828;
	background: linear-gradient(135deg, #fff2f1, #fffafa);
	border: 1px solid #ffc7c2;
}

.hect-vtc-status-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: #fff;
	background: var(--hect-vtc-green);
	font-family: 'hect-fa-solid-900';
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	flex: 0 0 auto;
	box-shadow: 0 8px 18px rgba(52, 168, 83, .25);
}

.hect-vtc-status-icon:before {
	content: "\f00c";
}

.hect-vtc-result-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--hect-vtc-border);
	border-radius: 24px;
	padding: 18px;
	margin-top: 16px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.hect-vtc-result-card:before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 5px;
	background: linear-gradient(90deg, var(--hect-vtc-blue), #22CAFF, var(--hect-vtc-green));
}

.hect-vtc-result-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 2px 16px;
	border-bottom: 1px solid #eef1f5;
	margin-bottom: 14px;
}

.hect-vtc-result-title {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.hect-vtc-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(66, 133, 244, .12), rgba(34, 202, 255, .12));
	color: var(--hect-vtc-blue);
	font-size: 28px;
	flex: 0 0 auto;
}

.hect-vtc-title-text {
	font-size: 18px;
	font-weight: 900;
	color: #253044;
	margin: 0;
}

.hect-vtc-subtitle-text {
	font-size: 13px;
	color: var(--hect-vtc-muted);
	margin: 3px 0 0;
}

.hect-vtc-code-pill {
	direction: ltr;
	text-align: left;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 13px;
	border-radius: 999px;
	background: #f5f8ff;
	color: var(--hect-vtc-blue-dark);
	border: 1px solid rgba(66, 133, 244, .18);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.hect-vtc-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 6px;
}

.hect-vtc-info-item {
	background: #fafbfc;
	border: 1px solid #edf0f4;
	border-radius: 16px;
	padding: 13px 14px;
	min-width: 0;
}

.hect-vtc-info-item-wide {
	grid-column: 1 / -1;
}

.hect-vtc-info-label {
	display: block;
	font-size: 12px;
	color: var(--hect-vtc-muted);
	margin-bottom: 6px;
	font-weight: 700;
}

.hect-vtc-info-value {
	display: block;
	font-size: 15px;
	color: #263445;
	font-weight: 900;
	line-height: 1.9;
	word-break: break-word;
}

.hect-vtc-info-value-code {
	direction: ltr;
	text-align: left;
	font-family: inherit;
	letter-spacing: .2px;
}

.hect-vtc-actions {
	margin-top: 16px;
	display: flex;
	gap: .7rem;
	flex-wrap: wrap;
	justify-content: center;
}

.hect-vtc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: .82rem 1.15rem;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 900;
	transition: box-shadow .2s ease, filter .2s ease, transform .08s ease;
}

.hect-vtc-btn-primary,
.hect-vtc-btn-primary:visited {
	background: linear-gradient(135deg, #F44336, #ff5a4f);
	color: #fff;
	box-shadow: 0 10px 24px rgba(244, 67, 54, .25);
}

.hect-vtc-btn-primary:hover,
.hect-vtc-btn-primary:focus {
	color: #fff !important;
	box-shadow: 0 0 0 4px rgba(244, 67, 54, .13), 0 12px 28px rgba(244, 67, 54, .3);
	filter: brightness(1.04);
}

.hect-vtc-btn-primary:active {
	color: #fff !important;
	transform: translateY(1px);
}

@media (max-width: 640px) {
	.hect-vtc-wrap {
		max-width: 100%;
	}

	.hect-vtc-result-card {
		border-radius: 20px;
		padding: 15px;
	}

	.hect-vtc-result-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.hect-vtc-code-pill {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.hect-vtc-info-grid {
		grid-template-columns: 1fr;
	}

	.hect-vtc-info-item-wide {
		grid-column: auto;
	}

	.hect-vtc-title-text {
		font-size: 16px;
	}

	.hect-vtc-btn {
		width: 100%;
	}
}
